@minecraft/server 1.5.0-beta.1.20.20-preview.23 → 1.6.0-beta.1.20.30-preview.20

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.
Files changed (2) hide show
  1. package/index.d.ts +435 -1183
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -16,28 +16,93 @@
16
16
  * ```json
17
17
  * {
18
18
  * "module_name": "@minecraft/server",
19
- * "version": "1.5.0-internal.1.20.20-preview.23"
19
+ * "version": "1.6.0-internal.1.20.30-preview.20"
20
20
  * }
21
21
  * ```
22
22
  *
23
23
  */
24
24
  /**
25
25
  * @beta
26
+ * Description of the resulting intersection test on two
27
+ * BlockVolume objects
26
28
  */
27
29
  export enum BlockVolumeIntersection {
30
+ /**
31
+ * @beta
32
+ * @remarks
33
+ * Volume B has no intersection points with Volume A
34
+ *
35
+ */
28
36
  Disjoint = 0,
37
+ /**
38
+ * @beta
39
+ * @remarks
40
+ * Volume B resides completely inside Volume A
41
+ *
42
+ */
29
43
  Contains = 1,
44
+ /**
45
+ * @beta
46
+ * @remarks
47
+ * Volume B partially intersects Volume A
48
+ *
49
+ */
30
50
  Intersects = 2,
31
51
  }
32
52
 
33
53
  /**
34
54
  * @beta
55
+ * The Action enum determines how the CompoundBlockVolume
56
+ * considers the associated CompoundBlockVolumeItem when
57
+ * performing inside/outside calculations.
35
58
  */
36
59
  export enum CompoundBlockVolumeAction {
60
+ /**
61
+ * @beta
62
+ * @remarks
63
+ * The associated BlockVolume is considered a positive space,
64
+ * and any intersection tests are considered hits
65
+ *
66
+ */
37
67
  Add = 0,
68
+ /**
69
+ * @beta
70
+ * @remarks
71
+ * The associated BlockVolume is considered a negative or void
72
+ * space, and any intersection tests are considered misses.
73
+ * Using the Subtract action, it is possible to `punch holes`
74
+ * in block volumes so that any intersection tests may pass
75
+ * through such spaces
76
+ *
77
+ */
38
78
  Subtract = 1,
39
79
  }
40
80
 
81
+ /**
82
+ * @beta
83
+ * An enum describing the relativity of the
84
+ * CompoundBlockVolumeItem, relative to the parent
85
+ * CompoundVolume.
86
+ */
87
+ export enum CompoundBlockVolumePositionRelativity {
88
+ /**
89
+ * @beta
90
+ * @remarks
91
+ * The locations within the associated BlockVolume are relative
92
+ * to the CompoundBlockVolume to which they were added
93
+ *
94
+ */
95
+ Relative = 0,
96
+ /**
97
+ * @beta
98
+ * @remarks
99
+ * The locations within the associated BlockVolume are in
100
+ * absolute world space
101
+ *
102
+ */
103
+ Absolute = 1,
104
+ }
105
+
41
106
  /**
42
107
  * @beta
43
108
  * A general purpose relative direction enumeration.
@@ -584,6 +649,36 @@ export class Block {
584
649
  *
585
650
  */
586
651
  readonly dimension: Dimension;
652
+ /**
653
+ * @beta
654
+ * @remarks
655
+ * Returns true if this block is an air block (i.e., empty
656
+ * space).
657
+ *
658
+ * @throws This property can throw when used.
659
+ */
660
+ readonly isAir: boolean;
661
+ /**
662
+ * @beta
663
+ * @remarks
664
+ * Returns true if this block is a liquid block - (e.g., a
665
+ * water block and a lava black are liquid, while an air block
666
+ * and a stone block are not. Water logged blocks are not
667
+ * liquid blocks).
668
+ *
669
+ * @throws This property can throw when used.
670
+ */
671
+ readonly isLiquid: boolean;
672
+ /**
673
+ * @beta
674
+ * @remarks
675
+ * Returns true if this block is solid and impassible - (e.g.,
676
+ * a cobblestone block and a diamond block are solid, while a
677
+ * ladder block and a fence block are not).
678
+ *
679
+ * @throws This property can throw when used.
680
+ */
681
+ readonly isSolid: boolean;
587
682
  /**
588
683
  * @beta
589
684
  * @remarks
@@ -737,35 +832,6 @@ export class Block {
737
832
  * ```
738
833
  */
739
834
  hasTag(tag: string): boolean;
740
- /**
741
- * @beta
742
- * @remarks
743
- * Returns true if this block is an air block (i.e., empty
744
- * space).
745
- *
746
- * @throws This function can throw errors.
747
- */
748
- isAir(): boolean;
749
- /**
750
- * @beta
751
- * @remarks
752
- * Returns true if this block is a liquid block - (e.g., a
753
- * water block and a lava black are liquid, while an air block
754
- * and a stone block are not).
755
- *
756
- * @throws This function can throw errors.
757
- */
758
- isLiquid(): boolean;
759
- /**
760
- * @beta
761
- * @remarks
762
- * Returns true if this block is solid and impassible - (e.g.,
763
- * a cobblestone block and a diamond block are solid, while a
764
- * ladder block and a fence block are not).
765
- *
766
- * @throws This function can throw errors.
767
- */
768
- isSolid(): boolean;
769
835
  /**
770
836
  * @beta
771
837
  * @remarks
@@ -1411,7 +1477,7 @@ export class BlockRecordPlayerComponent extends BlockComponent {
1411
1477
  *
1412
1478
  * @throws This function can throw errors.
1413
1479
  */
1414
- setRecord(recordItemType: ItemType): void;
1480
+ setRecord(recordItemType: ItemType | string): void;
1415
1481
  }
1416
1482
 
1417
1483
  /**
@@ -1787,7 +1853,7 @@ export class BlockWaterContainerComponent extends BlockLiquidContainerComponent
1787
1853
  * Color that is used as the base color for sign text.
1788
1854
  * @throws This function can throw errors.
1789
1855
  */
1790
- getCustomColor(): Color;
1856
+ getCustomColor(): RGBA;
1791
1857
  /**
1792
1858
  * @remarks
1793
1859
  * Sets a custom base color used for the sign text.
@@ -1796,7 +1862,7 @@ export class BlockWaterContainerComponent extends BlockLiquidContainerComponent
1796
1862
  *
1797
1863
  * @throws This function can throw errors.
1798
1864
  */
1799
- setCustomColor(color: Color): void;
1865
+ setCustomColor(color: RGBA): void;
1800
1866
  }
1801
1867
 
1802
1868
  /**
@@ -2178,7 +2244,13 @@ export class Component {
2178
2244
  * defining a further single 'void' cube inside the larger one.
2179
2245
  * Similarly, the Compound Block Volume can represent irregular
2180
2246
  * shaped volumes (e.g. a tree consists of a trunk and lots of
2181
- * leaf cubes which are not necessarily contiguously placed)
2247
+ * leaf cubes which are not necessarily contiguously placed).
2248
+ * Each of the volumes added to the CompoundBlockVolume are (by
2249
+ * default) relative to the origin set (either at construction
2250
+ * or via one of the set functions).
2251
+ * However, it is also possible to push volumes to the compound
2252
+ * collection which are absolute in nature and are not affected
2253
+ * by origin changes.
2182
2254
  */
2183
2255
  export class CompoundBlockVolume {
2184
2256
  /**
@@ -2195,6 +2267,16 @@ export class CompoundBlockVolume {
2195
2267
  *
2196
2268
  */
2197
2269
  readonly volumeCount: number;
2270
+ /**
2271
+ * @remarks
2272
+ * Create a CompoundBlockVolume object
2273
+ *
2274
+ * @param origin
2275
+ * An optional world space origin on which to center the
2276
+ * compound volume.
2277
+ * If not specified, the origin is set to (0,0,0)
2278
+ */
2279
+ constructor(origin?: Vector3);
2198
2280
  /**
2199
2281
  * @remarks
2200
2282
  * Clear the contents of the volume stack
@@ -2216,7 +2298,9 @@ export class CompoundBlockVolume {
2216
2298
  * subtractive volume to the same location, then the iterator
2217
2299
  * will step over the initial volume because it is considered
2218
2300
  * negative space)
2219
- *
2301
+ * Note that the Block Locations returned by this iterator are
2302
+ * in absolute world space (irrespective of whether the
2303
+ * compound volume items pushed are absolute or relative)
2220
2304
  *
2221
2305
  * This function can't be called in read-only mode.
2222
2306
  *
@@ -2226,6 +2310,9 @@ export class CompoundBlockVolume {
2226
2310
  * @remarks
2227
2311
  * Get the largest bounding box that represents a container for
2228
2312
  * all of the volumes on the stack
2313
+ * Note that the bounding box returned is represented in
2314
+ * absolute world space (irrespective of whether the compound
2315
+ * volume items pushed are absolute or relative)
2229
2316
  *
2230
2317
  * This function can't be called in read-only mode.
2231
2318
  *
@@ -2234,7 +2321,10 @@ export class CompoundBlockVolume {
2234
2321
  /**
2235
2322
  * @remarks
2236
2323
  * Get the max block location of the outermost bounding
2237
- * rectangle which represents the volumes on the stack
2324
+ * rectangle which represents the volumes on the stack.
2325
+ * Note that the max location returned is in absolute world
2326
+ * space (irrespective of whether the compound volume items
2327
+ * pushed are absolute or relative)
2238
2328
  *
2239
2329
  * This function can't be called in read-only mode.
2240
2330
  *
@@ -2243,7 +2333,10 @@ export class CompoundBlockVolume {
2243
2333
  /**
2244
2334
  * @remarks
2245
2335
  * Get the min block location of the outermost bounding
2246
- * rectangle which represents the volumes on the stack
2336
+ * rectangle which represents the volumes on the stack.
2337
+ * Note that the min location returned is in absolute world
2338
+ * space (irrespective of whether the compound volume items
2339
+ * pushed are absolute or relative)
2247
2340
  *
2248
2341
  * This function can't be called in read-only mode.
2249
2342
  *
@@ -2251,8 +2344,26 @@ export class CompoundBlockVolume {
2251
2344
  getMin(): Vector3;
2252
2345
  /**
2253
2346
  * @remarks
2254
- * Return a boolean representing whether or not a given block
2255
- * location is inside a positive block volume.
2347
+ * Fetch the origin in world space of the compound volume
2348
+ *
2349
+ * This function can't be called in read-only mode.
2350
+ *
2351
+ */
2352
+ getOrigin(): Vector3;
2353
+ /**
2354
+ * @remarks
2355
+ * Return a boolean which signals if there are any volume items
2356
+ * pushed to the volume
2357
+ *
2358
+ * This function can't be called in read-only mode.
2359
+ *
2360
+ */
2361
+ isEmpty(): boolean;
2362
+ /**
2363
+ * @remarks
2364
+ * Return a boolean representing whether or not a given
2365
+ * absolute world space block location is inside a positive
2366
+ * block volume.
2256
2367
  * E.g. if the stack contains a large cube followed by a
2257
2368
  * slightly smaller negative cube, and the test location is
2258
2369
  * within the negative cube - the function will return false
@@ -2262,21 +2373,29 @@ export class CompoundBlockVolume {
2262
2373
  *
2263
2374
  * This function can't be called in read-only mode.
2264
2375
  *
2265
- * @param delta
2266
- * block location to test
2267
2376
  */
2268
- isInside(delta: Vector3): boolean;
2377
+ isInside(worldLocation: Vector3): boolean;
2269
2378
  /**
2270
2379
  * @remarks
2271
2380
  * Inspect the last entry pushed to the volume stack without
2272
- * affecting the stack contents
2381
+ * affecting the stack contents.
2273
2382
  *
2274
2383
  * This function can't be called in read-only mode.
2275
2384
  *
2385
+ * @param forceRelativity
2386
+ * Determine whether the function returns a
2387
+ * CompoundBlockVolumeItem which is forced into either relative
2388
+ * or absolute coordinate system.
2389
+ * `true` = force returned item to be relative to volume origin
2390
+ * `false` = force returned item to be absolute world space
2391
+ * location
2392
+ *
2393
+ * If no flag is specified, the item returned retains whatever
2394
+ * relativity it had when it was pushed
2276
2395
  * @returns
2277
2396
  * Returns undefined if the stack is empty
2278
2397
  */
2279
- peekLastVolume(): CompoundBlockVolumeItem | undefined;
2398
+ peekLastVolume(forceRelativity?: CompoundBlockVolumePositionRelativity): CompoundBlockVolumeItem | undefined;
2280
2399
  /**
2281
2400
  * @remarks
2282
2401
  * Remove the last entry from the volume stack. This will
@@ -2290,7 +2409,10 @@ export class CompoundBlockVolume {
2290
2409
  * @remarks
2291
2410
  * Push a volume item to the stack. The volume item contains
2292
2411
  * an 'action' parameter which determines whether this volume
2293
- * is a positive or negative space
2412
+ * is a positive or negative space.
2413
+ * The item also contains a `locationRelativity` which
2414
+ * determines whether it is relative or absolute to the
2415
+ * compound volume origin
2294
2416
  *
2295
2417
  * This function can't be called in read-only mode.
2296
2418
  *
@@ -2313,16 +2435,47 @@ export class CompoundBlockVolume {
2313
2435
  replaceOrAddLastVolume(item: CompoundBlockVolumeItem): boolean;
2314
2436
  /**
2315
2437
  * @remarks
2316
- * Move the root block location of the volume by a given
2317
- * amount. This effectively adds the specified delta to the
2318
- * block location of all of the volumes in the stack
2438
+ * Set the origin of the compound volume to an absolute world
2439
+ * space location
2319
2440
  *
2320
2441
  * This function can't be called in read-only mode.
2321
2442
  *
2322
- * @param delta
2323
- * Amount to move
2443
+ * @param preserveExistingVolumes
2444
+ * This optional boolean flag determines whether the relative
2445
+ * `CompoundBlockVolumeItem`'s are frozen in place, or are
2446
+ * affected by the new origin.
2447
+ * Imagine a scenario where you have a series of relative
2448
+ * locations around an origin which make up a sphere; all of
2449
+ * these locations are in the range of -2 to 2.
2450
+ * Push each of these locations to the compound volume as
2451
+ * relative items.
2452
+ * Now, move the origin and all of the locations representing
2453
+ * the sphere move accordingly.
2454
+ * However, let's say you want to add a 2nd sphere next to the
2455
+ * 1st.
2456
+ * In this case, set the new origin a few locations over, but
2457
+ * 'preserveExistingVolumes' = true.
2458
+ * This will set a new origin, but the existing sphere
2459
+ * locations will remain relative to the original origin.
2460
+ * Now, you can push the relative sphere locations again (this
2461
+ * time they will be relative to the new origin) - resulting in
2462
+ * 2 spheres next to each other.
2324
2463
  */
2325
- translate(delta: Vector3): void;
2464
+ setOrigin(position: Vector3, preserveExistingVolumes?: boolean): void;
2465
+ /**
2466
+ * @remarks
2467
+ * Similar to {@link
2468
+ * @minecraft-server/CompoundBlockVolume.setOrigin} - this
2469
+ * function will translate the origin by a given delta to a new
2470
+ * position
2471
+ *
2472
+ * This function can't be called in read-only mode.
2473
+ *
2474
+ * @param preserveExistingVolumes
2475
+ * See the description for the arguments to {@link
2476
+ * @minecraft-server/CompoundBlockVolume.setOrigin}
2477
+ */
2478
+ translateOrigin(delta: Vector3, preserveExistingVolumes?: boolean): void;
2326
2479
  }
2327
2480
 
2328
2481
  /**
@@ -3199,12 +3352,12 @@ export class Dimension {
3199
3352
  /**
3200
3353
  * @beta
3201
3354
  * @remarks
3202
- * Sets the current weather within the dimesion
3355
+ * Sets the current weather within the dimension
3203
3356
  *
3204
3357
  * This function can't be called in read-only mode.
3205
3358
  *
3206
3359
  * @param weatherType
3207
- * Set of weather to apply.
3360
+ * Set the type of weather to apply.
3208
3361
  */
3209
3362
  setWeather(weatherType: WeatherType): void;
3210
3363
  /**
@@ -3339,7 +3492,7 @@ export class Dimension {
3339
3492
  * }
3340
3493
  * ```
3341
3494
  */
3342
- spawnParticle(effectName: string, location: Vector3, molangVariables: MolangVariableMap): void;
3495
+ spawnParticle(effectName: string, location: Vector3, molangVariables?: MolangVariableMap): void;
3343
3496
  }
3344
3497
 
3345
3498
  /**
@@ -3399,6 +3552,16 @@ export class DynamicPropertiesDefinition {
3399
3552
  * @throws This function can throw errors.
3400
3553
  */
3401
3554
  defineString(identifier: string, maxLength: number, defaultValue?: string): DynamicPropertiesDefinition;
3555
+ /**
3556
+ * @remarks
3557
+ * Defines a new Vector3-based dynamic property.
3558
+ *
3559
+ * @param identifier
3560
+ * Identifier of the Vector3 property.
3561
+ * @param defaultValue
3562
+ * Optional default starting Vector for this property.
3563
+ * @throws This function can throw errors.
3564
+ */
3402
3565
  defineVector(identifier: string, defaultValue?: Vector3): DynamicPropertiesDefinition;
3403
3566
  }
3404
3567
 
@@ -4389,6 +4552,14 @@ export class Entity {
4389
4552
  * @throws This function can throw errors.
4390
4553
  */
4391
4554
  playAnimation(animationName: string, options?: PlayAnimationOptions): void;
4555
+ /**
4556
+ * @beta
4557
+ * @remarks
4558
+ * This function can't be called in read-only mode.
4559
+ *
4560
+ * @throws This function can throw errors.
4561
+ */
4562
+ remove(): void;
4392
4563
  /**
4393
4564
  * @beta
4394
4565
  * @remarks
@@ -4583,7 +4754,9 @@ export class Entity {
4583
4754
  * @param eventName
4584
4755
  * Name of the entity type event to trigger. If a namespace is
4585
4756
  * not specified, minecraft: is assumed.
4586
- * @throws This function can throw errors.
4757
+ * @throws
4758
+ * If the event is not defined in the definition of the entity,
4759
+ * an error will be thrown.
4587
4760
  * @example triggerEvent.ts
4588
4761
  * ```typescript
4589
4762
  * const creeper = overworld.spawnEntity("minecraft:creeper", targetLocation);
@@ -4771,6 +4944,12 @@ export class EntityAttributeComponent extends EntityComponent {
4771
4944
  // @ts-ignore Class inheritance allowed for native defined classes
4772
4945
  export class EntityBaseMovementComponent extends EntityComponent {
4773
4946
  private constructor();
4947
+ /**
4948
+ * @remarks
4949
+ * Maximum turn rate for this movement modality of the mob.
4950
+ *
4951
+ * @throws This property can throw when used.
4952
+ */
4774
4953
  readonly maxTurn: number;
4775
4954
  }
4776
4955
 
@@ -4984,13 +5163,25 @@ export class EntityDieAfterEvent {
4984
5163
 
4985
5164
  /**
4986
5165
  * @beta
5166
+ * Supports registering for an event that fires after an entity
5167
+ * has died.
4987
5168
  */
4988
5169
  export class EntityDieAfterEventSignal {
4989
5170
  private constructor();
4990
5171
  /**
4991
5172
  * @remarks
5173
+ * Subscribes to an event that fires when an entity dies.
5174
+ *
4992
5175
  * This function can't be called in read-only mode.
4993
5176
  *
5177
+ * @param callback
5178
+ * Function to call when an entity dies.
5179
+ * @param options
5180
+ * Additional filtering options for when the subscription
5181
+ * fires.
5182
+ * @returns
5183
+ * Returns the closure that can be used in future downstream
5184
+ * calls to unsubscribe.
4994
5185
  */
4995
5186
  subscribe(
4996
5187
  callback: (arg: EntityDieAfterEvent) => void,
@@ -4998,6 +5189,9 @@ export class EntityDieAfterEventSignal {
4998
5189
  ): (arg: EntityDieAfterEvent) => void;
4999
5190
  /**
5000
5191
  * @remarks
5192
+ * Stops this event from calling your function when an entity
5193
+ * dies.
5194
+ *
5001
5195
  * This function can't be called in read-only mode.
5002
5196
  *
5003
5197
  * @throws This function can throw errors.
@@ -5089,6 +5283,8 @@ export class EntityFlyingSpeedComponent extends EntityComponent {
5089
5283
  private constructor();
5090
5284
  /**
5091
5285
  * @remarks
5286
+ * Current value of the flying speed of the associated entity.
5287
+ *
5092
5288
  * This property can't be edited in read-only mode.
5093
5289
  *
5094
5290
  */
@@ -5105,6 +5301,9 @@ export class EntityFrictionModifierComponent extends EntityComponent {
5105
5301
  private constructor();
5106
5302
  /**
5107
5303
  * @remarks
5304
+ * Current value of the friction modifier of the associated
5305
+ * entity.
5306
+ *
5108
5307
  * This property can't be edited in read-only mode.
5109
5308
  *
5110
5309
  */
@@ -5140,6 +5339,10 @@ export class EntityHealableComponent extends EntityComponent {
5140
5339
  private constructor();
5141
5340
  /**
5142
5341
  * @beta
5342
+ * @remarks
5343
+ * A set of filters that healable items might be associated
5344
+ * with.
5345
+ *
5143
5346
  * @throws This property can throw when used.
5144
5347
  */
5145
5348
  readonly filters: FilterGroup;
@@ -5238,6 +5441,11 @@ export class EntityHealthComponent extends EntityAttributeComponent {
5238
5441
  */
5239
5442
  export class EntityHitBlockAfterEvent {
5240
5443
  private constructor();
5444
+ /**
5445
+ * @remarks
5446
+ * Face of the block that was hit.
5447
+ *
5448
+ */
5241
5449
  readonly blockFace: Direction;
5242
5450
  /**
5243
5451
  * @remarks
@@ -6145,13 +6353,26 @@ export class EntityRemovedAfterEvent {
6145
6353
 
6146
6354
  /**
6147
6355
  * @beta
6356
+ * Allows registration for an event that fires when an entity
6357
+ * is removed from the game (for example, unloaded, or a few
6358
+ * seconds after they are dead.)
6148
6359
  */
6149
6360
  export class EntityRemovedAfterEventSignal {
6150
6361
  private constructor();
6151
6362
  /**
6152
6363
  * @remarks
6364
+ * Will call your function every time an entity is removed from
6365
+ * the game.
6366
+ *
6153
6367
  * This function can't be called in read-only mode.
6154
6368
  *
6369
+ * @param callback
6370
+ * Function to call.
6371
+ * @param options
6372
+ * Additional filtering options for this event.
6373
+ * @returns
6374
+ * Returns a closure that can be used in subsequent unsubscribe
6375
+ * operations.
6155
6376
  */
6156
6377
  subscribe(
6157
6378
  callback: (arg: EntityRemovedAfterEvent) => void,
@@ -6159,6 +6380,9 @@ export class EntityRemovedAfterEventSignal {
6159
6380
  ): (arg: EntityRemovedAfterEvent) => void;
6160
6381
  /**
6161
6382
  * @remarks
6383
+ * Unsubscribes your function from subsequent calls when an
6384
+ * entity is removed.
6385
+ *
6162
6386
  * This function can't be called in read-only mode.
6163
6387
  *
6164
6388
  * @throws This function can throw errors.
@@ -6328,6 +6552,8 @@ export class EntitySkinIdComponent extends EntityComponent {
6328
6552
  private constructor();
6329
6553
  /**
6330
6554
  * @remarks
6555
+ * Returns the value of the skin Id identifier of the entity.
6556
+ *
6331
6557
  * This property can't be edited in read-only mode.
6332
6558
  *
6333
6559
  */
@@ -7052,6 +7278,12 @@ export class ItemDefinitionTriggeredAfterEvent {
7052
7278
  *
7053
7279
  */
7054
7280
  readonly eventName: string;
7281
+ /**
7282
+ * @remarks
7283
+ * Related item stack that the definitional change has been
7284
+ * triggered upon.
7285
+ *
7286
+ */
7055
7287
  itemStack: ItemStack;
7056
7288
  /**
7057
7289
  * @remarks
@@ -7794,25 +8026,6 @@ export class ItemType {
7794
8026
  readonly id: string;
7795
8027
  }
7796
8028
 
7797
- /**
7798
- * @beta
7799
- */
7800
- export class ItemTypeIterator implements Iterable<ItemType> {
7801
- private constructor();
7802
- /**
7803
- * @remarks
7804
- * This function can't be called in read-only mode.
7805
- *
7806
- */
7807
- [Symbol.iterator](): Iterator<ItemType>;
7808
- /**
7809
- * @remarks
7810
- * This function can't be called in read-only mode.
7811
- *
7812
- */
7813
- next(): IteratorResult<ItemType>;
7814
- }
7815
-
7816
8029
  /**
7817
8030
  * @beta
7818
8031
  * Returns the set of item types registered within Minecraft.
@@ -7831,7 +8044,7 @@ export class ItemTypes {
7831
8044
  * Minecraft.
7832
8045
  *
7833
8046
  */
7834
- static getAll(): ItemTypeIterator;
8047
+ static getAll(): ItemType[];
7835
8048
  }
7836
8049
 
7837
8050
  /**
@@ -8135,1083 +8348,6 @@ export class MinecraftDimensionTypes {
8135
8348
  static readonly theEnd = 'minecraft:the_end';
8136
8349
  }
8137
8350
 
8138
- /**
8139
- * @beta
8140
- */
8141
- export class MinecraftItemTypes {
8142
- private constructor();
8143
- static readonly acaciaBoat: ItemType;
8144
- static readonly acaciaButton: ItemType;
8145
- static readonly acaciaChestBoat: ItemType;
8146
- static readonly acaciaDoor: ItemType;
8147
- static readonly acaciaFence: ItemType;
8148
- static readonly acaciaFenceGate: ItemType;
8149
- static readonly acaciaHangingSign: ItemType;
8150
- static readonly acaciaLog: ItemType;
8151
- static readonly acaciaPressurePlate: ItemType;
8152
- static readonly acaciaSign: ItemType;
8153
- static readonly acaciaStairs: ItemType;
8154
- static readonly acaciaTrapdoor: ItemType;
8155
- static readonly activatorRail: ItemType;
8156
- static readonly allaySpawnEgg: ItemType;
8157
- static readonly allow: ItemType;
8158
- static readonly amethystBlock: ItemType;
8159
- static readonly amethystCluster: ItemType;
8160
- static readonly amethystShard: ItemType;
8161
- static readonly ancientDebris: ItemType;
8162
- static readonly andesiteStairs: ItemType;
8163
- static readonly anglerPotterySherd: ItemType;
8164
- static readonly anvil: ItemType;
8165
- static readonly apple: ItemType;
8166
- static readonly archerPotterySherd: ItemType;
8167
- static readonly armorStand: ItemType;
8168
- static readonly armsUpPotterySherd: ItemType;
8169
- static readonly arrow: ItemType;
8170
- static readonly axolotlBucket: ItemType;
8171
- static readonly axolotlSpawnEgg: ItemType;
8172
- static readonly azalea: ItemType;
8173
- static readonly azaleaLeaves: ItemType;
8174
- static readonly azaleaLeavesFlowered: ItemType;
8175
- static readonly bakedPotato: ItemType;
8176
- static readonly bamboo: ItemType;
8177
- static readonly bambooBlock: ItemType;
8178
- static readonly bambooButton: ItemType;
8179
- static readonly bambooChestRaft: ItemType;
8180
- static readonly bambooDoor: ItemType;
8181
- static readonly bambooFence: ItemType;
8182
- static readonly bambooFenceGate: ItemType;
8183
- static readonly bambooHangingSign: ItemType;
8184
- static readonly bambooMosaic: ItemType;
8185
- static readonly bambooMosaicSlab: ItemType;
8186
- static readonly bambooMosaicStairs: ItemType;
8187
- static readonly bambooPlanks: ItemType;
8188
- static readonly bambooPressurePlate: ItemType;
8189
- static readonly bambooRaft: ItemType;
8190
- static readonly bambooSign: ItemType;
8191
- static readonly bambooSlab: ItemType;
8192
- static readonly bambooStairs: ItemType;
8193
- static readonly bambooTrapdoor: ItemType;
8194
- static readonly banner: ItemType;
8195
- static readonly bannerPattern: ItemType;
8196
- static readonly barrel: ItemType;
8197
- static readonly barrier: ItemType;
8198
- static readonly basalt: ItemType;
8199
- static readonly batSpawnEgg: ItemType;
8200
- static readonly beacon: ItemType;
8201
- static readonly bed: ItemType;
8202
- static readonly bedrock: ItemType;
8203
- static readonly beef: ItemType;
8204
- static readonly beehive: ItemType;
8205
- static readonly beeNest: ItemType;
8206
- static readonly beeSpawnEgg: ItemType;
8207
- static readonly beetroot: ItemType;
8208
- static readonly beetrootSeeds: ItemType;
8209
- static readonly beetrootSoup: ItemType;
8210
- static readonly bell: ItemType;
8211
- static readonly bigDripleaf: ItemType;
8212
- static readonly birchBoat: ItemType;
8213
- static readonly birchButton: ItemType;
8214
- static readonly birchChestBoat: ItemType;
8215
- static readonly birchDoor: ItemType;
8216
- static readonly birchFence: ItemType;
8217
- static readonly birchFenceGate: ItemType;
8218
- static readonly birchHangingSign: ItemType;
8219
- static readonly birchLog: ItemType;
8220
- static readonly birchPressurePlate: ItemType;
8221
- static readonly birchSign: ItemType;
8222
- static readonly birchStairs: ItemType;
8223
- static readonly birchTrapdoor: ItemType;
8224
- static readonly blackCandle: ItemType;
8225
- static readonly blackCarpet: ItemType;
8226
- static readonly blackConcrete: ItemType;
8227
- static readonly blackDye: ItemType;
8228
- static readonly blackGlazedTerracotta: ItemType;
8229
- static readonly blackShulkerBox: ItemType;
8230
- static readonly blackStainedGlass: ItemType;
8231
- static readonly blackStainedGlassPane: ItemType;
8232
- static readonly blackstone: ItemType;
8233
- static readonly blackstoneSlab: ItemType;
8234
- static readonly blackstoneStairs: ItemType;
8235
- static readonly blackstoneWall: ItemType;
8236
- static readonly blackWool: ItemType;
8237
- static readonly bladePotterySherd: ItemType;
8238
- static readonly blastFurnace: ItemType;
8239
- static readonly blazePowder: ItemType;
8240
- static readonly blazeRod: ItemType;
8241
- static readonly blazeSpawnEgg: ItemType;
8242
- static readonly blueCandle: ItemType;
8243
- static readonly blueCarpet: ItemType;
8244
- static readonly blueConcrete: ItemType;
8245
- static readonly blueDye: ItemType;
8246
- static readonly blueGlazedTerracotta: ItemType;
8247
- static readonly blueIce: ItemType;
8248
- static readonly blueShulkerBox: ItemType;
8249
- static readonly blueStainedGlass: ItemType;
8250
- static readonly blueStainedGlassPane: ItemType;
8251
- static readonly blueWool: ItemType;
8252
- static readonly boat: ItemType;
8253
- static readonly bone: ItemType;
8254
- static readonly boneBlock: ItemType;
8255
- static readonly boneMeal: ItemType;
8256
- static readonly book: ItemType;
8257
- static readonly bookshelf: ItemType;
8258
- static readonly borderBlock: ItemType;
8259
- static readonly bordureIndentedBannerPattern: ItemType;
8260
- static readonly bow: ItemType;
8261
- static readonly bowl: ItemType;
8262
- static readonly brainCoral: ItemType;
8263
- static readonly bread: ItemType;
8264
- static readonly brewerPotterySherd: ItemType;
8265
- static readonly brewingStand: ItemType;
8266
- static readonly brick: ItemType;
8267
- static readonly brickBlock: ItemType;
8268
- static readonly brickStairs: ItemType;
8269
- static readonly brownCandle: ItemType;
8270
- static readonly brownCarpet: ItemType;
8271
- static readonly brownConcrete: ItemType;
8272
- static readonly brownDye: ItemType;
8273
- static readonly brownGlazedTerracotta: ItemType;
8274
- static readonly brownMushroom: ItemType;
8275
- static readonly brownMushroomBlock: ItemType;
8276
- static readonly brownShulkerBox: ItemType;
8277
- static readonly brownStainedGlass: ItemType;
8278
- static readonly brownStainedGlassPane: ItemType;
8279
- static readonly brownWool: ItemType;
8280
- static readonly brush: ItemType;
8281
- static readonly bubbleCoral: ItemType;
8282
- static readonly bucket: ItemType;
8283
- static readonly buddingAmethyst: ItemType;
8284
- static readonly burnPotterySherd: ItemType;
8285
- static readonly cactus: ItemType;
8286
- static readonly cake: ItemType;
8287
- static readonly calcite: ItemType;
8288
- static readonly calibratedSculkSensor: ItemType;
8289
- static readonly camelSpawnEgg: ItemType;
8290
- static readonly campfire: ItemType;
8291
- static readonly candle: ItemType;
8292
- static readonly carpet: ItemType;
8293
- static readonly carrot: ItemType;
8294
- static readonly carrotOnAStick: ItemType;
8295
- static readonly cartographyTable: ItemType;
8296
- static readonly carvedPumpkin: ItemType;
8297
- static readonly catSpawnEgg: ItemType;
8298
- static readonly cauldron: ItemType;
8299
- static readonly caveSpiderSpawnEgg: ItemType;
8300
- static readonly chain: ItemType;
8301
- static readonly chainCommandBlock: ItemType;
8302
- static readonly chainmailBoots: ItemType;
8303
- static readonly chainmailChestplate: ItemType;
8304
- static readonly chainmailHelmet: ItemType;
8305
- static readonly chainmailLeggings: ItemType;
8306
- static readonly charcoal: ItemType;
8307
- static readonly cherryBoat: ItemType;
8308
- static readonly cherryButton: ItemType;
8309
- static readonly cherryChestBoat: ItemType;
8310
- static readonly cherryDoor: ItemType;
8311
- static readonly cherryFence: ItemType;
8312
- static readonly cherryFenceGate: ItemType;
8313
- static readonly cherryHangingSign: ItemType;
8314
- static readonly cherryLeaves: ItemType;
8315
- static readonly cherryLog: ItemType;
8316
- static readonly cherryPlanks: ItemType;
8317
- static readonly cherryPressurePlate: ItemType;
8318
- static readonly cherrySapling: ItemType;
8319
- static readonly cherrySign: ItemType;
8320
- static readonly cherrySlab: ItemType;
8321
- static readonly cherryStairs: ItemType;
8322
- static readonly cherryTrapdoor: ItemType;
8323
- static readonly cherryWood: ItemType;
8324
- static readonly chest: ItemType;
8325
- static readonly chestBoat: ItemType;
8326
- static readonly chestMinecart: ItemType;
8327
- static readonly chicken: ItemType;
8328
- static readonly chickenSpawnEgg: ItemType;
8329
- static readonly chiseledBookshelf: ItemType;
8330
- static readonly chiseledDeepslate: ItemType;
8331
- static readonly chiseledNetherBricks: ItemType;
8332
- static readonly chiseledPolishedBlackstone: ItemType;
8333
- static readonly chorusFlower: ItemType;
8334
- static readonly chorusFruit: ItemType;
8335
- static readonly chorusPlant: ItemType;
8336
- static readonly clay: ItemType;
8337
- static readonly clayBall: ItemType;
8338
- static readonly clock: ItemType;
8339
- static readonly coal: ItemType;
8340
- static readonly coalBlock: ItemType;
8341
- static readonly coalOre: ItemType;
8342
- static readonly coastArmorTrimSmithingTemplate: ItemType;
8343
- static readonly cobbledDeepslate: ItemType;
8344
- static readonly cobbledDeepslateSlab: ItemType;
8345
- static readonly cobbledDeepslateStairs: ItemType;
8346
- static readonly cobbledDeepslateWall: ItemType;
8347
- static readonly cobblestone: ItemType;
8348
- static readonly cobblestoneWall: ItemType;
8349
- static readonly cocoaBeans: ItemType;
8350
- static readonly cod: ItemType;
8351
- static readonly codBucket: ItemType;
8352
- static readonly codSpawnEgg: ItemType;
8353
- static readonly commandBlock: ItemType;
8354
- static readonly commandBlockMinecart: ItemType;
8355
- static readonly comparator: ItemType;
8356
- static readonly compass: ItemType;
8357
- static readonly composter: ItemType;
8358
- static readonly concrete: ItemType;
8359
- static readonly concretePowder: ItemType;
8360
- static readonly conduit: ItemType;
8361
- static readonly cookedBeef: ItemType;
8362
- static readonly cookedChicken: ItemType;
8363
- static readonly cookedCod: ItemType;
8364
- static readonly cookedMutton: ItemType;
8365
- static readonly cookedPorkchop: ItemType;
8366
- static readonly cookedRabbit: ItemType;
8367
- static readonly cookedSalmon: ItemType;
8368
- static readonly cookie: ItemType;
8369
- static readonly copperBlock: ItemType;
8370
- static readonly copperIngot: ItemType;
8371
- static readonly copperOre: ItemType;
8372
- static readonly coral: ItemType;
8373
- static readonly coralBlock: ItemType;
8374
- static readonly coralFan: ItemType;
8375
- static readonly coralFanDead: ItemType;
8376
- static readonly cowSpawnEgg: ItemType;
8377
- static readonly crackedDeepslateBricks: ItemType;
8378
- static readonly crackedDeepslateTiles: ItemType;
8379
- static readonly crackedNetherBricks: ItemType;
8380
- static readonly crackedPolishedBlackstoneBricks: ItemType;
8381
- static readonly craftingTable: ItemType;
8382
- static readonly creeperBannerPattern: ItemType;
8383
- static readonly creeperSpawnEgg: ItemType;
8384
- static readonly crimsonButton: ItemType;
8385
- static readonly crimsonDoor: ItemType;
8386
- static readonly crimsonFence: ItemType;
8387
- static readonly crimsonFenceGate: ItemType;
8388
- static readonly crimsonFungus: ItemType;
8389
- static readonly crimsonHangingSign: ItemType;
8390
- static readonly crimsonHyphae: ItemType;
8391
- static readonly crimsonNylium: ItemType;
8392
- static readonly crimsonPlanks: ItemType;
8393
- static readonly crimsonPressurePlate: ItemType;
8394
- static readonly crimsonRoots: ItemType;
8395
- static readonly crimsonSign: ItemType;
8396
- static readonly crimsonSlab: ItemType;
8397
- static readonly crimsonStairs: ItemType;
8398
- static readonly crimsonStem: ItemType;
8399
- static readonly crimsonTrapdoor: ItemType;
8400
- static readonly crossbow: ItemType;
8401
- static readonly cryingObsidian: ItemType;
8402
- static readonly cutCopper: ItemType;
8403
- static readonly cutCopperSlab: ItemType;
8404
- static readonly cutCopperStairs: ItemType;
8405
- static readonly cyanCandle: ItemType;
8406
- static readonly cyanCarpet: ItemType;
8407
- static readonly cyanConcrete: ItemType;
8408
- static readonly cyanDye: ItemType;
8409
- static readonly cyanGlazedTerracotta: ItemType;
8410
- static readonly cyanShulkerBox: ItemType;
8411
- static readonly cyanStainedGlass: ItemType;
8412
- static readonly cyanStainedGlassPane: ItemType;
8413
- static readonly cyanWool: ItemType;
8414
- static readonly dangerPotterySherd: ItemType;
8415
- static readonly darkOakBoat: ItemType;
8416
- static readonly darkOakButton: ItemType;
8417
- static readonly darkOakChestBoat: ItemType;
8418
- static readonly darkOakDoor: ItemType;
8419
- static readonly darkOakFence: ItemType;
8420
- static readonly darkOakFenceGate: ItemType;
8421
- static readonly darkOakHangingSign: ItemType;
8422
- static readonly darkOakLog: ItemType;
8423
- static readonly darkOakPressurePlate: ItemType;
8424
- static readonly darkOakSign: ItemType;
8425
- static readonly darkOakStairs: ItemType;
8426
- static readonly darkOakTrapdoor: ItemType;
8427
- static readonly darkPrismarineStairs: ItemType;
8428
- static readonly daylightDetector: ItemType;
8429
- static readonly deadBrainCoral: ItemType;
8430
- static readonly deadBubbleCoral: ItemType;
8431
- static readonly deadbush: ItemType;
8432
- static readonly deadFireCoral: ItemType;
8433
- static readonly deadHornCoral: ItemType;
8434
- static readonly deadTubeCoral: ItemType;
8435
- static readonly decoratedPot: ItemType;
8436
- static readonly deepslate: ItemType;
8437
- static readonly deepslateBricks: ItemType;
8438
- static readonly deepslateBrickSlab: ItemType;
8439
- static readonly deepslateBrickStairs: ItemType;
8440
- static readonly deepslateBrickWall: ItemType;
8441
- static readonly deepslateCoalOre: ItemType;
8442
- static readonly deepslateCopperOre: ItemType;
8443
- static readonly deepslateDiamondOre: ItemType;
8444
- static readonly deepslateEmeraldOre: ItemType;
8445
- static readonly deepslateGoldOre: ItemType;
8446
- static readonly deepslateIronOre: ItemType;
8447
- static readonly deepslateLapisOre: ItemType;
8448
- static readonly deepslateRedstoneOre: ItemType;
8449
- static readonly deepslateTiles: ItemType;
8450
- static readonly deepslateTileSlab: ItemType;
8451
- static readonly deepslateTileStairs: ItemType;
8452
- static readonly deepslateTileWall: ItemType;
8453
- static readonly deny: ItemType;
8454
- static readonly detectorRail: ItemType;
8455
- static readonly diamond: ItemType;
8456
- static readonly diamondAxe: ItemType;
8457
- static readonly diamondBlock: ItemType;
8458
- static readonly diamondBoots: ItemType;
8459
- static readonly diamondChestplate: ItemType;
8460
- static readonly diamondHelmet: ItemType;
8461
- static readonly diamondHoe: ItemType;
8462
- static readonly diamondHorseArmor: ItemType;
8463
- static readonly diamondLeggings: ItemType;
8464
- static readonly diamondOre: ItemType;
8465
- static readonly diamondPickaxe: ItemType;
8466
- static readonly diamondShovel: ItemType;
8467
- static readonly diamondSword: ItemType;
8468
- static readonly dioriteStairs: ItemType;
8469
- static readonly dirt: ItemType;
8470
- static readonly dirtWithRoots: ItemType;
8471
- static readonly discFragment5: ItemType;
8472
- static readonly dispenser: ItemType;
8473
- static readonly dolphinSpawnEgg: ItemType;
8474
- static readonly donkeySpawnEgg: ItemType;
8475
- static readonly doublePlant: ItemType;
8476
- static readonly dragonBreath: ItemType;
8477
- static readonly dragonEgg: ItemType;
8478
- static readonly driedKelp: ItemType;
8479
- static readonly driedKelpBlock: ItemType;
8480
- static readonly dripstoneBlock: ItemType;
8481
- static readonly dropper: ItemType;
8482
- static readonly drownedSpawnEgg: ItemType;
8483
- static readonly duneArmorTrimSmithingTemplate: ItemType;
8484
- static readonly dye: ItemType;
8485
- static readonly echoShard: ItemType;
8486
- static readonly egg: ItemType;
8487
- static readonly elderGuardianSpawnEgg: ItemType;
8488
- static readonly elytra: ItemType;
8489
- static readonly emerald: ItemType;
8490
- static readonly emeraldBlock: ItemType;
8491
- static readonly emeraldOre: ItemType;
8492
- static readonly emptyMap: ItemType;
8493
- static readonly enchantedBook: ItemType;
8494
- static readonly enchantedGoldenApple: ItemType;
8495
- static readonly enchantingTable: ItemType;
8496
- static readonly endBricks: ItemType;
8497
- static readonly endBrickStairs: ItemType;
8498
- static readonly endCrystal: ItemType;
8499
- static readonly enderChest: ItemType;
8500
- static readonly enderDragonSpawnEgg: ItemType;
8501
- static readonly enderEye: ItemType;
8502
- static readonly endermanSpawnEgg: ItemType;
8503
- static readonly endermiteSpawnEgg: ItemType;
8504
- static readonly enderPearl: ItemType;
8505
- static readonly endPortalFrame: ItemType;
8506
- static readonly endRod: ItemType;
8507
- static readonly endStone: ItemType;
8508
- static readonly evokerSpawnEgg: ItemType;
8509
- static readonly experienceBottle: ItemType;
8510
- static readonly explorerPotterySherd: ItemType;
8511
- static readonly exposedCopper: ItemType;
8512
- static readonly exposedCutCopper: ItemType;
8513
- static readonly exposedCutCopperSlab: ItemType;
8514
- static readonly exposedCutCopperStairs: ItemType;
8515
- static readonly eyeArmorTrimSmithingTemplate: ItemType;
8516
- static readonly farmland: ItemType;
8517
- static readonly feather: ItemType;
8518
- static readonly fence: ItemType;
8519
- static readonly fenceGate: ItemType;
8520
- static readonly fermentedSpiderEye: ItemType;
8521
- static readonly fieldMasonedBannerPattern: ItemType;
8522
- static readonly filledMap: ItemType;
8523
- static readonly fireCharge: ItemType;
8524
- static readonly fireCoral: ItemType;
8525
- static readonly fireworkRocket: ItemType;
8526
- static readonly fireworkStar: ItemType;
8527
- static readonly fishingRod: ItemType;
8528
- static readonly fletchingTable: ItemType;
8529
- static readonly flint: ItemType;
8530
- static readonly flintAndSteel: ItemType;
8531
- static readonly flowerBannerPattern: ItemType;
8532
- static readonly floweringAzalea: ItemType;
8533
- static readonly flowerPot: ItemType;
8534
- static readonly foxSpawnEgg: ItemType;
8535
- static readonly frame: ItemType;
8536
- static readonly friendPotterySherd: ItemType;
8537
- static readonly frogSpawn: ItemType;
8538
- static readonly frogSpawnEgg: ItemType;
8539
- static readonly frostedIce: ItemType;
8540
- static readonly furnace: ItemType;
8541
- static readonly ghastSpawnEgg: ItemType;
8542
- static readonly ghastTear: ItemType;
8543
- static readonly gildedBlackstone: ItemType;
8544
- static readonly glass: ItemType;
8545
- static readonly glassBottle: ItemType;
8546
- static readonly glassPane: ItemType;
8547
- static readonly glisteringMelonSlice: ItemType;
8548
- static readonly globeBannerPattern: ItemType;
8549
- static readonly glowBerries: ItemType;
8550
- static readonly glowFrame: ItemType;
8551
- static readonly glowInkSac: ItemType;
8552
- static readonly glowLichen: ItemType;
8553
- static readonly glowSquidSpawnEgg: ItemType;
8554
- static readonly glowstone: ItemType;
8555
- static readonly glowstoneDust: ItemType;
8556
- static readonly goatHorn: ItemType;
8557
- static readonly goatSpawnEgg: ItemType;
8558
- static readonly goldBlock: ItemType;
8559
- static readonly goldenApple: ItemType;
8560
- static readonly goldenAxe: ItemType;
8561
- static readonly goldenBoots: ItemType;
8562
- static readonly goldenCarrot: ItemType;
8563
- static readonly goldenChestplate: ItemType;
8564
- static readonly goldenHelmet: ItemType;
8565
- static readonly goldenHoe: ItemType;
8566
- static readonly goldenHorseArmor: ItemType;
8567
- static readonly goldenLeggings: ItemType;
8568
- static readonly goldenPickaxe: ItemType;
8569
- static readonly goldenRail: ItemType;
8570
- static readonly goldenShovel: ItemType;
8571
- static readonly goldenSword: ItemType;
8572
- static readonly goldIngot: ItemType;
8573
- static readonly goldNugget: ItemType;
8574
- static readonly goldOre: ItemType;
8575
- static readonly graniteStairs: ItemType;
8576
- static readonly grass: ItemType;
8577
- static readonly grassPath: ItemType;
8578
- static readonly gravel: ItemType;
8579
- static readonly grayCandle: ItemType;
8580
- static readonly grayCarpet: ItemType;
8581
- static readonly grayConcrete: ItemType;
8582
- static readonly grayDye: ItemType;
8583
- static readonly grayGlazedTerracotta: ItemType;
8584
- static readonly grayShulkerBox: ItemType;
8585
- static readonly grayStainedGlass: ItemType;
8586
- static readonly grayStainedGlassPane: ItemType;
8587
- static readonly grayWool: ItemType;
8588
- static readonly greenCandle: ItemType;
8589
- static readonly greenCarpet: ItemType;
8590
- static readonly greenConcrete: ItemType;
8591
- static readonly greenDye: ItemType;
8592
- static readonly greenGlazedTerracotta: ItemType;
8593
- static readonly greenShulkerBox: ItemType;
8594
- static readonly greenStainedGlass: ItemType;
8595
- static readonly greenStainedGlassPane: ItemType;
8596
- static readonly greenWool: ItemType;
8597
- static readonly grindstone: ItemType;
8598
- static readonly guardianSpawnEgg: ItemType;
8599
- static readonly gunpowder: ItemType;
8600
- static readonly hangingRoots: ItemType;
8601
- static readonly hardenedClay: ItemType;
8602
- static readonly hayBlock: ItemType;
8603
- static readonly heartbreakPotterySherd: ItemType;
8604
- static readonly heartOfTheSea: ItemType;
8605
- static readonly heartPotterySherd: ItemType;
8606
- static readonly heavyWeightedPressurePlate: ItemType;
8607
- static readonly hoglinSpawnEgg: ItemType;
8608
- static readonly honeyBlock: ItemType;
8609
- static readonly honeyBottle: ItemType;
8610
- static readonly honeycomb: ItemType;
8611
- static readonly honeycombBlock: ItemType;
8612
- static readonly hopper: ItemType;
8613
- static readonly hopperMinecart: ItemType;
8614
- static readonly hornCoral: ItemType;
8615
- static readonly horseSpawnEgg: ItemType;
8616
- static readonly hostArmorTrimSmithingTemplate: ItemType;
8617
- static readonly howlPotterySherd: ItemType;
8618
- static readonly huskSpawnEgg: ItemType;
8619
- static readonly ice: ItemType;
8620
- static readonly infestedDeepslate: ItemType;
8621
- static readonly inkSac: ItemType;
8622
- static readonly ironAxe: ItemType;
8623
- static readonly ironBars: ItemType;
8624
- static readonly ironBlock: ItemType;
8625
- static readonly ironBoots: ItemType;
8626
- static readonly ironChestplate: ItemType;
8627
- static readonly ironDoor: ItemType;
8628
- static readonly ironGolemSpawnEgg: ItemType;
8629
- static readonly ironHelmet: ItemType;
8630
- static readonly ironHoe: ItemType;
8631
- static readonly ironHorseArmor: ItemType;
8632
- static readonly ironIngot: ItemType;
8633
- static readonly ironLeggings: ItemType;
8634
- static readonly ironNugget: ItemType;
8635
- static readonly ironOre: ItemType;
8636
- static readonly ironPickaxe: ItemType;
8637
- static readonly ironShovel: ItemType;
8638
- static readonly ironSword: ItemType;
8639
- static readonly ironTrapdoor: ItemType;
8640
- static readonly jigsaw: ItemType;
8641
- static readonly jukebox: ItemType;
8642
- static readonly jungleBoat: ItemType;
8643
- static readonly jungleButton: ItemType;
8644
- static readonly jungleChestBoat: ItemType;
8645
- static readonly jungleDoor: ItemType;
8646
- static readonly jungleFence: ItemType;
8647
- static readonly jungleFenceGate: ItemType;
8648
- static readonly jungleHangingSign: ItemType;
8649
- static readonly jungleLog: ItemType;
8650
- static readonly junglePressurePlate: ItemType;
8651
- static readonly jungleSign: ItemType;
8652
- static readonly jungleStairs: ItemType;
8653
- static readonly jungleTrapdoor: ItemType;
8654
- static readonly kelp: ItemType;
8655
- static readonly ladder: ItemType;
8656
- static readonly lantern: ItemType;
8657
- static readonly lapisBlock: ItemType;
8658
- static readonly lapisLazuli: ItemType;
8659
- static readonly lapisOre: ItemType;
8660
- static readonly largeAmethystBud: ItemType;
8661
- static readonly lavaBucket: ItemType;
8662
- static readonly lead: ItemType;
8663
- static readonly leather: ItemType;
8664
- static readonly leatherBoots: ItemType;
8665
- static readonly leatherChestplate: ItemType;
8666
- static readonly leatherHelmet: ItemType;
8667
- static readonly leatherHorseArmor: ItemType;
8668
- static readonly leatherLeggings: ItemType;
8669
- static readonly leaves: ItemType;
8670
- static readonly leaves2: ItemType;
8671
- static readonly lectern: ItemType;
8672
- static readonly lever: ItemType;
8673
- static readonly lightBlock: ItemType;
8674
- static readonly lightBlueCandle: ItemType;
8675
- static readonly lightBlueCarpet: ItemType;
8676
- static readonly lightBlueConcrete: ItemType;
8677
- static readonly lightBlueDye: ItemType;
8678
- static readonly lightBlueGlazedTerracotta: ItemType;
8679
- static readonly lightBlueShulkerBox: ItemType;
8680
- static readonly lightBlueStainedGlass: ItemType;
8681
- static readonly lightBlueStainedGlassPane: ItemType;
8682
- static readonly lightBlueWool: ItemType;
8683
- static readonly lightGrayCandle: ItemType;
8684
- static readonly lightGrayCarpet: ItemType;
8685
- static readonly lightGrayConcrete: ItemType;
8686
- static readonly lightGrayDye: ItemType;
8687
- static readonly lightGrayShulkerBox: ItemType;
8688
- static readonly lightGrayStainedGlass: ItemType;
8689
- static readonly lightGrayStainedGlassPane: ItemType;
8690
- static readonly lightGrayWool: ItemType;
8691
- static readonly lightningRod: ItemType;
8692
- static readonly lightWeightedPressurePlate: ItemType;
8693
- static readonly limeCandle: ItemType;
8694
- static readonly limeCarpet: ItemType;
8695
- static readonly limeConcrete: ItemType;
8696
- static readonly limeDye: ItemType;
8697
- static readonly limeGlazedTerracotta: ItemType;
8698
- static readonly limeShulkerBox: ItemType;
8699
- static readonly limeStainedGlass: ItemType;
8700
- static readonly limeStainedGlassPane: ItemType;
8701
- static readonly limeWool: ItemType;
8702
- static readonly lingeringPotion: ItemType;
8703
- static readonly litPumpkin: ItemType;
8704
- static readonly llamaSpawnEgg: ItemType;
8705
- static readonly lodestone: ItemType;
8706
- static readonly lodestoneCompass: ItemType;
8707
- static readonly log: ItemType;
8708
- static readonly log2: ItemType;
8709
- static readonly loom: ItemType;
8710
- static readonly magentaCandle: ItemType;
8711
- static readonly magentaCarpet: ItemType;
8712
- static readonly magentaConcrete: ItemType;
8713
- static readonly magentaDye: ItemType;
8714
- static readonly magentaGlazedTerracotta: ItemType;
8715
- static readonly magentaShulkerBox: ItemType;
8716
- static readonly magentaStainedGlass: ItemType;
8717
- static readonly magentaStainedGlassPane: ItemType;
8718
- static readonly magentaWool: ItemType;
8719
- static readonly magma: ItemType;
8720
- static readonly magmaCream: ItemType;
8721
- static readonly magmaCubeSpawnEgg: ItemType;
8722
- static readonly mangroveBoat: ItemType;
8723
- static readonly mangroveButton: ItemType;
8724
- static readonly mangroveChestBoat: ItemType;
8725
- static readonly mangroveDoor: ItemType;
8726
- static readonly mangroveFence: ItemType;
8727
- static readonly mangroveFenceGate: ItemType;
8728
- static readonly mangroveHangingSign: ItemType;
8729
- static readonly mangroveLeaves: ItemType;
8730
- static readonly mangroveLog: ItemType;
8731
- static readonly mangrovePlanks: ItemType;
8732
- static readonly mangrovePressurePlate: ItemType;
8733
- static readonly mangrovePropagule: ItemType;
8734
- static readonly mangroveRoots: ItemType;
8735
- static readonly mangroveSign: ItemType;
8736
- static readonly mangroveSlab: ItemType;
8737
- static readonly mangroveStairs: ItemType;
8738
- static readonly mangroveTrapdoor: ItemType;
8739
- static readonly mangroveWood: ItemType;
8740
- static readonly mediumAmethystBud: ItemType;
8741
- static readonly melonBlock: ItemType;
8742
- static readonly melonSeeds: ItemType;
8743
- static readonly melonSlice: ItemType;
8744
- static readonly milkBucket: ItemType;
8745
- static readonly minecart: ItemType;
8746
- static readonly minerPotterySherd: ItemType;
8747
- static readonly mobSpawner: ItemType;
8748
- static readonly mojangBannerPattern: ItemType;
8749
- static readonly monsterEgg: ItemType;
8750
- static readonly mooshroomSpawnEgg: ItemType;
8751
- static readonly mossBlock: ItemType;
8752
- static readonly mossCarpet: ItemType;
8753
- static readonly mossyCobblestone: ItemType;
8754
- static readonly mossyCobblestoneStairs: ItemType;
8755
- static readonly mossyStoneBrickStairs: ItemType;
8756
- static readonly mournerPotterySherd: ItemType;
8757
- static readonly mud: ItemType;
8758
- static readonly mudBricks: ItemType;
8759
- static readonly mudBrickSlab: ItemType;
8760
- static readonly mudBrickStairs: ItemType;
8761
- static readonly mudBrickWall: ItemType;
8762
- static readonly muddyMangroveRoots: ItemType;
8763
- static readonly muleSpawnEgg: ItemType;
8764
- static readonly mushroomStew: ItemType;
8765
- static readonly musicDisc11: ItemType;
8766
- static readonly musicDisc13: ItemType;
8767
- static readonly musicDisc5: ItemType;
8768
- static readonly musicDiscBlocks: ItemType;
8769
- static readonly musicDiscCat: ItemType;
8770
- static readonly musicDiscChirp: ItemType;
8771
- static readonly musicDiscFar: ItemType;
8772
- static readonly musicDiscMall: ItemType;
8773
- static readonly musicDiscMellohi: ItemType;
8774
- static readonly musicDiscOtherside: ItemType;
8775
- static readonly musicDiscPigstep: ItemType;
8776
- static readonly musicDiscRelic: ItemType;
8777
- static readonly musicDiscStal: ItemType;
8778
- static readonly musicDiscStrad: ItemType;
8779
- static readonly musicDiscWait: ItemType;
8780
- static readonly musicDiscWard: ItemType;
8781
- static readonly mutton: ItemType;
8782
- static readonly mycelium: ItemType;
8783
- static readonly nameTag: ItemType;
8784
- static readonly nautilusShell: ItemType;
8785
- static readonly netherbrick: ItemType;
8786
- static readonly netherBrick: ItemType;
8787
- static readonly netherBrickFence: ItemType;
8788
- static readonly netherBrickStairs: ItemType;
8789
- static readonly netherGoldOre: ItemType;
8790
- static readonly netheriteAxe: ItemType;
8791
- static readonly netheriteBlock: ItemType;
8792
- static readonly netheriteBoots: ItemType;
8793
- static readonly netheriteChestplate: ItemType;
8794
- static readonly netheriteHelmet: ItemType;
8795
- static readonly netheriteHoe: ItemType;
8796
- static readonly netheriteIngot: ItemType;
8797
- static readonly netheriteLeggings: ItemType;
8798
- static readonly netheritePickaxe: ItemType;
8799
- static readonly netheriteScrap: ItemType;
8800
- static readonly netheriteShovel: ItemType;
8801
- static readonly netheriteSword: ItemType;
8802
- static readonly netheriteUpgradeSmithingTemplate: ItemType;
8803
- static readonly netherrack: ItemType;
8804
- static readonly netherSprouts: ItemType;
8805
- static readonly netherStar: ItemType;
8806
- static readonly netherWart: ItemType;
8807
- static readonly netherWartBlock: ItemType;
8808
- static readonly normalStoneStairs: ItemType;
8809
- static readonly noteblock: ItemType;
8810
- static readonly oakBoat: ItemType;
8811
- static readonly oakChestBoat: ItemType;
8812
- static readonly oakFence: ItemType;
8813
- static readonly oakHangingSign: ItemType;
8814
- static readonly oakLog: ItemType;
8815
- static readonly oakSign: ItemType;
8816
- static readonly oakStairs: ItemType;
8817
- static readonly observer: ItemType;
8818
- static readonly obsidian: ItemType;
8819
- static readonly ocelotSpawnEgg: ItemType;
8820
- static readonly ochreFroglight: ItemType;
8821
- static readonly orangeCandle: ItemType;
8822
- static readonly orangeCarpet: ItemType;
8823
- static readonly orangeConcrete: ItemType;
8824
- static readonly orangeDye: ItemType;
8825
- static readonly orangeGlazedTerracotta: ItemType;
8826
- static readonly orangeShulkerBox: ItemType;
8827
- static readonly orangeStainedGlass: ItemType;
8828
- static readonly orangeStainedGlassPane: ItemType;
8829
- static readonly orangeWool: ItemType;
8830
- static readonly oxidizedCopper: ItemType;
8831
- static readonly oxidizedCutCopper: ItemType;
8832
- static readonly oxidizedCutCopperSlab: ItemType;
8833
- static readonly oxidizedCutCopperStairs: ItemType;
8834
- static readonly packedIce: ItemType;
8835
- static readonly packedMud: ItemType;
8836
- static readonly painting: ItemType;
8837
- static readonly pandaSpawnEgg: ItemType;
8838
- static readonly paper: ItemType;
8839
- static readonly parrotSpawnEgg: ItemType;
8840
- static readonly pearlescentFroglight: ItemType;
8841
- static readonly phantomMembrane: ItemType;
8842
- static readonly phantomSpawnEgg: ItemType;
8843
- static readonly piglinBannerPattern: ItemType;
8844
- static readonly piglinBruteSpawnEgg: ItemType;
8845
- static readonly piglinSpawnEgg: ItemType;
8846
- static readonly pigSpawnEgg: ItemType;
8847
- static readonly pillagerSpawnEgg: ItemType;
8848
- static readonly pinkCandle: ItemType;
8849
- static readonly pinkCarpet: ItemType;
8850
- static readonly pinkConcrete: ItemType;
8851
- static readonly pinkDye: ItemType;
8852
- static readonly pinkGlazedTerracotta: ItemType;
8853
- static readonly pinkPetals: ItemType;
8854
- static readonly pinkShulkerBox: ItemType;
8855
- static readonly pinkStainedGlass: ItemType;
8856
- static readonly pinkStainedGlassPane: ItemType;
8857
- static readonly pinkWool: ItemType;
8858
- static readonly piston: ItemType;
8859
- static readonly pitcherPlant: ItemType;
8860
- static readonly pitcherPod: ItemType;
8861
- static readonly planks: ItemType;
8862
- static readonly plentyPotterySherd: ItemType;
8863
- static readonly podzol: ItemType;
8864
- static readonly pointedDripstone: ItemType;
8865
- static readonly poisonousPotato: ItemType;
8866
- static readonly polarBearSpawnEgg: ItemType;
8867
- static readonly polishedAndesiteStairs: ItemType;
8868
- static readonly polishedBasalt: ItemType;
8869
- static readonly polishedBlackstone: ItemType;
8870
- static readonly polishedBlackstoneBricks: ItemType;
8871
- static readonly polishedBlackstoneBrickSlab: ItemType;
8872
- static readonly polishedBlackstoneBrickStairs: ItemType;
8873
- static readonly polishedBlackstoneBrickWall: ItemType;
8874
- static readonly polishedBlackstoneButton: ItemType;
8875
- static readonly polishedBlackstonePressurePlate: ItemType;
8876
- static readonly polishedBlackstoneSlab: ItemType;
8877
- static readonly polishedBlackstoneStairs: ItemType;
8878
- static readonly polishedBlackstoneWall: ItemType;
8879
- static readonly polishedDeepslate: ItemType;
8880
- static readonly polishedDeepslateSlab: ItemType;
8881
- static readonly polishedDeepslateStairs: ItemType;
8882
- static readonly polishedDeepslateWall: ItemType;
8883
- static readonly polishedDioriteStairs: ItemType;
8884
- static readonly polishedGraniteStairs: ItemType;
8885
- static readonly poppedChorusFruit: ItemType;
8886
- static readonly porkchop: ItemType;
8887
- static readonly potato: ItemType;
8888
- static readonly potion: ItemType;
8889
- static readonly powderSnowBucket: ItemType;
8890
- static readonly prismarine: ItemType;
8891
- static readonly prismarineBricksStairs: ItemType;
8892
- static readonly prismarineCrystals: ItemType;
8893
- static readonly prismarineShard: ItemType;
8894
- static readonly prismarineStairs: ItemType;
8895
- static readonly prizePotterySherd: ItemType;
8896
- static readonly pufferfish: ItemType;
8897
- static readonly pufferfishBucket: ItemType;
8898
- static readonly pufferfishSpawnEgg: ItemType;
8899
- static readonly pumpkin: ItemType;
8900
- static readonly pumpkinPie: ItemType;
8901
- static readonly pumpkinSeeds: ItemType;
8902
- static readonly purpleCandle: ItemType;
8903
- static readonly purpleCarpet: ItemType;
8904
- static readonly purpleConcrete: ItemType;
8905
- static readonly purpleDye: ItemType;
8906
- static readonly purpleGlazedTerracotta: ItemType;
8907
- static readonly purpleShulkerBox: ItemType;
8908
- static readonly purpleStainedGlass: ItemType;
8909
- static readonly purpleStainedGlassPane: ItemType;
8910
- static readonly purpleWool: ItemType;
8911
- static readonly purpurBlock: ItemType;
8912
- static readonly purpurStairs: ItemType;
8913
- static readonly quartz: ItemType;
8914
- static readonly quartzBlock: ItemType;
8915
- static readonly quartzBricks: ItemType;
8916
- static readonly quartzOre: ItemType;
8917
- static readonly quartzStairs: ItemType;
8918
- static readonly rabbit: ItemType;
8919
- static readonly rabbitFoot: ItemType;
8920
- static readonly rabbitHide: ItemType;
8921
- static readonly rabbitSpawnEgg: ItemType;
8922
- static readonly rabbitStew: ItemType;
8923
- static readonly rail: ItemType;
8924
- static readonly raiserArmorTrimSmithingTemplate: ItemType;
8925
- static readonly ravagerSpawnEgg: ItemType;
8926
- static readonly rawCopper: ItemType;
8927
- static readonly rawCopperBlock: ItemType;
8928
- static readonly rawGold: ItemType;
8929
- static readonly rawGoldBlock: ItemType;
8930
- static readonly rawIron: ItemType;
8931
- static readonly rawIronBlock: ItemType;
8932
- static readonly recoveryCompass: ItemType;
8933
- static readonly redCandle: ItemType;
8934
- static readonly redCarpet: ItemType;
8935
- static readonly redConcrete: ItemType;
8936
- static readonly redDye: ItemType;
8937
- static readonly redFlower: ItemType;
8938
- static readonly redGlazedTerracotta: ItemType;
8939
- static readonly redMushroom: ItemType;
8940
- static readonly redMushroomBlock: ItemType;
8941
- static readonly redNetherBrick: ItemType;
8942
- static readonly redNetherBrickStairs: ItemType;
8943
- static readonly redSandstone: ItemType;
8944
- static readonly redSandstoneStairs: ItemType;
8945
- static readonly redShulkerBox: ItemType;
8946
- static readonly redStainedGlass: ItemType;
8947
- static readonly redStainedGlassPane: ItemType;
8948
- static readonly redstone: ItemType;
8949
- static readonly redstoneBlock: ItemType;
8950
- static readonly redstoneLamp: ItemType;
8951
- static readonly redstoneOre: ItemType;
8952
- static readonly redstoneTorch: ItemType;
8953
- static readonly redWool: ItemType;
8954
- static readonly reinforcedDeepslate: ItemType;
8955
- static readonly repeater: ItemType;
8956
- static readonly repeatingCommandBlock: ItemType;
8957
- static readonly respawnAnchor: ItemType;
8958
- static readonly ribArmorTrimSmithingTemplate: ItemType;
8959
- static readonly rottenFlesh: ItemType;
8960
- static readonly saddle: ItemType;
8961
- static readonly salmon: ItemType;
8962
- static readonly salmonBucket: ItemType;
8963
- static readonly salmonSpawnEgg: ItemType;
8964
- static readonly sand: ItemType;
8965
- static readonly sandstone: ItemType;
8966
- static readonly sandstoneStairs: ItemType;
8967
- static readonly sapling: ItemType;
8968
- static readonly scaffolding: ItemType;
8969
- static readonly sculk: ItemType;
8970
- static readonly sculkCatalyst: ItemType;
8971
- static readonly sculkSensor: ItemType;
8972
- static readonly sculkShrieker: ItemType;
8973
- static readonly sculkVein: ItemType;
8974
- static readonly scute: ItemType;
8975
- static readonly seagrass: ItemType;
8976
- static readonly seaLantern: ItemType;
8977
- static readonly seaPickle: ItemType;
8978
- static readonly sentryArmorTrimSmithingTemplate: ItemType;
8979
- static readonly shaperArmorTrimSmithingTemplate: ItemType;
8980
- static readonly sheafPotterySherd: ItemType;
8981
- static readonly shears: ItemType;
8982
- static readonly sheepSpawnEgg: ItemType;
8983
- static readonly shelterPotterySherd: ItemType;
8984
- static readonly shield: ItemType;
8985
- static readonly shroomlight: ItemType;
8986
- static readonly shulkerBox: ItemType;
8987
- static readonly shulkerShell: ItemType;
8988
- static readonly shulkerSpawnEgg: ItemType;
8989
- static readonly silenceArmorTrimSmithingTemplate: ItemType;
8990
- static readonly silverfishSpawnEgg: ItemType;
8991
- static readonly silverGlazedTerracotta: ItemType;
8992
- static readonly skeletonHorseSpawnEgg: ItemType;
8993
- static readonly skeletonSpawnEgg: ItemType;
8994
- static readonly skull: ItemType;
8995
- static readonly skullBannerPattern: ItemType;
8996
- static readonly skullPotterySherd: ItemType;
8997
- static readonly slime: ItemType;
8998
- static readonly slimeBall: ItemType;
8999
- static readonly slimeSpawnEgg: ItemType;
9000
- static readonly smallAmethystBud: ItemType;
9001
- static readonly smallDripleafBlock: ItemType;
9002
- static readonly smithingTable: ItemType;
9003
- static readonly smoker: ItemType;
9004
- static readonly smoothBasalt: ItemType;
9005
- static readonly smoothQuartzStairs: ItemType;
9006
- static readonly smoothRedSandstoneStairs: ItemType;
9007
- static readonly smoothSandstoneStairs: ItemType;
9008
- static readonly smoothStone: ItemType;
9009
- static readonly snifferEgg: ItemType;
9010
- static readonly snifferSpawnEgg: ItemType;
9011
- static readonly snortPotterySherd: ItemType;
9012
- static readonly snoutArmorTrimSmithingTemplate: ItemType;
9013
- static readonly snow: ItemType;
9014
- static readonly snowball: ItemType;
9015
- static readonly snowGolemSpawnEgg: ItemType;
9016
- static readonly snowLayer: ItemType;
9017
- static readonly soulCampfire: ItemType;
9018
- static readonly soulLantern: ItemType;
9019
- static readonly soulSand: ItemType;
9020
- static readonly soulSoil: ItemType;
9021
- static readonly soulTorch: ItemType;
9022
- static readonly spawnEgg: ItemType;
9023
- static readonly spiderEye: ItemType;
9024
- static readonly spiderSpawnEgg: ItemType;
9025
- static readonly spireArmorTrimSmithingTemplate: ItemType;
9026
- static readonly splashPotion: ItemType;
9027
- static readonly sponge: ItemType;
9028
- static readonly sporeBlossom: ItemType;
9029
- static readonly spruceBoat: ItemType;
9030
- static readonly spruceButton: ItemType;
9031
- static readonly spruceChestBoat: ItemType;
9032
- static readonly spruceDoor: ItemType;
9033
- static readonly spruceFence: ItemType;
9034
- static readonly spruceFenceGate: ItemType;
9035
- static readonly spruceHangingSign: ItemType;
9036
- static readonly spruceLog: ItemType;
9037
- static readonly sprucePressurePlate: ItemType;
9038
- static readonly spruceSign: ItemType;
9039
- static readonly spruceStairs: ItemType;
9040
- static readonly spruceTrapdoor: ItemType;
9041
- static readonly spyglass: ItemType;
9042
- static readonly squidSpawnEgg: ItemType;
9043
- static readonly stainedGlass: ItemType;
9044
- static readonly stainedGlassPane: ItemType;
9045
- static readonly stainedHardenedClay: ItemType;
9046
- static readonly stick: ItemType;
9047
- static readonly stickyPiston: ItemType;
9048
- static readonly stone: ItemType;
9049
- static readonly stoneAxe: ItemType;
9050
- static readonly stoneBlockSlab: ItemType;
9051
- static readonly stoneBlockSlab2: ItemType;
9052
- static readonly stoneBlockSlab3: ItemType;
9053
- static readonly stoneBlockSlab4: ItemType;
9054
- static readonly stonebrick: ItemType;
9055
- static readonly stoneBrickStairs: ItemType;
9056
- static readonly stoneButton: ItemType;
9057
- static readonly stonecutterBlock: ItemType;
9058
- static readonly stoneHoe: ItemType;
9059
- static readonly stonePickaxe: ItemType;
9060
- static readonly stonePressurePlate: ItemType;
9061
- static readonly stoneShovel: ItemType;
9062
- static readonly stoneStairs: ItemType;
9063
- static readonly stoneSword: ItemType;
9064
- static readonly straySpawnEgg: ItemType;
9065
- static readonly striderSpawnEgg: ItemType;
9066
- static readonly 'string': ItemType;
9067
- static readonly strippedAcaciaLog: ItemType;
9068
- static readonly strippedBambooBlock: ItemType;
9069
- static readonly strippedBirchLog: ItemType;
9070
- static readonly strippedCherryLog: ItemType;
9071
- static readonly strippedCherryWood: ItemType;
9072
- static readonly strippedCrimsonHyphae: ItemType;
9073
- static readonly strippedCrimsonStem: ItemType;
9074
- static readonly strippedDarkOakLog: ItemType;
9075
- static readonly strippedJungleLog: ItemType;
9076
- static readonly strippedMangroveLog: ItemType;
9077
- static readonly strippedMangroveWood: ItemType;
9078
- static readonly strippedOakLog: ItemType;
9079
- static readonly strippedSpruceLog: ItemType;
9080
- static readonly strippedWarpedHyphae: ItemType;
9081
- static readonly strippedWarpedStem: ItemType;
9082
- static readonly structureBlock: ItemType;
9083
- static readonly structureVoid: ItemType;
9084
- static readonly sugar: ItemType;
9085
- static readonly sugarCane: ItemType;
9086
- static readonly suspiciousGravel: ItemType;
9087
- static readonly suspiciousSand: ItemType;
9088
- static readonly suspiciousStew: ItemType;
9089
- static readonly sweetBerries: ItemType;
9090
- static readonly tadpoleBucket: ItemType;
9091
- static readonly tadpoleSpawnEgg: ItemType;
9092
- static readonly tallgrass: ItemType;
9093
- static readonly target: ItemType;
9094
- static readonly tideArmorTrimSmithingTemplate: ItemType;
9095
- static readonly tintedGlass: ItemType;
9096
- static readonly tnt: ItemType;
9097
- static readonly tntMinecart: ItemType;
9098
- static readonly torch: ItemType;
9099
- static readonly torchflower: ItemType;
9100
- static readonly torchflowerSeeds: ItemType;
9101
- static readonly totemOfUndying: ItemType;
9102
- static readonly traderLlamaSpawnEgg: ItemType;
9103
- static readonly trapdoor: ItemType;
9104
- static readonly trappedChest: ItemType;
9105
- static readonly trident: ItemType;
9106
- static readonly tripwireHook: ItemType;
9107
- static readonly tropicalFish: ItemType;
9108
- static readonly tropicalFishBucket: ItemType;
9109
- static readonly tropicalFishSpawnEgg: ItemType;
9110
- static readonly tubeCoral: ItemType;
9111
- static readonly tuff: ItemType;
9112
- static readonly turtleEgg: ItemType;
9113
- static readonly turtleHelmet: ItemType;
9114
- static readonly turtleSpawnEgg: ItemType;
9115
- static readonly twistingVines: ItemType;
9116
- static readonly undyedShulkerBox: ItemType;
9117
- static readonly verdantFroglight: ItemType;
9118
- static readonly vexArmorTrimSmithingTemplate: ItemType;
9119
- static readonly vexSpawnEgg: ItemType;
9120
- static readonly villagerSpawnEgg: ItemType;
9121
- static readonly vindicatorSpawnEgg: ItemType;
9122
- static readonly vine: ItemType;
9123
- static readonly wanderingTraderSpawnEgg: ItemType;
9124
- static readonly wardArmorTrimSmithingTemplate: ItemType;
9125
- static readonly wardenSpawnEgg: ItemType;
9126
- static readonly warpedButton: ItemType;
9127
- static readonly warpedDoor: ItemType;
9128
- static readonly warpedFence: ItemType;
9129
- static readonly warpedFenceGate: ItemType;
9130
- static readonly warpedFungus: ItemType;
9131
- static readonly warpedFungusOnAStick: ItemType;
9132
- static readonly warpedHangingSign: ItemType;
9133
- static readonly warpedHyphae: ItemType;
9134
- static readonly warpedNylium: ItemType;
9135
- static readonly warpedPlanks: ItemType;
9136
- static readonly warpedPressurePlate: ItemType;
9137
- static readonly warpedRoots: ItemType;
9138
- static readonly warpedSign: ItemType;
9139
- static readonly warpedSlab: ItemType;
9140
- static readonly warpedStairs: ItemType;
9141
- static readonly warpedStem: ItemType;
9142
- static readonly warpedTrapdoor: ItemType;
9143
- static readonly warpedWartBlock: ItemType;
9144
- static readonly waterBucket: ItemType;
9145
- static readonly waterlily: ItemType;
9146
- static readonly waxedCopper: ItemType;
9147
- static readonly waxedCutCopper: ItemType;
9148
- static readonly waxedCutCopperSlab: ItemType;
9149
- static readonly waxedCutCopperStairs: ItemType;
9150
- static readonly waxedExposedCopper: ItemType;
9151
- static readonly waxedExposedCutCopper: ItemType;
9152
- static readonly waxedExposedCutCopperSlab: ItemType;
9153
- static readonly waxedExposedCutCopperStairs: ItemType;
9154
- static readonly waxedOxidizedCopper: ItemType;
9155
- static readonly waxedOxidizedCutCopper: ItemType;
9156
- static readonly waxedOxidizedCutCopperSlab: ItemType;
9157
- static readonly waxedOxidizedCutCopperStairs: ItemType;
9158
- static readonly waxedWeatheredCopper: ItemType;
9159
- static readonly waxedWeatheredCutCopper: ItemType;
9160
- static readonly waxedWeatheredCutCopperSlab: ItemType;
9161
- static readonly waxedWeatheredCutCopperStairs: ItemType;
9162
- static readonly wayfinderArmorTrimSmithingTemplate: ItemType;
9163
- static readonly weatheredCopper: ItemType;
9164
- static readonly weatheredCutCopper: ItemType;
9165
- static readonly weatheredCutCopperSlab: ItemType;
9166
- static readonly weatheredCutCopperStairs: ItemType;
9167
- static readonly web: ItemType;
9168
- static readonly weepingVines: ItemType;
9169
- static readonly wheat: ItemType;
9170
- static readonly wheatSeeds: ItemType;
9171
- static readonly whiteCandle: ItemType;
9172
- static readonly whiteCarpet: ItemType;
9173
- static readonly whiteConcrete: ItemType;
9174
- static readonly whiteDye: ItemType;
9175
- static readonly whiteGlazedTerracotta: ItemType;
9176
- static readonly whiteShulkerBox: ItemType;
9177
- static readonly whiteStainedGlass: ItemType;
9178
- static readonly whiteStainedGlassPane: ItemType;
9179
- static readonly whiteWool: ItemType;
9180
- static readonly wildArmorTrimSmithingTemplate: ItemType;
9181
- static readonly witchSpawnEgg: ItemType;
9182
- static readonly witherRose: ItemType;
9183
- static readonly witherSkeletonSpawnEgg: ItemType;
9184
- static readonly witherSpawnEgg: ItemType;
9185
- static readonly wolfSpawnEgg: ItemType;
9186
- static readonly wood: ItemType;
9187
- static readonly woodenAxe: ItemType;
9188
- static readonly woodenButton: ItemType;
9189
- static readonly woodenDoor: ItemType;
9190
- static readonly woodenHoe: ItemType;
9191
- static readonly woodenPickaxe: ItemType;
9192
- static readonly woodenPressurePlate: ItemType;
9193
- static readonly woodenShovel: ItemType;
9194
- static readonly woodenSlab: ItemType;
9195
- static readonly woodenSword: ItemType;
9196
- static readonly wool: ItemType;
9197
- static readonly writableBook: ItemType;
9198
- static readonly yellowCandle: ItemType;
9199
- static readonly yellowCarpet: ItemType;
9200
- static readonly yellowConcrete: ItemType;
9201
- static readonly yellowDye: ItemType;
9202
- static readonly yellowFlower: ItemType;
9203
- static readonly yellowGlazedTerracotta: ItemType;
9204
- static readonly yellowShulkerBox: ItemType;
9205
- static readonly yellowStainedGlass: ItemType;
9206
- static readonly yellowStainedGlassPane: ItemType;
9207
- static readonly yellowWool: ItemType;
9208
- static readonly zoglinSpawnEgg: ItemType;
9209
- static readonly zombieHorseSpawnEgg: ItemType;
9210
- static readonly zombiePigmanSpawnEgg: ItemType;
9211
- static readonly zombieSpawnEgg: ItemType;
9212
- static readonly zombieVillagerSpawnEgg: ItemType;
9213
- }
9214
-
9215
8351
  /**
9216
8352
  * @beta
9217
8353
  * Contains a set of additional variable values for further
@@ -9225,8 +8361,9 @@ export class MolangVariableMap {
9225
8361
  * - `<variable_name>.g` - Green color value [0-1]
9226
8362
  * - `<variable_name>.b` - Blue color value [0-1]
9227
8363
  *
8364
+ * @throws This function can throw errors.
9228
8365
  */
9229
- setColorRGB(variableName: string, color: Color): MolangVariableMap;
8366
+ setColorRGB(variableName: string, color: RGB): void;
9230
8367
  /**
9231
8368
  * @remarks
9232
8369
  * Adds the following variables to Molang:
@@ -9236,8 +8373,10 @@ export class MolangVariableMap {
9236
8373
  * - `<variable_name>.a` - Alpha (transparency) color value
9237
8374
  * [0-1]
9238
8375
  *
8376
+ * @throws This function can throw errors.
9239
8377
  */
9240
- setColorRGBA(variableName: string, color: Color): MolangVariableMap;
8378
+ setColorRGBA(variableName: string, color: RGBA): void;
8379
+ setFloat(variableName: string, number: number): void;
9241
8380
  /**
9242
8381
  * @remarks
9243
8382
  * Adds the following variables to Molang:
@@ -9249,8 +8388,9 @@ export class MolangVariableMap {
9249
8388
  * - `<variable_name>.direction_z` - Z value from the {@link
9250
8389
  * Vector3} provided
9251
8390
  *
8391
+ * @throws This function can throw errors.
9252
8392
  */
9253
- setSpeedAndDirection(variableName: string, speed: number, direction: Vector3): MolangVariableMap;
8393
+ setSpeedAndDirection(variableName: string, speed: number, direction: Vector3): void;
9254
8394
  /**
9255
8395
  * @remarks
9256
8396
  * Adds the following variables to Molang:
@@ -9261,8 +8401,9 @@ export class MolangVariableMap {
9261
8401
  * - `<variable_name>.z` - Z value from the {@link Vector3}
9262
8402
  * provided
9263
8403
  *
8404
+ * @throws This function can throw errors.
9264
8405
  */
9265
- setVector3(variableName: string, vector: Vector3): MolangVariableMap;
8406
+ setVector3(variableName: string, vector: Vector3): void;
9266
8407
  }
9267
8408
 
9268
8409
  /**
@@ -9585,6 +8726,7 @@ export class Player extends Entity {
9585
8726
  *
9586
8727
  * @param amount
9587
8728
  * Amount of experience to add. Note that this can be negative.
8729
+ * Min/max bounds at -2^24 ~ 2^24
9588
8730
  * @returns
9589
8731
  * Returns the current experience of the Player.
9590
8732
  * @throws This function can throw errors.
@@ -9599,7 +8741,7 @@ export class Player extends Entity {
9599
8741
  * This function can't be called in read-only mode.
9600
8742
  *
9601
8743
  * @param amount
9602
- * Amount to add to the player.
8744
+ * Amount to add to the player. Min/max bounds at -2^24 ~ 2^24
9603
8745
  * @returns
9604
8746
  * Returns the current level of the Player.
9605
8747
  * @throws This function can throw errors.
@@ -11754,14 +10896,25 @@ export class WorldAfterEvents {
11754
10896
  readonly entityDie: EntityDieAfterEventSignal;
11755
10897
  /**
11756
10898
  * @beta
10899
+ * @remarks
10900
+ * This event fires when entity health changes in any degree.
10901
+ *
11757
10902
  */
11758
10903
  readonly entityHealthChanged: EntityHealthChangedAfterEventSignal;
11759
10904
  /**
11760
10905
  * @beta
10906
+ * @remarks
10907
+ * This event fires when an entity hits (that is, melee
10908
+ * attacks) a block.
10909
+ *
11761
10910
  */
11762
10911
  readonly entityHitBlock: EntityHitBlockAfterEventSignal;
11763
10912
  /**
11764
10913
  * @beta
10914
+ * @remarks
10915
+ * This event fires when an entity hits (that is, melee
10916
+ * attacks) another entity.
10917
+ *
11765
10918
  */
11766
10919
  readonly entityHitEntity: EntityHitEntityAfterEventSignal;
11767
10920
  /**
@@ -11773,6 +10926,11 @@ export class WorldAfterEvents {
11773
10926
  readonly entityHurt: EntityHurtAfterEventSignal;
11774
10927
  /**
11775
10928
  * @beta
10929
+ * @remarks
10930
+ * This event fires when an entity is removed from the game
10931
+ * (e.g., is unloaded when it goes out of range; or a few
10932
+ * seconds after the death of an entity.)
10933
+ *
11776
10934
  */
11777
10935
  readonly entityRemoved: EntityRemovedAfterEventSignal;
11778
10936
  /**
@@ -11791,6 +10949,9 @@ export class WorldAfterEvents {
11791
10949
  readonly explosion: ExplosionAfterEventSignal;
11792
10950
  /**
11793
10951
  * @beta
10952
+ * @remarks
10953
+ * This event fires when a chargeable item completes charging.
10954
+ *
11794
10955
  */
11795
10956
  readonly itemCompleteUse: ItemCompleteUseAfterEventSignal;
11796
10957
  /**
@@ -11805,10 +10966,17 @@ export class WorldAfterEvents {
11805
10966
  readonly itemDefinitionEvent: ItemDefinitionAfterEventSignal;
11806
10967
  /**
11807
10968
  * @beta
10969
+ * @remarks
10970
+ * This event fires when a chargeable item is released from
10971
+ * charging.
10972
+ *
11808
10973
  */
11809
10974
  readonly itemReleaseUse: ItemReleaseUseAfterEventSignal;
11810
10975
  /**
11811
10976
  * @beta
10977
+ * @remarks
10978
+ * This event fires when a chargeable item starts charging.
10979
+ *
11812
10980
  */
11813
10981
  readonly itemStartUse: ItemStartUseAfterEventSignal;
11814
10982
  /**
@@ -11824,6 +10992,9 @@ export class WorldAfterEvents {
11824
10992
  readonly itemStartUseOn: ItemStartUseOnAfterEventSignal;
11825
10993
  /**
11826
10994
  * @beta
10995
+ * @remarks
10996
+ * This event fires when a chargeable item stops charging.
10997
+ *
11827
10998
  */
11828
10999
  readonly itemStopUse: ItemStopUseAfterEventSignal;
11829
11000
  /**
@@ -11851,6 +11022,11 @@ export class WorldAfterEvents {
11851
11022
  *
11852
11023
  */
11853
11024
  readonly itemUseOn: ItemUseOnAfterEventSignal;
11025
+ /**
11026
+ * @remarks
11027
+ * A lever has been pulled.
11028
+ *
11029
+ */
11854
11030
  readonly leverAction: LeverActionAfterEventSignal;
11855
11031
  /**
11856
11032
  * @beta
@@ -11891,10 +11067,18 @@ export class WorldAfterEvents {
11891
11067
  readonly playerSpawn: PlayerSpawnAfterEventSignal;
11892
11068
  /**
11893
11069
  * @beta
11070
+ * @remarks
11071
+ * A pressure plate has popped back up (i.e., there are no
11072
+ * entities on the pressure plate.)
11073
+ *
11894
11074
  */
11895
11075
  readonly pressurePlatePop: PressurePlatePopAfterEventSignal;
11896
11076
  /**
11897
11077
  * @beta
11078
+ * @remarks
11079
+ * A pressure plate has pushed (at least one entity has moved
11080
+ * onto a pressure plate.)
11081
+ *
11898
11082
  */
11899
11083
  readonly pressurePlatePush: PressurePlatePushAfterEventSignal;
11900
11084
  /**
@@ -11913,10 +11097,16 @@ export class WorldAfterEvents {
11913
11097
  readonly projectileHitEntity: ProjectileHitEntityAfterEventSignal;
11914
11098
  /**
11915
11099
  * @beta
11100
+ * @remarks
11101
+ * A target block was hit.
11102
+ *
11916
11103
  */
11917
11104
  readonly targetBlockHit: TargetBlockHitAfterEventSignal;
11918
11105
  /**
11919
11106
  * @beta
11107
+ * @remarks
11108
+ * A trip wire was tripped.
11109
+ *
11920
11110
  */
11921
11111
  readonly tripWireTrip: TripWireTripAfterEventSignal;
11922
11112
  /**
@@ -12257,7 +11447,7 @@ export interface CameraEaseOptions {
12257
11447
  * @beta
12258
11448
  */
12259
11449
  export interface CameraFadeOptions {
12260
- fadeColor?: ScriptColorRGB;
11450
+ fadeColor?: RGB;
12261
11451
  fadeTime?: CameraFadeTimeOptions;
12262
11452
  }
12263
11453
 
@@ -12270,16 +11460,6 @@ export interface CameraFadeTimeOptions {
12270
11460
  holdTime: number;
12271
11461
  }
12272
11462
 
12273
- /**
12274
- * @beta
12275
- */
12276
- export interface Color {
12277
- alpha: number;
12278
- blue: number;
12279
- green: number;
12280
- red: number;
12281
- }
12282
-
12283
11463
  /**
12284
11464
  * @beta
12285
11465
  * This interface defines an entry into the {@link
@@ -12297,7 +11477,15 @@ export interface CompoundBlockVolumeItem {
12297
11477
  * negative space in the overall compound block volume.
12298
11478
  *
12299
11479
  */
12300
- action: CompoundBlockVolumeAction;
11480
+ action?: CompoundBlockVolumeAction;
11481
+ /**
11482
+ * @remarks
11483
+ * The relativity enumeration determines whether the
11484
+ * BlockVolume specified is positioned relative to the parent
11485
+ * compound block volume origin, or in absolute world space.
11486
+ *
11487
+ */
11488
+ locationRelativity?: CompoundBlockVolumePositionRelativity;
12301
11489
  /**
12302
11490
  * @remarks
12303
11491
  * The volume of space
@@ -12314,25 +11502,25 @@ export interface CompoundBlockVolumeItem {
12314
11502
  export interface DimensionLocation {
12315
11503
  /**
12316
11504
  * @remarks
12317
- * The dimension.
11505
+ * Dimension that this coordinate is associated with.
12318
11506
  *
12319
11507
  */
12320
11508
  dimension: Dimension;
12321
11509
  /**
12322
11510
  * @remarks
12323
- * The x coordinate.
11511
+ * X component of this dimension-location.
12324
11512
  *
12325
11513
  */
12326
11514
  x: number;
12327
11515
  /**
12328
11516
  * @remarks
12329
- * The y coordinate.
11517
+ * Y component of this dimension-location.
12330
11518
  *
12331
11519
  */
12332
11520
  y: number;
12333
11521
  /**
12334
11522
  * @remarks
12335
- * The z coordinate.
11523
+ * Z component of this dimension-location.
12336
11524
  *
12337
11525
  */
12338
11526
  z: number;
@@ -12867,9 +12055,14 @@ export interface PlayerSoundOptions {
12867
12055
 
12868
12056
  /**
12869
12057
  * @beta
12870
- * Defines a JSON structure that is used for more flexible
12058
+ * Defines a JSON structure that is used for more flexible.
12871
12059
  */
12872
12060
  export interface RawMessage {
12061
+ /**
12062
+ * @remarks
12063
+ * Provides a raw-text equivalent of the current message.
12064
+ *
12065
+ */
12873
12066
  rawtext?: RawMessage[];
12874
12067
  /**
12875
12068
  * @remarks
@@ -12924,9 +12117,77 @@ export interface RawMessageScore {
12924
12117
  * `BlockSignComponent.getRawText` for examples.
12925
12118
  */
12926
12119
  export interface RawText {
12120
+ /**
12121
+ * @remarks
12122
+ * A serialization of the current value of an associated sign.
12123
+ *
12124
+ */
12927
12125
  rawtext?: RawMessage[];
12928
12126
  }
12929
12127
 
12128
+ /**
12129
+ * @beta
12130
+ * Represents a fully customizable color within Minecraft.
12131
+ */
12132
+ export interface RGB {
12133
+ /**
12134
+ * @remarks
12135
+ * Determines a color's blue component. Valid values are
12136
+ * between 0 and 1.0.
12137
+ *
12138
+ */
12139
+ blue: number;
12140
+ /**
12141
+ * @remarks
12142
+ * Determines a color's green component. Valid values are
12143
+ * between 0 and 1.0.
12144
+ *
12145
+ */
12146
+ green: number;
12147
+ /**
12148
+ * @remarks
12149
+ * Determines a color's red component. Valid values are between
12150
+ * 0 and 1.0.
12151
+ *
12152
+ */
12153
+ red: number;
12154
+ }
12155
+
12156
+ /**
12157
+ * @beta
12158
+ * Represents a fully customizable color within Minecraft.
12159
+ */
12160
+ export interface RGBA {
12161
+ /**
12162
+ * @remarks
12163
+ * Determines a color's alpha (opacity) component. Valid values
12164
+ * are between 0 (transparent) and 1.0 (opaque).
12165
+ *
12166
+ */
12167
+ alpha: number;
12168
+ /**
12169
+ * @remarks
12170
+ * Determines a color's blue component. Valid values are
12171
+ * between 0 and 1.0.
12172
+ *
12173
+ */
12174
+ blue: number;
12175
+ /**
12176
+ * @remarks
12177
+ * Determines a color's green component. Valid values are
12178
+ * between 0 and 1.0.
12179
+ *
12180
+ */
12181
+ green: number;
12182
+ /**
12183
+ * @remarks
12184
+ * Determines a color's red component. Valid values are between
12185
+ * 0 and 1.0.
12186
+ *
12187
+ */
12188
+ red: number;
12189
+ }
12190
+
12930
12191
  /**
12931
12192
  * @beta
12932
12193
  * Contains additional options for how a scoreboard should be
@@ -12989,15 +12250,6 @@ export interface ScriptCameraSetRotOptions {
12989
12250
  rotation: Vector2;
12990
12251
  }
12991
12252
 
12992
- /**
12993
- * @beta
12994
- */
12995
- export interface ScriptColorRGB {
12996
- blue: number;
12997
- green: number;
12998
- red: number;
12999
- }
13000
-
13001
12253
  /**
13002
12254
  * @beta
13003
12255
  * Contains additional options for registering a script event