typed-factorio 3.5.0 → 3.6.0

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.
@@ -13,6 +13,7 @@ import type {
13
13
  OnBuiltEntityEvent,
14
14
  OnCancelledDeconstructionEvent,
15
15
  OnCancelledUpgradeEvent,
16
+ OnCargoPodFinishedAscendingEvent,
16
17
  OnCharacterCorpseExpiredEvent,
17
18
  OnChartTagAddedEvent,
18
19
  OnChartTagModifiedEvent,
@@ -228,7 +229,7 @@ declare global {
228
229
  }
229
230
  /**
230
231
  * AI command exit status. See {@link LuaEntity#set_command LuaEntity::set_command}
231
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.behavior_result Online documentation}
232
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.behavior_result Online documentation}
232
233
  */
233
234
  enum behavior_result {
234
235
  in_progress,
@@ -251,7 +252,7 @@ declare global {
251
252
  }
252
253
  /**
253
254
  * State of a chain signal.
254
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.chain_signal_state Online documentation}
255
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.chain_signal_state Online documentation}
255
256
  */
256
257
  enum chain_signal_state {
257
258
  none,
@@ -269,73 +270,73 @@ declare global {
269
270
  }
270
271
  /**
271
272
  * Command given to units describing what they should do.
272
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.command Online documentation}
273
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.command Online documentation}
273
274
  */
274
275
  enum command {
275
276
  /**
276
277
  * Attack another entity.
277
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.command.attack Online documentation}
278
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.command.attack Online documentation}
278
279
  */
279
280
  attack = 0,
280
281
  /**
281
282
  * Go to a specific position.
282
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.command.go_to_location Online documentation}
283
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.command.go_to_location Online documentation}
283
284
  */
284
285
  go_to_location = 1,
285
286
  /**
286
287
  * Chain commands together, see {@link defines.compound_command}.
287
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.command.compound Online documentation}
288
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.command.compound Online documentation}
288
289
  */
289
290
  compound = 2,
290
291
  /**
291
292
  * Do what your group wants you to do.
292
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.command.group Online documentation}
293
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.command.group Online documentation}
293
294
  */
294
295
  group = 3,
295
296
  /**
296
297
  * Go to a place and attack what you see.
297
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.command.attack_area Online documentation}
298
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.command.attack_area Online documentation}
298
299
  */
299
300
  attack_area = 4,
300
301
  /**
301
302
  * Chill.
302
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.command.wander Online documentation}
303
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.command.wander Online documentation}
303
304
  */
304
305
  wander = 5,
305
306
  /**
306
307
  * Flee from another entity.
307
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.command.flee Online documentation}
308
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.command.flee Online documentation}
308
309
  */
309
310
  flee = 6,
310
311
  /**
311
312
  * Stop moving and stay where you are.
312
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.command.stop Online documentation}
313
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.command.stop Online documentation}
313
314
  */
314
315
  stop = 7,
315
316
  /**
316
317
  * Go to a position and build a base there.
317
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.command.build_base Online documentation}
318
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.command.build_base Online documentation}
318
319
  */
319
320
  build_base = 8,
320
321
  }
321
322
  /**
322
323
  * How commands are joined together in a compound command (see {@link defines.command.compound}).
323
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.compound_command Online documentation}
324
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.compound_command Online documentation}
324
325
  */
325
326
  enum compound_command {
326
327
  /**
327
328
  * Fail on first failure. Only succeeds if all commands (executed one after another) succeed.
328
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.compound_command.logical_and Online documentation}
329
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.compound_command.logical_and Online documentation}
329
330
  */
330
331
  logical_and,
331
332
  /**
332
333
  * Succeed on first success. Only fails if all commands (executed one after another) fail.
333
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.compound_command.logical_or Online documentation}
334
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.compound_command.logical_or Online documentation}
334
335
  */
335
336
  logical_or,
336
337
  /**
337
338
  * Execute all commands in sequence and fail or succeed depending on the return status of the last command.
338
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.compound_command.return_last Online documentation}
339
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.compound_command.return_last Online documentation}
339
340
  */
340
341
  return_last,
341
342
  }
@@ -397,162 +398,162 @@ declare global {
397
398
  enum type {
398
399
  /**
399
400
  * {@link LuaContainerControlBehavior}
400
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.control_behavior.type.container Online documentation}
401
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.control_behavior.type.container Online documentation}
401
402
  */
402
403
  container,
403
404
  /**
404
405
  * {@link LuaGenericOnOffControlBehavior}
405
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.control_behavior.type.generic_on_off Online documentation}
406
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.control_behavior.type.generic_on_off Online documentation}
406
407
  */
407
408
  generic_on_off,
408
409
  /**
409
410
  * {@link LuaInserterControlBehavior}
410
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.control_behavior.type.inserter Online documentation}
411
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.control_behavior.type.inserter Online documentation}
411
412
  */
412
413
  inserter,
413
414
  /**
414
415
  * {@link LuaLampControlBehavior}
415
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.control_behavior.type.lamp Online documentation}
416
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.control_behavior.type.lamp Online documentation}
416
417
  */
417
418
  lamp,
418
419
  /**
419
420
  * {@link LuaLogisticContainerControlBehavior}
420
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.control_behavior.type.logistic_container Online documentation}
421
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.control_behavior.type.logistic_container Online documentation}
421
422
  */
422
423
  logistic_container,
423
424
  /**
424
425
  * {@link LuaRoboportControlBehavior}
425
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.control_behavior.type.roboport Online documentation}
426
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.control_behavior.type.roboport Online documentation}
426
427
  */
427
428
  roboport,
428
429
  /**
429
430
  * {@link LuaStorageTankControlBehavior}
430
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.control_behavior.type.storage_tank Online documentation}
431
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.control_behavior.type.storage_tank Online documentation}
431
432
  */
432
433
  storage_tank,
433
434
  /**
434
435
  * {@link LuaTrainStopControlBehavior}
435
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.control_behavior.type.train_stop Online documentation}
436
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.control_behavior.type.train_stop Online documentation}
436
437
  */
437
438
  train_stop,
438
439
  /**
439
440
  * {@link LuaDeciderCombinatorControlBehavior}
440
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.control_behavior.type.decider_combinator Online documentation}
441
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.control_behavior.type.decider_combinator Online documentation}
441
442
  */
442
443
  decider_combinator,
443
444
  /**
444
445
  * {@link LuaArithmeticCombinatorControlBehavior}
445
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.control_behavior.type.arithmetic_combinator Online documentation}
446
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.control_behavior.type.arithmetic_combinator Online documentation}
446
447
  */
447
448
  arithmetic_combinator,
448
449
  /**
449
450
  * {@link LuaConstantCombinatorControlBehavior}
450
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.control_behavior.type.constant_combinator Online documentation}
451
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.control_behavior.type.constant_combinator Online documentation}
451
452
  */
452
453
  constant_combinator,
453
454
  /**
454
455
  * {@link LuaTransportBeltControlBehavior}
455
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.control_behavior.type.transport_belt Online documentation}
456
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.control_behavior.type.transport_belt Online documentation}
456
457
  */
457
458
  transport_belt,
458
459
  /**
459
460
  * {@link LuaAccumulatorControlBehavior}
460
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.control_behavior.type.accumulator Online documentation}
461
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.control_behavior.type.accumulator Online documentation}
461
462
  */
462
463
  accumulator,
463
464
  /**
464
465
  * {@link LuaRailSignalBaseControlBehavior}
465
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.control_behavior.type.rail_signal Online documentation}
466
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.control_behavior.type.rail_signal Online documentation}
466
467
  */
467
468
  rail_signal,
468
469
  /**
469
470
  * {@link LuaRailSignalBaseControlBehavior}
470
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.control_behavior.type.rail_chain_signal Online documentation}
471
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.control_behavior.type.rail_chain_signal Online documentation}
471
472
  */
472
473
  rail_chain_signal,
473
474
  /**
474
475
  * {@link LuaWallControlBehavior}
475
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.control_behavior.type.wall Online documentation}
476
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.control_behavior.type.wall Online documentation}
476
477
  */
477
478
  wall,
478
479
  /**
479
480
  * {@link LuaMiningDrillControlBehavior}
480
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.control_behavior.type.mining_drill Online documentation}
481
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.control_behavior.type.mining_drill Online documentation}
481
482
  */
482
483
  mining_drill,
483
484
  /**
484
485
  * {@link LuaProgrammableSpeakerControlBehavior}
485
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.control_behavior.type.programmable_speaker Online documentation}
486
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.control_behavior.type.programmable_speaker Online documentation}
486
487
  */
487
488
  programmable_speaker,
488
489
  /**
489
490
  * {@link LuaAssemblingMachineControlBehavior}
490
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.control_behavior.type.assembling_machine Online documentation}
491
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.control_behavior.type.assembling_machine Online documentation}
491
492
  */
492
493
  assembling_machine,
493
494
  /**
494
495
  * {@link LuaPumpControlBehavior}
495
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.control_behavior.type.pump Online documentation}
496
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.control_behavior.type.pump Online documentation}
496
497
  */
497
498
  pump,
498
499
  /**
499
500
  * {@link LuaSelectorCombinatorControlBehavior}
500
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.control_behavior.type.selector_combinator Online documentation}
501
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.control_behavior.type.selector_combinator Online documentation}
501
502
  */
502
503
  selector_combinator,
503
504
  /**
504
505
  * {@link LuaRocketSiloControlBehavior}
505
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.control_behavior.type.rocket_silo Online documentation}
506
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.control_behavior.type.rocket_silo Online documentation}
506
507
  */
507
508
  rocket_silo,
508
509
  /**
509
510
  * {@link LuaTurretControlBehavior}
510
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.control_behavior.type.turret Online documentation}
511
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.control_behavior.type.turret Online documentation}
511
512
  */
512
513
  turret,
513
514
  /**
514
515
  * {@link LuaReactorControlBehavior}
515
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.control_behavior.type.reactor Online documentation}
516
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.control_behavior.type.reactor Online documentation}
516
517
  */
517
518
  reactor,
518
519
  /**
519
520
  * {@link LuaSpacePlatformHubControlBehavior}
520
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.control_behavior.type.space_platform_hub Online documentation}
521
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.control_behavior.type.space_platform_hub Online documentation}
521
522
  */
522
523
  space_platform_hub,
523
524
  /**
524
525
  * {@link LuaArtilleryTurretControlBehavior}
525
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.control_behavior.type.artillery_turret Online documentation}
526
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.control_behavior.type.artillery_turret Online documentation}
526
527
  */
527
528
  artillery_turret,
528
529
  /**
529
530
  * {@link LuaAsteroidCollectorControlBehavior}
530
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.control_behavior.type.asteroid_collector Online documentation}
531
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.control_behavior.type.asteroid_collector Online documentation}
531
532
  */
532
533
  asteroid_collector,
533
534
  /**
534
535
  * {@link LuaRadarControlBehavior}
535
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.control_behavior.type.radar Online documentation}
536
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.control_behavior.type.radar Online documentation}
536
537
  */
537
538
  radar,
538
539
  /**
539
540
  * {@link LuaDisplayPanelControlBehavior}
540
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.control_behavior.type.display_panel Online documentation}
541
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.control_behavior.type.display_panel Online documentation}
541
542
  */
542
543
  display_panel,
543
544
  /**
544
545
  * {@link LuaLoaderControlBehavior}
545
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.control_behavior.type.loader Online documentation}
546
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.control_behavior.type.loader Online documentation}
546
547
  */
547
548
  loader,
548
549
  /**
549
550
  * {@link LuaCargoLandingPadControlBehavior}
550
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.control_behavior.type.cargo_landing_pad Online documentation}
551
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.control_behavior.type.cargo_landing_pad Online documentation}
551
552
  */
552
553
  cargo_landing_pad,
553
554
  /**
554
555
  * {@link LuaAgriculturalTowerControlBehavior}
555
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.control_behavior.type.agricultural_tower Online documentation}
556
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.control_behavior.type.agricultural_tower Online documentation}
556
557
  */
557
558
  agricultural_tower,
558
559
  }
@@ -560,37 +561,37 @@ declare global {
560
561
  enum controllers {
561
562
  /**
562
563
  * Can't interact with the world, can only observe. Used in the multiplayer waiting-to-respawn screen.
563
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.controllers.ghost Online documentation}
564
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.controllers.ghost Online documentation}
564
565
  */
565
566
  ghost,
566
567
  /**
567
568
  * The controller controls a character. This is the default controller in freeplay.
568
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.controllers.character Online documentation}
569
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.controllers.character Online documentation}
569
570
  */
570
571
  character,
571
572
  /**
572
573
  * The controller isn't tied to a character. This is the default controller in sandbox.
573
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.controllers.god Online documentation}
574
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.controllers.god Online documentation}
574
575
  */
575
576
  god,
576
577
  /**
577
578
  * The Editor Controller near ultimate power to do almost anything in the game.
578
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.controllers.editor Online documentation}
579
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.controllers.editor Online documentation}
579
580
  */
580
581
  editor,
581
582
  /**
582
583
  * The player can't interact with the world, and the camera pans around in a predefined manner.
583
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.controllers.cutscene Online documentation}
584
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.controllers.cutscene Online documentation}
584
585
  */
585
586
  cutscene,
586
587
  /**
587
588
  * Can't change anything in the world but can view anything.
588
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.controllers.spectator Online documentation}
589
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.controllers.spectator Online documentation}
589
590
  */
590
591
  spectator,
591
592
  /**
592
593
  * Can't move/change items but can build ghosts/change settings.
593
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.controllers.remote Online documentation}
594
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.controllers.remote Online documentation}
594
595
  */
595
596
  remote,
596
597
  }
@@ -652,22 +653,22 @@ declare global {
652
653
  enum distraction {
653
654
  /**
654
655
  * Perform command even if someone attacks the unit.
655
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.distraction.none Online documentation}
656
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.distraction.none Online documentation}
656
657
  */
657
658
  none,
658
659
  /**
659
660
  * Attack closer enemy entities with force.
660
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.distraction.by_enemy Online documentation}
661
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.distraction.by_enemy Online documentation}
661
662
  */
662
663
  by_enemy,
663
664
  /**
664
665
  * Attack closer enemy entities, including entities "built" by player (belts, inserters, chests).
665
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.distraction.by_anything Online documentation}
666
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.distraction.by_anything Online documentation}
666
667
  */
667
668
  by_anything,
668
669
  /**
669
670
  * Attack when attacked.
670
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.distraction.by_damage Online documentation}
671
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.distraction.by_damage Online documentation}
671
672
  */
672
673
  by_damage,
673
674
  }
@@ -676,12 +677,12 @@ declare global {
676
677
  normal,
677
678
  /**
678
679
  * Used by ghosts.
679
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.ghost Online documentation}
680
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.ghost Online documentation}
680
681
  */
681
682
  ghost,
682
683
  /**
683
684
  * Only used if set through {@link LuaEntity#status LuaEntity::status} or {@link import("factorio:prototype").ContainerPrototype#default_status ContainerPrototype::default_status}.
684
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.broken Online documentation}
685
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.broken Online documentation}
685
686
  */
686
687
  broken,
687
688
  no_power,
@@ -695,267 +696,267 @@ declare global {
695
696
  marked_for_deconstruction,
696
697
  /**
697
698
  * Used by space platform hubs.
698
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.paused Online documentation}
699
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.paused Online documentation}
699
700
  */
700
701
  paused,
701
702
  /**
702
703
  * Used by generators and solar panels.
703
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.not_plugged_in_electric_network Online documentation}
704
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.not_plugged_in_electric_network Online documentation}
704
705
  */
705
706
  not_plugged_in_electric_network,
706
707
  /**
707
708
  * Used by power switches.
708
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.networks_connected Online documentation}
709
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.networks_connected Online documentation}
709
710
  */
710
711
  networks_connected,
711
712
  /**
712
713
  * Used by power switches.
713
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.networks_disconnected Online documentation}
714
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.networks_disconnected Online documentation}
714
715
  */
715
716
  networks_disconnected,
716
717
  /**
717
718
  * Used by accumulators.
718
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.charging Online documentation}
719
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.charging Online documentation}
719
720
  */
720
721
  charging,
721
722
  /**
722
723
  * Used by accumulators.
723
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.discharging Online documentation}
724
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.discharging Online documentation}
724
725
  */
725
726
  discharging,
726
727
  /**
727
728
  * Used by accumulators.
728
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.fully_charged Online documentation}
729
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.fully_charged Online documentation}
729
730
  */
730
731
  fully_charged,
731
732
  /**
732
733
  * Used by logistic containers.
733
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.out_of_logistic_network Online documentation}
734
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.out_of_logistic_network Online documentation}
734
735
  */
735
736
  out_of_logistic_network,
736
737
  /**
737
738
  * Used by assembling machines.
738
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.no_recipe Online documentation}
739
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.no_recipe Online documentation}
739
740
  */
740
741
  no_recipe,
741
742
  /**
742
743
  * Used by furnaces.
743
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.no_ingredients Online documentation}
744
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.no_ingredients Online documentation}
744
745
  */
745
746
  no_ingredients,
746
747
  /**
747
748
  * Used by boilers, fluid turrets and fluid energy sources: Boiler has no fluid to work with.
748
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.no_input_fluid Online documentation}
749
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.no_input_fluid Online documentation}
749
750
  */
750
751
  no_input_fluid,
751
752
  /**
752
753
  * Used by labs.
753
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.no_research_in_progress Online documentation}
754
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.no_research_in_progress Online documentation}
754
755
  */
755
756
  no_research_in_progress,
756
757
  /**
757
758
  * Used by mining drills.
758
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.no_minable_resources Online documentation}
759
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.no_minable_resources Online documentation}
759
760
  */
760
761
  no_minable_resources,
761
762
  /**
762
763
  * Used by cargo bays.
763
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.not_connected_to_hub_or_pad Online documentation}
764
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.not_connected_to_hub_or_pad Online documentation}
764
765
  */
765
766
  not_connected_to_hub_or_pad,
766
767
  /**
767
768
  * Used by boilers and fluid turrets: Boiler still has some fluid but is about to run out.
768
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.low_input_fluid Online documentation}
769
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.low_input_fluid Online documentation}
769
770
  */
770
771
  low_input_fluid,
771
772
  /**
772
773
  * Used by crafting machines.
773
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.fluid_ingredient_shortage Online documentation}
774
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.fluid_ingredient_shortage Online documentation}
774
775
  */
775
776
  fluid_ingredient_shortage,
776
777
  /**
777
778
  * Used by crafting machines, boilers, burner energy sources and reactors: Reactor/burner has full burnt result inventory, boiler has full output fluidbox.
778
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.full_output Online documentation}
779
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.full_output Online documentation}
779
780
  */
780
781
  full_output,
781
782
  /**
782
783
  * Used by agricultural towers.
783
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.not_enough_space_in_output Online documentation}
784
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.not_enough_space_in_output Online documentation}
784
785
  */
785
786
  not_enough_space_in_output,
786
787
  /**
787
788
  * Used by burner energy sources.
788
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.full_burnt_result_output Online documentation}
789
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.full_burnt_result_output Online documentation}
789
790
  */
790
791
  full_burnt_result_output,
791
792
  /**
792
793
  * Used by crafting machines.
793
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.item_ingredient_shortage Online documentation}
794
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.item_ingredient_shortage Online documentation}
794
795
  */
795
796
  item_ingredient_shortage,
796
797
  /**
797
798
  * Used by mining drills when the mining fluid is missing.
798
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.missing_required_fluid Online documentation}
799
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.missing_required_fluid Online documentation}
799
800
  */
800
801
  missing_required_fluid,
801
802
  /**
802
803
  * Used by labs.
803
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.missing_science_packs Online documentation}
804
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.missing_science_packs Online documentation}
804
805
  */
805
806
  missing_science_packs,
806
807
  /**
807
808
  * Used by inserters.
808
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.waiting_for_source_items Online documentation}
809
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.waiting_for_source_items Online documentation}
809
810
  */
810
811
  waiting_for_source_items,
811
812
  /**
812
813
  * Used by inserters when wait_for_full_hand is set.
813
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.waiting_for_more_items Online documentation}
814
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.waiting_for_more_items Online documentation}
814
815
  */
815
816
  waiting_for_more_items,
816
817
  /**
817
818
  * Used by inserters and mining drills.
818
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.waiting_for_space_in_destination Online documentation}
819
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.waiting_for_space_in_destination Online documentation}
819
820
  */
820
821
  waiting_for_space_in_destination,
821
822
  /**
822
823
  * Used by the rocket silo.
823
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.preparing_rocket_for_launch Online documentation}
824
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.preparing_rocket_for_launch Online documentation}
824
825
  */
825
826
  preparing_rocket_for_launch,
826
827
  /**
827
828
  * Used by the rocket silo.
828
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.waiting_to_launch_rocket Online documentation}
829
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.waiting_to_launch_rocket Online documentation}
829
830
  */
830
831
  waiting_to_launch_rocket,
831
832
  /**
832
833
  * Used by the rocket silo.
833
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.waiting_for_space_in_platform_hub Online documentation}
834
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.waiting_for_space_in_platform_hub Online documentation}
834
835
  */
835
836
  waiting_for_space_in_platform_hub,
836
837
  /**
837
838
  * Used by the rocket silo.
838
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.launching_rocket Online documentation}
839
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.launching_rocket Online documentation}
839
840
  */
840
841
  launching_rocket,
841
842
  /**
842
843
  * Used by thrusters.
843
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.thrust_not_required Online documentation}
844
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.thrust_not_required Online documentation}
844
845
  */
845
846
  thrust_not_required,
846
847
  /**
847
848
  * Used by space platform hubs.
848
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.on_the_way Online documentation}
849
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.on_the_way Online documentation}
849
850
  */
850
851
  on_the_way,
851
852
  /**
852
853
  * Used by space platform hubs.
853
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.waiting_in_orbit Online documentation}
854
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.waiting_in_orbit Online documentation}
854
855
  */
855
856
  waiting_in_orbit,
856
857
  /**
857
858
  * Used by trains.
858
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.waiting_at_stop Online documentation}
859
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.waiting_at_stop Online documentation}
859
860
  */
860
861
  waiting_at_stop,
861
862
  /**
862
863
  * Used by space platform hubs.
863
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.waiting_for_rockets_to_arrive Online documentation}
864
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.waiting_for_rockets_to_arrive Online documentation}
864
865
  */
865
866
  waiting_for_rockets_to_arrive,
866
867
  /**
867
868
  * Used by space platform hubs.
868
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.not_enough_thrust Online documentation}
869
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.not_enough_thrust Online documentation}
869
870
  */
870
871
  not_enough_thrust,
871
872
  /**
872
873
  * Used by trains.
873
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.destination_stop_full Online documentation}
874
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.destination_stop_full Online documentation}
874
875
  */
875
876
  destination_stop_full,
876
877
  /**
877
878
  * Used by trains and space platform hubs.
878
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.no_path Online documentation}
879
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.no_path Online documentation}
879
880
  */
880
881
  no_path,
881
882
  /**
882
883
  * Used by beacons.
883
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.no_modules_to_transmit Online documentation}
884
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.no_modules_to_transmit Online documentation}
884
885
  */
885
886
  no_modules_to_transmit,
886
887
  /**
887
888
  * Used by roboports.
888
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.recharging_after_power_outage Online documentation}
889
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.recharging_after_power_outage Online documentation}
889
890
  */
890
891
  recharging_after_power_outage,
891
892
  /**
892
893
  * Used by inserters targeting entity ghosts.
893
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.waiting_for_target_to_be_built Online documentation}
894
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.waiting_for_target_to_be_built Online documentation}
894
895
  */
895
896
  waiting_for_target_to_be_built,
896
897
  /**
897
898
  * Used by inserters targeting rails.
898
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.waiting_for_train Online documentation}
899
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.waiting_for_train Online documentation}
899
900
  */
900
901
  waiting_for_train,
901
902
  /**
902
903
  * Used by ammo turrets.
903
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.no_ammo Online documentation}
904
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.no_ammo Online documentation}
904
905
  */
905
906
  no_ammo,
906
907
  /**
907
908
  * Used by heat energy sources.
908
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.low_temperature Online documentation}
909
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.low_temperature Online documentation}
909
910
  */
910
911
  low_temperature,
911
912
  /**
912
913
  * Used by constant combinators: Combinator is turned off via switch in GUI.
913
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.disabled Online documentation}
914
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.disabled Online documentation}
914
915
  */
915
916
  disabled,
916
917
  /**
917
918
  * Used by lamps.
918
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.turned_off_during_daytime Online documentation}
919
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.turned_off_during_daytime Online documentation}
919
920
  */
920
921
  turned_off_during_daytime,
921
922
  /**
922
923
  * Used by rail signals.
923
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.not_connected_to_rail Online documentation}
924
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.not_connected_to_rail Online documentation}
924
925
  */
925
926
  not_connected_to_rail,
926
927
  /**
927
928
  * Used by rail signals.
928
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.cant_divide_segments Online documentation}
929
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.cant_divide_segments Online documentation}
929
930
  */
930
931
  cant_divide_segments,
931
932
  /**
932
933
  * Used by filter inserters.
933
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.no_filter Online documentation}
934
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.no_filter Online documentation}
934
935
  */
935
936
  no_filter,
936
937
  /**
937
938
  * Used by agricultural towers.
938
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.no_spot_seedable_by_inputs Online documentation}
939
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.no_spot_seedable_by_inputs Online documentation}
939
940
  */
940
941
  no_spot_seedable_by_inputs,
941
942
  /**
942
943
  * Used by agricultural towers.
943
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.waiting_for_plants_to_grow Online documentation}
944
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.waiting_for_plants_to_grow Online documentation}
944
945
  */
945
946
  waiting_for_plants_to_grow,
946
947
  /**
947
948
  * Used by asteroid collectors.
948
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.computing_navigation Online documentation}
949
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.computing_navigation Online documentation}
949
950
  */
950
951
  computing_navigation,
951
952
  /**
952
953
  * Used by pipes, pipes to ground and storage tanks.
953
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.pipeline_overextended Online documentation}
954
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.pipeline_overextended Online documentation}
954
955
  */
955
956
  pipeline_overextended,
956
957
  /**
957
958
  * Used by assembling machines.
958
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.entity_status.recipe_not_researched Online documentation}
959
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.entity_status.recipe_not_researched Online documentation}
959
960
  */
960
961
  recipe_not_researched,
961
962
  }
@@ -965,8 +966,8 @@ declare global {
965
966
  yellow,
966
967
  }
967
968
  /**
968
- * See the {@linkplain https://lua-api.factorio.com/2.0.21/events.html events page} for more info on what events contain and when they get raised.
969
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.events Online documentation}
969
+ * See the {@linkplain https://lua-api.factorio.com/2.0.22/events.html events page} for more info on what events contain and when they get raised.
970
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.events Online documentation}
970
971
  */
971
972
  namespace events {
972
973
  /**
@@ -1005,6 +1006,10 @@ declare global {
1005
1006
  * Event type: {@link OnCancelledUpgradeEvent}
1006
1007
  */
1007
1008
  const on_cancelled_upgrade: EventId<OnCancelledUpgradeEvent>
1009
+ /**
1010
+ * Event type: {@link OnCargoPodFinishedAscendingEvent}
1011
+ */
1012
+ const on_cargo_pod_finished_ascending: EventId<OnCargoPodFinishedAscendingEvent>
1008
1013
  /**
1009
1014
  * Event type: {@link OnCharacterCorpseExpiredEvent}
1010
1015
  */
@@ -1767,8 +1772,8 @@ declare global {
1767
1772
  const script_raised_teleported: EventId<ScriptRaisedTeleportedEvent>
1768
1773
  }
1769
1774
  /**
1770
- * See the {@linkplain https://lua-api.factorio.com/2.0.21/events.html events page} for more info on what events contain and when they get raised.
1771
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.events Online documentation}
1775
+ * See the {@linkplain https://lua-api.factorio.com/2.0.22/events.html events page} for more info on what events contain and when they get raised.
1776
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.events Online documentation}
1772
1777
  */
1773
1778
  type events = (typeof events)[keyof typeof events]
1774
1779
  enum flow_precision_index {
@@ -1784,17 +1789,17 @@ declare global {
1784
1789
  enum game_controller_interaction {
1785
1790
  /**
1786
1791
  * Game controller will always hover this element regardless of type or state.
1787
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.game_controller_interaction.always Online documentation}
1792
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.game_controller_interaction.always Online documentation}
1788
1793
  */
1789
1794
  always,
1790
1795
  /**
1791
1796
  * Never hover this element with a game controller.
1792
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.game_controller_interaction.never Online documentation}
1797
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.game_controller_interaction.never Online documentation}
1793
1798
  */
1794
1799
  never,
1795
1800
  /**
1796
1801
  * Hover according to the element type and implementation.
1797
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.game_controller_interaction.normal Online documentation}
1802
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.game_controller_interaction.normal Online documentation}
1798
1803
  */
1799
1804
  normal,
1800
1805
  }
@@ -2178,12 +2183,12 @@ declare global {
2178
2183
  circuit_controlled,
2179
2184
  /**
2180
2185
  * Used by rocket silos.
2181
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.logistic_section_type.transitional_request_controlled Online documentation}
2186
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.logistic_section_type.transitional_request_controlled Online documentation}
2182
2187
  */
2183
2188
  transitional_request_controlled,
2184
2189
  /**
2185
2190
  * Used by space platform hubs.
2186
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.logistic_section_type.request_missing_materials_controlled Online documentation}
2191
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.logistic_section_type.request_missing_materials_controlled Online documentation}
2187
2192
  */
2188
2193
  request_missing_materials_controlled,
2189
2194
  }
@@ -2202,17 +2207,17 @@ declare global {
2202
2207
  enum print_skip {
2203
2208
  /**
2204
2209
  * Print will not be skipped.
2205
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.print_skip.never Online documentation}
2210
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.print_skip.never Online documentation}
2206
2211
  */
2207
2212
  never,
2208
2213
  /**
2209
2214
  * Print will be skipped if same text was recently printed (within last 60 ticks). Used by most game messages.
2210
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.print_skip.if_redundant Online documentation}
2215
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.print_skip.if_redundant Online documentation}
2211
2216
  */
2212
2217
  if_redundant,
2213
2218
  /**
2214
2219
  * Print will be skipped if same text is still visible (printed within last 1152 ticks). Used by some notifications.
2215
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.print_skip.if_visible Online documentation}
2220
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.print_skip.if_visible Online documentation}
2216
2221
  */
2217
2222
  if_visible,
2218
2223
  }
@@ -2223,7 +2228,7 @@ declare global {
2223
2228
  }
2224
2229
  /**
2225
2230
  * This define describes all top-level prototypes and their associated subtypes. It is organized as a lookup table, meaning the values of all the defines is `0`. As an example, `defines.prototypes['entity']` looks like `{furnace=0, inserter=0, container=0, ...}`.
2226
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.prototypes Online documentation}
2231
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.prototypes Online documentation}
2227
2232
  */
2228
2233
  interface prototypes {
2229
2234
  achievement: {
@@ -2612,7 +2617,7 @@ declare global {
2612
2617
  }
2613
2618
  /**
2614
2619
  * This define describes all top-level prototypes and their associated subtypes. It is organized as a lookup table, meaning the values of all the defines is `0`. As an example, `defines.prototypes['entity']` looks like `{furnace=0, inserter=0, container=0, ...}`.
2615
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.prototypes Online documentation}
2620
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.prototypes Online documentation}
2616
2621
  */
2617
2622
  const prototypes: prototypes
2618
2623
  enum rail_connection_direction {
@@ -2737,128 +2742,128 @@ declare global {
2737
2742
  enum robot_order_type {
2738
2743
  /**
2739
2744
  * Construct a ghost.
2740
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.robot_order_type.construct Online documentation}
2745
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.robot_order_type.construct Online documentation}
2741
2746
  */
2742
2747
  construct,
2743
2748
  /**
2744
2749
  * Pickup an item.
2745
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.robot_order_type.pickup Online documentation}
2750
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.robot_order_type.pickup Online documentation}
2746
2751
  */
2747
2752
  pickup,
2748
2753
  /**
2749
2754
  * Deliver an item.
2750
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.robot_order_type.deliver Online documentation}
2755
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.robot_order_type.deliver Online documentation}
2751
2756
  */
2752
2757
  deliver,
2753
2758
  /**
2754
2759
  * Repair an entity.
2755
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.robot_order_type.repair Online documentation}
2760
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.robot_order_type.repair Online documentation}
2756
2761
  */
2757
2762
  repair,
2758
2763
  /**
2759
2764
  * Deconstruct an entity.
2760
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.robot_order_type.deconstruct Online documentation}
2765
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.robot_order_type.deconstruct Online documentation}
2761
2766
  */
2762
2767
  deconstruct,
2763
2768
  /**
2764
2769
  * Deliver specific items to an entity (item request proxy).
2765
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.robot_order_type.deliver_items Online documentation}
2770
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.robot_order_type.deliver_items Online documentation}
2766
2771
  */
2767
2772
  deliver_items,
2768
2773
  /**
2769
2774
  * Upgrade an entity.
2770
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.robot_order_type.upgrade Online documentation}
2775
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.robot_order_type.upgrade Online documentation}
2771
2776
  */
2772
2777
  upgrade,
2773
2778
  /**
2774
2779
  * Explode a cliff.
2775
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.robot_order_type.explode_cliff Online documentation}
2780
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.robot_order_type.explode_cliff Online documentation}
2776
2781
  */
2777
2782
  explode_cliff,
2778
2783
  /**
2779
2784
  * Pickup items from an entity (item request proxy).
2780
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.robot_order_type.pickup_items Online documentation}
2785
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.robot_order_type.pickup_items Online documentation}
2781
2786
  */
2782
2787
  pickup_items,
2783
2788
  }
2784
2789
  /**
2785
2790
  * The various parts of the launch sequence of the rocket silo.
2786
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.rocket_silo_status Online documentation}
2791
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.rocket_silo_status Online documentation}
2787
2792
  */
2788
2793
  enum rocket_silo_status {
2789
2794
  /**
2790
2795
  * The rocket silo is crafting rocket parts. When there are enough rocket parts, the silo will switch into the `create_rocket` state.
2791
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.rocket_silo_status.building_rocket Online documentation}
2796
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.rocket_silo_status.building_rocket Online documentation}
2792
2797
  */
2793
2798
  building_rocket,
2794
2799
  /**
2795
2800
  * The next state is `lights_blinking_open`. The rocket silo rocket entity gets created.
2796
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.rocket_silo_status.create_rocket Online documentation}
2801
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.rocket_silo_status.create_rocket Online documentation}
2797
2802
  */
2798
2803
  create_rocket,
2799
2804
  /**
2800
2805
  * The next state is `doors_opening`. The rocket is getting prepared for launch.
2801
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.rocket_silo_status.lights_blinking_open Online documentation}
2806
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.rocket_silo_status.lights_blinking_open Online documentation}
2802
2807
  */
2803
2808
  lights_blinking_open,
2804
2809
  /**
2805
2810
  * The next state is `doors_opened`. The rocket is getting prepared for launch.
2806
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.rocket_silo_status.doors_opening Online documentation}
2811
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.rocket_silo_status.doors_opening Online documentation}
2807
2812
  */
2808
2813
  doors_opening,
2809
2814
  /**
2810
2815
  * The next state is `rocket_rising` or if the rocket is destroyed in this state then the next state will be `lights_blinking_close`. The rocket is getting prepared for launch.
2811
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.rocket_silo_status.doors_opened Online documentation}
2816
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.rocket_silo_status.doors_opened Online documentation}
2812
2817
  */
2813
2818
  doors_opened,
2814
2819
  /**
2815
2820
  * The next state is `arms_advance` or if the rocket is destroyed in this state then the next state will be `lights_blinking_close`. The rocket is getting prepared for launch.
2816
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.rocket_silo_status.rocket_rising Online documentation}
2821
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.rocket_silo_status.rocket_rising Online documentation}
2817
2822
  */
2818
2823
  rocket_rising,
2819
2824
  /**
2820
2825
  * The next state is `rocket_ready` or if the rocket is destroyed in this state then the next state will be `lights_blinking_close`. The rocket is getting prepared for launch.
2821
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.rocket_silo_status.arms_advance Online documentation}
2826
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.rocket_silo_status.arms_advance Online documentation}
2822
2827
  */
2823
2828
  arms_advance,
2824
2829
  /**
2825
2830
  * The rocket launch can be started by the player. When the launch is started, the silo switches into the `launch_starting` state.
2826
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.rocket_silo_status.rocket_ready Online documentation}
2831
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.rocket_silo_status.rocket_ready Online documentation}
2827
2832
  */
2828
2833
  rocket_ready,
2829
2834
  /**
2830
2835
  * The next state is `launch_started`.
2831
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.rocket_silo_status.launch_starting Online documentation}
2836
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.rocket_silo_status.launch_starting Online documentation}
2832
2837
  */
2833
2838
  launch_starting,
2834
2839
  /**
2835
2840
  * The next state is `arms_retract` or if the rocket is destroyed in this state then the next state will be `lights_blinking_close`. The rocket is getting launched.
2836
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.rocket_silo_status.engine_starting Online documentation}
2841
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.rocket_silo_status.engine_starting Online documentation}
2837
2842
  */
2838
2843
  engine_starting,
2839
2844
  /**
2840
2845
  * The next state is `rocket_flying` or if the rocket is destroyed in this state then the next state will be `lights_blinking_close`. The rocket is getting launched.
2841
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.rocket_silo_status.arms_retract Online documentation}
2846
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.rocket_silo_status.arms_retract Online documentation}
2842
2847
  */
2843
2848
  arms_retract,
2844
2849
  /**
2845
2850
  * The next state is `lights_blinking_close`. The rocket is getting launched.
2846
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.rocket_silo_status.rocket_flying Online documentation}
2851
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.rocket_silo_status.rocket_flying Online documentation}
2847
2852
  */
2848
2853
  rocket_flying,
2849
2854
  /**
2850
2855
  * The next state is `doors_closing`.
2851
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.rocket_silo_status.lights_blinking_close Online documentation}
2856
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.rocket_silo_status.lights_blinking_close Online documentation}
2852
2857
  */
2853
2858
  lights_blinking_close,
2854
2859
  /**
2855
2860
  * The next state is `building_rocket`.
2856
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.rocket_silo_status.doors_closing Online documentation}
2861
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.rocket_silo_status.doors_closing Online documentation}
2857
2862
  */
2858
2863
  doors_closing,
2859
2864
  /**
2860
2865
  * The next state is `engine_starting` or if the rocket is destroyed in this state then the next state will be `lights_blinking_close`. The rocket is getting launched.
2861
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.rocket_silo_status.launch_started Online documentation}
2866
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.rocket_silo_status.launch_started Online documentation}
2862
2867
  */
2863
2868
  launch_started,
2864
2869
  }
@@ -2875,74 +2880,74 @@ declare global {
2875
2880
  }
2876
2881
  /**
2877
2882
  * State of an ordinary rail signal.
2878
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.signal_state Online documentation}
2883
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.signal_state Online documentation}
2879
2884
  */
2880
2885
  enum signal_state {
2881
2886
  /**
2882
2887
  * Green.
2883
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.signal_state.open Online documentation}
2888
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.signal_state.open Online documentation}
2884
2889
  */
2885
2890
  open,
2886
2891
  /**
2887
2892
  * Red.
2888
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.signal_state.closed Online documentation}
2893
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.signal_state.closed Online documentation}
2889
2894
  */
2890
2895
  closed,
2891
2896
  /**
2892
2897
  * Orange.
2893
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.signal_state.reserved Online documentation}
2898
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.signal_state.reserved Online documentation}
2894
2899
  */
2895
2900
  reserved,
2896
2901
  /**
2897
2902
  * Red - From circuit network.
2898
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.signal_state.reserved_by_circuit_network Online documentation}
2903
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.signal_state.reserved_by_circuit_network Online documentation}
2899
2904
  */
2900
2905
  reserved_by_circuit_network,
2901
2906
  }
2902
2907
  enum space_platform_state {
2903
2908
  /**
2904
2909
  * Waiting for a starter pack.
2905
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.space_platform_state.waiting_for_starter_pack Online documentation}
2910
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.space_platform_state.waiting_for_starter_pack Online documentation}
2906
2911
  */
2907
2912
  waiting_for_starter_pack,
2908
2913
  /**
2909
2914
  * Starter pack was requested from the logistics system.
2910
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.space_platform_state.starter_pack_requested Online documentation}
2915
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.space_platform_state.starter_pack_requested Online documentation}
2911
2916
  */
2912
2917
  starter_pack_requested,
2913
2918
  /**
2914
2919
  * Starter pack is on the way.
2915
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.space_platform_state.starter_pack_on_the_way Online documentation}
2920
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.space_platform_state.starter_pack_on_the_way Online documentation}
2916
2921
  */
2917
2922
  starter_pack_on_the_way,
2918
2923
  /**
2919
2924
  * Following the path.
2920
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.space_platform_state.on_the_path Online documentation}
2925
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.space_platform_state.on_the_path Online documentation}
2921
2926
  */
2922
2927
  on_the_path,
2923
2928
  /**
2924
2929
  * Platform is ready to leave this planet and does not accept deliveries.
2925
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.space_platform_state.waiting_for_departure Online documentation}
2930
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.space_platform_state.waiting_for_departure Online documentation}
2926
2931
  */
2927
2932
  waiting_for_departure,
2928
2933
  /**
2929
2934
  * Waiting for a starter pack
2930
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.space_platform_state.no_schedule Online documentation}
2935
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.space_platform_state.no_schedule Online documentation}
2931
2936
  */
2932
2937
  no_schedule,
2933
2938
  /**
2934
2939
  * Doesn't have anywhere to go.
2935
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.space_platform_state.no_path Online documentation}
2940
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.space_platform_state.no_path Online documentation}
2936
2941
  */
2937
2942
  no_path,
2938
2943
  /**
2939
2944
  * Waiting at a station.
2940
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.space_platform_state.waiting_at_station Online documentation}
2945
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.space_platform_state.waiting_at_station Online documentation}
2941
2946
  */
2942
2947
  waiting_at_station,
2943
2948
  /**
2944
2949
  * Paused.
2945
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.space_platform_state.paused Online documentation}
2950
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.space_platform_state.paused Online documentation}
2946
2951
  */
2947
2952
  paused,
2948
2953
  }
@@ -2969,52 +2974,52 @@ declare global {
2969
2974
  enum train_state {
2970
2975
  /**
2971
2976
  * Normal state -- following the path.
2972
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.train_state.on_the_path Online documentation}
2977
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.train_state.on_the_path Online documentation}
2973
2978
  */
2974
2979
  on_the_path,
2975
2980
  /**
2976
2981
  * Doesn't have anywhere to go.
2977
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.train_state.no_schedule Online documentation}
2982
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.train_state.no_schedule Online documentation}
2978
2983
  */
2979
2984
  no_schedule,
2980
2985
  /**
2981
2986
  * Has no path and is stopped.
2982
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.train_state.no_path Online documentation}
2987
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.train_state.no_path Online documentation}
2983
2988
  */
2984
2989
  no_path,
2985
2990
  /**
2986
2991
  * Braking before a rail signal.
2987
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.train_state.arrive_signal Online documentation}
2992
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.train_state.arrive_signal Online documentation}
2988
2993
  */
2989
2994
  arrive_signal,
2990
2995
  /**
2991
2996
  * Waiting at a signal.
2992
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.train_state.wait_signal Online documentation}
2997
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.train_state.wait_signal Online documentation}
2993
2998
  */
2994
2999
  wait_signal,
2995
3000
  /**
2996
3001
  * Braking before a station.
2997
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.train_state.arrive_station Online documentation}
3002
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.train_state.arrive_station Online documentation}
2998
3003
  */
2999
3004
  arrive_station,
3000
3005
  /**
3001
3006
  * Switched to manual control and has to stop.
3002
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.train_state.manual_control_stop Online documentation}
3007
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.train_state.manual_control_stop Online documentation}
3003
3008
  */
3004
3009
  manual_control_stop,
3005
3010
  /**
3006
3011
  * Can move if user explicitly sits in and rides the train.
3007
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.train_state.manual_control Online documentation}
3012
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.train_state.manual_control Online documentation}
3008
3013
  */
3009
3014
  manual_control,
3010
3015
  /**
3011
3016
  * Waiting at a station.
3012
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.train_state.wait_station Online documentation}
3017
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.train_state.wait_station Online documentation}
3013
3018
  */
3014
3019
  wait_station,
3015
3020
  /**
3016
3021
  * Same as no_path but all candidate train stops are full
3017
- * @see {@link https://lua-api.factorio.com/2.0.21/defines.html#defines.train_state.destination_full Online documentation}
3022
+ * @see {@link https://lua-api.factorio.com/2.0.22/defines.html#defines.train_state.destination_full Online documentation}
3018
3023
  */
3019
3024
  destination_full,
3020
3025
  }