typed-factorio 3.13.1 → 3.15.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -13,7 +13,9 @@ import type {
13
13
  OnBuiltEntityEvent,
14
14
  OnCancelledDeconstructionEvent,
15
15
  OnCancelledUpgradeEvent,
16
+ OnCargoPodDeliveredCargoEvent,
16
17
  OnCargoPodFinishedAscendingEvent,
18
+ OnCargoPodFinishedDescendingEvent,
17
19
  OnCharacterCorpseExpiredEvent,
18
20
  OnChartTagAddedEvent,
19
21
  OnChartTagModifiedEvent,
@@ -65,6 +67,7 @@ import type {
65
67
  OnMarkedForUpgradeEvent,
66
68
  OnMarketItemPurchasedEvent,
67
69
  OnModItemOpenedEvent,
70
+ OnMultiplayerInitEvent,
68
71
  OnObjectDestroyedEvent,
69
72
  OnPermissionGroupAddedEvent,
70
73
  OnPermissionGroupDeletedEvent,
@@ -172,6 +175,7 @@ import type {
172
175
  OnSectorScannedEvent,
173
176
  OnSegmentEntityCreatedEvent,
174
177
  OnSelectedEntityChangedEvent,
178
+ OnSingleplayerInitEvent,
175
179
  OnSpacePlatformBuiltEntityEvent,
176
180
  OnSpacePlatformBuiltTileEvent,
177
181
  OnSpacePlatformChangedStateEvent,
@@ -229,7 +233,7 @@ declare global {
229
233
  }
230
234
  /**
231
235
  * 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}
236
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.behavior_result Online documentation}
233
237
  */
234
238
  enum behavior_result {
235
239
  in_progress,
@@ -250,9 +254,36 @@ declare global {
250
254
  forced,
251
255
  superforced,
252
256
  }
257
+ enum cargo_destination {
258
+ /**
259
+ * The default destination type of a cargo pod when created runtime. Setting its destination to any other type will instantly launch it.
260
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.cargo_destination.invalid Online documentation}
261
+ */
262
+ invalid,
263
+ /**
264
+ * Cargo pods with orbit destination are destroyed when ascent is completed.
265
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.cargo_destination.orbit Online documentation}
266
+ */
267
+ orbit,
268
+ /**
269
+ * Any cargo landing pad or space platform hub.
270
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.cargo_destination.station Online documentation}
271
+ */
272
+ station,
273
+ /**
274
+ * Cargo pods will switch destination type from surface to station before starting descent if there is a station available and {@link CargoDestination#position CargoDestination::position} has not been specified.
275
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.cargo_destination.surface Online documentation}
276
+ */
277
+ surface,
278
+ /**
279
+ * Only used for sending a space platform starter pack to a platform that is waiting for one. Regular deliveries to space platform hubs use {@link defines.cargo_destination.station station} destination type instead.
280
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.cargo_destination.space_platform Online documentation}
281
+ */
282
+ space_platform,
283
+ }
253
284
  /**
254
285
  * State of a chain signal.
255
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.chain_signal_state Online documentation}
286
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.chain_signal_state Online documentation}
256
287
  */
257
288
  enum chain_signal_state {
258
289
  none,
@@ -270,73 +301,73 @@ declare global {
270
301
  }
271
302
  /**
272
303
  * 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}
304
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.command Online documentation}
274
305
  */
275
306
  enum command {
276
307
  /**
277
308
  * Attack another entity.
278
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.command.attack Online documentation}
309
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.command.attack Online documentation}
279
310
  */
280
311
  attack = 0,
281
312
  /**
282
313
  * 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}
314
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.command.go_to_location Online documentation}
284
315
  */
285
316
  go_to_location = 1,
286
317
  /**
287
318
  * 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}
319
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.command.compound Online documentation}
289
320
  */
290
321
  compound = 2,
291
322
  /**
292
323
  * 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}
324
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.command.group Online documentation}
294
325
  */
295
326
  group = 3,
296
327
  /**
297
328
  * 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}
329
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.command.attack_area Online documentation}
299
330
  */
300
331
  attack_area = 4,
301
332
  /**
302
333
  * Chill.
303
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.command.wander Online documentation}
334
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.command.wander Online documentation}
304
335
  */
305
336
  wander = 5,
306
337
  /**
307
338
  * Flee from another entity.
308
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.command.flee Online documentation}
339
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.command.flee Online documentation}
309
340
  */
310
341
  flee = 6,
311
342
  /**
312
343
  * 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}
344
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.command.stop Online documentation}
314
345
  */
315
346
  stop = 7,
316
347
  /**
317
348
  * 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}
349
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.command.build_base Online documentation}
319
350
  */
320
351
  build_base = 8,
321
352
  }
322
353
  /**
323
354
  * 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}
355
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.compound_command Online documentation}
325
356
  */
326
357
  enum compound_command {
327
358
  /**
328
359
  * 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}
360
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.compound_command.logical_and Online documentation}
330
361
  */
331
362
  logical_and,
332
363
  /**
333
364
  * 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}
365
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.compound_command.logical_or Online documentation}
335
366
  */
336
367
  logical_or,
337
368
  /**
338
369
  * 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}
370
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.compound_command.return_last Online documentation}
340
371
  */
341
372
  return_last,
342
373
  }
@@ -398,200 +429,205 @@ declare global {
398
429
  enum type {
399
430
  /**
400
431
  * {@link LuaContainerControlBehavior}
401
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.control_behavior.type.container Online documentation}
432
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.control_behavior.type.container Online documentation}
402
433
  */
403
434
  container,
404
435
  /**
405
436
  * {@link LuaGenericOnOffControlBehavior}
406
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.control_behavior.type.generic_on_off Online documentation}
437
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.control_behavior.type.generic_on_off Online documentation}
407
438
  */
408
439
  generic_on_off,
409
440
  /**
410
441
  * {@link LuaInserterControlBehavior}
411
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.control_behavior.type.inserter Online documentation}
442
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.control_behavior.type.inserter Online documentation}
412
443
  */
413
444
  inserter,
414
445
  /**
415
446
  * {@link LuaLampControlBehavior}
416
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.control_behavior.type.lamp Online documentation}
447
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.control_behavior.type.lamp Online documentation}
417
448
  */
418
449
  lamp,
419
450
  /**
420
451
  * {@link LuaLogisticContainerControlBehavior}
421
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.control_behavior.type.logistic_container Online documentation}
452
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.control_behavior.type.logistic_container Online documentation}
422
453
  */
423
454
  logistic_container,
424
455
  /**
425
456
  * {@link LuaRoboportControlBehavior}
426
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.control_behavior.type.roboport Online documentation}
457
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.control_behavior.type.roboport Online documentation}
427
458
  */
428
459
  roboport,
429
460
  /**
430
461
  * {@link LuaStorageTankControlBehavior}
431
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.control_behavior.type.storage_tank Online documentation}
462
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.control_behavior.type.storage_tank Online documentation}
432
463
  */
433
464
  storage_tank,
434
465
  /**
435
466
  * {@link LuaTrainStopControlBehavior}
436
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.control_behavior.type.train_stop Online documentation}
467
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.control_behavior.type.train_stop Online documentation}
437
468
  */
438
469
  train_stop,
439
470
  /**
440
471
  * {@link LuaDeciderCombinatorControlBehavior}
441
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.control_behavior.type.decider_combinator Online documentation}
472
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.control_behavior.type.decider_combinator Online documentation}
442
473
  */
443
474
  decider_combinator,
444
475
  /**
445
476
  * {@link LuaArithmeticCombinatorControlBehavior}
446
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.control_behavior.type.arithmetic_combinator Online documentation}
477
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.control_behavior.type.arithmetic_combinator Online documentation}
447
478
  */
448
479
  arithmetic_combinator,
449
480
  /**
450
481
  * {@link LuaConstantCombinatorControlBehavior}
451
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.control_behavior.type.constant_combinator Online documentation}
482
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.control_behavior.type.constant_combinator Online documentation}
452
483
  */
453
484
  constant_combinator,
454
485
  /**
455
486
  * {@link LuaTransportBeltControlBehavior}
456
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.control_behavior.type.transport_belt Online documentation}
487
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.control_behavior.type.transport_belt Online documentation}
457
488
  */
458
489
  transport_belt,
459
490
  /**
460
491
  * {@link LuaAccumulatorControlBehavior}
461
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.control_behavior.type.accumulator Online documentation}
492
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.control_behavior.type.accumulator Online documentation}
462
493
  */
463
494
  accumulator,
464
495
  /**
465
496
  * {@link LuaRailSignalBaseControlBehavior}
466
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.control_behavior.type.rail_signal Online documentation}
497
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.control_behavior.type.rail_signal Online documentation}
467
498
  */
468
499
  rail_signal,
469
500
  /**
470
501
  * {@link LuaRailSignalBaseControlBehavior}
471
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.control_behavior.type.rail_chain_signal Online documentation}
502
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.control_behavior.type.rail_chain_signal Online documentation}
472
503
  */
473
504
  rail_chain_signal,
474
505
  /**
475
506
  * {@link LuaWallControlBehavior}
476
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.control_behavior.type.wall Online documentation}
507
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.control_behavior.type.wall Online documentation}
477
508
  */
478
509
  wall,
479
510
  /**
480
511
  * {@link LuaMiningDrillControlBehavior}
481
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.control_behavior.type.mining_drill Online documentation}
512
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.control_behavior.type.mining_drill Online documentation}
482
513
  */
483
514
  mining_drill,
484
515
  /**
485
516
  * {@link LuaProgrammableSpeakerControlBehavior}
486
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.control_behavior.type.programmable_speaker Online documentation}
517
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.control_behavior.type.programmable_speaker Online documentation}
487
518
  */
488
519
  programmable_speaker,
489
520
  /**
490
521
  * {@link LuaAssemblingMachineControlBehavior}
491
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.control_behavior.type.assembling_machine Online documentation}
522
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.control_behavior.type.assembling_machine Online documentation}
492
523
  */
493
524
  assembling_machine,
494
525
  /**
495
526
  * {@link LuaPumpControlBehavior}
496
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.control_behavior.type.pump Online documentation}
527
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.control_behavior.type.pump Online documentation}
497
528
  */
498
529
  pump,
499
530
  /**
500
531
  * {@link LuaSelectorCombinatorControlBehavior}
501
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.control_behavior.type.selector_combinator Online documentation}
532
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.control_behavior.type.selector_combinator Online documentation}
502
533
  */
503
534
  selector_combinator,
504
535
  /**
505
536
  * {@link LuaRocketSiloControlBehavior}
506
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.control_behavior.type.rocket_silo Online documentation}
537
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.control_behavior.type.rocket_silo Online documentation}
507
538
  */
508
539
  rocket_silo,
509
540
  /**
510
541
  * {@link LuaTurretControlBehavior}
511
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.control_behavior.type.turret Online documentation}
542
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.control_behavior.type.turret Online documentation}
512
543
  */
513
544
  turret,
514
545
  /**
515
546
  * {@link LuaReactorControlBehavior}
516
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.control_behavior.type.reactor Online documentation}
547
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.control_behavior.type.reactor Online documentation}
517
548
  */
518
549
  reactor,
519
550
  /**
520
551
  * {@link LuaSpacePlatformHubControlBehavior}
521
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.control_behavior.type.space_platform_hub Online documentation}
552
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.control_behavior.type.space_platform_hub Online documentation}
522
553
  */
523
554
  space_platform_hub,
524
555
  /**
525
556
  * {@link LuaArtilleryTurretControlBehavior}
526
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.control_behavior.type.artillery_turret Online documentation}
557
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.control_behavior.type.artillery_turret Online documentation}
527
558
  */
528
559
  artillery_turret,
529
560
  /**
530
561
  * {@link LuaAsteroidCollectorControlBehavior}
531
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.control_behavior.type.asteroid_collector Online documentation}
562
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.control_behavior.type.asteroid_collector Online documentation}
532
563
  */
533
564
  asteroid_collector,
534
565
  /**
535
566
  * {@link LuaRadarControlBehavior}
536
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.control_behavior.type.radar Online documentation}
567
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.control_behavior.type.radar Online documentation}
537
568
  */
538
569
  radar,
539
570
  /**
540
571
  * {@link LuaDisplayPanelControlBehavior}
541
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.control_behavior.type.display_panel Online documentation}
572
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.control_behavior.type.display_panel Online documentation}
542
573
  */
543
574
  display_panel,
544
575
  /**
545
576
  * {@link LuaLoaderControlBehavior}
546
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.control_behavior.type.loader Online documentation}
577
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.control_behavior.type.loader Online documentation}
547
578
  */
548
579
  loader,
549
580
  /**
550
581
  * {@link LuaCargoLandingPadControlBehavior}
551
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.control_behavior.type.cargo_landing_pad Online documentation}
582
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.control_behavior.type.cargo_landing_pad Online documentation}
552
583
  */
553
584
  cargo_landing_pad,
554
585
  /**
555
586
  * {@link LuaAgriculturalTowerControlBehavior}
556
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.control_behavior.type.agricultural_tower Online documentation}
587
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.control_behavior.type.agricultural_tower Online documentation}
557
588
  */
558
589
  agricultural_tower,
590
+ /**
591
+ * {@link LuaFurnaceControlBehavior}
592
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.control_behavior.type.furnace Online documentation}
593
+ */
594
+ furnace,
559
595
  }
560
596
  }
561
597
  enum controllers {
562
598
  /**
563
599
  * 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}
600
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.controllers.ghost Online documentation}
565
601
  */
566
602
  ghost,
567
603
  /**
568
604
  * 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}
605
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.controllers.character Online documentation}
570
606
  */
571
607
  character,
572
608
  /**
573
609
  * 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}
610
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.controllers.god Online documentation}
575
611
  */
576
612
  god,
577
613
  /**
578
614
  * 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}
615
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.controllers.editor Online documentation}
580
616
  */
581
617
  editor,
582
618
  /**
583
619
  * 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}
620
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.controllers.cutscene Online documentation}
585
621
  */
586
622
  cutscene,
587
623
  /**
588
624
  * 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}
625
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.controllers.spectator Online documentation}
590
626
  */
591
627
  spectator,
592
628
  /**
593
629
  * 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}
630
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.controllers.remote Online documentation}
595
631
  */
596
632
  remote,
597
633
  }
@@ -653,22 +689,22 @@ declare global {
653
689
  enum distraction {
654
690
  /**
655
691
  * 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}
692
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.distraction.none Online documentation}
657
693
  */
658
694
  none,
659
695
  /**
660
696
  * 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}
697
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.distraction.by_enemy Online documentation}
662
698
  */
663
699
  by_enemy,
664
700
  /**
665
701
  * 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}
702
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.distraction.by_anything Online documentation}
667
703
  */
668
704
  by_anything,
669
705
  /**
670
706
  * Attack when attacked.
671
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.distraction.by_damage Online documentation}
707
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.distraction.by_damage Online documentation}
672
708
  */
673
709
  by_damage,
674
710
  }
@@ -677,12 +713,12 @@ declare global {
677
713
  normal,
678
714
  /**
679
715
  * Used by ghosts.
680
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.entity_status.ghost Online documentation}
716
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.ghost Online documentation}
681
717
  */
682
718
  ghost,
683
719
  /**
684
720
  * 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}
721
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.broken Online documentation}
686
722
  */
687
723
  broken,
688
724
  no_power,
@@ -696,267 +732,267 @@ declare global {
696
732
  marked_for_deconstruction,
697
733
  /**
698
734
  * Used by space platform hubs.
699
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.entity_status.paused Online documentation}
735
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.paused Online documentation}
700
736
  */
701
737
  paused,
702
738
  /**
703
739
  * 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}
740
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.not_plugged_in_electric_network Online documentation}
705
741
  */
706
742
  not_plugged_in_electric_network,
707
743
  /**
708
744
  * Used by power switches.
709
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.entity_status.networks_connected Online documentation}
745
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.networks_connected Online documentation}
710
746
  */
711
747
  networks_connected,
712
748
  /**
713
749
  * Used by power switches.
714
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.entity_status.networks_disconnected Online documentation}
750
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.networks_disconnected Online documentation}
715
751
  */
716
752
  networks_disconnected,
717
753
  /**
718
754
  * Used by accumulators.
719
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.entity_status.charging Online documentation}
755
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.charging Online documentation}
720
756
  */
721
757
  charging,
722
758
  /**
723
759
  * Used by accumulators.
724
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.entity_status.discharging Online documentation}
760
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.discharging Online documentation}
725
761
  */
726
762
  discharging,
727
763
  /**
728
764
  * Used by accumulators.
729
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.entity_status.fully_charged Online documentation}
765
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.fully_charged Online documentation}
730
766
  */
731
767
  fully_charged,
732
768
  /**
733
769
  * 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}
770
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.out_of_logistic_network Online documentation}
735
771
  */
736
772
  out_of_logistic_network,
737
773
  /**
738
774
  * Used by assembling machines.
739
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.entity_status.no_recipe Online documentation}
775
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.no_recipe Online documentation}
740
776
  */
741
777
  no_recipe,
742
778
  /**
743
779
  * Used by furnaces.
744
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.entity_status.no_ingredients Online documentation}
780
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.no_ingredients Online documentation}
745
781
  */
746
782
  no_ingredients,
747
783
  /**
748
784
  * 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}
785
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.no_input_fluid Online documentation}
750
786
  */
751
787
  no_input_fluid,
752
788
  /**
753
789
  * 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}
790
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.no_research_in_progress Online documentation}
755
791
  */
756
792
  no_research_in_progress,
757
793
  /**
758
794
  * 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}
795
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.no_minable_resources Online documentation}
760
796
  */
761
797
  no_minable_resources,
762
798
  /**
763
799
  * 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}
800
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.not_connected_to_hub_or_pad Online documentation}
765
801
  */
766
802
  not_connected_to_hub_or_pad,
767
803
  /**
768
804
  * 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}
805
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.low_input_fluid Online documentation}
770
806
  */
771
807
  low_input_fluid,
772
808
  /**
773
809
  * 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}
810
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.fluid_ingredient_shortage Online documentation}
775
811
  */
776
812
  fluid_ingredient_shortage,
777
813
  /**
778
814
  * 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}
815
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.full_output Online documentation}
780
816
  */
781
817
  full_output,
782
818
  /**
783
819
  * 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}
820
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.not_enough_space_in_output Online documentation}
785
821
  */
786
822
  not_enough_space_in_output,
787
823
  /**
788
824
  * 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}
825
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.full_burnt_result_output Online documentation}
790
826
  */
791
827
  full_burnt_result_output,
792
828
  /**
793
829
  * 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}
830
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.item_ingredient_shortage Online documentation}
795
831
  */
796
832
  item_ingredient_shortage,
797
833
  /**
798
834
  * 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}
835
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.missing_required_fluid Online documentation}
800
836
  */
801
837
  missing_required_fluid,
802
838
  /**
803
839
  * Used by labs.
804
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.entity_status.missing_science_packs Online documentation}
840
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.missing_science_packs Online documentation}
805
841
  */
806
842
  missing_science_packs,
807
843
  /**
808
844
  * 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}
845
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.waiting_for_source_items Online documentation}
810
846
  */
811
847
  waiting_for_source_items,
812
848
  /**
813
849
  * 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}
850
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.waiting_for_more_items Online documentation}
815
851
  */
816
852
  waiting_for_more_items,
817
853
  /**
818
854
  * 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}
855
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.waiting_for_space_in_destination Online documentation}
820
856
  */
821
857
  waiting_for_space_in_destination,
822
858
  /**
823
859
  * 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}
860
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.preparing_rocket_for_launch Online documentation}
825
861
  */
826
862
  preparing_rocket_for_launch,
827
863
  /**
828
864
  * 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}
865
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.waiting_to_launch_rocket Online documentation}
830
866
  */
831
867
  waiting_to_launch_rocket,
832
868
  /**
833
869
  * 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}
870
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.waiting_for_space_in_platform_hub Online documentation}
835
871
  */
836
872
  waiting_for_space_in_platform_hub,
837
873
  /**
838
874
  * 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}
875
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.launching_rocket Online documentation}
840
876
  */
841
877
  launching_rocket,
842
878
  /**
843
879
  * Used by thrusters.
844
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.entity_status.thrust_not_required Online documentation}
880
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.thrust_not_required Online documentation}
845
881
  */
846
882
  thrust_not_required,
847
883
  /**
848
884
  * 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}
885
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.on_the_way Online documentation}
850
886
  */
851
887
  on_the_way,
852
888
  /**
853
889
  * 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}
890
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.waiting_in_orbit Online documentation}
855
891
  */
856
892
  waiting_in_orbit,
857
893
  /**
858
894
  * Used by trains.
859
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.entity_status.waiting_at_stop Online documentation}
895
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.waiting_at_stop Online documentation}
860
896
  */
861
897
  waiting_at_stop,
862
898
  /**
863
899
  * 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}
900
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.waiting_for_rockets_to_arrive Online documentation}
865
901
  */
866
902
  waiting_for_rockets_to_arrive,
867
903
  /**
868
904
  * 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}
905
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.not_enough_thrust Online documentation}
870
906
  */
871
907
  not_enough_thrust,
872
908
  /**
873
909
  * Used by trains.
874
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.entity_status.destination_stop_full Online documentation}
910
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.destination_stop_full Online documentation}
875
911
  */
876
912
  destination_stop_full,
877
913
  /**
878
914
  * 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}
915
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.no_path Online documentation}
880
916
  */
881
917
  no_path,
882
918
  /**
883
919
  * 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}
920
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.no_modules_to_transmit Online documentation}
885
921
  */
886
922
  no_modules_to_transmit,
887
923
  /**
888
924
  * 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}
925
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.recharging_after_power_outage Online documentation}
890
926
  */
891
927
  recharging_after_power_outage,
892
928
  /**
893
929
  * 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}
930
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.waiting_for_target_to_be_built Online documentation}
895
931
  */
896
932
  waiting_for_target_to_be_built,
897
933
  /**
898
934
  * 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}
935
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.waiting_for_train Online documentation}
900
936
  */
901
937
  waiting_for_train,
902
938
  /**
903
939
  * Used by ammo turrets.
904
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.entity_status.no_ammo Online documentation}
940
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.no_ammo Online documentation}
905
941
  */
906
942
  no_ammo,
907
943
  /**
908
944
  * 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}
945
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.low_temperature Online documentation}
910
946
  */
911
947
  low_temperature,
912
948
  /**
913
949
  * 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}
950
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.disabled Online documentation}
915
951
  */
916
952
  disabled,
917
953
  /**
918
954
  * 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}
955
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.turned_off_during_daytime Online documentation}
920
956
  */
921
957
  turned_off_during_daytime,
922
958
  /**
923
959
  * 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}
960
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.not_connected_to_rail Online documentation}
925
961
  */
926
962
  not_connected_to_rail,
927
963
  /**
928
964
  * 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}
965
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.cant_divide_segments Online documentation}
930
966
  */
931
967
  cant_divide_segments,
932
968
  /**
933
969
  * Used by filter inserters.
934
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.entity_status.no_filter Online documentation}
970
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.no_filter Online documentation}
935
971
  */
936
972
  no_filter,
937
973
  /**
938
974
  * 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}
975
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.no_spot_seedable_by_inputs Online documentation}
940
976
  */
941
977
  no_spot_seedable_by_inputs,
942
978
  /**
943
979
  * 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}
980
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.waiting_for_plants_to_grow Online documentation}
945
981
  */
946
982
  waiting_for_plants_to_grow,
947
983
  /**
948
984
  * Used by asteroid collectors.
949
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.entity_status.computing_navigation Online documentation}
985
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.computing_navigation Online documentation}
950
986
  */
951
987
  computing_navigation,
952
988
  /**
953
989
  * 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}
990
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.pipeline_overextended Online documentation}
955
991
  */
956
992
  pipeline_overextended,
957
993
  /**
958
994
  * 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}
995
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.recipe_not_researched Online documentation}
960
996
  */
961
997
  recipe_not_researched,
962
998
  }
@@ -966,8 +1002,8 @@ declare global {
966
1002
  yellow,
967
1003
  }
968
1004
  /**
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}
1005
+ * See the {@linkplain https://lua-api.factorio.com/2.0.35/events.html events page} for more info on what events contain and when they get raised.
1006
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.events Online documentation}
971
1007
  */
972
1008
  namespace events {
973
1009
  /**
@@ -1006,10 +1042,18 @@ declare global {
1006
1042
  * Event type: {@link OnCancelledUpgradeEvent}
1007
1043
  */
1008
1044
  const on_cancelled_upgrade: EventId<OnCancelledUpgradeEvent>
1045
+ /**
1046
+ * Event type: {@link OnCargoPodDeliveredCargoEvent}
1047
+ */
1048
+ const on_cargo_pod_delivered_cargo: EventId<OnCargoPodDeliveredCargoEvent>
1009
1049
  /**
1010
1050
  * Event type: {@link OnCargoPodFinishedAscendingEvent}
1011
1051
  */
1012
1052
  const on_cargo_pod_finished_ascending: EventId<OnCargoPodFinishedAscendingEvent>
1053
+ /**
1054
+ * Event type: {@link OnCargoPodFinishedDescendingEvent}
1055
+ */
1056
+ const on_cargo_pod_finished_descending: EventId<OnCargoPodFinishedDescendingEvent>
1013
1057
  /**
1014
1058
  * Event type: {@link OnCharacterCorpseExpiredEvent}
1015
1059
  */
@@ -1214,6 +1258,10 @@ declare global {
1214
1258
  * Event type: {@link OnModItemOpenedEvent}
1215
1259
  */
1216
1260
  const on_mod_item_opened: EventId<OnModItemOpenedEvent>
1261
+ /**
1262
+ * Event type: {@link OnMultiplayerInitEvent}
1263
+ */
1264
+ const on_multiplayer_init: EventId<OnMultiplayerInitEvent>
1217
1265
  /**
1218
1266
  * Event type: {@link OnObjectDestroyedEvent}
1219
1267
  */
@@ -1642,6 +1690,10 @@ declare global {
1642
1690
  * Event type: {@link OnSelectedEntityChangedEvent}
1643
1691
  */
1644
1692
  const on_selected_entity_changed: EventId<OnSelectedEntityChangedEvent>
1693
+ /**
1694
+ * Event type: {@link OnSingleplayerInitEvent}
1695
+ */
1696
+ const on_singleplayer_init: EventId<OnSingleplayerInitEvent>
1645
1697
  /**
1646
1698
  * Event type: {@link OnSpacePlatformBuiltEntityEvent}
1647
1699
  */
@@ -1772,8 +1824,8 @@ declare global {
1772
1824
  const script_raised_teleported: EventId<ScriptRaisedTeleportedEvent>
1773
1825
  }
1774
1826
  /**
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}
1827
+ * See the {@linkplain https://lua-api.factorio.com/2.0.35/events.html events page} for more info on what events contain and when they get raised.
1828
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.events Online documentation}
1777
1829
  */
1778
1830
  type events = (typeof events)[keyof typeof events]
1779
1831
  enum flow_precision_index {
@@ -1789,17 +1841,17 @@ declare global {
1789
1841
  enum game_controller_interaction {
1790
1842
  /**
1791
1843
  * 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}
1844
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.game_controller_interaction.always Online documentation}
1793
1845
  */
1794
1846
  always,
1795
1847
  /**
1796
1848
  * 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}
1849
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.game_controller_interaction.never Online documentation}
1798
1850
  */
1799
1851
  never,
1800
1852
  /**
1801
1853
  * 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}
1854
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.game_controller_interaction.normal Online documentation}
1803
1855
  */
1804
1856
  normal,
1805
1857
  }
@@ -1961,6 +2013,7 @@ declare global {
1961
2013
  mod_settings_changed,
1962
2014
  modify_decider_combinator_condition,
1963
2015
  modify_decider_combinator_output,
2016
+ move_pin,
1964
2017
  move_research,
1965
2018
  open_achievements_gui,
1966
2019
  open_blueprint_library_gui,
@@ -2045,6 +2098,7 @@ declare global {
2045
2098
  set_inventory_bar,
2046
2099
  set_lamp_always_on,
2047
2100
  set_linked_container_link_i_d,
2101
+ set_loader_belt_stack_size_override,
2048
2102
  set_logistic_filter_item,
2049
2103
  set_logistic_network_name,
2050
2104
  set_logistic_section_active,
@@ -2074,7 +2128,14 @@ declare global {
2074
2128
  start_research,
2075
2129
  start_walking,
2076
2130
  stop_drag_build,
2131
+ swap_asteroid_chunk_slots,
2132
+ swap_entity_filter_slots,
2133
+ swap_entity_slots,
2134
+ swap_infinity_container_filter_items,
2135
+ swap_item_filters,
2077
2136
  swap_logistic_filter_items,
2137
+ swap_mappers,
2138
+ swap_tile_slots,
2078
2139
  switch_connect_to_logistic_network,
2079
2140
  switch_constant_combinator_state,
2080
2141
  switch_inserter_filter_mode_state,
@@ -2116,6 +2177,11 @@ declare global {
2116
2177
  furnace_source,
2117
2178
  furnace_result,
2118
2179
  furnace_modules,
2180
+ /**
2181
+ * Used for spoil result items that do not fit into the recipe slots.
2182
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.inventory.furnace_trash Online documentation}
2183
+ */
2184
+ furnace_trash,
2119
2185
  character_main,
2120
2186
  character_guns,
2121
2187
  character_ammo,
@@ -2134,7 +2200,16 @@ declare global {
2134
2200
  assembling_machine_input,
2135
2201
  assembling_machine_output,
2136
2202
  assembling_machine_modules,
2203
+ /**
2204
+ * Used when items are ejected or items held by inserters cannot be inserted due to changing the recipe with the circuit network.
2205
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.inventory.assembling_machine_dump Online documentation}
2206
+ */
2137
2207
  assembling_machine_dump,
2208
+ /**
2209
+ * Used for spoil result items that do not fit into the recipe slots and for items that are ejected when changing the recipe via remote view.
2210
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.inventory.assembling_machine_trash Online documentation}
2211
+ */
2212
+ assembling_machine_trash,
2138
2213
  lab_input,
2139
2214
  lab_modules,
2140
2215
  mining_drill_modules,
@@ -2184,12 +2259,12 @@ declare global {
2184
2259
  circuit_controlled,
2185
2260
  /**
2186
2261
  * 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}
2262
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.logistic_section_type.transitional_request_controlled Online documentation}
2188
2263
  */
2189
2264
  transitional_request_controlled,
2190
2265
  /**
2191
2266
  * 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}
2267
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.logistic_section_type.request_missing_materials_controlled Online documentation}
2193
2268
  */
2194
2269
  request_missing_materials_controlled,
2195
2270
  }
@@ -2208,17 +2283,17 @@ declare global {
2208
2283
  enum print_skip {
2209
2284
  /**
2210
2285
  * Print will not be skipped.
2211
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.print_skip.never Online documentation}
2286
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.print_skip.never Online documentation}
2212
2287
  */
2213
2288
  never,
2214
2289
  /**
2215
2290
  * 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}
2291
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.print_skip.if_redundant Online documentation}
2217
2292
  */
2218
2293
  if_redundant,
2219
2294
  /**
2220
2295
  * 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}
2296
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.print_skip.if_visible Online documentation}
2222
2297
  */
2223
2298
  if_visible,
2224
2299
  }
@@ -2229,7 +2304,7 @@ declare global {
2229
2304
  }
2230
2305
  /**
2231
2306
  * 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}
2307
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.prototypes Online documentation}
2233
2308
  */
2234
2309
  interface prototypes {
2235
2310
  achievement: {
@@ -2618,7 +2693,7 @@ declare global {
2618
2693
  }
2619
2694
  /**
2620
2695
  * 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}
2696
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.prototypes Online documentation}
2622
2697
  */
2623
2698
  const prototypes: prototypes
2624
2699
  enum rail_connection_direction {
@@ -2743,128 +2818,128 @@ declare global {
2743
2818
  enum robot_order_type {
2744
2819
  /**
2745
2820
  * Construct a ghost.
2746
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.robot_order_type.construct Online documentation}
2821
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.robot_order_type.construct Online documentation}
2747
2822
  */
2748
2823
  construct,
2749
2824
  /**
2750
2825
  * Pickup an item.
2751
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.robot_order_type.pickup Online documentation}
2826
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.robot_order_type.pickup Online documentation}
2752
2827
  */
2753
2828
  pickup,
2754
2829
  /**
2755
2830
  * Deliver an item.
2756
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.robot_order_type.deliver Online documentation}
2831
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.robot_order_type.deliver Online documentation}
2757
2832
  */
2758
2833
  deliver,
2759
2834
  /**
2760
2835
  * Repair an entity.
2761
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.robot_order_type.repair Online documentation}
2836
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.robot_order_type.repair Online documentation}
2762
2837
  */
2763
2838
  repair,
2764
2839
  /**
2765
2840
  * Deconstruct an entity.
2766
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.robot_order_type.deconstruct Online documentation}
2841
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.robot_order_type.deconstruct Online documentation}
2767
2842
  */
2768
2843
  deconstruct,
2769
2844
  /**
2770
2845
  * 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}
2846
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.robot_order_type.deliver_items Online documentation}
2772
2847
  */
2773
2848
  deliver_items,
2774
2849
  /**
2775
2850
  * Upgrade an entity.
2776
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.robot_order_type.upgrade Online documentation}
2851
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.robot_order_type.upgrade Online documentation}
2777
2852
  */
2778
2853
  upgrade,
2779
2854
  /**
2780
2855
  * Explode a cliff.
2781
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.robot_order_type.explode_cliff Online documentation}
2856
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.robot_order_type.explode_cliff Online documentation}
2782
2857
  */
2783
2858
  explode_cliff,
2784
2859
  /**
2785
2860
  * 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}
2861
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.robot_order_type.pickup_items Online documentation}
2787
2862
  */
2788
2863
  pickup_items,
2789
2864
  }
2790
2865
  /**
2791
2866
  * 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}
2867
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.rocket_silo_status Online documentation}
2793
2868
  */
2794
2869
  enum rocket_silo_status {
2795
2870
  /**
2796
2871
  * 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}
2872
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.rocket_silo_status.building_rocket Online documentation}
2798
2873
  */
2799
2874
  building_rocket,
2800
2875
  /**
2801
2876
  * 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}
2877
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.rocket_silo_status.create_rocket Online documentation}
2803
2878
  */
2804
2879
  create_rocket,
2805
2880
  /**
2806
2881
  * 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}
2882
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.rocket_silo_status.lights_blinking_open Online documentation}
2808
2883
  */
2809
2884
  lights_blinking_open,
2810
2885
  /**
2811
2886
  * 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}
2887
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.rocket_silo_status.doors_opening Online documentation}
2813
2888
  */
2814
2889
  doors_opening,
2815
2890
  /**
2816
2891
  * 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}
2892
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.rocket_silo_status.doors_opened Online documentation}
2818
2893
  */
2819
2894
  doors_opened,
2820
2895
  /**
2821
2896
  * 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}
2897
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.rocket_silo_status.rocket_rising Online documentation}
2823
2898
  */
2824
2899
  rocket_rising,
2825
2900
  /**
2826
2901
  * 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}
2902
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.rocket_silo_status.arms_advance Online documentation}
2828
2903
  */
2829
2904
  arms_advance,
2830
2905
  /**
2831
2906
  * 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}
2907
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.rocket_silo_status.rocket_ready Online documentation}
2833
2908
  */
2834
2909
  rocket_ready,
2835
2910
  /**
2836
2911
  * 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}
2912
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.rocket_silo_status.launch_starting Online documentation}
2838
2913
  */
2839
2914
  launch_starting,
2840
2915
  /**
2841
2916
  * 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}
2917
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.rocket_silo_status.engine_starting Online documentation}
2843
2918
  */
2844
2919
  engine_starting,
2845
2920
  /**
2846
2921
  * 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}
2922
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.rocket_silo_status.arms_retract Online documentation}
2848
2923
  */
2849
2924
  arms_retract,
2850
2925
  /**
2851
2926
  * 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}
2927
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.rocket_silo_status.rocket_flying Online documentation}
2853
2928
  */
2854
2929
  rocket_flying,
2855
2930
  /**
2856
2931
  * 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}
2932
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.rocket_silo_status.lights_blinking_close Online documentation}
2858
2933
  */
2859
2934
  lights_blinking_close,
2860
2935
  /**
2861
2936
  * 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}
2937
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.rocket_silo_status.doors_closing Online documentation}
2863
2938
  */
2864
2939
  doors_closing,
2865
2940
  /**
2866
2941
  * 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}
2942
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.rocket_silo_status.launch_started Online documentation}
2868
2943
  */
2869
2944
  launch_started,
2870
2945
  }
@@ -2881,74 +2956,74 @@ declare global {
2881
2956
  }
2882
2957
  /**
2883
2958
  * State of an ordinary rail signal.
2884
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.signal_state Online documentation}
2959
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.signal_state Online documentation}
2885
2960
  */
2886
2961
  enum signal_state {
2887
2962
  /**
2888
2963
  * Green.
2889
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.signal_state.open Online documentation}
2964
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.signal_state.open Online documentation}
2890
2965
  */
2891
2966
  open,
2892
2967
  /**
2893
2968
  * Red.
2894
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.signal_state.closed Online documentation}
2969
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.signal_state.closed Online documentation}
2895
2970
  */
2896
2971
  closed,
2897
2972
  /**
2898
2973
  * Orange.
2899
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.signal_state.reserved Online documentation}
2974
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.signal_state.reserved Online documentation}
2900
2975
  */
2901
2976
  reserved,
2902
2977
  /**
2903
2978
  * 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}
2979
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.signal_state.reserved_by_circuit_network Online documentation}
2905
2980
  */
2906
2981
  reserved_by_circuit_network,
2907
2982
  }
2908
2983
  enum space_platform_state {
2909
2984
  /**
2910
2985
  * 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}
2986
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.space_platform_state.waiting_for_starter_pack Online documentation}
2912
2987
  */
2913
2988
  waiting_for_starter_pack,
2914
2989
  /**
2915
2990
  * 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}
2991
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.space_platform_state.starter_pack_requested Online documentation}
2917
2992
  */
2918
2993
  starter_pack_requested,
2919
2994
  /**
2920
2995
  * 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}
2996
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.space_platform_state.starter_pack_on_the_way Online documentation}
2922
2997
  */
2923
2998
  starter_pack_on_the_way,
2924
2999
  /**
2925
3000
  * 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}
3001
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.space_platform_state.on_the_path Online documentation}
2927
3002
  */
2928
3003
  on_the_path,
2929
3004
  /**
2930
3005
  * 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}
3006
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.space_platform_state.waiting_for_departure Online documentation}
2932
3007
  */
2933
3008
  waiting_for_departure,
2934
3009
  /**
2935
3010
  * 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}
3011
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.space_platform_state.no_schedule Online documentation}
2937
3012
  */
2938
3013
  no_schedule,
2939
3014
  /**
2940
3015
  * 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}
3016
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.space_platform_state.no_path Online documentation}
2942
3017
  */
2943
3018
  no_path,
2944
3019
  /**
2945
3020
  * 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}
3021
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.space_platform_state.waiting_at_station Online documentation}
2947
3022
  */
2948
3023
  waiting_at_station,
2949
3024
  /**
2950
3025
  * Paused.
2951
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.space_platform_state.paused Online documentation}
3026
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.space_platform_state.paused Online documentation}
2952
3027
  */
2953
3028
  paused,
2954
3029
  }
@@ -2971,56 +3046,57 @@ declare global {
2971
3046
  commandable,
2972
3047
  custom_chart_tag,
2973
3048
  gui_element,
3049
+ cargo_hatch,
2974
3050
  }
2975
3051
  enum train_state {
2976
3052
  /**
2977
3053
  * 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}
3054
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.train_state.on_the_path Online documentation}
2979
3055
  */
2980
3056
  on_the_path,
2981
3057
  /**
2982
3058
  * 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}
3059
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.train_state.no_schedule Online documentation}
2984
3060
  */
2985
3061
  no_schedule,
2986
3062
  /**
2987
3063
  * 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}
3064
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.train_state.no_path Online documentation}
2989
3065
  */
2990
3066
  no_path,
2991
3067
  /**
2992
3068
  * 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}
3069
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.train_state.arrive_signal Online documentation}
2994
3070
  */
2995
3071
  arrive_signal,
2996
3072
  /**
2997
3073
  * Waiting at a signal.
2998
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.train_state.wait_signal Online documentation}
3074
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.train_state.wait_signal Online documentation}
2999
3075
  */
3000
3076
  wait_signal,
3001
3077
  /**
3002
3078
  * Braking before a station.
3003
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.train_state.arrive_station Online documentation}
3079
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.train_state.arrive_station Online documentation}
3004
3080
  */
3005
3081
  arrive_station,
3006
3082
  /**
3007
3083
  * 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}
3084
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.train_state.manual_control_stop Online documentation}
3009
3085
  */
3010
3086
  manual_control_stop,
3011
3087
  /**
3012
3088
  * 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}
3089
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.train_state.manual_control Online documentation}
3014
3090
  */
3015
3091
  manual_control,
3016
3092
  /**
3017
3093
  * Waiting at a station.
3018
- * @see {@link https://lua-api.factorio.com/2.0.32/defines.html#defines.train_state.wait_station Online documentation}
3094
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.train_state.wait_station Online documentation}
3019
3095
  */
3020
3096
  wait_station,
3021
3097
  /**
3022
3098
  * 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}
3099
+ * @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.train_state.destination_full Online documentation}
3024
3100
  */
3025
3101
  destination_full,
3026
3102
  }