typed-factorio 3.14.0 → 3.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/prototype/generated/prototypes.d.ts +2143 -2087
- package/prototype/generated/types.d.ts +2108 -2108
- package/runtime/generated/classes.d.ts +3762 -3606
- package/runtime/generated/concepts.d.ts +321 -309
- package/runtime/generated/defines.d.ts +232 -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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/defines.html#defines.compound_command.return_last Online documentation}
|
363
371
|
*/
|
364
372
|
return_last,
|
365
373
|
}
|
@@ -421,200 +429,205 @@ 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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/defines.html#defines.control_behavior.type.furnace Online documentation}
|
593
|
+
*/
|
594
|
+
furnace,
|
582
595
|
}
|
583
596
|
}
|
584
597
|
enum controllers {
|
585
598
|
/**
|
586
599
|
* 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.
|
600
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.controllers.ghost Online documentation}
|
588
601
|
*/
|
589
602
|
ghost,
|
590
603
|
/**
|
591
604
|
* The controller controls a character. This is the default controller in freeplay.
|
592
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
605
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.controllers.character Online documentation}
|
593
606
|
*/
|
594
607
|
character,
|
595
608
|
/**
|
596
609
|
* 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.
|
610
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.controllers.god Online documentation}
|
598
611
|
*/
|
599
612
|
god,
|
600
613
|
/**
|
601
614
|
* The Editor Controller near ultimate power to do almost anything in the game.
|
602
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
615
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.controllers.editor Online documentation}
|
603
616
|
*/
|
604
617
|
editor,
|
605
618
|
/**
|
606
619
|
* 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.
|
620
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.controllers.cutscene Online documentation}
|
608
621
|
*/
|
609
622
|
cutscene,
|
610
623
|
/**
|
611
624
|
* Can't change anything in the world but can view anything.
|
612
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
625
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.controllers.spectator Online documentation}
|
613
626
|
*/
|
614
627
|
spectator,
|
615
628
|
/**
|
616
629
|
* Can't move/change items but can build ghosts/change settings.
|
617
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
630
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.controllers.remote Online documentation}
|
618
631
|
*/
|
619
632
|
remote,
|
620
633
|
}
|
@@ -676,22 +689,22 @@ declare global {
|
|
676
689
|
enum distraction {
|
677
690
|
/**
|
678
691
|
* Perform command even if someone attacks the unit.
|
679
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
692
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.distraction.none Online documentation}
|
680
693
|
*/
|
681
694
|
none,
|
682
695
|
/**
|
683
696
|
* Attack closer enemy entities with force.
|
684
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
697
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.distraction.by_enemy Online documentation}
|
685
698
|
*/
|
686
699
|
by_enemy,
|
687
700
|
/**
|
688
701
|
* Attack closer enemy entities, including entities "built" by player (belts, inserters, chests).
|
689
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
702
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.distraction.by_anything Online documentation}
|
690
703
|
*/
|
691
704
|
by_anything,
|
692
705
|
/**
|
693
706
|
* Attack when attacked.
|
694
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
707
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.distraction.by_damage Online documentation}
|
695
708
|
*/
|
696
709
|
by_damage,
|
697
710
|
}
|
@@ -700,12 +713,12 @@ declare global {
|
|
700
713
|
normal,
|
701
714
|
/**
|
702
715
|
* Used by ghosts.
|
703
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
716
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.ghost Online documentation}
|
704
717
|
*/
|
705
718
|
ghost,
|
706
719
|
/**
|
707
720
|
* 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.
|
721
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.broken Online documentation}
|
709
722
|
*/
|
710
723
|
broken,
|
711
724
|
no_power,
|
@@ -719,267 +732,267 @@ declare global {
|
|
719
732
|
marked_for_deconstruction,
|
720
733
|
/**
|
721
734
|
* Used by space platform hubs.
|
722
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
735
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.paused Online documentation}
|
723
736
|
*/
|
724
737
|
paused,
|
725
738
|
/**
|
726
739
|
* Used by generators and solar panels.
|
727
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
740
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.not_plugged_in_electric_network Online documentation}
|
728
741
|
*/
|
729
742
|
not_plugged_in_electric_network,
|
730
743
|
/**
|
731
744
|
* Used by power switches.
|
732
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
745
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.networks_connected Online documentation}
|
733
746
|
*/
|
734
747
|
networks_connected,
|
735
748
|
/**
|
736
749
|
* Used by power switches.
|
737
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
750
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.networks_disconnected Online documentation}
|
738
751
|
*/
|
739
752
|
networks_disconnected,
|
740
753
|
/**
|
741
754
|
* Used by accumulators.
|
742
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
755
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.charging Online documentation}
|
743
756
|
*/
|
744
757
|
charging,
|
745
758
|
/**
|
746
759
|
* Used by accumulators.
|
747
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
760
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.discharging Online documentation}
|
748
761
|
*/
|
749
762
|
discharging,
|
750
763
|
/**
|
751
764
|
* Used by accumulators.
|
752
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
765
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.fully_charged Online documentation}
|
753
766
|
*/
|
754
767
|
fully_charged,
|
755
768
|
/**
|
756
769
|
* Used by logistic containers.
|
757
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
770
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.out_of_logistic_network Online documentation}
|
758
771
|
*/
|
759
772
|
out_of_logistic_network,
|
760
773
|
/**
|
761
774
|
* Used by assembling machines.
|
762
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
775
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.no_recipe Online documentation}
|
763
776
|
*/
|
764
777
|
no_recipe,
|
765
778
|
/**
|
766
779
|
* Used by furnaces.
|
767
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
780
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.no_ingredients Online documentation}
|
768
781
|
*/
|
769
782
|
no_ingredients,
|
770
783
|
/**
|
771
784
|
* 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.
|
785
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.no_input_fluid Online documentation}
|
773
786
|
*/
|
774
787
|
no_input_fluid,
|
775
788
|
/**
|
776
789
|
* Used by labs.
|
777
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
790
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.no_research_in_progress Online documentation}
|
778
791
|
*/
|
779
792
|
no_research_in_progress,
|
780
793
|
/**
|
781
794
|
* Used by mining drills.
|
782
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
795
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.no_minable_resources Online documentation}
|
783
796
|
*/
|
784
797
|
no_minable_resources,
|
785
798
|
/**
|
786
799
|
* Used by cargo bays.
|
787
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
800
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.not_connected_to_hub_or_pad Online documentation}
|
788
801
|
*/
|
789
802
|
not_connected_to_hub_or_pad,
|
790
803
|
/**
|
791
804
|
* 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.
|
805
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.low_input_fluid Online documentation}
|
793
806
|
*/
|
794
807
|
low_input_fluid,
|
795
808
|
/**
|
796
809
|
* Used by crafting machines.
|
797
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
810
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.fluid_ingredient_shortage Online documentation}
|
798
811
|
*/
|
799
812
|
fluid_ingredient_shortage,
|
800
813
|
/**
|
801
814
|
* 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.
|
815
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.full_output Online documentation}
|
803
816
|
*/
|
804
817
|
full_output,
|
805
818
|
/**
|
806
819
|
* Used by agricultural towers.
|
807
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
820
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.not_enough_space_in_output Online documentation}
|
808
821
|
*/
|
809
822
|
not_enough_space_in_output,
|
810
823
|
/**
|
811
824
|
* Used by burner energy sources.
|
812
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
825
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.full_burnt_result_output Online documentation}
|
813
826
|
*/
|
814
827
|
full_burnt_result_output,
|
815
828
|
/**
|
816
829
|
* Used by crafting machines.
|
817
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
830
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.item_ingredient_shortage Online documentation}
|
818
831
|
*/
|
819
832
|
item_ingredient_shortage,
|
820
833
|
/**
|
821
834
|
* Used by mining drills when the mining fluid is missing.
|
822
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
835
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.missing_required_fluid Online documentation}
|
823
836
|
*/
|
824
837
|
missing_required_fluid,
|
825
838
|
/**
|
826
839
|
* Used by labs.
|
827
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
840
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.missing_science_packs Online documentation}
|
828
841
|
*/
|
829
842
|
missing_science_packs,
|
830
843
|
/**
|
831
844
|
* Used by inserters.
|
832
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
845
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.waiting_for_source_items Online documentation}
|
833
846
|
*/
|
834
847
|
waiting_for_source_items,
|
835
848
|
/**
|
836
849
|
* Used by inserters when wait_for_full_hand is set.
|
837
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
850
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.waiting_for_more_items Online documentation}
|
838
851
|
*/
|
839
852
|
waiting_for_more_items,
|
840
853
|
/**
|
841
854
|
* Used by inserters and mining drills.
|
842
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
855
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.waiting_for_space_in_destination Online documentation}
|
843
856
|
*/
|
844
857
|
waiting_for_space_in_destination,
|
845
858
|
/**
|
846
859
|
* Used by the rocket silo.
|
847
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
860
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.preparing_rocket_for_launch Online documentation}
|
848
861
|
*/
|
849
862
|
preparing_rocket_for_launch,
|
850
863
|
/**
|
851
864
|
* Used by the rocket silo.
|
852
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
865
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.waiting_to_launch_rocket Online documentation}
|
853
866
|
*/
|
854
867
|
waiting_to_launch_rocket,
|
855
868
|
/**
|
856
869
|
* Used by the rocket silo.
|
857
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
870
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.waiting_for_space_in_platform_hub Online documentation}
|
858
871
|
*/
|
859
872
|
waiting_for_space_in_platform_hub,
|
860
873
|
/**
|
861
874
|
* Used by the rocket silo.
|
862
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
875
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.launching_rocket Online documentation}
|
863
876
|
*/
|
864
877
|
launching_rocket,
|
865
878
|
/**
|
866
879
|
* Used by thrusters.
|
867
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
880
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.thrust_not_required Online documentation}
|
868
881
|
*/
|
869
882
|
thrust_not_required,
|
870
883
|
/**
|
871
884
|
* Used by space platform hubs.
|
872
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
885
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.on_the_way Online documentation}
|
873
886
|
*/
|
874
887
|
on_the_way,
|
875
888
|
/**
|
876
889
|
* Used by space platform hubs.
|
877
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
890
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.waiting_in_orbit Online documentation}
|
878
891
|
*/
|
879
892
|
waiting_in_orbit,
|
880
893
|
/**
|
881
894
|
* Used by trains.
|
882
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
895
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.waiting_at_stop Online documentation}
|
883
896
|
*/
|
884
897
|
waiting_at_stop,
|
885
898
|
/**
|
886
899
|
* Used by space platform hubs.
|
887
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
900
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.waiting_for_rockets_to_arrive Online documentation}
|
888
901
|
*/
|
889
902
|
waiting_for_rockets_to_arrive,
|
890
903
|
/**
|
891
904
|
* Used by space platform hubs.
|
892
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
905
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.not_enough_thrust Online documentation}
|
893
906
|
*/
|
894
907
|
not_enough_thrust,
|
895
908
|
/**
|
896
909
|
* Used by trains.
|
897
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
910
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.destination_stop_full Online documentation}
|
898
911
|
*/
|
899
912
|
destination_stop_full,
|
900
913
|
/**
|
901
914
|
* Used by trains and space platform hubs.
|
902
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
915
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.no_path Online documentation}
|
903
916
|
*/
|
904
917
|
no_path,
|
905
918
|
/**
|
906
919
|
* Used by beacons.
|
907
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
920
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.no_modules_to_transmit Online documentation}
|
908
921
|
*/
|
909
922
|
no_modules_to_transmit,
|
910
923
|
/**
|
911
924
|
* Used by roboports.
|
912
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
925
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.recharging_after_power_outage Online documentation}
|
913
926
|
*/
|
914
927
|
recharging_after_power_outage,
|
915
928
|
/**
|
916
929
|
* Used by inserters targeting entity ghosts.
|
917
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
930
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.waiting_for_target_to_be_built Online documentation}
|
918
931
|
*/
|
919
932
|
waiting_for_target_to_be_built,
|
920
933
|
/**
|
921
934
|
* Used by inserters targeting rails.
|
922
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
935
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.waiting_for_train Online documentation}
|
923
936
|
*/
|
924
937
|
waiting_for_train,
|
925
938
|
/**
|
926
939
|
* Used by ammo turrets.
|
927
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
940
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.no_ammo Online documentation}
|
928
941
|
*/
|
929
942
|
no_ammo,
|
930
943
|
/**
|
931
944
|
* Used by heat energy sources.
|
932
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
945
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.low_temperature Online documentation}
|
933
946
|
*/
|
934
947
|
low_temperature,
|
935
948
|
/**
|
936
949
|
* Used by constant combinators: Combinator is turned off via switch in GUI.
|
937
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
950
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.disabled Online documentation}
|
938
951
|
*/
|
939
952
|
disabled,
|
940
953
|
/**
|
941
954
|
* Used by lamps.
|
942
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
955
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.turned_off_during_daytime Online documentation}
|
943
956
|
*/
|
944
957
|
turned_off_during_daytime,
|
945
958
|
/**
|
946
959
|
* Used by rail signals.
|
947
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
960
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.not_connected_to_rail Online documentation}
|
948
961
|
*/
|
949
962
|
not_connected_to_rail,
|
950
963
|
/**
|
951
964
|
* Used by rail signals.
|
952
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
965
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.cant_divide_segments Online documentation}
|
953
966
|
*/
|
954
967
|
cant_divide_segments,
|
955
968
|
/**
|
956
969
|
* Used by filter inserters.
|
957
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
970
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.no_filter Online documentation}
|
958
971
|
*/
|
959
972
|
no_filter,
|
960
973
|
/**
|
961
974
|
* Used by agricultural towers.
|
962
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
975
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.no_spot_seedable_by_inputs Online documentation}
|
963
976
|
*/
|
964
977
|
no_spot_seedable_by_inputs,
|
965
978
|
/**
|
966
979
|
* Used by agricultural towers.
|
967
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
980
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.waiting_for_plants_to_grow Online documentation}
|
968
981
|
*/
|
969
982
|
waiting_for_plants_to_grow,
|
970
983
|
/**
|
971
984
|
* Used by asteroid collectors.
|
972
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
985
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.computing_navigation Online documentation}
|
973
986
|
*/
|
974
987
|
computing_navigation,
|
975
988
|
/**
|
976
989
|
* Used by pipes, pipes to ground and storage tanks.
|
977
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
990
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.pipeline_overextended Online documentation}
|
978
991
|
*/
|
979
992
|
pipeline_overextended,
|
980
993
|
/**
|
981
994
|
* Used by assembling machines.
|
982
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
995
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.entity_status.recipe_not_researched Online documentation}
|
983
996
|
*/
|
984
997
|
recipe_not_researched,
|
985
998
|
}
|
@@ -989,8 +1002,8 @@ declare global {
|
|
989
1002
|
yellow,
|
990
1003
|
}
|
991
1004
|
/**
|
992
|
-
* See the {@linkplain https://lua-api.factorio.com/2.0.
|
993
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1005
|
+
* See the {@linkplain https://lua-api.factorio.com/2.0.35/events.html events page} for more info on what events contain and when they get raised.
|
1006
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.events Online documentation}
|
994
1007
|
*/
|
995
1008
|
namespace events {
|
996
1009
|
/**
|
@@ -1029,10 +1042,18 @@ declare global {
|
|
1029
1042
|
* Event type: {@link OnCancelledUpgradeEvent}
|
1030
1043
|
*/
|
1031
1044
|
const on_cancelled_upgrade: EventId<OnCancelledUpgradeEvent>
|
1045
|
+
/**
|
1046
|
+
* Event type: {@link OnCargoPodDeliveredCargoEvent}
|
1047
|
+
*/
|
1048
|
+
const on_cargo_pod_delivered_cargo: EventId<OnCargoPodDeliveredCargoEvent>
|
1032
1049
|
/**
|
1033
1050
|
* Event type: {@link OnCargoPodFinishedAscendingEvent}
|
1034
1051
|
*/
|
1035
1052
|
const on_cargo_pod_finished_ascending: EventId<OnCargoPodFinishedAscendingEvent>
|
1053
|
+
/**
|
1054
|
+
* Event type: {@link OnCargoPodFinishedDescendingEvent}
|
1055
|
+
*/
|
1056
|
+
const on_cargo_pod_finished_descending: EventId<OnCargoPodFinishedDescendingEvent>
|
1036
1057
|
/**
|
1037
1058
|
* Event type: {@link OnCharacterCorpseExpiredEvent}
|
1038
1059
|
*/
|
@@ -1237,6 +1258,10 @@ declare global {
|
|
1237
1258
|
* Event type: {@link OnModItemOpenedEvent}
|
1238
1259
|
*/
|
1239
1260
|
const on_mod_item_opened: EventId<OnModItemOpenedEvent>
|
1261
|
+
/**
|
1262
|
+
* Event type: {@link OnMultiplayerInitEvent}
|
1263
|
+
*/
|
1264
|
+
const on_multiplayer_init: EventId<OnMultiplayerInitEvent>
|
1240
1265
|
/**
|
1241
1266
|
* Event type: {@link OnObjectDestroyedEvent}
|
1242
1267
|
*/
|
@@ -1665,6 +1690,10 @@ declare global {
|
|
1665
1690
|
* Event type: {@link OnSelectedEntityChangedEvent}
|
1666
1691
|
*/
|
1667
1692
|
const on_selected_entity_changed: EventId<OnSelectedEntityChangedEvent>
|
1693
|
+
/**
|
1694
|
+
* Event type: {@link OnSingleplayerInitEvent}
|
1695
|
+
*/
|
1696
|
+
const on_singleplayer_init: EventId<OnSingleplayerInitEvent>
|
1668
1697
|
/**
|
1669
1698
|
* Event type: {@link OnSpacePlatformBuiltEntityEvent}
|
1670
1699
|
*/
|
@@ -1795,8 +1824,8 @@ declare global {
|
|
1795
1824
|
const script_raised_teleported: EventId<ScriptRaisedTeleportedEvent>
|
1796
1825
|
}
|
1797
1826
|
/**
|
1798
|
-
* See the {@linkplain https://lua-api.factorio.com/2.0.
|
1799
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1827
|
+
* See the {@linkplain https://lua-api.factorio.com/2.0.35/events.html events page} for more info on what events contain and when they get raised.
|
1828
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.events Online documentation}
|
1800
1829
|
*/
|
1801
1830
|
type events = (typeof events)[keyof typeof events]
|
1802
1831
|
enum flow_precision_index {
|
@@ -1812,17 +1841,17 @@ declare global {
|
|
1812
1841
|
enum game_controller_interaction {
|
1813
1842
|
/**
|
1814
1843
|
* Game controller will always hover this element regardless of type or state.
|
1815
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1844
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.game_controller_interaction.always Online documentation}
|
1816
1845
|
*/
|
1817
1846
|
always,
|
1818
1847
|
/**
|
1819
1848
|
* Never hover this element with a game controller.
|
1820
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1849
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.game_controller_interaction.never Online documentation}
|
1821
1850
|
*/
|
1822
1851
|
never,
|
1823
1852
|
/**
|
1824
1853
|
* Hover according to the element type and implementation.
|
1825
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1854
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.game_controller_interaction.normal Online documentation}
|
1826
1855
|
*/
|
1827
1856
|
normal,
|
1828
1857
|
}
|
@@ -1984,6 +2013,7 @@ declare global {
|
|
1984
2013
|
mod_settings_changed,
|
1985
2014
|
modify_decider_combinator_condition,
|
1986
2015
|
modify_decider_combinator_output,
|
2016
|
+
move_pin,
|
1987
2017
|
move_research,
|
1988
2018
|
open_achievements_gui,
|
1989
2019
|
open_blueprint_library_gui,
|
@@ -2068,6 +2098,7 @@ declare global {
|
|
2068
2098
|
set_inventory_bar,
|
2069
2099
|
set_lamp_always_on,
|
2070
2100
|
set_linked_container_link_i_d,
|
2101
|
+
set_loader_belt_stack_size_override,
|
2071
2102
|
set_logistic_filter_item,
|
2072
2103
|
set_logistic_network_name,
|
2073
2104
|
set_logistic_section_active,
|
@@ -2097,7 +2128,14 @@ declare global {
|
|
2097
2128
|
start_research,
|
2098
2129
|
start_walking,
|
2099
2130
|
stop_drag_build,
|
2131
|
+
swap_asteroid_chunk_slots,
|
2132
|
+
swap_entity_filter_slots,
|
2133
|
+
swap_entity_slots,
|
2134
|
+
swap_infinity_container_filter_items,
|
2135
|
+
swap_item_filters,
|
2100
2136
|
swap_logistic_filter_items,
|
2137
|
+
swap_mappers,
|
2138
|
+
swap_tile_slots,
|
2101
2139
|
switch_connect_to_logistic_network,
|
2102
2140
|
switch_constant_combinator_state,
|
2103
2141
|
switch_inserter_filter_mode_state,
|
@@ -2139,6 +2177,11 @@ declare global {
|
|
2139
2177
|
furnace_source,
|
2140
2178
|
furnace_result,
|
2141
2179
|
furnace_modules,
|
2180
|
+
/**
|
2181
|
+
* Used for spoil result items that do not fit into the recipe slots.
|
2182
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.inventory.furnace_trash Online documentation}
|
2183
|
+
*/
|
2184
|
+
furnace_trash,
|
2142
2185
|
character_main,
|
2143
2186
|
character_guns,
|
2144
2187
|
character_ammo,
|
@@ -2159,9 +2202,14 @@ declare global {
|
|
2159
2202
|
assembling_machine_modules,
|
2160
2203
|
/**
|
2161
2204
|
* 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.
|
2205
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.inventory.assembling_machine_dump Online documentation}
|
2163
2206
|
*/
|
2164
2207
|
assembling_machine_dump,
|
2208
|
+
/**
|
2209
|
+
* Used for spoil result items that do not fit into the recipe slots and for items that are ejected when changing the recipe via remote view.
|
2210
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.inventory.assembling_machine_trash Online documentation}
|
2211
|
+
*/
|
2212
|
+
assembling_machine_trash,
|
2165
2213
|
lab_input,
|
2166
2214
|
lab_modules,
|
2167
2215
|
mining_drill_modules,
|
@@ -2211,12 +2259,12 @@ declare global {
|
|
2211
2259
|
circuit_controlled,
|
2212
2260
|
/**
|
2213
2261
|
* Used by rocket silos.
|
2214
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2262
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.logistic_section_type.transitional_request_controlled Online documentation}
|
2215
2263
|
*/
|
2216
2264
|
transitional_request_controlled,
|
2217
2265
|
/**
|
2218
2266
|
* Used by space platform hubs.
|
2219
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2267
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.logistic_section_type.request_missing_materials_controlled Online documentation}
|
2220
2268
|
*/
|
2221
2269
|
request_missing_materials_controlled,
|
2222
2270
|
}
|
@@ -2235,17 +2283,17 @@ declare global {
|
|
2235
2283
|
enum print_skip {
|
2236
2284
|
/**
|
2237
2285
|
* Print will not be skipped.
|
2238
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2286
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.print_skip.never Online documentation}
|
2239
2287
|
*/
|
2240
2288
|
never,
|
2241
2289
|
/**
|
2242
2290
|
* 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.
|
2291
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.print_skip.if_redundant Online documentation}
|
2244
2292
|
*/
|
2245
2293
|
if_redundant,
|
2246
2294
|
/**
|
2247
2295
|
* 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.
|
2296
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.print_skip.if_visible Online documentation}
|
2249
2297
|
*/
|
2250
2298
|
if_visible,
|
2251
2299
|
}
|
@@ -2256,7 +2304,7 @@ declare global {
|
|
2256
2304
|
}
|
2257
2305
|
/**
|
2258
2306
|
* This define describes all top-level prototypes and their associated subtypes. It is organized as a lookup table, meaning the values of all the defines is `0`. As an example, `defines.prototypes['entity']` looks like `{furnace=0, inserter=0, container=0, ...}`.
|
2259
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2307
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.prototypes Online documentation}
|
2260
2308
|
*/
|
2261
2309
|
interface prototypes {
|
2262
2310
|
achievement: {
|
@@ -2645,7 +2693,7 @@ declare global {
|
|
2645
2693
|
}
|
2646
2694
|
/**
|
2647
2695
|
* This define describes all top-level prototypes and their associated subtypes. It is organized as a lookup table, meaning the values of all the defines is `0`. As an example, `defines.prototypes['entity']` looks like `{furnace=0, inserter=0, container=0, ...}`.
|
2648
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2696
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.prototypes Online documentation}
|
2649
2697
|
*/
|
2650
2698
|
const prototypes: prototypes
|
2651
2699
|
enum rail_connection_direction {
|
@@ -2770,128 +2818,128 @@ declare global {
|
|
2770
2818
|
enum robot_order_type {
|
2771
2819
|
/**
|
2772
2820
|
* Construct a ghost.
|
2773
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2821
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.robot_order_type.construct Online documentation}
|
2774
2822
|
*/
|
2775
2823
|
construct,
|
2776
2824
|
/**
|
2777
2825
|
* Pickup an item.
|
2778
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2826
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.robot_order_type.pickup Online documentation}
|
2779
2827
|
*/
|
2780
2828
|
pickup,
|
2781
2829
|
/**
|
2782
2830
|
* Deliver an item.
|
2783
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2831
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.robot_order_type.deliver Online documentation}
|
2784
2832
|
*/
|
2785
2833
|
deliver,
|
2786
2834
|
/**
|
2787
2835
|
* Repair an entity.
|
2788
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2836
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.robot_order_type.repair Online documentation}
|
2789
2837
|
*/
|
2790
2838
|
repair,
|
2791
2839
|
/**
|
2792
2840
|
* Deconstruct an entity.
|
2793
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2841
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.robot_order_type.deconstruct Online documentation}
|
2794
2842
|
*/
|
2795
2843
|
deconstruct,
|
2796
2844
|
/**
|
2797
2845
|
* Deliver specific items to an entity (item request proxy).
|
2798
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2846
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.robot_order_type.deliver_items Online documentation}
|
2799
2847
|
*/
|
2800
2848
|
deliver_items,
|
2801
2849
|
/**
|
2802
2850
|
* Upgrade an entity.
|
2803
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2851
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.robot_order_type.upgrade Online documentation}
|
2804
2852
|
*/
|
2805
2853
|
upgrade,
|
2806
2854
|
/**
|
2807
2855
|
* Explode a cliff.
|
2808
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2856
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.robot_order_type.explode_cliff Online documentation}
|
2809
2857
|
*/
|
2810
2858
|
explode_cliff,
|
2811
2859
|
/**
|
2812
2860
|
* Pickup items from an entity (item request proxy).
|
2813
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2861
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.robot_order_type.pickup_items Online documentation}
|
2814
2862
|
*/
|
2815
2863
|
pickup_items,
|
2816
2864
|
}
|
2817
2865
|
/**
|
2818
2866
|
* The various parts of the launch sequence of the rocket silo.
|
2819
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2867
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.rocket_silo_status Online documentation}
|
2820
2868
|
*/
|
2821
2869
|
enum rocket_silo_status {
|
2822
2870
|
/**
|
2823
2871
|
* 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.
|
2872
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.rocket_silo_status.building_rocket Online documentation}
|
2825
2873
|
*/
|
2826
2874
|
building_rocket,
|
2827
2875
|
/**
|
2828
2876
|
* The next state is `lights_blinking_open`. The rocket silo rocket entity gets created.
|
2829
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2877
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.rocket_silo_status.create_rocket Online documentation}
|
2830
2878
|
*/
|
2831
2879
|
create_rocket,
|
2832
2880
|
/**
|
2833
2881
|
* The next state is `doors_opening`. The rocket is getting prepared for launch.
|
2834
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2882
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.rocket_silo_status.lights_blinking_open Online documentation}
|
2835
2883
|
*/
|
2836
2884
|
lights_blinking_open,
|
2837
2885
|
/**
|
2838
2886
|
* The next state is `doors_opened`. The rocket is getting prepared for launch.
|
2839
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2887
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.rocket_silo_status.doors_opening Online documentation}
|
2840
2888
|
*/
|
2841
2889
|
doors_opening,
|
2842
2890
|
/**
|
2843
2891
|
* The next state is `rocket_rising` or if the rocket is destroyed in this state then the next state will be `lights_blinking_close`. The rocket is getting prepared for launch.
|
2844
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2892
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.rocket_silo_status.doors_opened Online documentation}
|
2845
2893
|
*/
|
2846
2894
|
doors_opened,
|
2847
2895
|
/**
|
2848
2896
|
* The next state is `arms_advance` or if the rocket is destroyed in this state then the next state will be `lights_blinking_close`. The rocket is getting prepared for launch.
|
2849
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2897
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.rocket_silo_status.rocket_rising Online documentation}
|
2850
2898
|
*/
|
2851
2899
|
rocket_rising,
|
2852
2900
|
/**
|
2853
2901
|
* The next state is `rocket_ready` or if the rocket is destroyed in this state then the next state will be `lights_blinking_close`. The rocket is getting prepared for launch.
|
2854
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2902
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.rocket_silo_status.arms_advance Online documentation}
|
2855
2903
|
*/
|
2856
2904
|
arms_advance,
|
2857
2905
|
/**
|
2858
2906
|
* 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.
|
2907
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.rocket_silo_status.rocket_ready Online documentation}
|
2860
2908
|
*/
|
2861
2909
|
rocket_ready,
|
2862
2910
|
/**
|
2863
2911
|
* The next state is `launch_started`.
|
2864
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2912
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.rocket_silo_status.launch_starting Online documentation}
|
2865
2913
|
*/
|
2866
2914
|
launch_starting,
|
2867
2915
|
/**
|
2868
2916
|
* The next state is `arms_retract` or if the rocket is destroyed in this state then the next state will be `lights_blinking_close`. The rocket is getting launched.
|
2869
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2917
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.rocket_silo_status.engine_starting Online documentation}
|
2870
2918
|
*/
|
2871
2919
|
engine_starting,
|
2872
2920
|
/**
|
2873
2921
|
* The next state is `rocket_flying` or if the rocket is destroyed in this state then the next state will be `lights_blinking_close`. The rocket is getting launched.
|
2874
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2922
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.rocket_silo_status.arms_retract Online documentation}
|
2875
2923
|
*/
|
2876
2924
|
arms_retract,
|
2877
2925
|
/**
|
2878
2926
|
* The next state is `lights_blinking_close`. The rocket is getting launched.
|
2879
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2927
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.rocket_silo_status.rocket_flying Online documentation}
|
2880
2928
|
*/
|
2881
2929
|
rocket_flying,
|
2882
2930
|
/**
|
2883
2931
|
* The next state is `doors_closing`.
|
2884
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2932
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.rocket_silo_status.lights_blinking_close Online documentation}
|
2885
2933
|
*/
|
2886
2934
|
lights_blinking_close,
|
2887
2935
|
/**
|
2888
2936
|
* The next state is `building_rocket`.
|
2889
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2937
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.rocket_silo_status.doors_closing Online documentation}
|
2890
2938
|
*/
|
2891
2939
|
doors_closing,
|
2892
2940
|
/**
|
2893
2941
|
* The next state is `engine_starting` or if the rocket is destroyed in this state then the next state will be `lights_blinking_close`. The rocket is getting launched.
|
2894
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2942
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.rocket_silo_status.launch_started Online documentation}
|
2895
2943
|
*/
|
2896
2944
|
launch_started,
|
2897
2945
|
}
|
@@ -2908,74 +2956,74 @@ declare global {
|
|
2908
2956
|
}
|
2909
2957
|
/**
|
2910
2958
|
* State of an ordinary rail signal.
|
2911
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2959
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.signal_state Online documentation}
|
2912
2960
|
*/
|
2913
2961
|
enum signal_state {
|
2914
2962
|
/**
|
2915
2963
|
* Green.
|
2916
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2964
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.signal_state.open Online documentation}
|
2917
2965
|
*/
|
2918
2966
|
open,
|
2919
2967
|
/**
|
2920
2968
|
* Red.
|
2921
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2969
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.signal_state.closed Online documentation}
|
2922
2970
|
*/
|
2923
2971
|
closed,
|
2924
2972
|
/**
|
2925
2973
|
* Orange.
|
2926
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2974
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.signal_state.reserved Online documentation}
|
2927
2975
|
*/
|
2928
2976
|
reserved,
|
2929
2977
|
/**
|
2930
2978
|
* Red - From circuit network.
|
2931
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2979
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.signal_state.reserved_by_circuit_network Online documentation}
|
2932
2980
|
*/
|
2933
2981
|
reserved_by_circuit_network,
|
2934
2982
|
}
|
2935
2983
|
enum space_platform_state {
|
2936
2984
|
/**
|
2937
2985
|
* Waiting for a starter pack.
|
2938
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2986
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.space_platform_state.waiting_for_starter_pack Online documentation}
|
2939
2987
|
*/
|
2940
2988
|
waiting_for_starter_pack,
|
2941
2989
|
/**
|
2942
2990
|
* Starter pack was requested from the logistics system.
|
2943
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2991
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.space_platform_state.starter_pack_requested Online documentation}
|
2944
2992
|
*/
|
2945
2993
|
starter_pack_requested,
|
2946
2994
|
/**
|
2947
2995
|
* Starter pack is on the way.
|
2948
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2996
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.space_platform_state.starter_pack_on_the_way Online documentation}
|
2949
2997
|
*/
|
2950
2998
|
starter_pack_on_the_way,
|
2951
2999
|
/**
|
2952
3000
|
* Following the path.
|
2953
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3001
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.space_platform_state.on_the_path Online documentation}
|
2954
3002
|
*/
|
2955
3003
|
on_the_path,
|
2956
3004
|
/**
|
2957
3005
|
* Platform is ready to leave this planet and does not accept deliveries.
|
2958
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3006
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.space_platform_state.waiting_for_departure Online documentation}
|
2959
3007
|
*/
|
2960
3008
|
waiting_for_departure,
|
2961
3009
|
/**
|
2962
3010
|
* Doesn't have any stations in schedule.
|
2963
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3011
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.space_platform_state.no_schedule Online documentation}
|
2964
3012
|
*/
|
2965
3013
|
no_schedule,
|
2966
3014
|
/**
|
2967
3015
|
* Doesn't have anywhere to go.
|
2968
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3016
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.space_platform_state.no_path Online documentation}
|
2969
3017
|
*/
|
2970
3018
|
no_path,
|
2971
3019
|
/**
|
2972
3020
|
* Waiting at a station.
|
2973
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3021
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.space_platform_state.waiting_at_station Online documentation}
|
2974
3022
|
*/
|
2975
3023
|
waiting_at_station,
|
2976
3024
|
/**
|
2977
3025
|
* Paused.
|
2978
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3026
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.space_platform_state.paused Online documentation}
|
2979
3027
|
*/
|
2980
3028
|
paused,
|
2981
3029
|
}
|
@@ -3003,52 +3051,52 @@ declare global {
|
|
3003
3051
|
enum train_state {
|
3004
3052
|
/**
|
3005
3053
|
* Normal state -- following the path.
|
3006
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3054
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.train_state.on_the_path Online documentation}
|
3007
3055
|
*/
|
3008
3056
|
on_the_path,
|
3009
3057
|
/**
|
3010
3058
|
* Doesn't have anywhere to go.
|
3011
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3059
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.train_state.no_schedule Online documentation}
|
3012
3060
|
*/
|
3013
3061
|
no_schedule,
|
3014
3062
|
/**
|
3015
3063
|
* Has no path and is stopped.
|
3016
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3064
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.train_state.no_path Online documentation}
|
3017
3065
|
*/
|
3018
3066
|
no_path,
|
3019
3067
|
/**
|
3020
3068
|
* Braking before a rail signal.
|
3021
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3069
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.train_state.arrive_signal Online documentation}
|
3022
3070
|
*/
|
3023
3071
|
arrive_signal,
|
3024
3072
|
/**
|
3025
3073
|
* Waiting at a signal.
|
3026
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3074
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.train_state.wait_signal Online documentation}
|
3027
3075
|
*/
|
3028
3076
|
wait_signal,
|
3029
3077
|
/**
|
3030
3078
|
* Braking before a station.
|
3031
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3079
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.train_state.arrive_station Online documentation}
|
3032
3080
|
*/
|
3033
3081
|
arrive_station,
|
3034
3082
|
/**
|
3035
3083
|
* Switched to manual control and has to stop.
|
3036
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3084
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.train_state.manual_control_stop Online documentation}
|
3037
3085
|
*/
|
3038
3086
|
manual_control_stop,
|
3039
3087
|
/**
|
3040
3088
|
* Can move if user explicitly sits in and rides the train.
|
3041
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3089
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.train_state.manual_control Online documentation}
|
3042
3090
|
*/
|
3043
3091
|
manual_control,
|
3044
3092
|
/**
|
3045
3093
|
* Waiting at a station.
|
3046
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3094
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.train_state.wait_station Online documentation}
|
3047
3095
|
*/
|
3048
3096
|
wait_station,
|
3049
3097
|
/**
|
3050
3098
|
* Same as no_path but all candidate train stops are full
|
3051
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3099
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/defines.html#defines.train_state.destination_full Online documentation}
|
3052
3100
|
*/
|
3053
3101
|
destination_full,
|
3054
3102
|
}
|