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