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,7 @@ declare module "factorio:runtime" {
|
|
13
13
|
* script.on_event("my-potato-control", function(event)
|
14
14
|
* game.print("Keyboard shortcut pressed on tick: " ..tostring(event.tick))
|
15
15
|
* end)
|
16
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
16
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#CustomInputEvent Online documentation}
|
17
17
|
*/
|
18
18
|
interface CustomInputEvent extends EventData {
|
19
19
|
/**
|
@@ -28,6 +28,10 @@ declare module "factorio:runtime" {
|
|
28
28
|
* The mouse cursor position when the custom input was activated.
|
29
29
|
*/
|
30
30
|
readonly cursor_position: MapPosition
|
31
|
+
/**
|
32
|
+
* Cursor direction.
|
33
|
+
*/
|
34
|
+
readonly cursor_direction?: defines.direction
|
31
35
|
/**
|
32
36
|
* The mouse cursor display location when the custom input was activated.
|
33
37
|
*/
|
@@ -47,7 +51,7 @@ declare module "factorio:runtime" {
|
|
47
51
|
}
|
48
52
|
/**
|
49
53
|
* Called when an achievement is gained.
|
50
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
54
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_achievement_gained Online documentation}
|
51
55
|
*/
|
52
56
|
interface OnAchievementGainedEvent extends EventData {
|
53
57
|
/**
|
@@ -66,7 +70,7 @@ declare module "factorio:runtime" {
|
|
66
70
|
}
|
67
71
|
/**
|
68
72
|
* Called when a unit/group completes a command.
|
69
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
73
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_ai_command_completed Online documentation}
|
70
74
|
*/
|
71
75
|
interface OnAiCommandCompletedEvent extends EventData {
|
72
76
|
/**
|
@@ -89,7 +93,7 @@ declare module "factorio:runtime" {
|
|
89
93
|
}
|
90
94
|
/**
|
91
95
|
* Called when an area of the map is cloned.
|
92
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
96
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_area_cloned Online documentation}
|
93
97
|
*/
|
94
98
|
interface OnAreaClonedEvent extends EventData {
|
95
99
|
readonly source_surface: LuaSurface
|
@@ -115,7 +119,7 @@ declare module "factorio:runtime" {
|
|
115
119
|
* Called when a biter migration builds a base.
|
116
120
|
*
|
117
121
|
* This will be called multiple times for each migration, once for every biter that is sacrificed to build part of the new base.
|
118
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
122
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_biter_base_built Online documentation}
|
119
123
|
*/
|
120
124
|
interface OnBiterBaseBuiltEvent extends EventData {
|
121
125
|
/**
|
@@ -133,7 +137,7 @@ declare module "factorio:runtime" {
|
|
133
137
|
}
|
134
138
|
/**
|
135
139
|
* Called when a set of positions on the map is cloned.
|
136
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
140
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_brush_cloned Online documentation}
|
137
141
|
*/
|
138
142
|
interface OnBrushClonedEvent extends EventData {
|
139
143
|
readonly source_offset: TilePosition
|
@@ -158,7 +162,7 @@ declare module "factorio:runtime" {
|
|
158
162
|
}
|
159
163
|
/**
|
160
164
|
* Called when a {@link defines.command.build_base} command reaches its destination, and before building starts.
|
161
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
165
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_build_base_arrived Online documentation}
|
162
166
|
*/
|
163
167
|
interface OnBuildBaseArrivedEvent extends EventData {
|
164
168
|
/**
|
@@ -182,7 +186,7 @@ declare module "factorio:runtime" {
|
|
182
186
|
* Called when player builds something.
|
183
187
|
*
|
184
188
|
* Event filter: [LuaPlayerBuiltEntityEventFilter](LuaPlayerBuiltEntityEventFilter]
|
185
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
189
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_built_entity Online documentation}
|
186
190
|
*/
|
187
191
|
interface OnBuiltEntityEvent extends EventData {
|
188
192
|
readonly entity: LuaEntity
|
@@ -205,7 +209,7 @@ declare module "factorio:runtime" {
|
|
205
209
|
* Called when the deconstruction of an entity is canceled.
|
206
210
|
*
|
207
211
|
* Event filter: [LuaEntityDeconstructionCancelledEventFilter](LuaEntityDeconstructionCancelledEventFilter]
|
208
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
212
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_cancelled_deconstruction Online documentation}
|
209
213
|
*/
|
210
214
|
interface OnCancelledDeconstructionEvent extends EventData {
|
211
215
|
readonly entity: LuaEntity
|
@@ -223,7 +227,7 @@ declare module "factorio:runtime" {
|
|
223
227
|
* Called when the upgrade of an entity is canceled.
|
224
228
|
*
|
225
229
|
* Event filter: [LuaUpgradeCancelledEventFilter](LuaUpgradeCancelledEventFilter]
|
226
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
230
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_cancelled_upgrade Online documentation}
|
227
231
|
*/
|
228
232
|
interface OnCancelledUpgradeEvent extends EventData {
|
229
233
|
readonly entity: LuaEntity
|
@@ -239,9 +243,28 @@ declare module "factorio:runtime" {
|
|
239
243
|
*/
|
240
244
|
readonly tick: uint
|
241
245
|
}
|
246
|
+
/**
|
247
|
+
* Called after a cargo pod has delivered its cargo.
|
248
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_cargo_pod_delivered_cargo Online documentation}
|
249
|
+
*/
|
250
|
+
interface OnCargoPodDeliveredCargoEvent extends EventData {
|
251
|
+
readonly cargo_pod: LuaEntity
|
252
|
+
/**
|
253
|
+
* The spawned container if any. Created when destination type is {@link defines.cargo_destination.surface surface}.
|
254
|
+
*/
|
255
|
+
readonly spawned_container?: LuaEntity
|
256
|
+
/**
|
257
|
+
* Identifier of the event
|
258
|
+
*/
|
259
|
+
readonly name: typeof defines.events.on_cargo_pod_delivered_cargo
|
260
|
+
/**
|
261
|
+
* Tick the event was generated.
|
262
|
+
*/
|
263
|
+
readonly tick: uint
|
264
|
+
}
|
242
265
|
/**
|
243
266
|
* Called when a cargo pod departs a surface.
|
244
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
267
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_cargo_pod_finished_ascending Online documentation}
|
245
268
|
*/
|
246
269
|
interface OnCargoPodFinishedAscendingEvent extends EventData {
|
247
270
|
readonly cargo_pod: LuaEntity
|
@@ -250,7 +273,7 @@ declare module "factorio:runtime" {
|
|
250
273
|
*/
|
251
274
|
readonly launched_by_rocket: boolean
|
252
275
|
/**
|
253
|
-
* The player that is riding the
|
276
|
+
* The player that is riding the cargo pod, if any.
|
254
277
|
*/
|
255
278
|
readonly player_index?: PlayerIndex
|
256
279
|
/**
|
@@ -262,11 +285,34 @@ declare module "factorio:runtime" {
|
|
262
285
|
*/
|
263
286
|
readonly tick: uint
|
264
287
|
}
|
288
|
+
/**
|
289
|
+
* Called when a cargo pods lands on a surface, either at a station or on the ground.
|
290
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_cargo_pod_finished_descending Online documentation}
|
291
|
+
*/
|
292
|
+
interface OnCargoPodFinishedDescendingEvent extends EventData {
|
293
|
+
readonly cargo_pod: LuaEntity
|
294
|
+
/**
|
295
|
+
* True for pods spawned on a rocket.
|
296
|
+
*/
|
297
|
+
readonly launched_by_rocket: boolean
|
298
|
+
/**
|
299
|
+
* The player that is riding the cargo pod, if any.
|
300
|
+
*/
|
301
|
+
readonly player_index?: PlayerIndex
|
302
|
+
/**
|
303
|
+
* Identifier of the event
|
304
|
+
*/
|
305
|
+
readonly name: typeof defines.events.on_cargo_pod_finished_descending
|
306
|
+
/**
|
307
|
+
* Tick the event was generated.
|
308
|
+
*/
|
309
|
+
readonly tick: uint
|
310
|
+
}
|
265
311
|
/**
|
266
312
|
* Called when a character corpse expires due to timeout or all of the items being removed from it.
|
267
313
|
*
|
268
314
|
* this is not called if the corpse is mined. See {@link defines.events.on_pre_player_mined_item} to detect that.
|
269
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
315
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_character_corpse_expired Online documentation}
|
270
316
|
*/
|
271
317
|
interface OnCharacterCorpseExpiredEvent extends EventData {
|
272
318
|
/**
|
@@ -284,7 +330,7 @@ declare module "factorio:runtime" {
|
|
284
330
|
}
|
285
331
|
/**
|
286
332
|
* Called when a chart tag is created.
|
287
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
333
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_chart_tag_added Online documentation}
|
288
334
|
*/
|
289
335
|
interface OnChartTagAddedEvent extends EventData {
|
290
336
|
readonly tag: LuaCustomChartTag
|
@@ -301,7 +347,7 @@ declare module "factorio:runtime" {
|
|
301
347
|
}
|
302
348
|
/**
|
303
349
|
* Called when a chart tag is modified by a player.
|
304
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
350
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_chart_tag_modified Online documentation}
|
305
351
|
*/
|
306
352
|
interface OnChartTagModifiedEvent extends EventData {
|
307
353
|
readonly tag: LuaCustomChartTag
|
@@ -323,7 +369,7 @@ declare module "factorio:runtime" {
|
|
323
369
|
}
|
324
370
|
/**
|
325
371
|
* Called just before a chart tag is deleted.
|
326
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
372
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_chart_tag_removed Online documentation}
|
327
373
|
*/
|
328
374
|
interface OnChartTagRemovedEvent extends EventData {
|
329
375
|
readonly tag: LuaCustomChartTag
|
@@ -340,7 +386,7 @@ declare module "factorio:runtime" {
|
|
340
386
|
}
|
341
387
|
/**
|
342
388
|
* Called when a chunk is charted or re-charted.
|
343
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
389
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_chunk_charted Online documentation}
|
344
390
|
*/
|
345
391
|
interface OnChunkChartedEvent extends EventData {
|
346
392
|
readonly surface_index: SurfaceIndex
|
@@ -361,7 +407,7 @@ declare module "factorio:runtime" {
|
|
361
407
|
}
|
362
408
|
/**
|
363
409
|
* Called when one or more chunks are deleted using {@link LuaSurface#delete_chunk LuaSurface::delete_chunk}.
|
364
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
410
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_chunk_deleted Online documentation}
|
365
411
|
*/
|
366
412
|
interface OnChunkDeletedEvent extends EventData {
|
367
413
|
readonly surface_index: SurfaceIndex
|
@@ -380,7 +426,7 @@ declare module "factorio:runtime" {
|
|
380
426
|
}
|
381
427
|
/**
|
382
428
|
* Called when a chunk is generated.
|
383
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
429
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_chunk_generated Online documentation}
|
384
430
|
*/
|
385
431
|
interface OnChunkGeneratedEvent extends EventData {
|
386
432
|
/**
|
@@ -406,7 +452,7 @@ declare module "factorio:runtime" {
|
|
406
452
|
}
|
407
453
|
/**
|
408
454
|
* Called when a combat robot expires through a lack of energy, or timeout.
|
409
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
455
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_combat_robot_expired Online documentation}
|
410
456
|
*/
|
411
457
|
interface OnCombatRobotExpiredEvent extends EventData {
|
412
458
|
readonly robot: LuaEntity
|
@@ -427,7 +473,7 @@ declare module "factorio:runtime" {
|
|
427
473
|
* Called when a message is sent to the in-game console, either by a player or through the server interface.
|
428
474
|
*
|
429
475
|
* This event only fires for plain messages, not for any commands (including `/shout` or `/whisper`).
|
430
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
476
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_console_chat Online documentation}
|
431
477
|
*/
|
432
478
|
interface OnConsoleChatEvent extends EventData {
|
433
479
|
/**
|
@@ -449,7 +495,7 @@ declare module "factorio:runtime" {
|
|
449
495
|
}
|
450
496
|
/**
|
451
497
|
* Called when someone enters a command-like message regardless of it being a valid command.
|
452
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
498
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_console_command Online documentation}
|
453
499
|
*/
|
454
500
|
interface OnConsoleCommandEvent extends EventData {
|
455
501
|
/**
|
@@ -475,7 +521,7 @@ declare module "factorio:runtime" {
|
|
475
521
|
}
|
476
522
|
/**
|
477
523
|
* Called when a cutscene is cancelled by the player or by script.
|
478
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
524
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_cutscene_cancelled Online documentation}
|
479
525
|
*/
|
480
526
|
interface OnCutsceneCancelledEvent extends EventData {
|
481
527
|
/**
|
@@ -493,7 +539,7 @@ declare module "factorio:runtime" {
|
|
493
539
|
}
|
494
540
|
/**
|
495
541
|
* Called when a cutscene finishes naturally (was not cancelled).
|
496
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
542
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_cutscene_finished Online documentation}
|
497
543
|
*/
|
498
544
|
interface OnCutsceneFinishedEvent extends EventData {
|
499
545
|
/**
|
@@ -511,7 +557,7 @@ declare module "factorio:runtime" {
|
|
511
557
|
}
|
512
558
|
/**
|
513
559
|
* Called when a cutscene starts.
|
514
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
560
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_cutscene_started Online documentation}
|
515
561
|
*/
|
516
562
|
interface OnCutsceneStartedEvent extends EventData {
|
517
563
|
/**
|
@@ -531,7 +577,7 @@ declare module "factorio:runtime" {
|
|
531
577
|
* Called when a cutscene is playing, each time it reaches a waypoint in that cutscene.
|
532
578
|
*
|
533
579
|
* This refers to an index in the table previously passed to set_controller which started the cutscene.
|
534
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
580
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_cutscene_waypoint_reached Online documentation}
|
535
581
|
*/
|
536
582
|
interface OnCutsceneWaypointReachedEvent extends EventData {
|
537
583
|
/**
|
@@ -555,7 +601,7 @@ declare module "factorio:runtime" {
|
|
555
601
|
* Called when an entity is cloned. The filter applies to the source entity.
|
556
602
|
*
|
557
603
|
* Event filter: [LuaEntityClonedEventFilter](LuaEntityClonedEventFilter]
|
558
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
604
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_entity_cloned Online documentation}
|
559
605
|
*/
|
560
606
|
interface OnEntityClonedEvent extends EventData {
|
561
607
|
readonly source: LuaEntity
|
@@ -573,7 +619,7 @@ declare module "factorio:runtime" {
|
|
573
619
|
* Called after an entity has been recolored either by the player or through script.
|
574
620
|
*
|
575
621
|
* Automatic recoloring due to {@link LuaPlayer#color LuaPlayer::color} will not raise events, as that is a separate mechanism.
|
576
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
622
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_entity_color_changed Online documentation}
|
577
623
|
*/
|
578
624
|
interface OnEntityColorChangedEvent extends EventData {
|
579
625
|
/**
|
@@ -593,7 +639,7 @@ declare module "factorio:runtime" {
|
|
593
639
|
* Called when an entity is damaged. This is not called when an entities health is set directly by another mod.
|
594
640
|
*
|
595
641
|
* Event filter: [LuaEntityDamagedEventFilter](LuaEntityDamagedEventFilter]
|
596
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
642
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_entity_damaged Online documentation}
|
597
643
|
*/
|
598
644
|
interface OnEntityDamagedEvent extends EventData {
|
599
645
|
readonly entity: LuaEntity
|
@@ -635,7 +681,7 @@ declare module "factorio:runtime" {
|
|
635
681
|
* Called when an entity dies.
|
636
682
|
*
|
637
683
|
* Event filter: [LuaEntityDiedEventFilter](LuaEntityDiedEventFilter]
|
638
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
684
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_entity_died Online documentation}
|
639
685
|
*/
|
640
686
|
interface OnEntityDiedEvent extends EventData {
|
641
687
|
/**
|
@@ -669,7 +715,7 @@ declare module "factorio:runtime" {
|
|
669
715
|
}
|
670
716
|
/**
|
671
717
|
* Called when one of an entity's logistic slots changes.
|
672
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
718
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_entity_logistic_slot_changed Online documentation}
|
673
719
|
*/
|
674
720
|
interface OnEntityLogisticSlotChangedEvent extends EventData {
|
675
721
|
/**
|
@@ -699,7 +745,7 @@ declare module "factorio:runtime" {
|
|
699
745
|
}
|
700
746
|
/**
|
701
747
|
* Called after an entity has been renamed either by the player or through script.
|
702
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
748
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_entity_renamed Online documentation}
|
703
749
|
*/
|
704
750
|
interface OnEntityRenamedEvent extends EventData {
|
705
751
|
/**
|
@@ -720,7 +766,7 @@ declare module "factorio:runtime" {
|
|
720
766
|
}
|
721
767
|
/**
|
722
768
|
* Called after entity copy-paste is done.
|
723
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
769
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_entity_settings_pasted Online documentation}
|
724
770
|
*/
|
725
771
|
interface OnEntitySettingsPastedEvent extends EventData {
|
726
772
|
readonly player_index: PlayerIndex
|
@@ -743,7 +789,7 @@ declare module "factorio:runtime" {
|
|
743
789
|
}
|
744
790
|
/**
|
745
791
|
* Called when an entity is spawned by a EnemySpawner
|
746
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
792
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_entity_spawned Online documentation}
|
747
793
|
*/
|
748
794
|
interface OnEntitySpawnedEvent extends EventData {
|
749
795
|
readonly spawner: LuaEntity
|
@@ -759,7 +805,7 @@ declare module "factorio:runtime" {
|
|
759
805
|
}
|
760
806
|
/**
|
761
807
|
* Called after equipment is inserted into an equipment grid.
|
762
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
808
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_equipment_inserted Online documentation}
|
763
809
|
*/
|
764
810
|
interface OnEquipmentInsertedEvent extends EventData {
|
765
811
|
/**
|
@@ -781,7 +827,7 @@ declare module "factorio:runtime" {
|
|
781
827
|
}
|
782
828
|
/**
|
783
829
|
* Called after equipment is removed from an equipment grid.
|
784
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
830
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_equipment_removed Online documentation}
|
785
831
|
*/
|
786
832
|
interface OnEquipmentRemovedEvent extends EventData {
|
787
833
|
/**
|
@@ -811,7 +857,7 @@ declare module "factorio:runtime" {
|
|
811
857
|
}
|
812
858
|
/**
|
813
859
|
* Called when the a forces cease fire values change.
|
814
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
860
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_force_cease_fire_changed Online documentation}
|
815
861
|
*/
|
816
862
|
interface OnForceCeaseFireChangedEvent extends EventData {
|
817
863
|
/**
|
@@ -839,7 +885,7 @@ declare module "factorio:runtime" {
|
|
839
885
|
* Called when a new force is created using `game.create_force()`
|
840
886
|
*
|
841
887
|
* This is not called when the default forces (`'player'`, `'enemy'`, `'neutral'`) are created as they will always exist.
|
842
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
888
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_force_created Online documentation}
|
843
889
|
*/
|
844
890
|
interface OnForceCreatedEvent extends EventData {
|
845
891
|
/**
|
@@ -857,7 +903,7 @@ declare module "factorio:runtime" {
|
|
857
903
|
}
|
858
904
|
/**
|
859
905
|
* Called when the a forces friends change.
|
860
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
906
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_force_friends_changed Online documentation}
|
861
907
|
*/
|
862
908
|
interface OnForceFriendsChangedEvent extends EventData {
|
863
909
|
/**
|
@@ -883,7 +929,7 @@ declare module "factorio:runtime" {
|
|
883
929
|
}
|
884
930
|
/**
|
885
931
|
* Called when {@link LuaForce#reset LuaForce::reset} is finished.
|
886
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
932
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_force_reset Online documentation}
|
887
933
|
*/
|
888
934
|
interface OnForceResetEvent extends EventData {
|
889
935
|
readonly force: LuaForce
|
@@ -900,7 +946,7 @@ declare module "factorio:runtime" {
|
|
900
946
|
* Called after two forces have been merged using `game.merge_forces()`.
|
901
947
|
*
|
902
948
|
* The source force is invalidated before this event is called and the name can be re-used in this event if desired.
|
903
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
949
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_forces_merged Online documentation}
|
904
950
|
*/
|
905
951
|
interface OnForcesMergedEvent extends EventData {
|
906
952
|
/**
|
@@ -926,7 +972,7 @@ declare module "factorio:runtime" {
|
|
926
972
|
}
|
927
973
|
/**
|
928
974
|
* Called when two forces are about to be merged using `game.merge_forces()`.
|
929
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
975
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_forces_merging Online documentation}
|
930
976
|
*/
|
931
977
|
interface OnForcesMergingEvent extends EventData {
|
932
978
|
/**
|
@@ -950,7 +996,7 @@ declare module "factorio:runtime" {
|
|
950
996
|
* Called when a game is created from a scenario. This is fired for every mod, even when the scenario's save data already includes it. In those cases however, {@link LuaBootstrap#on_init LuaBootstrap::on_init} is not fired.
|
951
997
|
*
|
952
998
|
* This event is not fired when the scenario is loaded via the map editor.
|
953
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
999
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_game_created_from_scenario Online documentation}
|
954
1000
|
*/
|
955
1001
|
interface OnGameCreatedFromScenarioEvent extends EventData {
|
956
1002
|
/**
|
@@ -964,7 +1010,7 @@ declare module "factorio:runtime" {
|
|
964
1010
|
}
|
965
1011
|
/**
|
966
1012
|
* Called when {@link LuaGuiElement} checked state is changed (related to checkboxes and radio buttons).
|
967
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1013
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_gui_checked_state_changed Online documentation}
|
968
1014
|
*/
|
969
1015
|
interface OnGuiCheckedStateChangedEvent extends EventData {
|
970
1016
|
/**
|
@@ -986,7 +1032,7 @@ declare module "factorio:runtime" {
|
|
986
1032
|
}
|
987
1033
|
/**
|
988
1034
|
* Called when {@link LuaGuiElement} is clicked.
|
989
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1035
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_gui_click Online documentation}
|
990
1036
|
*/
|
991
1037
|
interface OnGuiClickEvent extends EventData {
|
992
1038
|
/**
|
@@ -1032,7 +1078,7 @@ declare module "factorio:runtime" {
|
|
1032
1078
|
* This can only be raised when the GUI's player controller is still valid. If a GUI is thus closed due to the player disconnecting, dying, or becoming a spectator in other ways, it won't cause this event to be raised.
|
1033
1079
|
*
|
1034
1080
|
* It's not advised to open any other GUI during this event because if this is run as a request to open a different GUI the game will force close the new opened GUI without notice to ensure the original requested GUI is opened.
|
1035
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1081
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_gui_closed Online documentation}
|
1036
1082
|
*/
|
1037
1083
|
interface OnGuiClosedEvent extends EventData {
|
1038
1084
|
/**
|
@@ -1086,7 +1132,7 @@ declare module "factorio:runtime" {
|
|
1086
1132
|
}
|
1087
1133
|
/**
|
1088
1134
|
* Called when a {@link LuaGuiElement} is confirmed, for example by pressing Enter in a textfield.
|
1089
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1135
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_gui_confirmed Online documentation}
|
1090
1136
|
*/
|
1091
1137
|
interface OnGuiConfirmedEvent extends EventData {
|
1092
1138
|
/**
|
@@ -1120,7 +1166,7 @@ declare module "factorio:runtime" {
|
|
1120
1166
|
}
|
1121
1167
|
/**
|
1122
1168
|
* Called when {@link LuaGuiElement} element value is changed (related to choose element buttons).
|
1123
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1169
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_gui_elem_changed Online documentation}
|
1124
1170
|
*/
|
1125
1171
|
interface OnGuiElemChangedEvent extends EventData {
|
1126
1172
|
/**
|
@@ -1144,7 +1190,7 @@ declare module "factorio:runtime" {
|
|
1144
1190
|
* Called when {@link LuaGuiElement} is hovered by the mouse.
|
1145
1191
|
*
|
1146
1192
|
* Only fired for events whose {@link LuaGuiElement#raise_hover_events LuaGuiElement::raise_hover_events} is `true`.
|
1147
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1193
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_gui_hover Online documentation}
|
1148
1194
|
*/
|
1149
1195
|
interface OnGuiHoverEvent extends EventData {
|
1150
1196
|
/**
|
@@ -1168,7 +1214,7 @@ declare module "factorio:runtime" {
|
|
1168
1214
|
* Called when the player's cursor leaves a {@link LuaGuiElement} that was previously hovered.
|
1169
1215
|
*
|
1170
1216
|
* Only fired for events whose {@link LuaGuiElement#raise_hover_events LuaGuiElement::raise_hover_events} is `true`.
|
1171
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1217
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_gui_leave Online documentation}
|
1172
1218
|
*/
|
1173
1219
|
interface OnGuiLeaveEvent extends EventData {
|
1174
1220
|
/**
|
@@ -1190,7 +1236,7 @@ declare module "factorio:runtime" {
|
|
1190
1236
|
}
|
1191
1237
|
/**
|
1192
1238
|
* Called when {@link LuaGuiElement} element location is changed (related to frames in `player.gui.screen`).
|
1193
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1239
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_gui_location_changed Online documentation}
|
1194
1240
|
*/
|
1195
1241
|
interface OnGuiLocationChangedEvent extends EventData {
|
1196
1242
|
/**
|
@@ -1212,7 +1258,7 @@ declare module "factorio:runtime" {
|
|
1212
1258
|
}
|
1213
1259
|
/**
|
1214
1260
|
* Called when the player opens a GUI.
|
1215
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1261
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_gui_opened Online documentation}
|
1216
1262
|
*/
|
1217
1263
|
interface OnGuiOpenedEvent extends EventData {
|
1218
1264
|
/**
|
@@ -1258,7 +1304,7 @@ declare module "factorio:runtime" {
|
|
1258
1304
|
}
|
1259
1305
|
/**
|
1260
1306
|
* Called when {@link LuaGuiElement} selected tab is changed (related to tabbed-panes).
|
1261
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1307
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_gui_selected_tab_changed Online documentation}
|
1262
1308
|
*/
|
1263
1309
|
interface OnGuiSelectedTabChangedEvent extends EventData {
|
1264
1310
|
/**
|
@@ -1280,7 +1326,7 @@ declare module "factorio:runtime" {
|
|
1280
1326
|
}
|
1281
1327
|
/**
|
1282
1328
|
* Called when {@link LuaGuiElement} selection state is changed (related to drop-downs and listboxes).
|
1283
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1329
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_gui_selection_state_changed Online documentation}
|
1284
1330
|
*/
|
1285
1331
|
interface OnGuiSelectionStateChangedEvent extends EventData {
|
1286
1332
|
/**
|
@@ -1302,7 +1348,7 @@ declare module "factorio:runtime" {
|
|
1302
1348
|
}
|
1303
1349
|
/**
|
1304
1350
|
* Called when {@link LuaGuiElement} switch state is changed (related to switches).
|
1305
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1351
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_gui_switch_state_changed Online documentation}
|
1306
1352
|
*/
|
1307
1353
|
interface OnGuiSwitchStateChangedEvent extends EventData {
|
1308
1354
|
/**
|
@@ -1324,7 +1370,7 @@ declare module "factorio:runtime" {
|
|
1324
1370
|
}
|
1325
1371
|
/**
|
1326
1372
|
* Called when {@link LuaGuiElement} text is changed by the player.
|
1327
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1373
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_gui_text_changed Online documentation}
|
1328
1374
|
*/
|
1329
1375
|
interface OnGuiTextChangedEvent extends EventData {
|
1330
1376
|
/**
|
@@ -1350,7 +1396,7 @@ declare module "factorio:runtime" {
|
|
1350
1396
|
}
|
1351
1397
|
/**
|
1352
1398
|
* Called when {@link LuaGuiElement} slider value is changed (related to the slider element).
|
1353
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1399
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_gui_value_changed Online documentation}
|
1354
1400
|
*/
|
1355
1401
|
interface OnGuiValueChangedEvent extends EventData {
|
1356
1402
|
/**
|
@@ -1372,7 +1418,7 @@ declare module "factorio:runtime" {
|
|
1372
1418
|
}
|
1373
1419
|
/**
|
1374
1420
|
* Called when a land mine is armed.
|
1375
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1421
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_land_mine_armed Online documentation}
|
1376
1422
|
*/
|
1377
1423
|
interface OnLandMineArmedEvent extends EventData {
|
1378
1424
|
readonly mine: LuaEntity
|
@@ -1387,7 +1433,7 @@ declare module "factorio:runtime" {
|
|
1387
1433
|
}
|
1388
1434
|
/**
|
1389
1435
|
* Called when a custom {@link import("factorio:prototype").ShortcutPrototype Lua shortcut} is pressed.
|
1390
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1436
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_lua_shortcut Online documentation}
|
1391
1437
|
*/
|
1392
1438
|
interface OnLuaShortcutEvent extends EventData {
|
1393
1439
|
readonly player_index: PlayerIndex
|
@@ -1408,7 +1454,7 @@ declare module "factorio:runtime" {
|
|
1408
1454
|
* Called when an entity is marked for deconstruction with the Deconstruction planner or via script.
|
1409
1455
|
*
|
1410
1456
|
* Event filter: [LuaEntityMarkedForDeconstructionEventFilter](LuaEntityMarkedForDeconstructionEventFilter]
|
1411
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1457
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_marked_for_deconstruction Online documentation}
|
1412
1458
|
*/
|
1413
1459
|
interface OnMarkedForDeconstructionEvent extends EventData {
|
1414
1460
|
readonly entity: LuaEntity
|
@@ -1426,7 +1472,7 @@ declare module "factorio:runtime" {
|
|
1426
1472
|
* Called when an entity is marked for upgrade with the Upgrade planner or via script.
|
1427
1473
|
*
|
1428
1474
|
* Event filter: [LuaEntityMarkedForUpgradeEventFilter](LuaEntityMarkedForUpgradeEventFilter]
|
1429
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1475
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_marked_for_upgrade Online documentation}
|
1430
1476
|
*/
|
1431
1477
|
interface OnMarkedForUpgradeEvent extends EventData {
|
1432
1478
|
readonly player_index?: PlayerIndex
|
@@ -1444,7 +1490,7 @@ declare module "factorio:runtime" {
|
|
1444
1490
|
}
|
1445
1491
|
/**
|
1446
1492
|
* Called after a player purchases some offer from a `market` entity.
|
1447
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1493
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_market_item_purchased Online documentation}
|
1448
1494
|
*/
|
1449
1495
|
interface OnMarketItemPurchasedEvent extends EventData {
|
1450
1496
|
/**
|
@@ -1474,7 +1520,7 @@ declare module "factorio:runtime" {
|
|
1474
1520
|
}
|
1475
1521
|
/**
|
1476
1522
|
* Called when the player uses the 'Open item GUI' control on an item defined with the 'mod-openable' flag
|
1477
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1523
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_mod_item_opened Online documentation}
|
1478
1524
|
*/
|
1479
1525
|
interface OnModItemOpenedEvent extends EventData {
|
1480
1526
|
/**
|
@@ -1498,11 +1544,25 @@ declare module "factorio:runtime" {
|
|
1498
1544
|
*/
|
1499
1545
|
readonly tick: uint
|
1500
1546
|
}
|
1547
|
+
/**
|
1548
|
+
* Called when {@link LuaGameScript#is_multiplayer LuaGameScript::is_multiplayer} changes to true. May also be raised when it was already true but a game was loaded from a save file and with hosting.
|
1549
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_multiplayer_init Online documentation}
|
1550
|
+
*/
|
1551
|
+
interface OnMultiplayerInitEvent extends EventData {
|
1552
|
+
/**
|
1553
|
+
* Identifier of the event
|
1554
|
+
*/
|
1555
|
+
readonly name: typeof defines.events.on_multiplayer_init
|
1556
|
+
/**
|
1557
|
+
* Tick the event was generated.
|
1558
|
+
*/
|
1559
|
+
readonly tick: uint
|
1560
|
+
}
|
1501
1561
|
/**
|
1502
1562
|
* Called after an object is destroyed which was registered with {@link LuaBootstrap#register_on_object_destroyed LuaBootstrap::register_on_object_destroyed} previously.
|
1503
1563
|
*
|
1504
1564
|
* Depending on when a given object is destroyed, this event will be fired at the end of the current tick or at the end of the next tick. The event's timing is independent of the in-world object being destroyed.
|
1505
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1565
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_object_destroyed Online documentation}
|
1506
1566
|
*/
|
1507
1567
|
interface OnObjectDestroyedEvent extends EventData {
|
1508
1568
|
/**
|
@@ -1528,7 +1588,7 @@ declare module "factorio:runtime" {
|
|
1528
1588
|
}
|
1529
1589
|
/**
|
1530
1590
|
* Called directly after a permission group is added.
|
1531
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1591
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_permission_group_added Online documentation}
|
1532
1592
|
*/
|
1533
1593
|
interface OnPermissionGroupAddedEvent extends EventData {
|
1534
1594
|
/**
|
@@ -1550,7 +1610,7 @@ declare module "factorio:runtime" {
|
|
1550
1610
|
}
|
1551
1611
|
/**
|
1552
1612
|
* Called directly after a permission group is deleted.
|
1553
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1613
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_permission_group_deleted Online documentation}
|
1554
1614
|
*/
|
1555
1615
|
interface OnPermissionGroupDeletedEvent extends EventData {
|
1556
1616
|
/**
|
@@ -1576,7 +1636,7 @@ declare module "factorio:runtime" {
|
|
1576
1636
|
}
|
1577
1637
|
/**
|
1578
1638
|
* Called directly after a permission group is edited in some way.
|
1579
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1639
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_permission_group_edited Online documentation}
|
1580
1640
|
*/
|
1581
1641
|
interface OnPermissionGroupEditedEvent extends EventData {
|
1582
1642
|
/**
|
@@ -1625,7 +1685,7 @@ declare module "factorio:runtime" {
|
|
1625
1685
|
}
|
1626
1686
|
/**
|
1627
1687
|
* Called directly after a permission string is imported.
|
1628
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1688
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_permission_string_imported Online documentation}
|
1629
1689
|
*/
|
1630
1690
|
interface OnPermissionStringImportedEvent extends EventData {
|
1631
1691
|
/**
|
@@ -1643,7 +1703,7 @@ declare module "factorio:runtime" {
|
|
1643
1703
|
}
|
1644
1704
|
/**
|
1645
1705
|
* Called when a player picks up an item.
|
1646
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1706
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_picked_up_item Online documentation}
|
1647
1707
|
*/
|
1648
1708
|
interface OnPickedUpItemEvent extends EventData {
|
1649
1709
|
readonly item_stack: SimpleItemStack
|
@@ -1659,7 +1719,7 @@ declare module "factorio:runtime" {
|
|
1659
1719
|
}
|
1660
1720
|
/**
|
1661
1721
|
* Called after a player alt-reverse-selects an area with a selection-tool item.
|
1662
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1722
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_alt_reverse_selected_area Online documentation}
|
1663
1723
|
*/
|
1664
1724
|
interface OnPlayerAltReverseSelectedAreaEvent extends EventData {
|
1665
1725
|
/**
|
@@ -1697,7 +1757,7 @@ declare module "factorio:runtime" {
|
|
1697
1757
|
}
|
1698
1758
|
/**
|
1699
1759
|
* Called after a player alt-selects an area with a selection-tool item.
|
1700
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1760
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_alt_selected_area Online documentation}
|
1701
1761
|
*/
|
1702
1762
|
interface OnPlayerAltSelectedAreaEvent extends EventData {
|
1703
1763
|
/**
|
@@ -1739,7 +1799,7 @@ declare module "factorio:runtime" {
|
|
1739
1799
|
}
|
1740
1800
|
/**
|
1741
1801
|
* Called after a players ammo inventory changed in some way.
|
1742
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1802
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_ammo_inventory_changed Online documentation}
|
1743
1803
|
*/
|
1744
1804
|
interface OnPlayerAmmoInventoryChangedEvent extends EventData {
|
1745
1805
|
readonly player_index: PlayerIndex
|
@@ -1754,7 +1814,7 @@ declare module "factorio:runtime" {
|
|
1754
1814
|
}
|
1755
1815
|
/**
|
1756
1816
|
* Called after a players armor inventory changed in some way.
|
1757
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1817
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_armor_inventory_changed Online documentation}
|
1758
1818
|
*/
|
1759
1819
|
interface OnPlayerArmorInventoryChangedEvent extends EventData {
|
1760
1820
|
readonly player_index: PlayerIndex
|
@@ -1769,7 +1829,7 @@ declare module "factorio:runtime" {
|
|
1769
1829
|
}
|
1770
1830
|
/**
|
1771
1831
|
* Called when a player is banned.
|
1772
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1832
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_banned Online documentation}
|
1773
1833
|
*/
|
1774
1834
|
interface OnPlayerBannedEvent extends EventData {
|
1775
1835
|
/**
|
@@ -1799,7 +1859,7 @@ declare module "factorio:runtime" {
|
|
1799
1859
|
}
|
1800
1860
|
/**
|
1801
1861
|
* Called after a player builds tiles.
|
1802
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1862
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_built_tile Online documentation}
|
1803
1863
|
*/
|
1804
1864
|
interface OnPlayerBuiltTileEvent extends EventData {
|
1805
1865
|
readonly player_index: PlayerIndex
|
@@ -1838,7 +1898,7 @@ declare module "factorio:runtime" {
|
|
1838
1898
|
}
|
1839
1899
|
/**
|
1840
1900
|
* Called when a player cancels crafting.
|
1841
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1901
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_cancelled_crafting Online documentation}
|
1842
1902
|
*/
|
1843
1903
|
interface OnPlayerCancelledCraftingEvent extends EventData {
|
1844
1904
|
/**
|
@@ -1868,7 +1928,7 @@ declare module "factorio:runtime" {
|
|
1868
1928
|
}
|
1869
1929
|
/**
|
1870
1930
|
* Called after a player changes forces.
|
1871
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1931
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_changed_force Online documentation}
|
1872
1932
|
*/
|
1873
1933
|
interface OnPlayerChangedForceEvent extends EventData {
|
1874
1934
|
/**
|
@@ -1890,7 +1950,7 @@ declare module "factorio:runtime" {
|
|
1890
1950
|
}
|
1891
1951
|
/**
|
1892
1952
|
* Called when the tile position a player is located at changes.
|
1893
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1953
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_changed_position Online documentation}
|
1894
1954
|
*/
|
1895
1955
|
interface OnPlayerChangedPositionEvent extends EventData {
|
1896
1956
|
/**
|
@@ -1908,7 +1968,7 @@ declare module "factorio:runtime" {
|
|
1908
1968
|
}
|
1909
1969
|
/**
|
1910
1970
|
* Called after a player changes surfaces.
|
1911
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1971
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_changed_surface Online documentation}
|
1912
1972
|
*/
|
1913
1973
|
interface OnPlayerChangedSurfaceEvent extends EventData {
|
1914
1974
|
/**
|
@@ -1930,7 +1990,7 @@ declare module "factorio:runtime" {
|
|
1930
1990
|
}
|
1931
1991
|
/**
|
1932
1992
|
* Called when cheat mode is disabled on a player.
|
1933
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1993
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_cheat_mode_disabled Online documentation}
|
1934
1994
|
*/
|
1935
1995
|
interface OnPlayerCheatModeDisabledEvent extends EventData {
|
1936
1996
|
/**
|
@@ -1948,7 +2008,7 @@ declare module "factorio:runtime" {
|
|
1948
2008
|
}
|
1949
2009
|
/**
|
1950
2010
|
* Called when cheat mode is enabled on a player.
|
1951
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2011
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_cheat_mode_enabled Online documentation}
|
1952
2012
|
*/
|
1953
2013
|
interface OnPlayerCheatModeEnabledEvent extends EventData {
|
1954
2014
|
/**
|
@@ -1966,7 +2026,7 @@ declare module "factorio:runtime" {
|
|
1966
2026
|
}
|
1967
2027
|
/**
|
1968
2028
|
* Called when a player clicks a gps tag
|
1969
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2029
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_clicked_gps_tag Online documentation}
|
1970
2030
|
*/
|
1971
2031
|
interface OnPlayerClickedGpsTagEvent extends EventData {
|
1972
2032
|
/**
|
@@ -1992,7 +2052,7 @@ declare module "factorio:runtime" {
|
|
1992
2052
|
}
|
1993
2053
|
/**
|
1994
2054
|
* Called when a player clicks the "confirm" button in the configure Blueprint GUI.
|
1995
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2055
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_configured_blueprint Online documentation}
|
1996
2056
|
*/
|
1997
2057
|
interface OnPlayerConfiguredBlueprintEvent extends EventData {
|
1998
2058
|
/**
|
@@ -2010,7 +2070,7 @@ declare module "factorio:runtime" {
|
|
2010
2070
|
}
|
2011
2071
|
/**
|
2012
2072
|
* Called after a player changes controller types.
|
2013
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2073
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_controller_changed Online documentation}
|
2014
2074
|
*/
|
2015
2075
|
interface OnPlayerControllerChangedEvent extends EventData {
|
2016
2076
|
/**
|
@@ -2032,7 +2092,7 @@ declare module "factorio:runtime" {
|
|
2032
2092
|
}
|
2033
2093
|
/**
|
2034
2094
|
* Called when the player finishes crafting an item. This event fires just before the results are inserted into the player's inventory, not when the crafting is queued (see {@link OnPrePlayerCraftedItemEvent on_pre_player_crafted_item}).
|
2035
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2095
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_crafted_item Online documentation}
|
2036
2096
|
*/
|
2037
2097
|
interface OnPlayerCraftedItemEvent extends EventData {
|
2038
2098
|
/**
|
@@ -2058,7 +2118,7 @@ declare module "factorio:runtime" {
|
|
2058
2118
|
}
|
2059
2119
|
/**
|
2060
2120
|
* Called after the player was created.
|
2061
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2121
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_created Online documentation}
|
2062
2122
|
*/
|
2063
2123
|
interface OnPlayerCreatedEvent extends EventData {
|
2064
2124
|
readonly player_index: PlayerIndex
|
@@ -2075,7 +2135,7 @@ declare module "factorio:runtime" {
|
|
2075
2135
|
* Called after a player's {@link LuaControl#cursor_stack cursor stack} changed in some way.
|
2076
2136
|
*
|
2077
2137
|
* This is fired in the same tick that the change happens, but not instantly.
|
2078
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2138
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_cursor_stack_changed Online documentation}
|
2079
2139
|
*/
|
2080
2140
|
interface OnPlayerCursorStackChangedEvent extends EventData {
|
2081
2141
|
readonly player_index: PlayerIndex
|
@@ -2090,7 +2150,7 @@ declare module "factorio:runtime" {
|
|
2090
2150
|
}
|
2091
2151
|
/**
|
2092
2152
|
* Called when a player selects an area with a deconstruction planner.
|
2093
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2153
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_deconstructed_area Online documentation}
|
2094
2154
|
*/
|
2095
2155
|
interface OnPlayerDeconstructedAreaEvent extends EventData {
|
2096
2156
|
/**
|
@@ -2136,7 +2196,7 @@ declare module "factorio:runtime" {
|
|
2136
2196
|
}
|
2137
2197
|
/**
|
2138
2198
|
* Called when a player is demoted.
|
2139
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2199
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_demoted Online documentation}
|
2140
2200
|
*/
|
2141
2201
|
interface OnPlayerDemotedEvent extends EventData {
|
2142
2202
|
/**
|
@@ -2154,7 +2214,7 @@ declare module "factorio:runtime" {
|
|
2154
2214
|
}
|
2155
2215
|
/**
|
2156
2216
|
* Called after a player dies.
|
2157
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2217
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_died Online documentation}
|
2158
2218
|
*/
|
2159
2219
|
interface OnPlayerDiedEvent extends EventData {
|
2160
2220
|
readonly player_index: PlayerIndex
|
@@ -2170,7 +2230,7 @@ declare module "factorio:runtime" {
|
|
2170
2230
|
}
|
2171
2231
|
/**
|
2172
2232
|
* Called when the display density scale changes for a given player. The display density scale is the scale value automatically applied based on the player's display DPI. This is only relevant on platforms that support high-density displays.
|
2173
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2233
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_display_density_scale_changed Online documentation}
|
2174
2234
|
*/
|
2175
2235
|
interface OnPlayerDisplayDensityScaleChangedEvent extends EventData {
|
2176
2236
|
/**
|
@@ -2192,7 +2252,7 @@ declare module "factorio:runtime" {
|
|
2192
2252
|
}
|
2193
2253
|
/**
|
2194
2254
|
* Called when the display resolution changes for a given player.
|
2195
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2255
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_display_resolution_changed Online documentation}
|
2196
2256
|
*/
|
2197
2257
|
interface OnPlayerDisplayResolutionChangedEvent extends EventData {
|
2198
2258
|
/**
|
@@ -2214,7 +2274,7 @@ declare module "factorio:runtime" {
|
|
2214
2274
|
}
|
2215
2275
|
/**
|
2216
2276
|
* Called when the display scale changes for a given player.
|
2217
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2277
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_display_scale_changed Online documentation}
|
2218
2278
|
*/
|
2219
2279
|
interface OnPlayerDisplayScaleChangedEvent extends EventData {
|
2220
2280
|
/**
|
@@ -2238,7 +2298,7 @@ declare module "factorio:runtime" {
|
|
2238
2298
|
* Called when the player's driving state has changed, meaning a player has either entered or left a vehicle.
|
2239
2299
|
*
|
2240
2300
|
* This event is not raised when the player is ejected from a vehicle due to it being destroyed.
|
2241
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2301
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_driving_changed_state Online documentation}
|
2242
2302
|
*/
|
2243
2303
|
interface OnPlayerDrivingChangedStateEvent extends EventData {
|
2244
2304
|
readonly player_index: PlayerIndex
|
@@ -2257,7 +2317,7 @@ declare module "factorio:runtime" {
|
|
2257
2317
|
}
|
2258
2318
|
/**
|
2259
2319
|
* Called when a player drops an item on the ground.
|
2260
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2320
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_dropped_item Online documentation}
|
2261
2321
|
*/
|
2262
2322
|
interface OnPlayerDroppedItemEvent extends EventData {
|
2263
2323
|
readonly player_index: PlayerIndex
|
@@ -2276,7 +2336,7 @@ declare module "factorio:runtime" {
|
|
2276
2336
|
}
|
2277
2337
|
/**
|
2278
2338
|
* Called when a player fast-transfers something to or from an entity.
|
2279
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2339
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_fast_transferred Online documentation}
|
2280
2340
|
*/
|
2281
2341
|
interface OnPlayerFastTransferredEvent extends EventData {
|
2282
2342
|
/**
|
@@ -2308,7 +2368,7 @@ declare module "factorio:runtime" {
|
|
2308
2368
|
* Called when the player flips an entity. This event is only fired when the entity actually changes its orientation or mirroring, so it won't be triggered when pressing the flip keys on an entity that can't be flipped.
|
2309
2369
|
*
|
2310
2370
|
* This event reflects a change in the {@link LuaEntity#mirroring LuaEntity::mirroring} property.
|
2311
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2371
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_flipped_entity Online documentation}
|
2312
2372
|
*/
|
2313
2373
|
interface OnPlayerFlippedEntityEvent extends EventData {
|
2314
2374
|
/**
|
@@ -2331,7 +2391,7 @@ declare module "factorio:runtime" {
|
|
2331
2391
|
}
|
2332
2392
|
/**
|
2333
2393
|
* Called after player flushed fluid
|
2334
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2394
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_flushed_fluid Online documentation}
|
2335
2395
|
*/
|
2336
2396
|
interface OnPlayerFlushedFluidEvent extends EventData {
|
2337
2397
|
/**
|
@@ -2365,7 +2425,7 @@ declare module "factorio:runtime" {
|
|
2365
2425
|
}
|
2366
2426
|
/**
|
2367
2427
|
* Called after a players gun inventory changed in some way.
|
2368
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2428
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_gun_inventory_changed Online documentation}
|
2369
2429
|
*/
|
2370
2430
|
interface OnPlayerGunInventoryChangedEvent extends EventData {
|
2371
2431
|
readonly player_index: PlayerIndex
|
@@ -2380,7 +2440,7 @@ declare module "factorio:runtime" {
|
|
2380
2440
|
}
|
2381
2441
|
/**
|
2382
2442
|
* Called when a player's input method changes. See {@link LuaPlayer#input_method LuaPlayer::input_method}.
|
2383
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2443
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_input_method_changed Online documentation}
|
2384
2444
|
*/
|
2385
2445
|
interface OnPlayerInputMethodChangedEvent extends EventData {
|
2386
2446
|
/**
|
@@ -2398,7 +2458,7 @@ declare module "factorio:runtime" {
|
|
2398
2458
|
}
|
2399
2459
|
/**
|
2400
2460
|
* Called after a player joins the game. This is not called when loading a save file in singleplayer, as the player doesn't actually leave the game, and the save is just on pause until they rejoin.
|
2401
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2461
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_joined_game Online documentation}
|
2402
2462
|
*/
|
2403
2463
|
interface OnPlayerJoinedGameEvent extends EventData {
|
2404
2464
|
readonly player_index: PlayerIndex
|
@@ -2413,7 +2473,7 @@ declare module "factorio:runtime" {
|
|
2413
2473
|
}
|
2414
2474
|
/**
|
2415
2475
|
* Called when a player is kicked.
|
2416
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2476
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_kicked Online documentation}
|
2417
2477
|
*/
|
2418
2478
|
interface OnPlayerKickedEvent extends EventData {
|
2419
2479
|
/**
|
@@ -2439,7 +2499,7 @@ declare module "factorio:runtime" {
|
|
2439
2499
|
}
|
2440
2500
|
/**
|
2441
2501
|
* Called after a player leaves the game. This is not called when closing a save file in singleplayer, as the player doesn't actually leave the game, and the save is just on pause until they rejoin.
|
2442
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2502
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_left_game Online documentation}
|
2443
2503
|
*/
|
2444
2504
|
interface OnPlayerLeftGameEvent extends EventData {
|
2445
2505
|
readonly player_index: PlayerIndex
|
@@ -2455,7 +2515,7 @@ declare module "factorio:runtime" {
|
|
2455
2515
|
}
|
2456
2516
|
/**
|
2457
2517
|
* Called when a player's active locale changes. See {@link LuaPlayer#locale LuaPlayer::locale}.
|
2458
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2518
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_locale_changed Online documentation}
|
2459
2519
|
*/
|
2460
2520
|
interface OnPlayerLocaleChangedEvent extends EventData {
|
2461
2521
|
/**
|
@@ -2477,7 +2537,7 @@ declare module "factorio:runtime" {
|
|
2477
2537
|
}
|
2478
2538
|
/**
|
2479
2539
|
* Called after a players main inventory changed in some way.
|
2480
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2540
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_main_inventory_changed Online documentation}
|
2481
2541
|
*/
|
2482
2542
|
interface OnPlayerMainInventoryChangedEvent extends EventData {
|
2483
2543
|
readonly player_index: PlayerIndex
|
@@ -2498,7 +2558,7 @@ declare module "factorio:runtime" {
|
|
2498
2558
|
* The buffer inventory is special in that it's only valid during this event and has a dynamic size expanding as more items are transferred into it.
|
2499
2559
|
*
|
2500
2560
|
* Event filter: [LuaPlayerMinedEntityEventFilter](LuaPlayerMinedEntityEventFilter]
|
2501
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2561
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_mined_entity Online documentation}
|
2502
2562
|
*/
|
2503
2563
|
interface OnPlayerMinedEntityEvent extends EventData {
|
2504
2564
|
/**
|
@@ -2524,7 +2584,7 @@ declare module "factorio:runtime" {
|
|
2524
2584
|
}
|
2525
2585
|
/**
|
2526
2586
|
* Called when the player mines something.
|
2527
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2587
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_mined_item Online documentation}
|
2528
2588
|
*/
|
2529
2589
|
interface OnPlayerMinedItemEvent extends EventData {
|
2530
2590
|
/**
|
@@ -2543,7 +2603,7 @@ declare module "factorio:runtime" {
|
|
2543
2603
|
}
|
2544
2604
|
/**
|
2545
2605
|
* Called after a player mines tiles.
|
2546
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2606
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_mined_tile Online documentation}
|
2547
2607
|
*/
|
2548
2608
|
interface OnPlayerMinedTileEvent extends EventData {
|
2549
2609
|
readonly player_index: PlayerIndex
|
@@ -2566,7 +2626,7 @@ declare module "factorio:runtime" {
|
|
2566
2626
|
}
|
2567
2627
|
/**
|
2568
2628
|
* Called when a player is muted.
|
2569
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2629
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_muted Online documentation}
|
2570
2630
|
*/
|
2571
2631
|
interface OnPlayerMutedEvent extends EventData {
|
2572
2632
|
/**
|
@@ -2584,7 +2644,7 @@ declare module "factorio:runtime" {
|
|
2584
2644
|
}
|
2585
2645
|
/**
|
2586
2646
|
* Called when a player invokes the "smart pipette" over an entity.
|
2587
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2647
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_pipette Online documentation}
|
2588
2648
|
*/
|
2589
2649
|
interface OnPlayerPipetteEvent extends EventData {
|
2590
2650
|
/**
|
@@ -2614,7 +2674,7 @@ declare module "factorio:runtime" {
|
|
2614
2674
|
}
|
2615
2675
|
/**
|
2616
2676
|
* Called after the player puts equipment in an equipment grid
|
2617
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2677
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_placed_equipment Online documentation}
|
2618
2678
|
*/
|
2619
2679
|
interface OnPlayerPlacedEquipmentEvent extends EventData {
|
2620
2680
|
readonly player_index: PlayerIndex
|
@@ -2637,7 +2697,7 @@ declare module "factorio:runtime" {
|
|
2637
2697
|
}
|
2638
2698
|
/**
|
2639
2699
|
* Called when a player is promoted.
|
2640
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2700
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_promoted Online documentation}
|
2641
2701
|
*/
|
2642
2702
|
interface OnPlayerPromotedEvent extends EventData {
|
2643
2703
|
/**
|
@@ -2655,7 +2715,7 @@ declare module "factorio:runtime" {
|
|
2655
2715
|
}
|
2656
2716
|
/**
|
2657
2717
|
* Called when a player is removed (deleted) from the game. This is markedly different from a player temporarily {@link OnPlayerLeftGameEvent leaving} the game, and instead behaves like the player never existed in the save file.
|
2658
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2718
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_removed Online documentation}
|
2659
2719
|
*/
|
2660
2720
|
interface OnPlayerRemovedEvent extends EventData {
|
2661
2721
|
/**
|
@@ -2673,7 +2733,7 @@ declare module "factorio:runtime" {
|
|
2673
2733
|
}
|
2674
2734
|
/**
|
2675
2735
|
* Called after the player removes equipment from an equipment grid
|
2676
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2736
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_removed_equipment Online documentation}
|
2677
2737
|
*/
|
2678
2738
|
interface OnPlayerRemovedEquipmentEvent extends EventData {
|
2679
2739
|
readonly player_index: PlayerIndex
|
@@ -2706,7 +2766,7 @@ declare module "factorio:runtime" {
|
|
2706
2766
|
* Called when a player repairs an entity.
|
2707
2767
|
*
|
2708
2768
|
* Event filter: [LuaPlayerRepairedEntityEventFilter](LuaPlayerRepairedEntityEventFilter]
|
2709
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2769
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_repaired_entity Online documentation}
|
2710
2770
|
*/
|
2711
2771
|
interface OnPlayerRepairedEntityEvent extends EventData {
|
2712
2772
|
readonly player_index: PlayerIndex
|
@@ -2722,7 +2782,7 @@ declare module "factorio:runtime" {
|
|
2722
2782
|
}
|
2723
2783
|
/**
|
2724
2784
|
* Called after a player respawns.
|
2725
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2785
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_respawned Online documentation}
|
2726
2786
|
*/
|
2727
2787
|
interface OnPlayerRespawnedEvent extends EventData {
|
2728
2788
|
readonly player_index: PlayerIndex
|
@@ -2741,7 +2801,7 @@ declare module "factorio:runtime" {
|
|
2741
2801
|
}
|
2742
2802
|
/**
|
2743
2803
|
* Called after a player reverse-selects an area with a selection-tool item.
|
2744
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2804
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_reverse_selected_area Online documentation}
|
2745
2805
|
*/
|
2746
2806
|
interface OnPlayerReverseSelectedAreaEvent extends EventData {
|
2747
2807
|
/**
|
@@ -2781,7 +2841,7 @@ declare module "factorio:runtime" {
|
|
2781
2841
|
* Called when the player rotates an entity. This event is only fired when the entity actually changes its orientation -- pressing the rotate key on an entity that can't be rotated won't fire this event.
|
2782
2842
|
*
|
2783
2843
|
* Entities being flipped will not fire this event, even if the flip involves rotating. See {@link OnPlayerFlippedEntityEvent on_player_flipped_entity}.
|
2784
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2844
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_rotated_entity Online documentation}
|
2785
2845
|
*/
|
2786
2846
|
interface OnPlayerRotatedEntityEvent extends EventData {
|
2787
2847
|
/**
|
@@ -2804,7 +2864,7 @@ declare module "factorio:runtime" {
|
|
2804
2864
|
}
|
2805
2865
|
/**
|
2806
2866
|
* Called after a player selects an area with a selection-tool item.
|
2807
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2867
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_selected_area Online documentation}
|
2808
2868
|
*/
|
2809
2869
|
interface OnPlayerSelectedAreaEvent extends EventData {
|
2810
2870
|
/**
|
@@ -2846,7 +2906,7 @@ declare module "factorio:runtime" {
|
|
2846
2906
|
}
|
2847
2907
|
/**
|
2848
2908
|
* Called when a player sets a quickbar slot to anything (new value, or set to empty).
|
2849
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2909
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_set_quick_bar_slot Online documentation}
|
2850
2910
|
*/
|
2851
2911
|
interface OnPlayerSetQuickBarSlotEvent extends EventData {
|
2852
2912
|
readonly player_index: PlayerIndex
|
@@ -2861,7 +2921,7 @@ declare module "factorio:runtime" {
|
|
2861
2921
|
}
|
2862
2922
|
/**
|
2863
2923
|
* Called when a player selects an area with a blueprint.
|
2864
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2924
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_setup_blueprint Online documentation}
|
2865
2925
|
*/
|
2866
2926
|
interface OnPlayerSetupBlueprintEvent extends EventData {
|
2867
2927
|
/**
|
@@ -2911,7 +2971,7 @@ declare module "factorio:runtime" {
|
|
2911
2971
|
}
|
2912
2972
|
/**
|
2913
2973
|
* Called when a player toggles alt mode, also known as "show entity info".
|
2914
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2974
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_toggled_alt_mode Online documentation}
|
2915
2975
|
*/
|
2916
2976
|
interface OnPlayerToggledAltModeEvent extends EventData {
|
2917
2977
|
readonly player_index: PlayerIndex
|
@@ -2930,7 +2990,7 @@ declare module "factorio:runtime" {
|
|
2930
2990
|
}
|
2931
2991
|
/**
|
2932
2992
|
* Called when a player toggles the map editor on or off.
|
2933
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2993
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_toggled_map_editor Online documentation}
|
2934
2994
|
*/
|
2935
2995
|
interface OnPlayerToggledMapEditorEvent extends EventData {
|
2936
2996
|
readonly player_index: PlayerIndex
|
@@ -2945,7 +3005,7 @@ declare module "factorio:runtime" {
|
|
2945
3005
|
}
|
2946
3006
|
/**
|
2947
3007
|
* Called after a players trash inventory changed in some way.
|
2948
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3008
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_trash_inventory_changed Online documentation}
|
2949
3009
|
*/
|
2950
3010
|
interface OnPlayerTrashInventoryChangedEvent extends EventData {
|
2951
3011
|
readonly player_index: PlayerIndex
|
@@ -2960,7 +3020,7 @@ declare module "factorio:runtime" {
|
|
2960
3020
|
}
|
2961
3021
|
/**
|
2962
3022
|
* Called when a player is un-banned.
|
2963
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3023
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_unbanned Online documentation}
|
2964
3024
|
*/
|
2965
3025
|
interface OnPlayerUnbannedEvent extends EventData {
|
2966
3026
|
/**
|
@@ -2990,7 +3050,7 @@ declare module "factorio:runtime" {
|
|
2990
3050
|
}
|
2991
3051
|
/**
|
2992
3052
|
* Called when a player is unmuted.
|
2993
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3053
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_unmuted Online documentation}
|
2994
3054
|
*/
|
2995
3055
|
interface OnPlayerUnmutedEvent extends EventData {
|
2996
3056
|
/**
|
@@ -3008,7 +3068,7 @@ declare module "factorio:runtime" {
|
|
3008
3068
|
}
|
3009
3069
|
/**
|
3010
3070
|
* Called when a player uses a capsule that results in some game action.
|
3011
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3071
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_used_capsule Online documentation}
|
3012
3072
|
*/
|
3013
3073
|
interface OnPlayerUsedCapsuleEvent extends EventData {
|
3014
3074
|
/**
|
@@ -3038,7 +3098,7 @@ declare module "factorio:runtime" {
|
|
3038
3098
|
}
|
3039
3099
|
/**
|
3040
3100
|
* Called when a player uses spidertron remote to send all selected units to a given position
|
3041
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3101
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_player_used_spidertron_remote Online documentation}
|
3042
3102
|
*/
|
3043
3103
|
interface OnPlayerUsedSpidertronRemoteEvent extends EventData {
|
3044
3104
|
/**
|
@@ -3062,7 +3122,7 @@ declare module "factorio:runtime" {
|
|
3062
3122
|
* Called after an entity dies.
|
3063
3123
|
*
|
3064
3124
|
* Event filter: [LuaPostEntityDiedEventFilter](LuaPostEntityDiedEventFilter]
|
3065
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3125
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_post_entity_died Online documentation}
|
3066
3126
|
*/
|
3067
3127
|
interface OnPostEntityDiedEvent extends EventData {
|
3068
3128
|
/**
|
@@ -3112,7 +3172,7 @@ declare module "factorio:runtime" {
|
|
3112
3172
|
}
|
3113
3173
|
/**
|
3114
3174
|
* Called when players uses an item to build something. Called before {@link OnBuiltEntityEvent on_built_entity}.
|
3115
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3175
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_pre_build Online documentation}
|
3116
3176
|
*/
|
3117
3177
|
interface OnPreBuildEvent extends EventData {
|
3118
3178
|
/**
|
@@ -3158,7 +3218,7 @@ declare module "factorio:runtime" {
|
|
3158
3218
|
}
|
3159
3219
|
/**
|
3160
3220
|
* Called before one or more chunks are deleted using {@link LuaSurface#delete_chunk LuaSurface::delete_chunk}.
|
3161
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3221
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_pre_chunk_deleted Online documentation}
|
3162
3222
|
*/
|
3163
3223
|
interface OnPreChunkDeletedEvent extends EventData {
|
3164
3224
|
readonly surface_index: SurfaceIndex
|
@@ -3177,7 +3237,7 @@ declare module "factorio:runtime" {
|
|
3177
3237
|
}
|
3178
3238
|
/**
|
3179
3239
|
* Called before entity copy-paste is done.
|
3180
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3240
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_pre_entity_settings_pasted Online documentation}
|
3181
3241
|
*/
|
3182
3242
|
interface OnPreEntitySettingsPastedEvent extends EventData {
|
3183
3243
|
readonly player_index: PlayerIndex
|
@@ -3204,7 +3264,7 @@ declare module "factorio:runtime" {
|
|
3204
3264
|
* Also called for item request proxies before they are destroyed as a result of being marked for deconstruction.
|
3205
3265
|
*
|
3206
3266
|
* Event filter: [LuaPreGhostDeconstructedEventFilter](LuaPreGhostDeconstructedEventFilter]
|
3207
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3267
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_pre_ghost_deconstructed Online documentation}
|
3208
3268
|
*/
|
3209
3269
|
interface OnPreGhostDeconstructedEvent extends EventData {
|
3210
3270
|
/**
|
@@ -3225,7 +3285,7 @@ declare module "factorio:runtime" {
|
|
3225
3285
|
* Called before a ghost entity is upgraded.
|
3226
3286
|
*
|
3227
3287
|
* Event filter: [LuaPreGhostUpgradedEventFilter](LuaPreGhostUpgradedEventFilter]
|
3228
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3288
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_pre_ghost_upgraded Online documentation}
|
3229
3289
|
*/
|
3230
3290
|
interface OnPreGhostUpgradedEvent extends EventData {
|
3231
3291
|
/**
|
@@ -3246,7 +3306,7 @@ declare module "factorio:runtime" {
|
|
3246
3306
|
}
|
3247
3307
|
/**
|
3248
3308
|
* Called directly before a permission group is deleted.
|
3249
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3309
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_pre_permission_group_deleted Online documentation}
|
3250
3310
|
*/
|
3251
3311
|
interface OnPrePermissionGroupDeletedEvent extends EventData {
|
3252
3312
|
/**
|
@@ -3268,7 +3328,7 @@ declare module "factorio:runtime" {
|
|
3268
3328
|
}
|
3269
3329
|
/**
|
3270
3330
|
* Called directly before a permission string is imported.
|
3271
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3331
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_pre_permission_string_imported Online documentation}
|
3272
3332
|
*/
|
3273
3333
|
interface OnPrePermissionStringImportedEvent extends EventData {
|
3274
3334
|
/**
|
@@ -3286,7 +3346,7 @@ declare module "factorio:runtime" {
|
|
3286
3346
|
}
|
3287
3347
|
/**
|
3288
3348
|
* Called when a player queues something to be crafted.
|
3289
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3349
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_pre_player_crafted_item Online documentation}
|
3290
3350
|
*/
|
3291
3351
|
interface OnPrePlayerCraftedItemEvent extends EventData {
|
3292
3352
|
/**
|
@@ -3316,7 +3376,7 @@ declare module "factorio:runtime" {
|
|
3316
3376
|
}
|
3317
3377
|
/**
|
3318
3378
|
* Called before a players dies.
|
3319
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3379
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_pre_player_died Online documentation}
|
3320
3380
|
*/
|
3321
3381
|
interface OnPrePlayerDiedEvent extends EventData {
|
3322
3382
|
readonly player_index: PlayerIndex
|
@@ -3332,7 +3392,7 @@ declare module "factorio:runtime" {
|
|
3332
3392
|
}
|
3333
3393
|
/**
|
3334
3394
|
* Called before a player leaves the game.
|
3335
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3395
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_pre_player_left_game Online documentation}
|
3336
3396
|
*/
|
3337
3397
|
interface OnPrePlayerLeftGameEvent extends EventData {
|
3338
3398
|
readonly player_index: PlayerIndex
|
@@ -3350,7 +3410,7 @@ declare module "factorio:runtime" {
|
|
3350
3410
|
* Called when the player completes a mining action, but before the entity is potentially removed from the map. This is called even if the entity does not end up being removed.
|
3351
3411
|
*
|
3352
3412
|
* Event filter: [LuaPrePlayerMinedEntityEventFilter](LuaPrePlayerMinedEntityEventFilter]
|
3353
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3413
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_pre_player_mined_item Online documentation}
|
3354
3414
|
*/
|
3355
3415
|
interface OnPrePlayerMinedItemEvent extends EventData {
|
3356
3416
|
/**
|
@@ -3369,7 +3429,7 @@ declare module "factorio:runtime" {
|
|
3369
3429
|
}
|
3370
3430
|
/**
|
3371
3431
|
* Called before a player is removed (deleted) from the game. This is markedly different from a player temporarily {@link OnPlayerLeftGameEvent leaving} the game, and instead behaves like the player never existed in the save file.
|
3372
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3432
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_pre_player_removed Online documentation}
|
3373
3433
|
*/
|
3374
3434
|
interface OnPrePlayerRemovedEvent extends EventData {
|
3375
3435
|
/**
|
@@ -3387,7 +3447,7 @@ declare module "factorio:runtime" {
|
|
3387
3447
|
}
|
3388
3448
|
/**
|
3389
3449
|
* Called before a player toggles the map editor on or off.
|
3390
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3450
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_pre_player_toggled_map_editor Online documentation}
|
3391
3451
|
*/
|
3392
3452
|
interface OnPrePlayerToggledMapEditorEvent extends EventData {
|
3393
3453
|
readonly player_index: PlayerIndex
|
@@ -3402,7 +3462,7 @@ declare module "factorio:runtime" {
|
|
3402
3462
|
}
|
3403
3463
|
/**
|
3404
3464
|
* Called directly before a robot explodes cliffs.
|
3405
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3465
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_pre_robot_exploded_cliff Online documentation}
|
3406
3466
|
*/
|
3407
3467
|
interface OnPreRobotExplodedCliffEvent extends EventData {
|
3408
3468
|
readonly robot: LuaEntity
|
@@ -3426,7 +3486,7 @@ declare module "factorio:runtime" {
|
|
3426
3486
|
}
|
3427
3487
|
/**
|
3428
3488
|
* Called just before the scenario finishes.
|
3429
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3489
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_pre_scenario_finished Online documentation}
|
3430
3490
|
*/
|
3431
3491
|
interface OnPreScenarioFinishedEvent extends EventData {
|
3432
3492
|
/**
|
@@ -3444,7 +3504,7 @@ declare module "factorio:runtime" {
|
|
3444
3504
|
}
|
3445
3505
|
/**
|
3446
3506
|
* Called just before a script inventory is resized.
|
3447
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3507
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_pre_script_inventory_resized Online documentation}
|
3448
3508
|
*/
|
3449
3509
|
interface OnPreScriptInventoryResizedEvent extends EventData {
|
3450
3510
|
/**
|
@@ -3475,7 +3535,7 @@ declare module "factorio:runtime" {
|
|
3475
3535
|
}
|
3476
3536
|
/**
|
3477
3537
|
* Called just before a surface is cleared (all entities removed and all chunks deleted).
|
3478
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3538
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_pre_surface_cleared Online documentation}
|
3479
3539
|
*/
|
3480
3540
|
interface OnPreSurfaceClearedEvent extends EventData {
|
3481
3541
|
readonly surface_index: SurfaceIndex
|
@@ -3490,7 +3550,7 @@ declare module "factorio:runtime" {
|
|
3490
3550
|
}
|
3491
3551
|
/**
|
3492
3552
|
* Called just before a surface is deleted.
|
3493
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3553
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_pre_surface_deleted Online documentation}
|
3494
3554
|
*/
|
3495
3555
|
interface OnPreSurfaceDeletedEvent extends EventData {
|
3496
3556
|
readonly surface_index: SurfaceIndex
|
@@ -3505,7 +3565,7 @@ declare module "factorio:runtime" {
|
|
3505
3565
|
}
|
3506
3566
|
/**
|
3507
3567
|
* Called when the player triggers "redo".
|
3508
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3568
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_redo_applied Online documentation}
|
3509
3569
|
*/
|
3510
3570
|
interface OnRedoAppliedEvent extends EventData {
|
3511
3571
|
/**
|
@@ -3527,7 +3587,7 @@ declare module "factorio:runtime" {
|
|
3527
3587
|
}
|
3528
3588
|
/**
|
3529
3589
|
* Called when research is cancelled.
|
3530
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3590
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_research_cancelled Online documentation}
|
3531
3591
|
*/
|
3532
3592
|
interface OnResearchCancelledEvent extends EventData {
|
3533
3593
|
/**
|
@@ -3549,7 +3609,7 @@ declare module "factorio:runtime" {
|
|
3549
3609
|
}
|
3550
3610
|
/**
|
3551
3611
|
* Called when a research finishes.
|
3552
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3612
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_research_finished Online documentation}
|
3553
3613
|
*/
|
3554
3614
|
interface OnResearchFinishedEvent extends EventData {
|
3555
3615
|
/**
|
@@ -3571,7 +3631,7 @@ declare module "factorio:runtime" {
|
|
3571
3631
|
}
|
3572
3632
|
/**
|
3573
3633
|
* Called when research is moved forwards or backwards in the research queue.
|
3574
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3634
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_research_moved Online documentation}
|
3575
3635
|
*/
|
3576
3636
|
interface OnResearchMovedEvent extends EventData {
|
3577
3637
|
/**
|
@@ -3589,7 +3649,7 @@ declare module "factorio:runtime" {
|
|
3589
3649
|
}
|
3590
3650
|
/**
|
3591
3651
|
* Called when a research is reversed (unresearched).
|
3592
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3652
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_research_reversed Online documentation}
|
3593
3653
|
*/
|
3594
3654
|
interface OnResearchReversedEvent extends EventData {
|
3595
3655
|
/**
|
@@ -3611,7 +3671,7 @@ declare module "factorio:runtime" {
|
|
3611
3671
|
}
|
3612
3672
|
/**
|
3613
3673
|
* Called when a technology research starts.
|
3614
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3674
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_research_started Online documentation}
|
3615
3675
|
*/
|
3616
3676
|
interface OnResearchStartedEvent extends EventData {
|
3617
3677
|
/**
|
@@ -3630,7 +3690,7 @@ declare module "factorio:runtime" {
|
|
3630
3690
|
}
|
3631
3691
|
/**
|
3632
3692
|
* Called when a resource entity reaches 0 or its minimum yield for infinite resources.
|
3633
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3693
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_resource_depleted Online documentation}
|
3634
3694
|
*/
|
3635
3695
|
interface OnResourceDepletedEvent extends EventData {
|
3636
3696
|
readonly entity: LuaEntity
|
@@ -3647,7 +3707,7 @@ declare module "factorio:runtime" {
|
|
3647
3707
|
* Called when a construction robot builds an entity.
|
3648
3708
|
*
|
3649
3709
|
* Event filter: [LuaRobotBuiltEntityEventFilter](LuaRobotBuiltEntityEventFilter]
|
3650
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3710
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_robot_built_entity Online documentation}
|
3651
3711
|
*/
|
3652
3712
|
interface OnRobotBuiltEntityEvent extends EventData {
|
3653
3713
|
/**
|
@@ -3677,7 +3737,7 @@ declare module "factorio:runtime" {
|
|
3677
3737
|
}
|
3678
3738
|
/**
|
3679
3739
|
* Called after a robot builds tiles.
|
3680
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3740
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_robot_built_tile Online documentation}
|
3681
3741
|
*/
|
3682
3742
|
interface OnRobotBuiltTileEvent extends EventData {
|
3683
3743
|
/**
|
@@ -3719,7 +3779,7 @@ declare module "factorio:runtime" {
|
|
3719
3779
|
}
|
3720
3780
|
/**
|
3721
3781
|
* Called directly after a robot explodes cliffs.
|
3722
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3782
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_robot_exploded_cliff Online documentation}
|
3723
3783
|
*/
|
3724
3784
|
interface OnRobotExplodedCliffEvent extends EventData {
|
3725
3785
|
readonly robot: LuaEntity
|
@@ -3742,7 +3802,7 @@ declare module "factorio:runtime" {
|
|
3742
3802
|
}
|
3743
3803
|
/**
|
3744
3804
|
* Called when a robot mines an entity.
|
3745
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3805
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_robot_mined Online documentation}
|
3746
3806
|
*/
|
3747
3807
|
interface OnRobotMinedEvent extends EventData {
|
3748
3808
|
/**
|
@@ -3770,7 +3830,7 @@ declare module "factorio:runtime" {
|
|
3770
3830
|
* The buffer inventory is special in that it's only valid during this event and has a dynamic size expanding as more items are transferred into it.
|
3771
3831
|
*
|
3772
3832
|
* Event filter: [LuaRobotMinedEntityEventFilter](LuaRobotMinedEntityEventFilter]
|
3773
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3833
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_robot_mined_entity Online documentation}
|
3774
3834
|
*/
|
3775
3835
|
interface OnRobotMinedEntityEvent extends EventData {
|
3776
3836
|
/**
|
@@ -3796,7 +3856,7 @@ declare module "factorio:runtime" {
|
|
3796
3856
|
}
|
3797
3857
|
/**
|
3798
3858
|
* Called after a robot mines tiles.
|
3799
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3859
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_robot_mined_tile Online documentation}
|
3800
3860
|
*/
|
3801
3861
|
interface OnRobotMinedTileEvent extends EventData {
|
3802
3862
|
/**
|
@@ -3824,7 +3884,7 @@ declare module "factorio:runtime" {
|
|
3824
3884
|
* Called before a robot mines an entity.
|
3825
3885
|
*
|
3826
3886
|
* Event filter: [LuaPreRobotMinedEntityEventFilter](LuaPreRobotMinedEntityEventFilter]
|
3827
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3887
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_robot_pre_mined Online documentation}
|
3828
3888
|
*/
|
3829
3889
|
interface OnRobotPreMinedEvent extends EventData {
|
3830
3890
|
/**
|
@@ -3846,7 +3906,7 @@ declare module "factorio:runtime" {
|
|
3846
3906
|
}
|
3847
3907
|
/**
|
3848
3908
|
* Called when a rocket silo is ordered to be launched.
|
3849
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3909
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_rocket_launch_ordered Online documentation}
|
3850
3910
|
*/
|
3851
3911
|
interface OnRocketLaunchOrderedEvent extends EventData {
|
3852
3912
|
readonly rocket: LuaEntity
|
@@ -3866,7 +3926,7 @@ declare module "factorio:runtime" {
|
|
3866
3926
|
}
|
3867
3927
|
/**
|
3868
3928
|
* Called when a rocket finishes ascending. (Triggers listening for finished rocket launch past 2.0 have been moved to 'on_cargo_pod_finished_ascending' as rocket and cargo pod are two separate entities)
|
3869
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3929
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_rocket_launched Online documentation}
|
3870
3930
|
*/
|
3871
3931
|
interface OnRocketLaunchedEvent extends EventData {
|
3872
3932
|
readonly rocket: LuaEntity
|
@@ -3882,7 +3942,7 @@ declare module "factorio:runtime" {
|
|
3882
3942
|
}
|
3883
3943
|
/**
|
3884
3944
|
* Called when a runtime mod setting is changed by a player.
|
3885
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3945
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_runtime_mod_setting_changed Online documentation}
|
3886
3946
|
*/
|
3887
3947
|
interface OnRuntimeModSettingChangedEvent extends EventData {
|
3888
3948
|
/**
|
@@ -3905,7 +3965,7 @@ declare module "factorio:runtime" {
|
|
3905
3965
|
}
|
3906
3966
|
/**
|
3907
3967
|
* Called just after a script inventory is resized.
|
3908
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3968
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_script_inventory_resized Online documentation}
|
3909
3969
|
*/
|
3910
3970
|
interface OnScriptInventoryResizedEvent extends EventData {
|
3911
3971
|
/**
|
@@ -3940,7 +4000,7 @@ declare module "factorio:runtime" {
|
|
3940
4000
|
}
|
3941
4001
|
/**
|
3942
4002
|
* Called when a {@link LuaSurface#request_path LuaSurface::request_path} call completes.
|
3943
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4003
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_script_path_request_finished Online documentation}
|
3944
4004
|
*/
|
3945
4005
|
interface OnScriptPathRequestFinishedEvent extends EventData {
|
3946
4006
|
/**
|
@@ -3966,7 +4026,7 @@ declare module "factorio:runtime" {
|
|
3966
4026
|
}
|
3967
4027
|
/**
|
3968
4028
|
* Called when a script trigger effect is triggered.
|
3969
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4029
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_script_trigger_effect Online documentation}
|
3970
4030
|
*/
|
3971
4031
|
interface OnScriptTriggerEffectEvent extends EventData {
|
3972
4032
|
/**
|
@@ -3998,7 +4058,7 @@ declare module "factorio:runtime" {
|
|
3998
4058
|
* Called when an entity of type `radar` finishes scanning a sector.
|
3999
4059
|
*
|
4000
4060
|
* Event filter: [LuaSectorScannedEventFilter](LuaSectorScannedEventFilter]
|
4001
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4061
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_sector_scanned Online documentation}
|
4002
4062
|
*/
|
4003
4063
|
interface OnSectorScannedEvent extends EventData {
|
4004
4064
|
/**
|
@@ -4024,7 +4084,7 @@ declare module "factorio:runtime" {
|
|
4024
4084
|
}
|
4025
4085
|
/**
|
4026
4086
|
* Called when an individual segment of a SegmentedUnit is created.
|
4027
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4087
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_segment_entity_created Online documentation}
|
4028
4088
|
*/
|
4029
4089
|
interface OnSegmentEntityCreatedEvent extends EventData {
|
4030
4090
|
readonly entity: LuaEntity
|
@@ -4039,7 +4099,7 @@ declare module "factorio:runtime" {
|
|
4039
4099
|
}
|
4040
4100
|
/**
|
4041
4101
|
* Called after the selected entity changes for a given player.
|
4042
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4102
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_selected_entity_changed Online documentation}
|
4043
4103
|
*/
|
4044
4104
|
interface OnSelectedEntityChangedEvent extends EventData {
|
4045
4105
|
/**
|
@@ -4059,11 +4119,25 @@ declare module "factorio:runtime" {
|
|
4059
4119
|
*/
|
4060
4120
|
readonly tick: uint
|
4061
4121
|
}
|
4122
|
+
/**
|
4123
|
+
* Called when {@link LuaGameScript#is_multiplayer LuaGameScript::is_multiplayer} changes to false. May also be raised when it was already false but a game was loaded from a save file without hosting.
|
4124
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_singleplayer_init Online documentation}
|
4125
|
+
*/
|
4126
|
+
interface OnSingleplayerInitEvent extends EventData {
|
4127
|
+
/**
|
4128
|
+
* Identifier of the event
|
4129
|
+
*/
|
4130
|
+
readonly name: typeof defines.events.on_singleplayer_init
|
4131
|
+
/**
|
4132
|
+
* Tick the event was generated.
|
4133
|
+
*/
|
4134
|
+
readonly tick: uint
|
4135
|
+
}
|
4062
4136
|
/**
|
4063
4137
|
* Called when a space platform builds an entity.
|
4064
4138
|
*
|
4065
4139
|
* Event filter: [LuaPlatformBuiltEntityEventFilter](LuaPlatformBuiltEntityEventFilter]
|
4066
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4140
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_space_platform_built_entity Online documentation}
|
4067
4141
|
*/
|
4068
4142
|
interface OnSpacePlatformBuiltEntityEvent extends EventData {
|
4069
4143
|
/**
|
@@ -4093,7 +4167,7 @@ declare module "factorio:runtime" {
|
|
4093
4167
|
}
|
4094
4168
|
/**
|
4095
4169
|
* Called after a space platform builds tiles.
|
4096
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4170
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_space_platform_built_tile Online documentation}
|
4097
4171
|
*/
|
4098
4172
|
interface OnSpacePlatformBuiltTileEvent extends EventData {
|
4099
4173
|
/**
|
@@ -4135,7 +4209,7 @@ declare module "factorio:runtime" {
|
|
4135
4209
|
}
|
4136
4210
|
/**
|
4137
4211
|
* Called when a space platform changes state
|
4138
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4212
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_space_platform_changed_state Online documentation}
|
4139
4213
|
*/
|
4140
4214
|
interface OnSpacePlatformChangedStateEvent extends EventData {
|
4141
4215
|
readonly platform: LuaSpacePlatform
|
@@ -4157,7 +4231,7 @@ declare module "factorio:runtime" {
|
|
4157
4231
|
* The buffer inventory is special in that it's only valid during this event and has a dynamic size expanding as more items are transferred into it.
|
4158
4232
|
*
|
4159
4233
|
* Event filter: [LuaPlatformMinedEntityEventFilter](LuaPlatformMinedEntityEventFilter]
|
4160
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4234
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_space_platform_mined_entity Online documentation}
|
4161
4235
|
*/
|
4162
4236
|
interface OnSpacePlatformMinedEntityEvent extends EventData {
|
4163
4237
|
/**
|
@@ -4183,7 +4257,7 @@ declare module "factorio:runtime" {
|
|
4183
4257
|
}
|
4184
4258
|
/**
|
4185
4259
|
* Called when a platform mines an entity.
|
4186
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4260
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_space_platform_mined_item Online documentation}
|
4187
4261
|
*/
|
4188
4262
|
interface OnSpacePlatformMinedItemEvent extends EventData {
|
4189
4263
|
/**
|
@@ -4205,7 +4279,7 @@ declare module "factorio:runtime" {
|
|
4205
4279
|
}
|
4206
4280
|
/**
|
4207
4281
|
* Called after a platform mines tiles.
|
4208
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4282
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_space_platform_mined_tile Online documentation}
|
4209
4283
|
*/
|
4210
4284
|
interface OnSpacePlatformMinedTileEvent extends EventData {
|
4211
4285
|
/**
|
@@ -4233,7 +4307,7 @@ declare module "factorio:runtime" {
|
|
4233
4307
|
* Called before a platform mines an entity.
|
4234
4308
|
*
|
4235
4309
|
* Event filter: [LuaPrePlatformMinedEntityEventFilter](LuaPrePlatformMinedEntityEventFilter]
|
4236
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4310
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_space_platform_pre_mined Online documentation}
|
4237
4311
|
*/
|
4238
4312
|
interface OnSpacePlatformPreMinedEvent extends EventData {
|
4239
4313
|
/**
|
@@ -4255,7 +4329,7 @@ declare module "factorio:runtime" {
|
|
4255
4329
|
}
|
4256
4330
|
/**
|
4257
4331
|
* Called when a spider finishes moving to its autopilot position.
|
4258
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4332
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_spider_command_completed Online documentation}
|
4259
4333
|
*/
|
4260
4334
|
interface OnSpiderCommandCompletedEvent extends EventData {
|
4261
4335
|
/**
|
@@ -4273,7 +4347,7 @@ declare module "factorio:runtime" {
|
|
4273
4347
|
}
|
4274
4348
|
/**
|
4275
4349
|
* Called when a translation request generated through {@link LuaPlayer#request_translation LuaPlayer::request_translation} or {@link LuaPlayer#request_translations LuaPlayer::request_translations} has been completed.
|
4276
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4350
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_string_translated Online documentation}
|
4277
4351
|
*/
|
4278
4352
|
interface OnStringTranslatedEvent extends EventData {
|
4279
4353
|
/**
|
@@ -4307,7 +4381,7 @@ declare module "factorio:runtime" {
|
|
4307
4381
|
}
|
4308
4382
|
/**
|
4309
4383
|
* Called just after a surface is cleared (all entities removed and all chunks deleted).
|
4310
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4384
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_surface_cleared Online documentation}
|
4311
4385
|
*/
|
4312
4386
|
interface OnSurfaceClearedEvent extends EventData {
|
4313
4387
|
readonly surface_index: SurfaceIndex
|
@@ -4324,7 +4398,7 @@ declare module "factorio:runtime" {
|
|
4324
4398
|
* Called when a surface is created.
|
4325
4399
|
*
|
4326
4400
|
* This is not called when the default surface is created as it will always exist.
|
4327
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4401
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_surface_created Online documentation}
|
4328
4402
|
*/
|
4329
4403
|
interface OnSurfaceCreatedEvent extends EventData {
|
4330
4404
|
readonly surface_index: SurfaceIndex
|
@@ -4339,7 +4413,7 @@ declare module "factorio:runtime" {
|
|
4339
4413
|
}
|
4340
4414
|
/**
|
4341
4415
|
* Called after a surface is deleted.
|
4342
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4416
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_surface_deleted Online documentation}
|
4343
4417
|
*/
|
4344
4418
|
interface OnSurfaceDeletedEvent extends EventData {
|
4345
4419
|
readonly surface_index: SurfaceIndex
|
@@ -4354,7 +4428,7 @@ declare module "factorio:runtime" {
|
|
4354
4428
|
}
|
4355
4429
|
/**
|
4356
4430
|
* Called after a surface is imported via the map editor.
|
4357
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4431
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_surface_imported Online documentation}
|
4358
4432
|
*/
|
4359
4433
|
interface OnSurfaceImportedEvent extends EventData {
|
4360
4434
|
readonly surface_index: SurfaceIndex
|
@@ -4373,7 +4447,7 @@ declare module "factorio:runtime" {
|
|
4373
4447
|
}
|
4374
4448
|
/**
|
4375
4449
|
* Called when a surface is renamed.
|
4376
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4450
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_surface_renamed Online documentation}
|
4377
4451
|
*/
|
4378
4452
|
interface OnSurfaceRenamedEvent extends EventData {
|
4379
4453
|
readonly surface_index: SurfaceIndex
|
@@ -4390,7 +4464,7 @@ declare module "factorio:runtime" {
|
|
4390
4464
|
}
|
4391
4465
|
/**
|
4392
4466
|
* Called when {@link LuaForce#reset_technology_effects LuaForce::reset_technology_effects} is finished.
|
4393
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4467
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_technology_effects_reset Online documentation}
|
4394
4468
|
*/
|
4395
4469
|
interface OnTechnologyEffectsResetEvent extends EventData {
|
4396
4470
|
readonly force: LuaForce
|
@@ -4405,7 +4479,7 @@ declare module "factorio:runtime" {
|
|
4405
4479
|
}
|
4406
4480
|
/**
|
4407
4481
|
* It is fired once every tick. Since this event is fired every tick, its handler shouldn't include performance heavy code.
|
4408
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4482
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_tick Online documentation}
|
4409
4483
|
*/
|
4410
4484
|
interface OnTickEvent extends EventData {
|
4411
4485
|
/**
|
@@ -4419,7 +4493,7 @@ declare module "factorio:runtime" {
|
|
4419
4493
|
}
|
4420
4494
|
/**
|
4421
4495
|
* Called when a train changes state (started to stopped and vice versa)
|
4422
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4496
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_train_changed_state Online documentation}
|
4423
4497
|
*/
|
4424
4498
|
interface OnTrainChangedStateEvent extends EventData {
|
4425
4499
|
readonly train: LuaTrain
|
@@ -4435,7 +4509,7 @@ declare module "factorio:runtime" {
|
|
4435
4509
|
}
|
4436
4510
|
/**
|
4437
4511
|
* Called when a new train is created either through disconnecting/connecting an existing one or building a new one.
|
4438
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4512
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_train_created Online documentation}
|
4439
4513
|
*/
|
4440
4514
|
interface OnTrainCreatedEvent extends EventData {
|
4441
4515
|
readonly train: LuaTrain
|
@@ -4458,7 +4532,7 @@ declare module "factorio:runtime" {
|
|
4458
4532
|
}
|
4459
4533
|
/**
|
4460
4534
|
* Called when a trains schedule is changed either by the player or through script.
|
4461
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4535
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_train_schedule_changed Online documentation}
|
4462
4536
|
*/
|
4463
4537
|
interface OnTrainScheduleChangedEvent extends EventData {
|
4464
4538
|
readonly train: LuaTrain
|
@@ -4477,7 +4551,7 @@ declare module "factorio:runtime" {
|
|
4477
4551
|
}
|
4478
4552
|
/**
|
4479
4553
|
* Called when an entity with a trigger prototype (such as capsules) create an entity AND that trigger prototype defined `trigger_created_entity=true`.
|
4480
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4554
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_trigger_created_entity Online documentation}
|
4481
4555
|
*/
|
4482
4556
|
interface OnTriggerCreatedEntityEvent extends EventData {
|
4483
4557
|
readonly entity: LuaEntity
|
@@ -4493,7 +4567,7 @@ declare module "factorio:runtime" {
|
|
4493
4567
|
}
|
4494
4568
|
/**
|
4495
4569
|
* Called when an entity with a trigger prototype (such as capsules) fire an artillery projectile AND that trigger prototype defined `trigger_fired_artillery=true`.
|
4496
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4570
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_trigger_fired_artillery Online documentation}
|
4497
4571
|
*/
|
4498
4572
|
interface OnTriggerFiredArtilleryEvent extends EventData {
|
4499
4573
|
readonly entity: LuaEntity
|
@@ -4509,7 +4583,7 @@ declare module "factorio:runtime" {
|
|
4509
4583
|
}
|
4510
4584
|
/**
|
4511
4585
|
* Called when the player triggers "undo".
|
4512
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4586
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_undo_applied Online documentation}
|
4513
4587
|
*/
|
4514
4588
|
interface OnUndoAppliedEvent extends EventData {
|
4515
4589
|
/**
|
@@ -4531,7 +4605,7 @@ declare module "factorio:runtime" {
|
|
4531
4605
|
}
|
4532
4606
|
/**
|
4533
4607
|
* Called when a unit is added to a unit group.
|
4534
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4608
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_unit_added_to_group Online documentation}
|
4535
4609
|
*/
|
4536
4610
|
interface OnUnitAddedToGroupEvent extends EventData {
|
4537
4611
|
readonly unit: LuaEntity
|
@@ -4547,7 +4621,7 @@ declare module "factorio:runtime" {
|
|
4547
4621
|
}
|
4548
4622
|
/**
|
4549
4623
|
* Called when a new unit group is created, before any members are added to it.
|
4550
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4624
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_unit_group_created Online documentation}
|
4551
4625
|
*/
|
4552
4626
|
interface OnUnitGroupCreatedEvent extends EventData {
|
4553
4627
|
readonly group: LuaCommandable
|
@@ -4562,7 +4636,7 @@ declare module "factorio:runtime" {
|
|
4562
4636
|
}
|
4563
4637
|
/**
|
4564
4638
|
* Called when a unit group finishes gathering and starts executing its command.
|
4565
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4639
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_unit_group_finished_gathering Online documentation}
|
4566
4640
|
*/
|
4567
4641
|
interface OnUnitGroupFinishedGatheringEvent extends EventData {
|
4568
4642
|
readonly group: LuaCommandable
|
@@ -4577,7 +4651,7 @@ declare module "factorio:runtime" {
|
|
4577
4651
|
}
|
4578
4652
|
/**
|
4579
4653
|
* Called when a unit is removed from a unit group.
|
4580
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4654
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_unit_removed_from_group Online documentation}
|
4581
4655
|
*/
|
4582
4656
|
interface OnUnitRemovedFromGroupEvent extends EventData {
|
4583
4657
|
readonly unit: LuaEntity
|
@@ -4593,7 +4667,7 @@ declare module "factorio:runtime" {
|
|
4593
4667
|
}
|
4594
4668
|
/**
|
4595
4669
|
* Called when a worker (construction or logistic) robot expires through a lack of energy.
|
4596
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4670
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#on_worker_robot_expired Online documentation}
|
4597
4671
|
*/
|
4598
4672
|
interface OnWorkerRobotExpiredEvent extends EventData {
|
4599
4673
|
readonly robot: LuaEntity
|
@@ -4610,7 +4684,7 @@ declare module "factorio:runtime" {
|
|
4610
4684
|
* A static event mods can use to tell other mods they built something by script. This event is only raised if a mod does so with {@link LuaBootstrap#raise_event LuaBootstrap::raise_event} or {@link LuaBootstrap#raise_script_built LuaBootstrap::raise_script_built}, or when `raise_built` is passed to {@link LuaSurface#create_entity LuaSurface::create_entity}.
|
4611
4685
|
*
|
4612
4686
|
* Event filter: [LuaScriptRaisedBuiltEventFilter](LuaScriptRaisedBuiltEventFilter]
|
4613
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4687
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#script_raised_built Online documentation}
|
4614
4688
|
*/
|
4615
4689
|
interface ScriptRaisedBuiltEvent extends EventData {
|
4616
4690
|
/**
|
@@ -4630,7 +4704,7 @@ declare module "factorio:runtime" {
|
|
4630
4704
|
* A static event mods can use to tell other mods they destroyed something by script. This event is only raised if a mod does so with {@link LuaBootstrap#raise_event LuaBootstrap::raise_event} or {@link LuaBootstrap#raise_script_destroy LuaBootstrap::raise_script_destroy}, or when `raise_destroy` is passed to {@link LuaEntity#destroy LuaEntity::destroy}.
|
4631
4705
|
*
|
4632
4706
|
* Event filter: [LuaScriptRaisedDestroyEventFilter](LuaScriptRaisedDestroyEventFilter]
|
4633
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4707
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#script_raised_destroy Online documentation}
|
4634
4708
|
*/
|
4635
4709
|
interface ScriptRaisedDestroyEvent extends EventData {
|
4636
4710
|
/**
|
@@ -4650,7 +4724,7 @@ declare module "factorio:runtime" {
|
|
4650
4724
|
* A static event mods can use to tell other mods they revived something by script. This event is only raised if a mod does so with {@link LuaBootstrap#raise_event LuaBootstrap::raise_event} or {@link LuaBootstrap#raise_script_revive LuaBootstrap::raise_script_revive}, or when `raise_revive` is passed to {@link LuaEntity#revive LuaEntity::revive}.
|
4651
4725
|
*
|
4652
4726
|
* Event filter: [LuaScriptRaisedReviveEventFilter](LuaScriptRaisedReviveEventFilter]
|
4653
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4727
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#script_raised_revive Online documentation}
|
4654
4728
|
*/
|
4655
4729
|
interface ScriptRaisedReviveEvent extends EventData {
|
4656
4730
|
/**
|
@@ -4672,7 +4746,7 @@ declare module "factorio:runtime" {
|
|
4672
4746
|
}
|
4673
4747
|
/**
|
4674
4748
|
* A static event mods can use to tell other mods they changed tiles on a surface by script. This event is only raised if a mod does so with {@link LuaBootstrap#raise_event LuaBootstrap::raise_event} or {@link LuaBootstrap#raise_script_set_tiles LuaBootstrap::raise_script_set_tiles}, or when `raise_event` is passed to {@link LuaSurface#set_tiles LuaSurface::set_tiles}.
|
4675
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4749
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#script_raised_set_tiles Online documentation}
|
4676
4750
|
*/
|
4677
4751
|
interface ScriptRaisedSetTilesEvent extends EventData {
|
4678
4752
|
/**
|
@@ -4696,7 +4770,7 @@ declare module "factorio:runtime" {
|
|
4696
4770
|
* A static event mods can use to tell other mods they teleported something by script. This event is only raised if a mod does so with {@link LuaBootstrap#raise_event LuaBootstrap::raise_event} or {@link LuaBootstrap#raise_script_teleported LuaBootstrap::raise_script_teleported}, or when `raise_teleported` is passed to {@link LuaControl#teleport LuaControl::teleport}.
|
4697
4771
|
*
|
4698
4772
|
* Event filter: [LuaScriptRaisedTeleportedEventFilter](LuaScriptRaisedTeleportedEventFilter]
|
4699
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4773
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/events.html#script_raised_teleported Online documentation}
|
4700
4774
|
*/
|
4701
4775
|
interface ScriptRaisedTeleportedEvent extends EventData {
|
4702
4776
|
/**
|