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