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