mcbe-leveldb 1.12.0-jsonly → 1.13.0-jsonly

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/nbtSchemas.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  import * as NBT from "prismarine-nbt";
2
2
  import type { Full } from "./types.js";
3
+ import __biome_data__ from "./__biome_data__.ts";
3
4
  /**
4
5
  * Types, constants, and functions related to NBT schemas.
5
6
  */
@@ -886,6 +887,29 @@ export declare namespace NBTSchemas {
886
887
  };
887
888
  };
888
889
  };
890
+ readonly DimensionNameIdTable: {
891
+ readonly id: "DimensionNameIdTable";
892
+ readonly title: "The DimensionNameIdTable schema.";
893
+ readonly markdownDescription: "Dimension numeric ID mappings for custom dimensions.";
894
+ readonly type: "compound";
895
+ readonly required: ["list"];
896
+ readonly properties: {
897
+ readonly entries: {
898
+ readonly title: "Entries";
899
+ readonly markdownDescription: "A mapping of custom dimension namespaced IDs to numeric IDs, starting at 1,000.";
900
+ readonly type: "compound";
901
+ readonly patternProperties: {
902
+ readonly "^[\\u0001-\\u0008\\u000b-\\u000c\\u000e-\\u001f\\u0021-\\u0039\\u003b-\\uffff]+:[\\u0001-\\u0008\\u000b-\\u000c\\u000e-\\u001f\\u0021-\\u0039\\u003b-\\uffff]+$": {
903
+ readonly title: "Custom Dimension";
904
+ readonly markdownDescription: "The numerical [dimension ID](https://minecraft.wiki/w/Dimension) for this custom dimension. Starts at 1,000.";
905
+ readonly type: "int";
906
+ readonly minimum: 1000;
907
+ };
908
+ };
909
+ };
910
+ };
911
+ readonly $fragment: false;
912
+ };
889
913
  readonly Overworld: {
890
914
  readonly id: "Overworld";
891
915
  readonly title: "The Overworld schema.";
@@ -1062,6 +1086,14 @@ export declare namespace NBTSchemas {
1062
1086
  }];
1063
1087
  readonly additionalProperties: false;
1064
1088
  };
1089
+ readonly CustomDimension: {
1090
+ readonly id: "CustomDimension";
1091
+ readonly title: "The CustomDimension schema.";
1092
+ readonly markdownDescription: "The data of a custom dimension, seems to currently just include the LimboEntities data.";
1093
+ readonly type: "compound";
1094
+ readonly properties: {};
1095
+ readonly $ref: "LimboEntities";
1096
+ };
1065
1097
  readonly DynamicProperties: {
1066
1098
  readonly id: "DynamicProperties";
1067
1099
  readonly title: "The DynamicProperties schema.";
@@ -1387,6 +1419,10 @@ export declare namespace NBTSchemas {
1387
1419
  readonly BiomeOverride: {
1388
1420
  readonly type: "string";
1389
1421
  readonly markdownDescription: "Makes the world into a [single biome](https://minecraft.wiki/w/single_biome) world and the biome set here is the biome of this single biome world.";
1422
+ readonly examples: {
1423
+ type: "string";
1424
+ value: keyof typeof __biome_data__.int_map;
1425
+ }[];
1390
1426
  };
1391
1427
  readonly bonusChestEnabled: {
1392
1428
  readonly type: "byte";
@@ -5337,10 +5373,47 @@ export declare namespace NBTSchemas {
5337
5373
  readonly title: "The WorldClocks schema.";
5338
5374
  readonly markdownDescription: "UNDOCUMENTED.";
5339
5375
  readonly type: "compound";
5376
+ readonly required: ["clocks"];
5340
5377
  readonly properties: {
5341
5378
  readonly clocks: {
5342
- readonly markdownDescription: "UNKNOWN.";
5379
+ readonly title: "Clocks";
5380
+ readonly markdownDescription: "UNDOCMENTED.";
5343
5381
  readonly type: "list";
5382
+ readonly items: {
5383
+ readonly title: "Clock";
5384
+ readonly markdownDescription: "UNDOCUMENTED.";
5385
+ readonly type: "compound";
5386
+ readonly required: ["IsPaused", "Name", "Time"];
5387
+ readonly properties: {
5388
+ readonly IsPaused: {
5389
+ readonly title: "Is Paused";
5390
+ readonly markdownDescription: "UNDOCUMENTED.";
5391
+ readonly type: "byte";
5392
+ readonly markdownEnumDescriptions: ["false", "true"];
5393
+ readonly enum: [{
5394
+ readonly type: "byte";
5395
+ readonly value: 0;
5396
+ }, {
5397
+ readonly type: "byte";
5398
+ readonly value: 1;
5399
+ }];
5400
+ };
5401
+ readonly Name: {
5402
+ readonly title: "Name";
5403
+ readonly markdownDescription: "UNDOCUMENTED.";
5404
+ readonly type: "string";
5405
+ readonly examples: {
5406
+ type: "string";
5407
+ value: "minecraft:the_end" | "minecraft:overworld" | "minecraft:nether";
5408
+ }[];
5409
+ };
5410
+ readonly Time: {
5411
+ readonly title: "Time";
5412
+ readonly markdownDescription: "UNDOCUMENTED.";
5413
+ readonly type: "int";
5414
+ };
5415
+ };
5416
+ };
5344
5417
  };
5345
5418
  };
5346
5419
  };
@@ -5358,22 +5431,62 @@ export declare namespace NBTSchemas {
5358
5431
  readonly attackmobs: {
5359
5432
  readonly markdownDescription: "1 or 0 (true/false) - true if the player can attack mobs.";
5360
5433
  readonly type: "byte";
5434
+ readonly markdownEnumDescriptions: ["false", "true"];
5435
+ readonly enum: [{
5436
+ readonly type: "byte";
5437
+ readonly value: 0;
5438
+ }, {
5439
+ readonly type: "byte";
5440
+ readonly value: 1;
5441
+ }];
5361
5442
  };
5362
5443
  readonly attackplayers: {
5363
5444
  readonly markdownDescription: "1 or 0 (true/false) - true if the player can attack other players.";
5364
5445
  readonly type: "byte";
5446
+ readonly markdownEnumDescriptions: ["false", "true"];
5447
+ readonly enum: [{
5448
+ readonly type: "byte";
5449
+ readonly value: 0;
5450
+ }, {
5451
+ readonly type: "byte";
5452
+ readonly value: 1;
5453
+ }];
5365
5454
  };
5366
5455
  readonly build: {
5367
5456
  readonly markdownDescription: "1 or 0 (true/false) - true if the player can place blocks.";
5368
5457
  readonly type: "byte";
5458
+ readonly markdownEnumDescriptions: ["false", "true"];
5459
+ readonly enum: [{
5460
+ readonly type: "byte";
5461
+ readonly value: 0;
5462
+ }, {
5463
+ readonly type: "byte";
5464
+ readonly value: 1;
5465
+ }];
5369
5466
  };
5370
5467
  readonly doorsandswitches: {
5371
5468
  readonly markdownDescription: "1 or 0 (true/false) - true if the player is able to interact with redstone components.";
5372
5469
  readonly type: "byte";
5470
+ readonly markdownEnumDescriptions: ["false", "true"];
5471
+ readonly enum: [{
5472
+ readonly type: "byte";
5473
+ readonly value: 0;
5474
+ }, {
5475
+ readonly type: "byte";
5476
+ readonly value: 1;
5477
+ }];
5373
5478
  };
5374
5479
  readonly flying: {
5375
5480
  readonly markdownDescription: "1 or 0 (true/false) - true if the player is currently flying.";
5376
5481
  readonly type: "byte";
5482
+ readonly markdownEnumDescriptions: ["false", "true"];
5483
+ readonly enum: [{
5484
+ readonly type: "byte";
5485
+ readonly value: 0;
5486
+ }, {
5487
+ readonly type: "byte";
5488
+ readonly value: 1;
5489
+ }];
5377
5490
  };
5378
5491
  readonly flySpeed: {
5379
5492
  readonly markdownDescription: "The flying speed, always 0.05.";
@@ -5382,38 +5495,110 @@ export declare namespace NBTSchemas {
5382
5495
  readonly instabuild: {
5383
5496
  readonly markdownDescription: "1 or 0 (true/false) - true if the player can instantly destroy blocks.";
5384
5497
  readonly type: "byte";
5498
+ readonly markdownEnumDescriptions: ["false", "true"];
5499
+ readonly enum: [{
5500
+ readonly type: "byte";
5501
+ readonly value: 0;
5502
+ }, {
5503
+ readonly type: "byte";
5504
+ readonly value: 1;
5505
+ }];
5385
5506
  };
5386
5507
  readonly invulnerable: {
5387
5508
  readonly markdownDescription: "1 or 0 (true/false) - true if the player is immune to all damage and harmful effects.";
5388
5509
  readonly type: "byte";
5510
+ readonly markdownEnumDescriptions: ["false", "true"];
5511
+ readonly enum: [{
5512
+ readonly type: "byte";
5513
+ readonly value: 0;
5514
+ }, {
5515
+ readonly type: "byte";
5516
+ readonly value: 1;
5517
+ }];
5389
5518
  };
5390
5519
  readonly lightning: {
5391
5520
  readonly markdownDescription: "1 or 0 (true/false) - true if the player was struck by lightning.";
5392
5521
  readonly type: "byte";
5522
+ readonly markdownEnumDescriptions: ["false", "true"];
5523
+ readonly enum: [{
5524
+ readonly type: "byte";
5525
+ readonly value: 0;
5526
+ }, {
5527
+ readonly type: "byte";
5528
+ readonly value: 1;
5529
+ }];
5393
5530
  };
5394
5531
  readonly mayfly: {
5395
5532
  readonly markdownDescription: "1 or 0 (true/false) - true if the player can fly.";
5396
5533
  readonly type: "byte";
5534
+ readonly markdownEnumDescriptions: ["false", "true"];
5535
+ readonly enum: [{
5536
+ readonly type: "byte";
5537
+ readonly value: 0;
5538
+ }, {
5539
+ readonly type: "byte";
5540
+ readonly value: 1;
5541
+ }];
5397
5542
  };
5398
5543
  readonly mine: {
5399
5544
  readonly markdownDescription: "1 or 0 (true/false) - true if the player can destroy blocks.";
5400
5545
  readonly type: "byte";
5546
+ readonly markdownEnumDescriptions: ["false", "true"];
5547
+ readonly enum: [{
5548
+ readonly type: "byte";
5549
+ readonly value: 0;
5550
+ }, {
5551
+ readonly type: "byte";
5552
+ readonly value: 1;
5553
+ }];
5401
5554
  };
5402
5555
  readonly mute: {
5403
5556
  readonly markdownDescription: "1 or 0 (true/false) - true if the player messages cannot be seen by other players.";
5404
5557
  readonly type: "byte";
5558
+ readonly markdownEnumDescriptions: ["false", "true"];
5559
+ readonly enum: [{
5560
+ readonly type: "byte";
5561
+ readonly value: 0;
5562
+ }, {
5563
+ readonly type: "byte";
5564
+ readonly value: 1;
5565
+ }];
5405
5566
  };
5406
5567
  readonly noclip: {
5407
5568
  readonly markdownDescription: "1 or 0 (true/false) - true if the player can phase through blocks.";
5408
5569
  readonly type: "byte";
5570
+ readonly markdownEnumDescriptions: ["false", "true"];
5571
+ readonly enum: [{
5572
+ readonly type: "byte";
5573
+ readonly value: 0;
5574
+ }, {
5575
+ readonly type: "byte";
5576
+ readonly value: 1;
5577
+ }];
5409
5578
  };
5410
5579
  readonly op: {
5411
5580
  readonly markdownDescription: "1 or 0 (true/false) - true if the player has operator commands.";
5412
5581
  readonly type: "byte";
5582
+ readonly markdownEnumDescriptions: ["false", "true"];
5583
+ readonly enum: [{
5584
+ readonly type: "byte";
5585
+ readonly value: 0;
5586
+ }, {
5587
+ readonly type: "byte";
5588
+ readonly value: 1;
5589
+ }];
5413
5590
  };
5414
5591
  readonly opencontainers: {
5415
5592
  readonly markdownDescription: "1 or 0 (true/false) - true if the player is able to open containers.";
5416
5593
  readonly type: "byte";
5594
+ readonly markdownEnumDescriptions: ["false", "true"];
5595
+ readonly enum: [{
5596
+ readonly type: "byte";
5597
+ readonly value: 0;
5598
+ }, {
5599
+ readonly type: "byte";
5600
+ readonly value: 1;
5601
+ }];
5417
5602
  };
5418
5603
  readonly permissionsLevel: {
5419
5604
  readonly markdownDescription: "What permissions a player will default to, when joining a world.";
@@ -5426,6 +5611,14 @@ export declare namespace NBTSchemas {
5426
5611
  readonly teleport: {
5427
5612
  readonly markdownDescription: "1 or 0 (true/false) - true if the player is allowed to teleport.";
5428
5613
  readonly type: "byte";
5614
+ readonly markdownEnumDescriptions: ["false", "true"];
5615
+ readonly enum: [{
5616
+ readonly type: "byte";
5617
+ readonly value: 0;
5618
+ }, {
5619
+ readonly type: "byte";
5620
+ readonly value: 1;
5621
+ }];
5429
5622
  };
5430
5623
  readonly walkSpeed: {
5431
5624
  readonly markdownDescription: "The walking speed, always 0.1.";
@@ -5434,6 +5627,14 @@ export declare namespace NBTSchemas {
5434
5627
  readonly worldbuilder: {
5435
5628
  readonly markdownDescription: "1 or 0 (true/false) - true if the player is a world builder.";
5436
5629
  readonly type: "byte";
5630
+ readonly markdownEnumDescriptions: ["false", "true"];
5631
+ readonly enum: [{
5632
+ readonly type: "byte";
5633
+ readonly value: 0;
5634
+ }, {
5635
+ readonly type: "byte";
5636
+ readonly value: 1;
5637
+ }];
5437
5638
  };
5438
5639
  };
5439
5640
  };
@@ -13525,6 +13726,32 @@ export declare namespace NBTSchemas {
13525
13726
  };
13526
13727
  };
13527
13728
  };
13729
+ /**
13730
+ * The DimensionNameIdTable schema.
13731
+ *
13732
+ * Dimension numeric ID mappings for custom dimensions.
13733
+ *
13734
+ * @see {@link NBTSchemas.nbtSchemas.DimensionNameIdTable}
13735
+ */
13736
+ type DimensionNameIdTable = {
13737
+ type: "compound";
13738
+ value: {
13739
+ /**
13740
+ * Entries
13741
+ *
13742
+ * A mapping of custom dimension namespaced IDs to numeric IDs, starting at 1,000.
13743
+ */
13744
+ entries?: {
13745
+ type: "compound";
13746
+ value: {
13747
+ [key: string]: {
13748
+ type: "int";
13749
+ value: number;
13750
+ };
13751
+ };
13752
+ };
13753
+ };
13754
+ };
13528
13755
  /**
13529
13756
  * The Overworld schema.
13530
13757
  *
@@ -13707,6 +13934,17 @@ export declare namespace NBTSchemas {
13707
13934
  };
13708
13935
  };
13709
13936
  } & LimboEntities;
13937
+ /**
13938
+ * The CustomDimension schema.
13939
+ *
13940
+ * The data of a custom dimension, seems to currently just include the LimboEntities data.
13941
+ *
13942
+ * @see {@link NBTSchemas.nbtSchemas.CustomDimension}
13943
+ */
13944
+ type CustomDimension = {
13945
+ type: "compound";
13946
+ value: object;
13947
+ } & LimboEntities;
13710
13948
  /**
13711
13949
  * The DynamicProperties schema.
13712
13950
  *
@@ -14037,64 +14275,325 @@ export declare namespace NBTSchemas {
14037
14275
  };
14038
14276
  /**
14039
14277
  * Makes the world into a [single biome](https://minecraft.wiki/w/single_biome) world and the biome set here is the biome of this single biome world.
14040
- */
14041
- BiomeOverride?: {
14042
- type: "string";
14043
- value: string;
14044
- };
14045
- /**
14046
- * 1 or 0 (true/false) - true if the bonus chest is enabled.
14047
14278
  *
14048
- * @enum 0 | 1
14279
+ * @example
14280
+ * "minecraft:ocean"
14049
14281
  *
14050
- * @enumDescriptions
14051
- * - `0`: false
14052
- * - `1`: true
14053
- */
14054
- bonusChestEnabled?: {
14055
- type: "byte";
14056
- value: 0 | 1;
14057
- };
14058
- /**
14059
- * 1 or 0 (true/false) - true if the bonus chest has been placed in the world. Turning this to false spawns another bonus chest near the spawn coordinates.
14282
+ * @example
14283
+ * "minecraft:plains"
14060
14284
  *
14061
- * @enum 0 | 1
14285
+ * @example
14286
+ * "minecraft:desert"
14062
14287
  *
14063
- * @enumDescriptions
14064
- * - `0`: false
14065
- * - `1`: true
14066
- */
14067
- bonusChestSpawned?: {
14068
- type: "byte";
14069
- value: 0 | 1;
14070
- };
14071
- /**
14072
- * UNDOCUMENTED.
14288
+ * @example
14289
+ * "minecraft:extreme_hills"
14073
14290
  *
14074
- * @enum 0 | 1
14291
+ * @example
14292
+ * "minecraft:forest"
14075
14293
  *
14076
- * @enumDescriptions
14077
- * - `0`: false
14078
- * - `1`: true
14079
- */
14080
- codebuilder?: {
14081
- type: "byte";
14082
- value: 0 | 1;
14083
- };
14084
- /**
14085
- * The `commandblockoutput` [game rule](https://minecraft.wiki/w/game_rule).
14294
+ * @example
14295
+ * "minecraft:taiga"
14086
14296
  *
14087
- * @enum 0 | 1
14297
+ * @example
14298
+ * "minecraft:swampland"
14088
14299
  *
14089
- * @enumDescriptions
14090
- * - `0`: false
14091
- * - `1`: true
14092
- */
14093
- commandblockoutput?: {
14094
- type: "byte";
14095
- value: 0 | 1;
14096
- };
14097
- /**
14300
+ * @example
14301
+ * "minecraft:river"
14302
+ *
14303
+ * @example
14304
+ * "minecraft:hell"
14305
+ *
14306
+ * @example
14307
+ * "minecraft:the_end"
14308
+ *
14309
+ * @example
14310
+ * "minecraft:legacy_frozen_ocean"
14311
+ *
14312
+ * @example
14313
+ * "minecraft:frozen_river"
14314
+ *
14315
+ * @example
14316
+ * "minecraft:ice_plains"
14317
+ *
14318
+ * @example
14319
+ * "minecraft:ice_mountains"
14320
+ *
14321
+ * @example
14322
+ * "minecraft:mushroom_island"
14323
+ *
14324
+ * @example
14325
+ * "minecraft:mushroom_island_shore"
14326
+ *
14327
+ * @example
14328
+ * "minecraft:beach"
14329
+ *
14330
+ * @example
14331
+ * "minecraft:desert_hills"
14332
+ *
14333
+ * @example
14334
+ * "minecraft:forest_hills"
14335
+ *
14336
+ * @example
14337
+ * "minecraft:taiga_hills"
14338
+ *
14339
+ * @example
14340
+ * "minecraft:extreme_hills_edge"
14341
+ *
14342
+ * @example
14343
+ * "minecraft:jungle"
14344
+ *
14345
+ * @example
14346
+ * "minecraft:jungle_hills"
14347
+ *
14348
+ * @example
14349
+ * "minecraft:jungle_edge"
14350
+ *
14351
+ * @example
14352
+ * "minecraft:deep_ocean"
14353
+ *
14354
+ * @example
14355
+ * "minecraft:stone_beach"
14356
+ *
14357
+ * @example
14358
+ * "minecraft:cold_beach"
14359
+ *
14360
+ * @example
14361
+ * "minecraft:birch_forest"
14362
+ *
14363
+ * @example
14364
+ * "minecraft:birch_forest_hills"
14365
+ *
14366
+ * @example
14367
+ * "minecraft:roofed_forest"
14368
+ *
14369
+ * @example
14370
+ * "minecraft:cold_taiga"
14371
+ *
14372
+ * @example
14373
+ * "minecraft:cold_taiga_hills"
14374
+ *
14375
+ * @example
14376
+ * "minecraft:mega_taiga"
14377
+ *
14378
+ * @example
14379
+ * "minecraft:mega_taiga_hills"
14380
+ *
14381
+ * @example
14382
+ * "minecraft:extreme_hills_plus_trees"
14383
+ *
14384
+ * @example
14385
+ * "minecraft:savanna"
14386
+ *
14387
+ * @example
14388
+ * "minecraft:savanna_plateau"
14389
+ *
14390
+ * @example
14391
+ * "minecraft:mesa"
14392
+ *
14393
+ * @example
14394
+ * "minecraft:mesa_plateau_stone"
14395
+ *
14396
+ * @example
14397
+ * "minecraft:mesa_plateau"
14398
+ *
14399
+ * @example
14400
+ * "minecraft:warm_ocean"
14401
+ *
14402
+ * @example
14403
+ * "minecraft:deep_warm_ocean"
14404
+ *
14405
+ * @example
14406
+ * "minecraft:lukewarm_ocean"
14407
+ *
14408
+ * @example
14409
+ * "minecraft:deep_lukewarm_ocean"
14410
+ *
14411
+ * @example
14412
+ * "minecraft:cold_ocean"
14413
+ *
14414
+ * @example
14415
+ * "minecraft:deep_cold_ocean"
14416
+ *
14417
+ * @example
14418
+ * "minecraft:frozen_ocean"
14419
+ *
14420
+ * @example
14421
+ * "minecraft:deep_frozen_ocean"
14422
+ *
14423
+ * @example
14424
+ * "minecraft:sunflower_plains"
14425
+ *
14426
+ * @example
14427
+ * "minecraft:desert_mutated"
14428
+ *
14429
+ * @example
14430
+ * "minecraft:extreme_hills_mutated"
14431
+ *
14432
+ * @example
14433
+ * "minecraft:flower_forest"
14434
+ *
14435
+ * @example
14436
+ * "minecraft:taiga_mutated"
14437
+ *
14438
+ * @example
14439
+ * "minecraft:swampland_mutated"
14440
+ *
14441
+ * @example
14442
+ * "minecraft:ice_plains_spikes"
14443
+ *
14444
+ * @example
14445
+ * "minecraft:jungle_mutated"
14446
+ *
14447
+ * @example
14448
+ * "minecraft:jungle_edge_mutated"
14449
+ *
14450
+ * @example
14451
+ * "minecraft:birch_forest_mutated"
14452
+ *
14453
+ * @example
14454
+ * "minecraft:birch_forest_hills_mutated"
14455
+ *
14456
+ * @example
14457
+ * "minecraft:roofed_forest_mutated"
14458
+ *
14459
+ * @example
14460
+ * "minecraft:cold_taiga_mutated"
14461
+ *
14462
+ * @example
14463
+ * "minecraft:redwood_taiga_mutated"
14464
+ *
14465
+ * @example
14466
+ * "minecraft:redwood_taiga_hills_mutated"
14467
+ *
14468
+ * @example
14469
+ * "minecraft:extreme_hills_plus_trees_mutated"
14470
+ *
14471
+ * @example
14472
+ * "minecraft:savanna_mutated"
14473
+ *
14474
+ * @example
14475
+ * "minecraft:savanna_plateau_mutated"
14476
+ *
14477
+ * @example
14478
+ * "minecraft:mesa_bryce"
14479
+ *
14480
+ * @example
14481
+ * "minecraft:mesa_plateau_stone_mutated"
14482
+ *
14483
+ * @example
14484
+ * "minecraft:mesa_plateau_mutated"
14485
+ *
14486
+ * @example
14487
+ * "minecraft:bamboo_jungle"
14488
+ *
14489
+ * @example
14490
+ * "minecraft:bamboo_jungle_hills"
14491
+ *
14492
+ * @example
14493
+ * "minecraft:soulsand_valley"
14494
+ *
14495
+ * @example
14496
+ * "minecraft:crimson_forest"
14497
+ *
14498
+ * @example
14499
+ * "minecraft:warped_forest"
14500
+ *
14501
+ * @example
14502
+ * "minecraft:basalt_deltas"
14503
+ *
14504
+ * @example
14505
+ * "minecraft:jagged_peaks"
14506
+ *
14507
+ * @example
14508
+ * "minecraft:frozen_peaks"
14509
+ *
14510
+ * @example
14511
+ * "minecraft:snowy_slopes"
14512
+ *
14513
+ * @example
14514
+ * "minecraft:grove"
14515
+ *
14516
+ * @example
14517
+ * "minecraft:meadow"
14518
+ *
14519
+ * @example
14520
+ * "minecraft:lush_caves"
14521
+ *
14522
+ * @example
14523
+ * "minecraft:dripstone_caves"
14524
+ *
14525
+ * @example
14526
+ * "minecraft:stony_peaks"
14527
+ *
14528
+ * @example
14529
+ * "minecraft:deep_dark"
14530
+ *
14531
+ * @example
14532
+ * "minecraft:mangrove_swamp"
14533
+ *
14534
+ * @example
14535
+ * "minecraft:cherry_grove"
14536
+ *
14537
+ * @example
14538
+ * "minecraft:pale_garden"
14539
+ */
14540
+ BiomeOverride?: {
14541
+ type: "string";
14542
+ value: string;
14543
+ };
14544
+ /**
14545
+ * 1 or 0 (true/false) - true if the bonus chest is enabled.
14546
+ *
14547
+ * @enum 0 | 1
14548
+ *
14549
+ * @enumDescriptions
14550
+ * - `0`: false
14551
+ * - `1`: true
14552
+ */
14553
+ bonusChestEnabled?: {
14554
+ type: "byte";
14555
+ value: 0 | 1;
14556
+ };
14557
+ /**
14558
+ * 1 or 0 (true/false) - true if the bonus chest has been placed in the world. Turning this to false spawns another bonus chest near the spawn coordinates.
14559
+ *
14560
+ * @enum 0 | 1
14561
+ *
14562
+ * @enumDescriptions
14563
+ * - `0`: false
14564
+ * - `1`: true
14565
+ */
14566
+ bonusChestSpawned?: {
14567
+ type: "byte";
14568
+ value: 0 | 1;
14569
+ };
14570
+ /**
14571
+ * UNDOCUMENTED.
14572
+ *
14573
+ * @enum 0 | 1
14574
+ *
14575
+ * @enumDescriptions
14576
+ * - `0`: false
14577
+ * - `1`: true
14578
+ */
14579
+ codebuilder?: {
14580
+ type: "byte";
14581
+ value: 0 | 1;
14582
+ };
14583
+ /**
14584
+ * The `commandblockoutput` [game rule](https://minecraft.wiki/w/game_rule).
14585
+ *
14586
+ * @enum 0 | 1
14587
+ *
14588
+ * @enumDescriptions
14589
+ * - `0`: false
14590
+ * - `1`: true
14591
+ */
14592
+ commandblockoutput?: {
14593
+ type: "byte";
14594
+ value: 0 | 1;
14595
+ };
14596
+ /**
14098
14597
  * 1 or 0 (true/false) - true if the maps should be on a grid or centered to exactly where they are created. Default to 0.
14099
14598
  *
14100
14599
  * @enum 0 | 1
@@ -18788,6 +19287,73 @@ export declare namespace NBTSchemas {
18788
19287
  };
18789
19288
  };
18790
19289
  };
19290
+ /**
19291
+ * The WorldClocks schema.
19292
+ *
19293
+ * UNDOCUMENTED.
19294
+ *
19295
+ * @see {@link NBTSchemas.nbtSchemas.WorldClocks}
19296
+ */
19297
+ type WorldClocks = {
19298
+ type: "compound";
19299
+ value: {
19300
+ /**
19301
+ * Clocks
19302
+ *
19303
+ * UNDOCMENTED.
19304
+ */
19305
+ clocks: {
19306
+ type: "list";
19307
+ value: {
19308
+ type: "compound";
19309
+ value: {
19310
+ /**
19311
+ * Is Paused
19312
+ *
19313
+ * UNDOCUMENTED.
19314
+ *
19315
+ * @enum 0 | 1
19316
+ *
19317
+ * @enumDescriptions
19318
+ * - `0`: false
19319
+ * - `1`: true
19320
+ */
19321
+ IsPaused: {
19322
+ type: "byte";
19323
+ value: 0 | 1;
19324
+ };
19325
+ /**
19326
+ * Name
19327
+ *
19328
+ * UNDOCUMENTED.
19329
+ *
19330
+ * @example
19331
+ * "minecraft:overworld"
19332
+ *
19333
+ * @example
19334
+ * "minecraft:nether"
19335
+ *
19336
+ * @example
19337
+ * "minecraft:the_end"
19338
+ */
19339
+ Name: {
19340
+ type: "string";
19341
+ value: string;
19342
+ };
19343
+ /**
19344
+ * Time
19345
+ *
19346
+ * UNDOCUMENTED.
19347
+ */
19348
+ Time: {
19349
+ type: "int";
19350
+ value: number;
19351
+ };
19352
+ }[];
19353
+ };
19354
+ };
19355
+ };
19356
+ };
18791
19357
  /**
18792
19358
  * NBT structure of players' ability info.
18793
19359
  *
@@ -18804,38 +19370,68 @@ export declare namespace NBTSchemas {
18804
19370
  value: {
18805
19371
  /**
18806
19372
  * 1 or 0 (true/false) - true if the player can attack mobs.
19373
+ *
19374
+ * @enum 0 | 1
19375
+ *
19376
+ * @enumDescriptions
19377
+ * - `0`: false
19378
+ * - `1`: true
18807
19379
  */
18808
19380
  attackmobs: {
18809
19381
  type: "byte";
18810
- value: number;
19382
+ value: 0 | 1;
18811
19383
  };
18812
19384
  /**
18813
19385
  * 1 or 0 (true/false) - true if the player can attack other players.
19386
+ *
19387
+ * @enum 0 | 1
19388
+ *
19389
+ * @enumDescriptions
19390
+ * - `0`: false
19391
+ * - `1`: true
18814
19392
  */
18815
19393
  attackplayers: {
18816
19394
  type: "byte";
18817
- value: number;
19395
+ value: 0 | 1;
18818
19396
  };
18819
19397
  /**
18820
19398
  * 1 or 0 (true/false) - true if the player can place blocks.
19399
+ *
19400
+ * @enum 0 | 1
19401
+ *
19402
+ * @enumDescriptions
19403
+ * - `0`: false
19404
+ * - `1`: true
18821
19405
  */
18822
19406
  build: {
18823
19407
  type: "byte";
18824
- value: number;
19408
+ value: 0 | 1;
18825
19409
  };
18826
19410
  /**
18827
19411
  * 1 or 0 (true/false) - true if the player is able to interact with redstone components.
19412
+ *
19413
+ * @enum 0 | 1
19414
+ *
19415
+ * @enumDescriptions
19416
+ * - `0`: false
19417
+ * - `1`: true
18828
19418
  */
18829
19419
  doorsandswitches: {
18830
19420
  type: "byte";
18831
- value: number;
19421
+ value: 0 | 1;
18832
19422
  };
18833
19423
  /**
18834
19424
  * 1 or 0 (true/false) - true if the player is currently flying.
19425
+ *
19426
+ * @enum 0 | 1
19427
+ *
19428
+ * @enumDescriptions
19429
+ * - `0`: false
19430
+ * - `1`: true
18835
19431
  */
18836
19432
  flying: {
18837
19433
  type: "byte";
18838
- value: number;
19434
+ value: 0 | 1;
18839
19435
  };
18840
19436
  /**
18841
19437
  * The flying speed, always 0.05.
@@ -18846,66 +19442,120 @@ export declare namespace NBTSchemas {
18846
19442
  };
18847
19443
  /**
18848
19444
  * 1 or 0 (true/false) - true if the player can instantly destroy blocks.
19445
+ *
19446
+ * @enum 0 | 1
19447
+ *
19448
+ * @enumDescriptions
19449
+ * - `0`: false
19450
+ * - `1`: true
18849
19451
  */
18850
19452
  instabuild: {
18851
19453
  type: "byte";
18852
- value: number;
19454
+ value: 0 | 1;
18853
19455
  };
18854
19456
  /**
18855
19457
  * 1 or 0 (true/false) - true if the player is immune to all damage and harmful effects.
19458
+ *
19459
+ * @enum 0 | 1
19460
+ *
19461
+ * @enumDescriptions
19462
+ * - `0`: false
19463
+ * - `1`: true
18856
19464
  */
18857
19465
  invulnerable: {
18858
19466
  type: "byte";
18859
- value: number;
19467
+ value: 0 | 1;
18860
19468
  };
18861
19469
  /**
18862
19470
  * 1 or 0 (true/false) - true if the player was struck by lightning.
19471
+ *
19472
+ * @enum 0 | 1
19473
+ *
19474
+ * @enumDescriptions
19475
+ * - `0`: false
19476
+ * - `1`: true
18863
19477
  */
18864
19478
  lightning: {
18865
19479
  type: "byte";
18866
- value: number;
19480
+ value: 0 | 1;
18867
19481
  };
18868
19482
  /**
18869
19483
  * 1 or 0 (true/false) - true if the player can fly.
19484
+ *
19485
+ * @enum 0 | 1
19486
+ *
19487
+ * @enumDescriptions
19488
+ * - `0`: false
19489
+ * - `1`: true
18870
19490
  */
18871
19491
  mayfly: {
18872
19492
  type: "byte";
18873
- value: number;
19493
+ value: 0 | 1;
18874
19494
  };
18875
19495
  /**
18876
19496
  * 1 or 0 (true/false) - true if the player can destroy blocks.
19497
+ *
19498
+ * @enum 0 | 1
19499
+ *
19500
+ * @enumDescriptions
19501
+ * - `0`: false
19502
+ * - `1`: true
18877
19503
  */
18878
19504
  mine: {
18879
19505
  type: "byte";
18880
- value: number;
19506
+ value: 0 | 1;
18881
19507
  };
18882
19508
  /**
18883
19509
  * 1 or 0 (true/false) - true if the player messages cannot be seen by other players.
19510
+ *
19511
+ * @enum 0 | 1
19512
+ *
19513
+ * @enumDescriptions
19514
+ * - `0`: false
19515
+ * - `1`: true
18884
19516
  */
18885
19517
  mute: {
18886
19518
  type: "byte";
18887
- value: number;
19519
+ value: 0 | 1;
18888
19520
  };
18889
19521
  /**
18890
19522
  * 1 or 0 (true/false) - true if the player can phase through blocks.
19523
+ *
19524
+ * @enum 0 | 1
19525
+ *
19526
+ * @enumDescriptions
19527
+ * - `0`: false
19528
+ * - `1`: true
18891
19529
  */
18892
19530
  noclip: {
18893
19531
  type: "byte";
18894
- value: number;
19532
+ value: 0 | 1;
18895
19533
  };
18896
19534
  /**
18897
19535
  * 1 or 0 (true/false) - true if the player has operator commands.
19536
+ *
19537
+ * @enum 0 | 1
19538
+ *
19539
+ * @enumDescriptions
19540
+ * - `0`: false
19541
+ * - `1`: true
18898
19542
  */
18899
19543
  op: {
18900
19544
  type: "byte";
18901
- value: number;
19545
+ value: 0 | 1;
18902
19546
  };
18903
19547
  /**
18904
19548
  * 1 or 0 (true/false) - true if the player is able to open containers.
19549
+ *
19550
+ * @enum 0 | 1
19551
+ *
19552
+ * @enumDescriptions
19553
+ * - `0`: false
19554
+ * - `1`: true
18905
19555
  */
18906
19556
  opencontainers: {
18907
19557
  type: "byte";
18908
- value: number;
19558
+ value: 0 | 1;
18909
19559
  };
18910
19560
  /**
18911
19561
  * What permissions a player will default to, when joining a world.
@@ -18923,10 +19573,16 @@ export declare namespace NBTSchemas {
18923
19573
  };
18924
19574
  /**
18925
19575
  * 1 or 0 (true/false) - true if the player is allowed to teleport.
19576
+ *
19577
+ * @enum 0 | 1
19578
+ *
19579
+ * @enumDescriptions
19580
+ * - `0`: false
19581
+ * - `1`: true
18926
19582
  */
18927
19583
  teleport: {
18928
19584
  type: "byte";
18929
- value: number;
19585
+ value: 0 | 1;
18930
19586
  };
18931
19587
  /**
18932
19588
  * The walking speed, always 0.1.
@@ -18937,10 +19593,16 @@ export declare namespace NBTSchemas {
18937
19593
  };
18938
19594
  /**
18939
19595
  * 1 or 0 (true/false) - true if the player is a world builder.
19596
+ *
19597
+ * @enum 0 | 1
19598
+ *
19599
+ * @enumDescriptions
19600
+ * - `0`: false
19601
+ * - `1`: true
18940
19602
  */
18941
19603
  worldbuilder: {
18942
19604
  type: "byte";
18943
- value: number;
19605
+ value: 0 | 1;
18944
19606
  };
18945
19607
  };
18946
19608
  };