typed-factorio 3.14.0 → 3.16.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/package.json +2 -2
- package/prototype/generated/prototypes.d.ts +2231 -2095
- package/prototype/generated/types.d.ts +2177 -2150
- package/runtime/generated/classes.d.ts +4131 -3615
- package/runtime/generated/concepts.d.ts +405 -357
- package/runtime/generated/defines.d.ts +242 -184
- package/runtime/generated/events.d.ts +276 -202
- package/runtime/generated/global-functions.d.ts +3 -3
- package/runtime/generated/global-objects.d.ts +8 -8
@@ -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.
|
236
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.behavior_result Online documentation}
|
233
237
|
*/
|
234
238
|
enum behavior_result {
|
235
239
|
in_progress,
|
@@ -251,31 +255,35 @@ declare global {
|
|
251
255
|
superforced,
|
252
256
|
}
|
253
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.39/defines.html#defines.cargo_destination.invalid Online documentation}
|
261
|
+
*/
|
254
262
|
invalid,
|
255
263
|
/**
|
256
264
|
* Cargo pods with orbit destination are destroyed when ascent is completed.
|
257
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
265
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.cargo_destination.orbit Online documentation}
|
258
266
|
*/
|
259
267
|
orbit,
|
260
268
|
/**
|
261
269
|
* Any cargo landing pad or space platform hub.
|
262
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
270
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.cargo_destination.station Online documentation}
|
263
271
|
*/
|
264
272
|
station,
|
265
273
|
/**
|
266
|
-
* Cargo pods will switch destination type from surface to station before starting descent if there is a station available
|
267
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
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.39/defines.html#defines.cargo_destination.surface Online documentation}
|
268
276
|
*/
|
269
277
|
surface,
|
270
278
|
/**
|
271
|
-
* Only used for sending a space platform starter pack to a platform that is waiting for one.
|
272
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
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.39/defines.html#defines.cargo_destination.space_platform Online documentation}
|
273
281
|
*/
|
274
282
|
space_platform,
|
275
283
|
}
|
276
284
|
/**
|
277
285
|
* State of a chain signal.
|
278
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
286
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.chain_signal_state Online documentation}
|
279
287
|
*/
|
280
288
|
enum chain_signal_state {
|
281
289
|
none,
|
@@ -293,73 +301,73 @@ declare global {
|
|
293
301
|
}
|
294
302
|
/**
|
295
303
|
* Command given to units describing what they should do.
|
296
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
304
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.command Online documentation}
|
297
305
|
*/
|
298
306
|
enum command {
|
299
307
|
/**
|
300
308
|
* Attack another entity.
|
301
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
309
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.command.attack Online documentation}
|
302
310
|
*/
|
303
311
|
attack = 0,
|
304
312
|
/**
|
305
313
|
* Go to a specific position.
|
306
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
314
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.command.go_to_location Online documentation}
|
307
315
|
*/
|
308
316
|
go_to_location = 1,
|
309
317
|
/**
|
310
318
|
* Chain commands together, see {@link defines.compound_command}.
|
311
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
319
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.command.compound Online documentation}
|
312
320
|
*/
|
313
321
|
compound = 2,
|
314
322
|
/**
|
315
323
|
* Do what your group wants you to do.
|
316
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
324
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.command.group Online documentation}
|
317
325
|
*/
|
318
326
|
group = 3,
|
319
327
|
/**
|
320
328
|
* Go to a place and attack what you see.
|
321
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
329
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.command.attack_area Online documentation}
|
322
330
|
*/
|
323
331
|
attack_area = 4,
|
324
332
|
/**
|
325
333
|
* Chill.
|
326
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
334
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.command.wander Online documentation}
|
327
335
|
*/
|
328
336
|
wander = 5,
|
329
337
|
/**
|
330
338
|
* Flee from another entity.
|
331
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
339
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.command.flee Online documentation}
|
332
340
|
*/
|
333
341
|
flee = 6,
|
334
342
|
/**
|
335
343
|
* Stop moving and stay where you are.
|
336
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
344
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.command.stop Online documentation}
|
337
345
|
*/
|
338
346
|
stop = 7,
|
339
347
|
/**
|
340
348
|
* Go to a position and build a base there.
|
341
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
349
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.command.build_base Online documentation}
|
342
350
|
*/
|
343
351
|
build_base = 8,
|
344
352
|
}
|
345
353
|
/**
|
346
354
|
* How commands are joined together in a compound command (see {@link defines.command.compound}).
|
347
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
355
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.compound_command Online documentation}
|
348
356
|
*/
|
349
357
|
enum compound_command {
|
350
358
|
/**
|
351
359
|
* Fail on first failure. Only succeeds if all commands (executed one after another) succeed.
|
352
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
360
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.compound_command.logical_and Online documentation}
|
353
361
|
*/
|
354
362
|
logical_and,
|
355
363
|
/**
|
356
364
|
* Succeed on first success. Only fails if all commands (executed one after another) fail.
|
357
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
365
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.compound_command.logical_or Online documentation}
|
358
366
|
*/
|
359
367
|
logical_or,
|
360
368
|
/**
|
361
369
|
* Execute all commands in sequence and fail or succeed depending on the return status of the last command.
|
362
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
370
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.compound_command.return_last Online documentation}
|
363
371
|
*/
|
364
372
|
return_last,
|
365
373
|
}
|
@@ -421,200 +429,210 @@ declare global {
|
|
421
429
|
enum type {
|
422
430
|
/**
|
423
431
|
* {@link LuaContainerControlBehavior}
|
424
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
432
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.control_behavior.type.container Online documentation}
|
425
433
|
*/
|
426
434
|
container,
|
427
435
|
/**
|
428
436
|
* {@link LuaGenericOnOffControlBehavior}
|
429
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
437
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.control_behavior.type.generic_on_off Online documentation}
|
430
438
|
*/
|
431
439
|
generic_on_off,
|
432
440
|
/**
|
433
441
|
* {@link LuaInserterControlBehavior}
|
434
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
442
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.control_behavior.type.inserter Online documentation}
|
435
443
|
*/
|
436
444
|
inserter,
|
437
445
|
/**
|
438
446
|
* {@link LuaLampControlBehavior}
|
439
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
447
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.control_behavior.type.lamp Online documentation}
|
440
448
|
*/
|
441
449
|
lamp,
|
442
450
|
/**
|
443
451
|
* {@link LuaLogisticContainerControlBehavior}
|
444
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
452
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.control_behavior.type.logistic_container Online documentation}
|
445
453
|
*/
|
446
454
|
logistic_container,
|
447
455
|
/**
|
448
456
|
* {@link LuaRoboportControlBehavior}
|
449
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
457
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.control_behavior.type.roboport Online documentation}
|
450
458
|
*/
|
451
459
|
roboport,
|
452
460
|
/**
|
453
461
|
* {@link LuaStorageTankControlBehavior}
|
454
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
462
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.control_behavior.type.storage_tank Online documentation}
|
455
463
|
*/
|
456
464
|
storage_tank,
|
457
465
|
/**
|
458
466
|
* {@link LuaTrainStopControlBehavior}
|
459
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
467
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.control_behavior.type.train_stop Online documentation}
|
460
468
|
*/
|
461
469
|
train_stop,
|
462
470
|
/**
|
463
471
|
* {@link LuaDeciderCombinatorControlBehavior}
|
464
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
472
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.control_behavior.type.decider_combinator Online documentation}
|
465
473
|
*/
|
466
474
|
decider_combinator,
|
467
475
|
/**
|
468
476
|
* {@link LuaArithmeticCombinatorControlBehavior}
|
469
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
477
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.control_behavior.type.arithmetic_combinator Online documentation}
|
470
478
|
*/
|
471
479
|
arithmetic_combinator,
|
472
480
|
/**
|
473
481
|
* {@link LuaConstantCombinatorControlBehavior}
|
474
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
482
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.control_behavior.type.constant_combinator Online documentation}
|
475
483
|
*/
|
476
484
|
constant_combinator,
|
477
485
|
/**
|
478
486
|
* {@link LuaTransportBeltControlBehavior}
|
479
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
487
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.control_behavior.type.transport_belt Online documentation}
|
480
488
|
*/
|
481
489
|
transport_belt,
|
482
490
|
/**
|
483
491
|
* {@link LuaAccumulatorControlBehavior}
|
484
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
492
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.control_behavior.type.accumulator Online documentation}
|
485
493
|
*/
|
486
494
|
accumulator,
|
487
495
|
/**
|
488
496
|
* {@link LuaRailSignalBaseControlBehavior}
|
489
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
497
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.control_behavior.type.rail_signal Online documentation}
|
490
498
|
*/
|
491
499
|
rail_signal,
|
492
500
|
/**
|
493
501
|
* {@link LuaRailSignalBaseControlBehavior}
|
494
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
502
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.control_behavior.type.rail_chain_signal Online documentation}
|
495
503
|
*/
|
496
504
|
rail_chain_signal,
|
497
505
|
/**
|
498
506
|
* {@link LuaWallControlBehavior}
|
499
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
507
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.control_behavior.type.wall Online documentation}
|
500
508
|
*/
|
501
509
|
wall,
|
502
510
|
/**
|
503
511
|
* {@link LuaMiningDrillControlBehavior}
|
504
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
512
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.control_behavior.type.mining_drill Online documentation}
|
505
513
|
*/
|
506
514
|
mining_drill,
|
507
515
|
/**
|
508
516
|
* {@link LuaProgrammableSpeakerControlBehavior}
|
509
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
517
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.control_behavior.type.programmable_speaker Online documentation}
|
510
518
|
*/
|
511
519
|
programmable_speaker,
|
512
520
|
/**
|
513
521
|
* {@link LuaAssemblingMachineControlBehavior}
|
514
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
522
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.control_behavior.type.assembling_machine Online documentation}
|
515
523
|
*/
|
516
524
|
assembling_machine,
|
517
525
|
/**
|
518
526
|
* {@link LuaPumpControlBehavior}
|
519
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
527
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.control_behavior.type.pump Online documentation}
|
520
528
|
*/
|
521
529
|
pump,
|
522
530
|
/**
|
523
531
|
* {@link LuaSelectorCombinatorControlBehavior}
|
524
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
532
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.control_behavior.type.selector_combinator Online documentation}
|
525
533
|
*/
|
526
534
|
selector_combinator,
|
527
535
|
/**
|
528
536
|
* {@link LuaRocketSiloControlBehavior}
|
529
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
537
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.control_behavior.type.rocket_silo Online documentation}
|
530
538
|
*/
|
531
539
|
rocket_silo,
|
532
540
|
/**
|
533
541
|
* {@link LuaTurretControlBehavior}
|
534
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
542
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.control_behavior.type.turret Online documentation}
|
535
543
|
*/
|
536
544
|
turret,
|
537
545
|
/**
|
538
546
|
* {@link LuaReactorControlBehavior}
|
539
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
547
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.control_behavior.type.reactor Online documentation}
|
540
548
|
*/
|
541
549
|
reactor,
|
542
550
|
/**
|
543
551
|
* {@link LuaSpacePlatformHubControlBehavior}
|
544
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
552
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.control_behavior.type.space_platform_hub Online documentation}
|
545
553
|
*/
|
546
554
|
space_platform_hub,
|
547
555
|
/**
|
548
556
|
* {@link LuaArtilleryTurretControlBehavior}
|
549
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
557
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.control_behavior.type.artillery_turret Online documentation}
|
550
558
|
*/
|
551
559
|
artillery_turret,
|
552
560
|
/**
|
553
561
|
* {@link LuaAsteroidCollectorControlBehavior}
|
554
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
562
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.control_behavior.type.asteroid_collector Online documentation}
|
555
563
|
*/
|
556
564
|
asteroid_collector,
|
557
565
|
/**
|
558
566
|
* {@link LuaRadarControlBehavior}
|
559
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
567
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.control_behavior.type.radar Online documentation}
|
560
568
|
*/
|
561
569
|
radar,
|
562
570
|
/**
|
563
571
|
* {@link LuaDisplayPanelControlBehavior}
|
564
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
572
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.control_behavior.type.display_panel Online documentation}
|
565
573
|
*/
|
566
574
|
display_panel,
|
567
575
|
/**
|
568
576
|
* {@link LuaLoaderControlBehavior}
|
569
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
577
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.control_behavior.type.loader Online documentation}
|
570
578
|
*/
|
571
579
|
loader,
|
572
580
|
/**
|
573
581
|
* {@link LuaCargoLandingPadControlBehavior}
|
574
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
582
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.control_behavior.type.cargo_landing_pad Online documentation}
|
575
583
|
*/
|
576
584
|
cargo_landing_pad,
|
577
585
|
/**
|
578
586
|
* {@link LuaAgriculturalTowerControlBehavior}
|
579
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
587
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.control_behavior.type.agricultural_tower Online documentation}
|
580
588
|
*/
|
581
589
|
agricultural_tower,
|
590
|
+
/**
|
591
|
+
* {@link LuaFurnaceControlBehavior}
|
592
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.control_behavior.type.furnace Online documentation}
|
593
|
+
*/
|
594
|
+
furnace,
|
595
|
+
/**
|
596
|
+
* {@link LuaProxyContainerControlBehavior}
|
597
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.control_behavior.type.proxy_container Online documentation}
|
598
|
+
*/
|
599
|
+
proxy_container,
|
582
600
|
}
|
583
601
|
}
|
584
602
|
enum controllers {
|
585
603
|
/**
|
586
604
|
* Can't interact with the world, can only observe. Used in the multiplayer waiting-to-respawn screen.
|
587
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
605
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.controllers.ghost Online documentation}
|
588
606
|
*/
|
589
607
|
ghost,
|
590
608
|
/**
|
591
609
|
* The controller controls a character. This is the default controller in freeplay.
|
592
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
610
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.controllers.character Online documentation}
|
593
611
|
*/
|
594
612
|
character,
|
595
613
|
/**
|
596
614
|
* The controller isn't tied to a character. This is the default controller in sandbox.
|
597
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
615
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.controllers.god Online documentation}
|
598
616
|
*/
|
599
617
|
god,
|
600
618
|
/**
|
601
619
|
* The Editor Controller near ultimate power to do almost anything in the game.
|
602
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
620
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.controllers.editor Online documentation}
|
603
621
|
*/
|
604
622
|
editor,
|
605
623
|
/**
|
606
624
|
* The player can't interact with the world, and the camera pans around in a predefined manner.
|
607
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
625
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.controllers.cutscene Online documentation}
|
608
626
|
*/
|
609
627
|
cutscene,
|
610
628
|
/**
|
611
629
|
* Can't change anything in the world but can view anything.
|
612
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
630
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.controllers.spectator Online documentation}
|
613
631
|
*/
|
614
632
|
spectator,
|
615
633
|
/**
|
616
634
|
* Can't move/change items but can build ghosts/change settings.
|
617
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
635
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.controllers.remote Online documentation}
|
618
636
|
*/
|
619
637
|
remote,
|
620
638
|
}
|
@@ -676,22 +694,22 @@ declare global {
|
|
676
694
|
enum distraction {
|
677
695
|
/**
|
678
696
|
* Perform command even if someone attacks the unit.
|
679
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
697
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.distraction.none Online documentation}
|
680
698
|
*/
|
681
699
|
none,
|
682
700
|
/**
|
683
701
|
* Attack closer enemy entities with force.
|
684
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
702
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.distraction.by_enemy Online documentation}
|
685
703
|
*/
|
686
704
|
by_enemy,
|
687
705
|
/**
|
688
706
|
* Attack closer enemy entities, including entities "built" by player (belts, inserters, chests).
|
689
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
707
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.distraction.by_anything Online documentation}
|
690
708
|
*/
|
691
709
|
by_anything,
|
692
710
|
/**
|
693
711
|
* Attack when attacked.
|
694
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
712
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.distraction.by_damage Online documentation}
|
695
713
|
*/
|
696
714
|
by_damage,
|
697
715
|
}
|
@@ -700,12 +718,12 @@ declare global {
|
|
700
718
|
normal,
|
701
719
|
/**
|
702
720
|
* Used by ghosts.
|
703
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
721
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.ghost Online documentation}
|
704
722
|
*/
|
705
723
|
ghost,
|
706
724
|
/**
|
707
725
|
* Only used if set through {@link LuaEntity#status LuaEntity::status} or {@link import("factorio:prototype").ContainerPrototype#default_status ContainerPrototype::default_status}.
|
708
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
726
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.broken Online documentation}
|
709
727
|
*/
|
710
728
|
broken,
|
711
729
|
no_power,
|
@@ -719,267 +737,267 @@ declare global {
|
|
719
737
|
marked_for_deconstruction,
|
720
738
|
/**
|
721
739
|
* Used by space platform hubs.
|
722
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
740
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.paused Online documentation}
|
723
741
|
*/
|
724
742
|
paused,
|
725
743
|
/**
|
726
744
|
* Used by generators and solar panels.
|
727
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
745
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.not_plugged_in_electric_network Online documentation}
|
728
746
|
*/
|
729
747
|
not_plugged_in_electric_network,
|
730
748
|
/**
|
731
749
|
* Used by power switches.
|
732
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
750
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.networks_connected Online documentation}
|
733
751
|
*/
|
734
752
|
networks_connected,
|
735
753
|
/**
|
736
754
|
* Used by power switches.
|
737
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
755
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.networks_disconnected Online documentation}
|
738
756
|
*/
|
739
757
|
networks_disconnected,
|
740
758
|
/**
|
741
759
|
* Used by accumulators.
|
742
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
760
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.charging Online documentation}
|
743
761
|
*/
|
744
762
|
charging,
|
745
763
|
/**
|
746
764
|
* Used by accumulators.
|
747
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
765
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.discharging Online documentation}
|
748
766
|
*/
|
749
767
|
discharging,
|
750
768
|
/**
|
751
769
|
* Used by accumulators.
|
752
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
770
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.fully_charged Online documentation}
|
753
771
|
*/
|
754
772
|
fully_charged,
|
755
773
|
/**
|
756
774
|
* Used by logistic containers.
|
757
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
775
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.out_of_logistic_network Online documentation}
|
758
776
|
*/
|
759
777
|
out_of_logistic_network,
|
760
778
|
/**
|
761
779
|
* Used by assembling machines.
|
762
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
780
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.no_recipe Online documentation}
|
763
781
|
*/
|
764
782
|
no_recipe,
|
765
783
|
/**
|
766
784
|
* Used by furnaces.
|
767
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
785
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.no_ingredients Online documentation}
|
768
786
|
*/
|
769
787
|
no_ingredients,
|
770
788
|
/**
|
771
789
|
* Used by boilers, fluid turrets and fluid energy sources: Boiler has no fluid to work with.
|
772
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
790
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.no_input_fluid Online documentation}
|
773
791
|
*/
|
774
792
|
no_input_fluid,
|
775
793
|
/**
|
776
794
|
* Used by labs.
|
777
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
795
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.no_research_in_progress Online documentation}
|
778
796
|
*/
|
779
797
|
no_research_in_progress,
|
780
798
|
/**
|
781
799
|
* Used by mining drills.
|
782
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
800
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.no_minable_resources Online documentation}
|
783
801
|
*/
|
784
802
|
no_minable_resources,
|
785
803
|
/**
|
786
804
|
* Used by cargo bays.
|
787
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
805
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.not_connected_to_hub_or_pad Online documentation}
|
788
806
|
*/
|
789
807
|
not_connected_to_hub_or_pad,
|
790
808
|
/**
|
791
809
|
* Used by boilers and fluid turrets: Boiler still has some fluid but is about to run out.
|
792
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
810
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.low_input_fluid Online documentation}
|
793
811
|
*/
|
794
812
|
low_input_fluid,
|
795
813
|
/**
|
796
814
|
* Used by crafting machines.
|
797
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
815
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.fluid_ingredient_shortage Online documentation}
|
798
816
|
*/
|
799
817
|
fluid_ingredient_shortage,
|
800
818
|
/**
|
801
819
|
* Used by crafting machines, boilers, burner energy sources and reactors: Reactor/burner has full burnt result inventory, boiler has full output fluidbox.
|
802
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
820
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.full_output Online documentation}
|
803
821
|
*/
|
804
822
|
full_output,
|
805
823
|
/**
|
806
824
|
* Used by agricultural towers.
|
807
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
825
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.not_enough_space_in_output Online documentation}
|
808
826
|
*/
|
809
827
|
not_enough_space_in_output,
|
810
828
|
/**
|
811
829
|
* Used by burner energy sources.
|
812
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
830
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.full_burnt_result_output Online documentation}
|
813
831
|
*/
|
814
832
|
full_burnt_result_output,
|
815
833
|
/**
|
816
834
|
* Used by crafting machines.
|
817
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
835
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.item_ingredient_shortage Online documentation}
|
818
836
|
*/
|
819
837
|
item_ingredient_shortage,
|
820
838
|
/**
|
821
839
|
* Used by mining drills when the mining fluid is missing.
|
822
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
840
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.missing_required_fluid Online documentation}
|
823
841
|
*/
|
824
842
|
missing_required_fluid,
|
825
843
|
/**
|
826
844
|
* Used by labs.
|
827
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
845
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.missing_science_packs Online documentation}
|
828
846
|
*/
|
829
847
|
missing_science_packs,
|
830
848
|
/**
|
831
849
|
* Used by inserters.
|
832
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
850
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.waiting_for_source_items Online documentation}
|
833
851
|
*/
|
834
852
|
waiting_for_source_items,
|
835
853
|
/**
|
836
854
|
* Used by inserters when wait_for_full_hand is set.
|
837
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
855
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.waiting_for_more_items Online documentation}
|
838
856
|
*/
|
839
857
|
waiting_for_more_items,
|
840
858
|
/**
|
841
859
|
* Used by inserters and mining drills.
|
842
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
860
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.waiting_for_space_in_destination Online documentation}
|
843
861
|
*/
|
844
862
|
waiting_for_space_in_destination,
|
845
863
|
/**
|
846
864
|
* Used by the rocket silo.
|
847
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
865
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.preparing_rocket_for_launch Online documentation}
|
848
866
|
*/
|
849
867
|
preparing_rocket_for_launch,
|
850
868
|
/**
|
851
869
|
* Used by the rocket silo.
|
852
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
870
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.waiting_to_launch_rocket Online documentation}
|
853
871
|
*/
|
854
872
|
waiting_to_launch_rocket,
|
855
873
|
/**
|
856
874
|
* Used by the rocket silo.
|
857
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
875
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.waiting_for_space_in_platform_hub Online documentation}
|
858
876
|
*/
|
859
877
|
waiting_for_space_in_platform_hub,
|
860
878
|
/**
|
861
879
|
* Used by the rocket silo.
|
862
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
880
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.launching_rocket Online documentation}
|
863
881
|
*/
|
864
882
|
launching_rocket,
|
865
883
|
/**
|
866
884
|
* Used by thrusters.
|
867
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
885
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.thrust_not_required Online documentation}
|
868
886
|
*/
|
869
887
|
thrust_not_required,
|
870
888
|
/**
|
871
889
|
* Used by space platform hubs.
|
872
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
890
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.on_the_way Online documentation}
|
873
891
|
*/
|
874
892
|
on_the_way,
|
875
893
|
/**
|
876
894
|
* Used by space platform hubs.
|
877
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
895
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.waiting_in_orbit Online documentation}
|
878
896
|
*/
|
879
897
|
waiting_in_orbit,
|
880
898
|
/**
|
881
899
|
* Used by trains.
|
882
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
900
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.waiting_at_stop Online documentation}
|
883
901
|
*/
|
884
902
|
waiting_at_stop,
|
885
903
|
/**
|
886
904
|
* Used by space platform hubs.
|
887
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
905
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.waiting_for_rockets_to_arrive Online documentation}
|
888
906
|
*/
|
889
907
|
waiting_for_rockets_to_arrive,
|
890
908
|
/**
|
891
909
|
* Used by space platform hubs.
|
892
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
910
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.not_enough_thrust Online documentation}
|
893
911
|
*/
|
894
912
|
not_enough_thrust,
|
895
913
|
/**
|
896
914
|
* Used by trains.
|
897
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
915
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.destination_stop_full Online documentation}
|
898
916
|
*/
|
899
917
|
destination_stop_full,
|
900
918
|
/**
|
901
919
|
* Used by trains and space platform hubs.
|
902
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
920
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.no_path Online documentation}
|
903
921
|
*/
|
904
922
|
no_path,
|
905
923
|
/**
|
906
924
|
* Used by beacons.
|
907
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
925
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.no_modules_to_transmit Online documentation}
|
908
926
|
*/
|
909
927
|
no_modules_to_transmit,
|
910
928
|
/**
|
911
929
|
* Used by roboports.
|
912
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
930
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.recharging_after_power_outage Online documentation}
|
913
931
|
*/
|
914
932
|
recharging_after_power_outage,
|
915
933
|
/**
|
916
934
|
* Used by inserters targeting entity ghosts.
|
917
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
935
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.waiting_for_target_to_be_built Online documentation}
|
918
936
|
*/
|
919
937
|
waiting_for_target_to_be_built,
|
920
938
|
/**
|
921
939
|
* Used by inserters targeting rails.
|
922
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
940
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.waiting_for_train Online documentation}
|
923
941
|
*/
|
924
942
|
waiting_for_train,
|
925
943
|
/**
|
926
944
|
* Used by ammo turrets.
|
927
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
945
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.no_ammo Online documentation}
|
928
946
|
*/
|
929
947
|
no_ammo,
|
930
948
|
/**
|
931
949
|
* Used by heat energy sources.
|
932
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
950
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.low_temperature Online documentation}
|
933
951
|
*/
|
934
952
|
low_temperature,
|
935
953
|
/**
|
936
954
|
* Used by constant combinators: Combinator is turned off via switch in GUI.
|
937
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
955
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.disabled Online documentation}
|
938
956
|
*/
|
939
957
|
disabled,
|
940
958
|
/**
|
941
959
|
* Used by lamps.
|
942
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
960
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.turned_off_during_daytime Online documentation}
|
943
961
|
*/
|
944
962
|
turned_off_during_daytime,
|
945
963
|
/**
|
946
964
|
* Used by rail signals.
|
947
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
965
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.not_connected_to_rail Online documentation}
|
948
966
|
*/
|
949
967
|
not_connected_to_rail,
|
950
968
|
/**
|
951
969
|
* Used by rail signals.
|
952
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
970
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.cant_divide_segments Online documentation}
|
953
971
|
*/
|
954
972
|
cant_divide_segments,
|
955
973
|
/**
|
956
974
|
* Used by filter inserters.
|
957
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
975
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.no_filter Online documentation}
|
958
976
|
*/
|
959
977
|
no_filter,
|
960
978
|
/**
|
961
979
|
* Used by agricultural towers.
|
962
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
980
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.no_spot_seedable_by_inputs Online documentation}
|
963
981
|
*/
|
964
982
|
no_spot_seedable_by_inputs,
|
965
983
|
/**
|
966
984
|
* Used by agricultural towers.
|
967
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
985
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.waiting_for_plants_to_grow Online documentation}
|
968
986
|
*/
|
969
987
|
waiting_for_plants_to_grow,
|
970
988
|
/**
|
971
989
|
* Used by asteroid collectors.
|
972
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
990
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.computing_navigation Online documentation}
|
973
991
|
*/
|
974
992
|
computing_navigation,
|
975
993
|
/**
|
976
994
|
* Used by pipes, pipes to ground and storage tanks.
|
977
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
995
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.pipeline_overextended Online documentation}
|
978
996
|
*/
|
979
997
|
pipeline_overextended,
|
980
998
|
/**
|
981
999
|
* Used by assembling machines.
|
982
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1000
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.entity_status.recipe_not_researched Online documentation}
|
983
1001
|
*/
|
984
1002
|
recipe_not_researched,
|
985
1003
|
}
|
@@ -989,8 +1007,8 @@ declare global {
|
|
989
1007
|
yellow,
|
990
1008
|
}
|
991
1009
|
/**
|
992
|
-
* See the {@linkplain https://lua-api.factorio.com/2.0.
|
993
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1010
|
+
* See the {@linkplain https://lua-api.factorio.com/2.0.39/events.html events page} for more info on what events contain and when they get raised.
|
1011
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.events Online documentation}
|
994
1012
|
*/
|
995
1013
|
namespace events {
|
996
1014
|
/**
|
@@ -1029,10 +1047,18 @@ declare global {
|
|
1029
1047
|
* Event type: {@link OnCancelledUpgradeEvent}
|
1030
1048
|
*/
|
1031
1049
|
const on_cancelled_upgrade: EventId<OnCancelledUpgradeEvent>
|
1050
|
+
/**
|
1051
|
+
* Event type: {@link OnCargoPodDeliveredCargoEvent}
|
1052
|
+
*/
|
1053
|
+
const on_cargo_pod_delivered_cargo: EventId<OnCargoPodDeliveredCargoEvent>
|
1032
1054
|
/**
|
1033
1055
|
* Event type: {@link OnCargoPodFinishedAscendingEvent}
|
1034
1056
|
*/
|
1035
1057
|
const on_cargo_pod_finished_ascending: EventId<OnCargoPodFinishedAscendingEvent>
|
1058
|
+
/**
|
1059
|
+
* Event type: {@link OnCargoPodFinishedDescendingEvent}
|
1060
|
+
*/
|
1061
|
+
const on_cargo_pod_finished_descending: EventId<OnCargoPodFinishedDescendingEvent>
|
1036
1062
|
/**
|
1037
1063
|
* Event type: {@link OnCharacterCorpseExpiredEvent}
|
1038
1064
|
*/
|
@@ -1237,6 +1263,10 @@ declare global {
|
|
1237
1263
|
* Event type: {@link OnModItemOpenedEvent}
|
1238
1264
|
*/
|
1239
1265
|
const on_mod_item_opened: EventId<OnModItemOpenedEvent>
|
1266
|
+
/**
|
1267
|
+
* Event type: {@link OnMultiplayerInitEvent}
|
1268
|
+
*/
|
1269
|
+
const on_multiplayer_init: EventId<OnMultiplayerInitEvent>
|
1240
1270
|
/**
|
1241
1271
|
* Event type: {@link OnObjectDestroyedEvent}
|
1242
1272
|
*/
|
@@ -1665,6 +1695,10 @@ declare global {
|
|
1665
1695
|
* Event type: {@link OnSelectedEntityChangedEvent}
|
1666
1696
|
*/
|
1667
1697
|
const on_selected_entity_changed: EventId<OnSelectedEntityChangedEvent>
|
1698
|
+
/**
|
1699
|
+
* Event type: {@link OnSingleplayerInitEvent}
|
1700
|
+
*/
|
1701
|
+
const on_singleplayer_init: EventId<OnSingleplayerInitEvent>
|
1668
1702
|
/**
|
1669
1703
|
* Event type: {@link OnSpacePlatformBuiltEntityEvent}
|
1670
1704
|
*/
|
@@ -1795,8 +1829,8 @@ declare global {
|
|
1795
1829
|
const script_raised_teleported: EventId<ScriptRaisedTeleportedEvent>
|
1796
1830
|
}
|
1797
1831
|
/**
|
1798
|
-
* See the {@linkplain https://lua-api.factorio.com/2.0.
|
1799
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1832
|
+
* See the {@linkplain https://lua-api.factorio.com/2.0.39/events.html events page} for more info on what events contain and when they get raised.
|
1833
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.events Online documentation}
|
1800
1834
|
*/
|
1801
1835
|
type events = (typeof events)[keyof typeof events]
|
1802
1836
|
enum flow_precision_index {
|
@@ -1812,17 +1846,17 @@ declare global {
|
|
1812
1846
|
enum game_controller_interaction {
|
1813
1847
|
/**
|
1814
1848
|
* Game controller will always hover this element regardless of type or state.
|
1815
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1849
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.game_controller_interaction.always Online documentation}
|
1816
1850
|
*/
|
1817
1851
|
always,
|
1818
1852
|
/**
|
1819
1853
|
* Never hover this element with a game controller.
|
1820
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1854
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.game_controller_interaction.never Online documentation}
|
1821
1855
|
*/
|
1822
1856
|
never,
|
1823
1857
|
/**
|
1824
1858
|
* Hover according to the element type and implementation.
|
1825
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1859
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.game_controller_interaction.normal Online documentation}
|
1826
1860
|
*/
|
1827
1861
|
normal,
|
1828
1862
|
}
|
@@ -1984,6 +2018,7 @@ declare global {
|
|
1984
2018
|
mod_settings_changed,
|
1985
2019
|
modify_decider_combinator_condition,
|
1986
2020
|
modify_decider_combinator_output,
|
2021
|
+
move_pin,
|
1987
2022
|
move_research,
|
1988
2023
|
open_achievements_gui,
|
1989
2024
|
open_blueprint_library_gui,
|
@@ -2068,6 +2103,7 @@ declare global {
|
|
2068
2103
|
set_inventory_bar,
|
2069
2104
|
set_lamp_always_on,
|
2070
2105
|
set_linked_container_link_i_d,
|
2106
|
+
set_loader_belt_stack_size_override,
|
2071
2107
|
set_logistic_filter_item,
|
2072
2108
|
set_logistic_network_name,
|
2073
2109
|
set_logistic_section_active,
|
@@ -2097,7 +2133,14 @@ declare global {
|
|
2097
2133
|
start_research,
|
2098
2134
|
start_walking,
|
2099
2135
|
stop_drag_build,
|
2136
|
+
swap_asteroid_chunk_slots,
|
2137
|
+
swap_entity_filter_slots,
|
2138
|
+
swap_entity_slots,
|
2139
|
+
swap_infinity_container_filter_items,
|
2140
|
+
swap_item_filters,
|
2100
2141
|
swap_logistic_filter_items,
|
2142
|
+
swap_mappers,
|
2143
|
+
swap_tile_slots,
|
2101
2144
|
switch_connect_to_logistic_network,
|
2102
2145
|
switch_constant_combinator_state,
|
2103
2146
|
switch_inserter_filter_mode_state,
|
@@ -2139,6 +2182,11 @@ declare global {
|
|
2139
2182
|
furnace_source,
|
2140
2183
|
furnace_result,
|
2141
2184
|
furnace_modules,
|
2185
|
+
/**
|
2186
|
+
* Used for spoil result items that do not fit into the recipe slots.
|
2187
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.inventory.furnace_trash Online documentation}
|
2188
|
+
*/
|
2189
|
+
furnace_trash,
|
2142
2190
|
character_main,
|
2143
2191
|
character_guns,
|
2144
2192
|
character_ammo,
|
@@ -2159,9 +2207,14 @@ declare global {
|
|
2159
2207
|
assembling_machine_modules,
|
2160
2208
|
/**
|
2161
2209
|
* Used when items are ejected or items held by inserters cannot be inserted due to changing the recipe with the circuit network.
|
2162
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2210
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.inventory.assembling_machine_dump Online documentation}
|
2163
2211
|
*/
|
2164
2212
|
assembling_machine_dump,
|
2213
|
+
/**
|
2214
|
+
* 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.
|
2215
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.inventory.assembling_machine_trash Online documentation}
|
2216
|
+
*/
|
2217
|
+
assembling_machine_trash,
|
2165
2218
|
lab_input,
|
2166
2219
|
lab_modules,
|
2167
2220
|
mining_drill_modules,
|
@@ -2188,6 +2241,7 @@ declare global {
|
|
2188
2241
|
hub_trash,
|
2189
2242
|
cargo_landing_pad_main,
|
2190
2243
|
cargo_landing_pad_trash,
|
2244
|
+
proxy_main,
|
2191
2245
|
}
|
2192
2246
|
enum logistic_member_index {
|
2193
2247
|
logistic_container,
|
@@ -2211,12 +2265,12 @@ declare global {
|
|
2211
2265
|
circuit_controlled,
|
2212
2266
|
/**
|
2213
2267
|
* Used by rocket silos.
|
2214
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2268
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.logistic_section_type.transitional_request_controlled Online documentation}
|
2215
2269
|
*/
|
2216
2270
|
transitional_request_controlled,
|
2217
2271
|
/**
|
2218
2272
|
* Used by space platform hubs.
|
2219
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2273
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.logistic_section_type.request_missing_materials_controlled Online documentation}
|
2220
2274
|
*/
|
2221
2275
|
request_missing_materials_controlled,
|
2222
2276
|
}
|
@@ -2235,17 +2289,17 @@ declare global {
|
|
2235
2289
|
enum print_skip {
|
2236
2290
|
/**
|
2237
2291
|
* Print will not be skipped.
|
2238
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2292
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.print_skip.never Online documentation}
|
2239
2293
|
*/
|
2240
2294
|
never,
|
2241
2295
|
/**
|
2242
2296
|
* Print will be skipped if same text was recently printed (within last 60 ticks). Used by most game messages.
|
2243
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2297
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.print_skip.if_redundant Online documentation}
|
2244
2298
|
*/
|
2245
2299
|
if_redundant,
|
2246
2300
|
/**
|
2247
2301
|
* Print will be skipped if same text is still visible (printed within last 1152 ticks). Used by some notifications.
|
2248
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2302
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.print_skip.if_visible Online documentation}
|
2249
2303
|
*/
|
2250
2304
|
if_visible,
|
2251
2305
|
}
|
@@ -2256,7 +2310,7 @@ declare global {
|
|
2256
2310
|
}
|
2257
2311
|
/**
|
2258
2312
|
* 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, ...}`.
|
2259
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2313
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.prototypes Online documentation}
|
2260
2314
|
*/
|
2261
2315
|
interface prototypes {
|
2262
2316
|
achievement: {
|
@@ -2399,6 +2453,7 @@ declare global {
|
|
2399
2453
|
"heat-interface": 0
|
2400
2454
|
"heat-pipe": 0
|
2401
2455
|
"highlight-box": 0
|
2456
|
+
"infinity-cargo-wagon": 0
|
2402
2457
|
"infinity-container": 0
|
2403
2458
|
"infinity-pipe": 0
|
2404
2459
|
inserter: 0
|
@@ -2430,6 +2485,7 @@ declare global {
|
|
2430
2485
|
"power-switch": 0
|
2431
2486
|
"programmable-speaker": 0
|
2432
2487
|
projectile: 0
|
2488
|
+
"proxy-container": 0
|
2433
2489
|
pump: 0
|
2434
2490
|
radar: 0
|
2435
2491
|
"rail-chain-signal": 0
|
@@ -2645,7 +2701,7 @@ declare global {
|
|
2645
2701
|
}
|
2646
2702
|
/**
|
2647
2703
|
* 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, ...}`.
|
2648
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2704
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.prototypes Online documentation}
|
2649
2705
|
*/
|
2650
2706
|
const prototypes: prototypes
|
2651
2707
|
enum rail_connection_direction {
|
@@ -2720,6 +2776,7 @@ declare global {
|
|
2720
2776
|
power_switch_gui,
|
2721
2777
|
production_gui,
|
2722
2778
|
programmable_speaker_gui,
|
2779
|
+
proxy_container_gui,
|
2723
2780
|
pump_gui,
|
2724
2781
|
rail_signal_base_gui,
|
2725
2782
|
reactor_gui,
|
@@ -2770,128 +2827,128 @@ declare global {
|
|
2770
2827
|
enum robot_order_type {
|
2771
2828
|
/**
|
2772
2829
|
* Construct a ghost.
|
2773
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2830
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.robot_order_type.construct Online documentation}
|
2774
2831
|
*/
|
2775
2832
|
construct,
|
2776
2833
|
/**
|
2777
2834
|
* Pickup an item.
|
2778
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2835
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.robot_order_type.pickup Online documentation}
|
2779
2836
|
*/
|
2780
2837
|
pickup,
|
2781
2838
|
/**
|
2782
2839
|
* Deliver an item.
|
2783
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2840
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.robot_order_type.deliver Online documentation}
|
2784
2841
|
*/
|
2785
2842
|
deliver,
|
2786
2843
|
/**
|
2787
2844
|
* Repair an entity.
|
2788
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2845
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.robot_order_type.repair Online documentation}
|
2789
2846
|
*/
|
2790
2847
|
repair,
|
2791
2848
|
/**
|
2792
2849
|
* Deconstruct an entity.
|
2793
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2850
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.robot_order_type.deconstruct Online documentation}
|
2794
2851
|
*/
|
2795
2852
|
deconstruct,
|
2796
2853
|
/**
|
2797
2854
|
* Deliver specific items to an entity (item request proxy).
|
2798
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2855
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.robot_order_type.deliver_items Online documentation}
|
2799
2856
|
*/
|
2800
2857
|
deliver_items,
|
2801
2858
|
/**
|
2802
2859
|
* Upgrade an entity.
|
2803
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2860
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.robot_order_type.upgrade Online documentation}
|
2804
2861
|
*/
|
2805
2862
|
upgrade,
|
2806
2863
|
/**
|
2807
2864
|
* Explode a cliff.
|
2808
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2865
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.robot_order_type.explode_cliff Online documentation}
|
2809
2866
|
*/
|
2810
2867
|
explode_cliff,
|
2811
2868
|
/**
|
2812
2869
|
* Pickup items from an entity (item request proxy).
|
2813
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2870
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.robot_order_type.pickup_items Online documentation}
|
2814
2871
|
*/
|
2815
2872
|
pickup_items,
|
2816
2873
|
}
|
2817
2874
|
/**
|
2818
2875
|
* The various parts of the launch sequence of the rocket silo.
|
2819
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2876
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.rocket_silo_status Online documentation}
|
2820
2877
|
*/
|
2821
2878
|
enum rocket_silo_status {
|
2822
2879
|
/**
|
2823
2880
|
* The rocket silo is crafting rocket parts. When there are enough rocket parts, the silo will switch into the `create_rocket` state.
|
2824
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2881
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.rocket_silo_status.building_rocket Online documentation}
|
2825
2882
|
*/
|
2826
2883
|
building_rocket,
|
2827
2884
|
/**
|
2828
2885
|
* The next state is `lights_blinking_open`. The rocket silo rocket entity gets created.
|
2829
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2886
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.rocket_silo_status.create_rocket Online documentation}
|
2830
2887
|
*/
|
2831
2888
|
create_rocket,
|
2832
2889
|
/**
|
2833
2890
|
* The next state is `doors_opening`. The rocket is getting prepared for launch.
|
2834
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2891
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.rocket_silo_status.lights_blinking_open Online documentation}
|
2835
2892
|
*/
|
2836
2893
|
lights_blinking_open,
|
2837
2894
|
/**
|
2838
2895
|
* The next state is `doors_opened`. The rocket is getting prepared for launch.
|
2839
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2896
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.rocket_silo_status.doors_opening Online documentation}
|
2840
2897
|
*/
|
2841
2898
|
doors_opening,
|
2842
2899
|
/**
|
2843
2900
|
* 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.
|
2844
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2901
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.rocket_silo_status.doors_opened Online documentation}
|
2845
2902
|
*/
|
2846
2903
|
doors_opened,
|
2847
2904
|
/**
|
2848
2905
|
* 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.
|
2849
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2906
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.rocket_silo_status.rocket_rising Online documentation}
|
2850
2907
|
*/
|
2851
2908
|
rocket_rising,
|
2852
2909
|
/**
|
2853
2910
|
* 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.
|
2854
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2911
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.rocket_silo_status.arms_advance Online documentation}
|
2855
2912
|
*/
|
2856
2913
|
arms_advance,
|
2857
2914
|
/**
|
2858
2915
|
* The rocket launch can be started by the player. When the launch is started, the silo switches into the `launch_starting` state.
|
2859
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2916
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.rocket_silo_status.rocket_ready Online documentation}
|
2860
2917
|
*/
|
2861
2918
|
rocket_ready,
|
2862
2919
|
/**
|
2863
2920
|
* The next state is `launch_started`.
|
2864
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2921
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.rocket_silo_status.launch_starting Online documentation}
|
2865
2922
|
*/
|
2866
2923
|
launch_starting,
|
2867
2924
|
/**
|
2868
2925
|
* 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.
|
2869
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2926
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.rocket_silo_status.engine_starting Online documentation}
|
2870
2927
|
*/
|
2871
2928
|
engine_starting,
|
2872
2929
|
/**
|
2873
2930
|
* 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.
|
2874
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2931
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.rocket_silo_status.arms_retract Online documentation}
|
2875
2932
|
*/
|
2876
2933
|
arms_retract,
|
2877
2934
|
/**
|
2878
2935
|
* The next state is `lights_blinking_close`. The rocket is getting launched.
|
2879
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2936
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.rocket_silo_status.rocket_flying Online documentation}
|
2880
2937
|
*/
|
2881
2938
|
rocket_flying,
|
2882
2939
|
/**
|
2883
2940
|
* The next state is `doors_closing`.
|
2884
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2941
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.rocket_silo_status.lights_blinking_close Online documentation}
|
2885
2942
|
*/
|
2886
2943
|
lights_blinking_close,
|
2887
2944
|
/**
|
2888
2945
|
* The next state is `building_rocket`.
|
2889
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2946
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.rocket_silo_status.doors_closing Online documentation}
|
2890
2947
|
*/
|
2891
2948
|
doors_closing,
|
2892
2949
|
/**
|
2893
2950
|
* 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.
|
2894
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2951
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.rocket_silo_status.launch_started Online documentation}
|
2895
2952
|
*/
|
2896
2953
|
launch_started,
|
2897
2954
|
}
|
@@ -2908,74 +2965,74 @@ declare global {
|
|
2908
2965
|
}
|
2909
2966
|
/**
|
2910
2967
|
* State of an ordinary rail signal.
|
2911
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2968
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.signal_state Online documentation}
|
2912
2969
|
*/
|
2913
2970
|
enum signal_state {
|
2914
2971
|
/**
|
2915
2972
|
* Green.
|
2916
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2973
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.signal_state.open Online documentation}
|
2917
2974
|
*/
|
2918
2975
|
open,
|
2919
2976
|
/**
|
2920
2977
|
* Red.
|
2921
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2978
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.signal_state.closed Online documentation}
|
2922
2979
|
*/
|
2923
2980
|
closed,
|
2924
2981
|
/**
|
2925
2982
|
* Orange.
|
2926
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2983
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.signal_state.reserved Online documentation}
|
2927
2984
|
*/
|
2928
2985
|
reserved,
|
2929
2986
|
/**
|
2930
2987
|
* Red - From circuit network.
|
2931
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2988
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.signal_state.reserved_by_circuit_network Online documentation}
|
2932
2989
|
*/
|
2933
2990
|
reserved_by_circuit_network,
|
2934
2991
|
}
|
2935
2992
|
enum space_platform_state {
|
2936
2993
|
/**
|
2937
2994
|
* Waiting for a starter pack.
|
2938
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2995
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.space_platform_state.waiting_for_starter_pack Online documentation}
|
2939
2996
|
*/
|
2940
2997
|
waiting_for_starter_pack,
|
2941
2998
|
/**
|
2942
2999
|
* Starter pack was requested from the logistics system.
|
2943
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3000
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.space_platform_state.starter_pack_requested Online documentation}
|
2944
3001
|
*/
|
2945
3002
|
starter_pack_requested,
|
2946
3003
|
/**
|
2947
3004
|
* Starter pack is on the way.
|
2948
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3005
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.space_platform_state.starter_pack_on_the_way Online documentation}
|
2949
3006
|
*/
|
2950
3007
|
starter_pack_on_the_way,
|
2951
3008
|
/**
|
2952
3009
|
* Following the path.
|
2953
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3010
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.space_platform_state.on_the_path Online documentation}
|
2954
3011
|
*/
|
2955
3012
|
on_the_path,
|
2956
3013
|
/**
|
2957
3014
|
* Platform is ready to leave this planet and does not accept deliveries.
|
2958
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3015
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.space_platform_state.waiting_for_departure Online documentation}
|
2959
3016
|
*/
|
2960
3017
|
waiting_for_departure,
|
2961
3018
|
/**
|
2962
3019
|
* Doesn't have any stations in schedule.
|
2963
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3020
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.space_platform_state.no_schedule Online documentation}
|
2964
3021
|
*/
|
2965
3022
|
no_schedule,
|
2966
3023
|
/**
|
2967
3024
|
* Doesn't have anywhere to go.
|
2968
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3025
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.space_platform_state.no_path Online documentation}
|
2969
3026
|
*/
|
2970
3027
|
no_path,
|
2971
3028
|
/**
|
2972
3029
|
* Waiting at a station.
|
2973
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3030
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.space_platform_state.waiting_at_station Online documentation}
|
2974
3031
|
*/
|
2975
3032
|
waiting_at_station,
|
2976
3033
|
/**
|
2977
3034
|
* Paused.
|
2978
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3035
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.space_platform_state.paused Online documentation}
|
2979
3036
|
*/
|
2980
3037
|
paused,
|
2981
3038
|
}
|
@@ -2999,56 +3056,57 @@ declare global {
|
|
2999
3056
|
custom_chart_tag,
|
3000
3057
|
gui_element,
|
3001
3058
|
cargo_hatch,
|
3059
|
+
schedule,
|
3002
3060
|
}
|
3003
3061
|
enum train_state {
|
3004
3062
|
/**
|
3005
3063
|
* Normal state -- following the path.
|
3006
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3064
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.train_state.on_the_path Online documentation}
|
3007
3065
|
*/
|
3008
3066
|
on_the_path,
|
3009
3067
|
/**
|
3010
3068
|
* Doesn't have anywhere to go.
|
3011
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3069
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.train_state.no_schedule Online documentation}
|
3012
3070
|
*/
|
3013
3071
|
no_schedule,
|
3014
3072
|
/**
|
3015
3073
|
* Has no path and is stopped.
|
3016
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3074
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.train_state.no_path Online documentation}
|
3017
3075
|
*/
|
3018
3076
|
no_path,
|
3019
3077
|
/**
|
3020
3078
|
* Braking before a rail signal.
|
3021
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3079
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.train_state.arrive_signal Online documentation}
|
3022
3080
|
*/
|
3023
3081
|
arrive_signal,
|
3024
3082
|
/**
|
3025
3083
|
* Waiting at a signal.
|
3026
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3084
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.train_state.wait_signal Online documentation}
|
3027
3085
|
*/
|
3028
3086
|
wait_signal,
|
3029
3087
|
/**
|
3030
3088
|
* Braking before a station.
|
3031
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3089
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.train_state.arrive_station Online documentation}
|
3032
3090
|
*/
|
3033
3091
|
arrive_station,
|
3034
3092
|
/**
|
3035
3093
|
* Switched to manual control and has to stop.
|
3036
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3094
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.train_state.manual_control_stop Online documentation}
|
3037
3095
|
*/
|
3038
3096
|
manual_control_stop,
|
3039
3097
|
/**
|
3040
3098
|
* Can move if user explicitly sits in and rides the train.
|
3041
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3099
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.train_state.manual_control Online documentation}
|
3042
3100
|
*/
|
3043
3101
|
manual_control,
|
3044
3102
|
/**
|
3045
3103
|
* Waiting at a station.
|
3046
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3104
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.train_state.wait_station Online documentation}
|
3047
3105
|
*/
|
3048
3106
|
wait_station,
|
3049
3107
|
/**
|
3050
3108
|
* Same as no_path but all candidate train stops are full
|
3051
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3109
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/defines.html#defines.train_state.destination_full Online documentation}
|
3052
3110
|
*/
|
3053
3111
|
destination_full,
|
3054
3112
|
}
|