typed-factorio 3.13.1 → 3.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/prototype/generated/prototypes.d.ts +2151 -2092
- package/prototype/generated/types.d.ts +2158 -2144
- package/runtime/generated/classes.d.ts +3956 -3599
- package/runtime/generated/concepts.d.ts +378 -295
- package/runtime/generated/defines.d.ts +253 -177
- package/runtime/generated/events.d.ts +284 -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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/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.35/events.html#on_player_deconstructed_area Online documentation}
|
2094
2154
|
*/
|
2095
2155
|
interface OnPlayerDeconstructedAreaEvent extends EventData {
|
2096
2156
|
/**
|
@@ -2113,6 +2173,10 @@ declare module "factorio:runtime" {
|
|
2113
2173
|
* The item stack used to select the area.
|
2114
2174
|
*/
|
2115
2175
|
readonly stack?: LuaItemStack
|
2176
|
+
/**
|
2177
|
+
* The record that was used to select the area.
|
2178
|
+
*/
|
2179
|
+
readonly record?: LuaRecord
|
2116
2180
|
/**
|
2117
2181
|
* The item quality used to select the area.
|
2118
2182
|
*/
|
@@ -2132,7 +2196,7 @@ declare module "factorio:runtime" {
|
|
2132
2196
|
}
|
2133
2197
|
/**
|
2134
2198
|
* Called when a player is demoted.
|
2135
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2199
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_player_demoted Online documentation}
|
2136
2200
|
*/
|
2137
2201
|
interface OnPlayerDemotedEvent extends EventData {
|
2138
2202
|
/**
|
@@ -2150,7 +2214,7 @@ declare module "factorio:runtime" {
|
|
2150
2214
|
}
|
2151
2215
|
/**
|
2152
2216
|
* Called after a player dies.
|
2153
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2217
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_player_died Online documentation}
|
2154
2218
|
*/
|
2155
2219
|
interface OnPlayerDiedEvent extends EventData {
|
2156
2220
|
readonly player_index: PlayerIndex
|
@@ -2166,7 +2230,7 @@ declare module "factorio:runtime" {
|
|
2166
2230
|
}
|
2167
2231
|
/**
|
2168
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.
|
2169
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2233
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_player_display_density_scale_changed Online documentation}
|
2170
2234
|
*/
|
2171
2235
|
interface OnPlayerDisplayDensityScaleChangedEvent extends EventData {
|
2172
2236
|
/**
|
@@ -2188,7 +2252,7 @@ declare module "factorio:runtime" {
|
|
2188
2252
|
}
|
2189
2253
|
/**
|
2190
2254
|
* Called when the display resolution changes for a given player.
|
2191
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2255
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_player_display_resolution_changed Online documentation}
|
2192
2256
|
*/
|
2193
2257
|
interface OnPlayerDisplayResolutionChangedEvent extends EventData {
|
2194
2258
|
/**
|
@@ -2210,7 +2274,7 @@ declare module "factorio:runtime" {
|
|
2210
2274
|
}
|
2211
2275
|
/**
|
2212
2276
|
* Called when the display scale changes for a given player.
|
2213
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2277
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_player_display_scale_changed Online documentation}
|
2214
2278
|
*/
|
2215
2279
|
interface OnPlayerDisplayScaleChangedEvent extends EventData {
|
2216
2280
|
/**
|
@@ -2234,7 +2298,7 @@ declare module "factorio:runtime" {
|
|
2234
2298
|
* Called when the player's driving state has changed, meaning a player has either entered or left a vehicle.
|
2235
2299
|
*
|
2236
2300
|
* This event is not raised when the player is ejected from a vehicle due to it being destroyed.
|
2237
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2301
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_player_driving_changed_state Online documentation}
|
2238
2302
|
*/
|
2239
2303
|
interface OnPlayerDrivingChangedStateEvent extends EventData {
|
2240
2304
|
readonly player_index: PlayerIndex
|
@@ -2253,7 +2317,7 @@ declare module "factorio:runtime" {
|
|
2253
2317
|
}
|
2254
2318
|
/**
|
2255
2319
|
* Called when a player drops an item on the ground.
|
2256
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2320
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_player_dropped_item Online documentation}
|
2257
2321
|
*/
|
2258
2322
|
interface OnPlayerDroppedItemEvent extends EventData {
|
2259
2323
|
readonly player_index: PlayerIndex
|
@@ -2272,7 +2336,7 @@ declare module "factorio:runtime" {
|
|
2272
2336
|
}
|
2273
2337
|
/**
|
2274
2338
|
* Called when a player fast-transfers something to or from an entity.
|
2275
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2339
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_player_fast_transferred Online documentation}
|
2276
2340
|
*/
|
2277
2341
|
interface OnPlayerFastTransferredEvent extends EventData {
|
2278
2342
|
/**
|
@@ -2304,7 +2368,7 @@ declare module "factorio:runtime" {
|
|
2304
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.
|
2305
2369
|
*
|
2306
2370
|
* This event reflects a change in the {@link LuaEntity#mirroring LuaEntity::mirroring} property.
|
2307
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2371
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_player_flipped_entity Online documentation}
|
2308
2372
|
*/
|
2309
2373
|
interface OnPlayerFlippedEntityEvent extends EventData {
|
2310
2374
|
/**
|
@@ -2327,7 +2391,7 @@ declare module "factorio:runtime" {
|
|
2327
2391
|
}
|
2328
2392
|
/**
|
2329
2393
|
* Called after player flushed fluid
|
2330
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2394
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_player_flushed_fluid Online documentation}
|
2331
2395
|
*/
|
2332
2396
|
interface OnPlayerFlushedFluidEvent extends EventData {
|
2333
2397
|
/**
|
@@ -2361,7 +2425,7 @@ declare module "factorio:runtime" {
|
|
2361
2425
|
}
|
2362
2426
|
/**
|
2363
2427
|
* Called after a players gun inventory changed in some way.
|
2364
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2428
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_player_gun_inventory_changed Online documentation}
|
2365
2429
|
*/
|
2366
2430
|
interface OnPlayerGunInventoryChangedEvent extends EventData {
|
2367
2431
|
readonly player_index: PlayerIndex
|
@@ -2376,7 +2440,7 @@ declare module "factorio:runtime" {
|
|
2376
2440
|
}
|
2377
2441
|
/**
|
2378
2442
|
* Called when a player's input method changes. See {@link LuaPlayer#input_method LuaPlayer::input_method}.
|
2379
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2443
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_player_input_method_changed Online documentation}
|
2380
2444
|
*/
|
2381
2445
|
interface OnPlayerInputMethodChangedEvent extends EventData {
|
2382
2446
|
/**
|
@@ -2394,7 +2458,7 @@ declare module "factorio:runtime" {
|
|
2394
2458
|
}
|
2395
2459
|
/**
|
2396
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.
|
2397
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2461
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_player_joined_game Online documentation}
|
2398
2462
|
*/
|
2399
2463
|
interface OnPlayerJoinedGameEvent extends EventData {
|
2400
2464
|
readonly player_index: PlayerIndex
|
@@ -2409,7 +2473,7 @@ declare module "factorio:runtime" {
|
|
2409
2473
|
}
|
2410
2474
|
/**
|
2411
2475
|
* Called when a player is kicked.
|
2412
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2476
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_player_kicked Online documentation}
|
2413
2477
|
*/
|
2414
2478
|
interface OnPlayerKickedEvent extends EventData {
|
2415
2479
|
/**
|
@@ -2435,7 +2499,7 @@ declare module "factorio:runtime" {
|
|
2435
2499
|
}
|
2436
2500
|
/**
|
2437
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.
|
2438
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2502
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_player_left_game Online documentation}
|
2439
2503
|
*/
|
2440
2504
|
interface OnPlayerLeftGameEvent extends EventData {
|
2441
2505
|
readonly player_index: PlayerIndex
|
@@ -2451,7 +2515,7 @@ declare module "factorio:runtime" {
|
|
2451
2515
|
}
|
2452
2516
|
/**
|
2453
2517
|
* Called when a player's active locale changes. See {@link LuaPlayer#locale LuaPlayer::locale}.
|
2454
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2518
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_player_locale_changed Online documentation}
|
2455
2519
|
*/
|
2456
2520
|
interface OnPlayerLocaleChangedEvent extends EventData {
|
2457
2521
|
/**
|
@@ -2473,7 +2537,7 @@ declare module "factorio:runtime" {
|
|
2473
2537
|
}
|
2474
2538
|
/**
|
2475
2539
|
* Called after a players main inventory changed in some way.
|
2476
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2540
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_player_main_inventory_changed Online documentation}
|
2477
2541
|
*/
|
2478
2542
|
interface OnPlayerMainInventoryChangedEvent extends EventData {
|
2479
2543
|
readonly player_index: PlayerIndex
|
@@ -2494,7 +2558,7 @@ declare module "factorio:runtime" {
|
|
2494
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.
|
2495
2559
|
*
|
2496
2560
|
* Event filter: [LuaPlayerMinedEntityEventFilter](LuaPlayerMinedEntityEventFilter]
|
2497
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2561
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_player_mined_entity Online documentation}
|
2498
2562
|
*/
|
2499
2563
|
interface OnPlayerMinedEntityEvent extends EventData {
|
2500
2564
|
/**
|
@@ -2520,7 +2584,7 @@ declare module "factorio:runtime" {
|
|
2520
2584
|
}
|
2521
2585
|
/**
|
2522
2586
|
* Called when the player mines something.
|
2523
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2587
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_player_mined_item Online documentation}
|
2524
2588
|
*/
|
2525
2589
|
interface OnPlayerMinedItemEvent extends EventData {
|
2526
2590
|
/**
|
@@ -2539,7 +2603,7 @@ declare module "factorio:runtime" {
|
|
2539
2603
|
}
|
2540
2604
|
/**
|
2541
2605
|
* Called after a player mines tiles.
|
2542
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2606
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_player_mined_tile Online documentation}
|
2543
2607
|
*/
|
2544
2608
|
interface OnPlayerMinedTileEvent extends EventData {
|
2545
2609
|
readonly player_index: PlayerIndex
|
@@ -2562,7 +2626,7 @@ declare module "factorio:runtime" {
|
|
2562
2626
|
}
|
2563
2627
|
/**
|
2564
2628
|
* Called when a player is muted.
|
2565
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2629
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_player_muted Online documentation}
|
2566
2630
|
*/
|
2567
2631
|
interface OnPlayerMutedEvent extends EventData {
|
2568
2632
|
/**
|
@@ -2580,7 +2644,7 @@ declare module "factorio:runtime" {
|
|
2580
2644
|
}
|
2581
2645
|
/**
|
2582
2646
|
* Called when a player invokes the "smart pipette" over an entity.
|
2583
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2647
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_player_pipette Online documentation}
|
2584
2648
|
*/
|
2585
2649
|
interface OnPlayerPipetteEvent extends EventData {
|
2586
2650
|
/**
|
@@ -2610,7 +2674,7 @@ declare module "factorio:runtime" {
|
|
2610
2674
|
}
|
2611
2675
|
/**
|
2612
2676
|
* Called after the player puts equipment in an equipment grid
|
2613
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2677
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_player_placed_equipment Online documentation}
|
2614
2678
|
*/
|
2615
2679
|
interface OnPlayerPlacedEquipmentEvent extends EventData {
|
2616
2680
|
readonly player_index: PlayerIndex
|
@@ -2633,7 +2697,7 @@ declare module "factorio:runtime" {
|
|
2633
2697
|
}
|
2634
2698
|
/**
|
2635
2699
|
* Called when a player is promoted.
|
2636
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2700
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_player_promoted Online documentation}
|
2637
2701
|
*/
|
2638
2702
|
interface OnPlayerPromotedEvent extends EventData {
|
2639
2703
|
/**
|
@@ -2651,7 +2715,7 @@ declare module "factorio:runtime" {
|
|
2651
2715
|
}
|
2652
2716
|
/**
|
2653
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.
|
2654
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2718
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_player_removed Online documentation}
|
2655
2719
|
*/
|
2656
2720
|
interface OnPlayerRemovedEvent extends EventData {
|
2657
2721
|
/**
|
@@ -2669,7 +2733,7 @@ declare module "factorio:runtime" {
|
|
2669
2733
|
}
|
2670
2734
|
/**
|
2671
2735
|
* Called after the player removes equipment from an equipment grid
|
2672
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2736
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_player_removed_equipment Online documentation}
|
2673
2737
|
*/
|
2674
2738
|
interface OnPlayerRemovedEquipmentEvent extends EventData {
|
2675
2739
|
readonly player_index: PlayerIndex
|
@@ -2702,7 +2766,7 @@ declare module "factorio:runtime" {
|
|
2702
2766
|
* Called when a player repairs an entity.
|
2703
2767
|
*
|
2704
2768
|
* Event filter: [LuaPlayerRepairedEntityEventFilter](LuaPlayerRepairedEntityEventFilter]
|
2705
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2769
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_player_repaired_entity Online documentation}
|
2706
2770
|
*/
|
2707
2771
|
interface OnPlayerRepairedEntityEvent extends EventData {
|
2708
2772
|
readonly player_index: PlayerIndex
|
@@ -2718,7 +2782,7 @@ declare module "factorio:runtime" {
|
|
2718
2782
|
}
|
2719
2783
|
/**
|
2720
2784
|
* Called after a player respawns.
|
2721
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2785
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_player_respawned Online documentation}
|
2722
2786
|
*/
|
2723
2787
|
interface OnPlayerRespawnedEvent extends EventData {
|
2724
2788
|
readonly player_index: PlayerIndex
|
@@ -2737,7 +2801,7 @@ declare module "factorio:runtime" {
|
|
2737
2801
|
}
|
2738
2802
|
/**
|
2739
2803
|
* Called after a player reverse-selects an area with a selection-tool item.
|
2740
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2804
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_player_reverse_selected_area Online documentation}
|
2741
2805
|
*/
|
2742
2806
|
interface OnPlayerReverseSelectedAreaEvent extends EventData {
|
2743
2807
|
/**
|
@@ -2777,7 +2841,7 @@ declare module "factorio:runtime" {
|
|
2777
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.
|
2778
2842
|
*
|
2779
2843
|
* Entities being flipped will not fire this event, even if the flip involves rotating. See {@link OnPlayerFlippedEntityEvent on_player_flipped_entity}.
|
2780
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2844
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_player_rotated_entity Online documentation}
|
2781
2845
|
*/
|
2782
2846
|
interface OnPlayerRotatedEntityEvent extends EventData {
|
2783
2847
|
/**
|
@@ -2800,7 +2864,7 @@ declare module "factorio:runtime" {
|
|
2800
2864
|
}
|
2801
2865
|
/**
|
2802
2866
|
* Called after a player selects an area with a selection-tool item.
|
2803
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2867
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_player_selected_area Online documentation}
|
2804
2868
|
*/
|
2805
2869
|
interface OnPlayerSelectedAreaEvent extends EventData {
|
2806
2870
|
/**
|
@@ -2842,7 +2906,7 @@ declare module "factorio:runtime" {
|
|
2842
2906
|
}
|
2843
2907
|
/**
|
2844
2908
|
* Called when a player sets a quickbar slot to anything (new value, or set to empty).
|
2845
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2909
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_player_set_quick_bar_slot Online documentation}
|
2846
2910
|
*/
|
2847
2911
|
interface OnPlayerSetQuickBarSlotEvent extends EventData {
|
2848
2912
|
readonly player_index: PlayerIndex
|
@@ -2857,7 +2921,7 @@ declare module "factorio:runtime" {
|
|
2857
2921
|
}
|
2858
2922
|
/**
|
2859
2923
|
* Called when a player selects an area with a blueprint.
|
2860
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2924
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_player_setup_blueprint Online documentation}
|
2861
2925
|
*/
|
2862
2926
|
interface OnPlayerSetupBlueprintEvent extends EventData {
|
2863
2927
|
/**
|
@@ -2880,6 +2944,10 @@ declare module "factorio:runtime" {
|
|
2880
2944
|
* The item stack used to select the area.
|
2881
2945
|
*/
|
2882
2946
|
readonly stack?: LuaItemStack
|
2947
|
+
/**
|
2948
|
+
* The record that is being reassigned.
|
2949
|
+
*/
|
2950
|
+
readonly record?: LuaRecord
|
2883
2951
|
/**
|
2884
2952
|
* The item quality used to select the area.
|
2885
2953
|
*/
|
@@ -2903,7 +2971,7 @@ declare module "factorio:runtime" {
|
|
2903
2971
|
}
|
2904
2972
|
/**
|
2905
2973
|
* Called when a player toggles alt mode, also known as "show entity info".
|
2906
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2974
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_player_toggled_alt_mode Online documentation}
|
2907
2975
|
*/
|
2908
2976
|
interface OnPlayerToggledAltModeEvent extends EventData {
|
2909
2977
|
readonly player_index: PlayerIndex
|
@@ -2922,7 +2990,7 @@ declare module "factorio:runtime" {
|
|
2922
2990
|
}
|
2923
2991
|
/**
|
2924
2992
|
* Called when a player toggles the map editor on or off.
|
2925
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2993
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_player_toggled_map_editor Online documentation}
|
2926
2994
|
*/
|
2927
2995
|
interface OnPlayerToggledMapEditorEvent extends EventData {
|
2928
2996
|
readonly player_index: PlayerIndex
|
@@ -2937,7 +3005,7 @@ declare module "factorio:runtime" {
|
|
2937
3005
|
}
|
2938
3006
|
/**
|
2939
3007
|
* Called after a players trash inventory changed in some way.
|
2940
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3008
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_player_trash_inventory_changed Online documentation}
|
2941
3009
|
*/
|
2942
3010
|
interface OnPlayerTrashInventoryChangedEvent extends EventData {
|
2943
3011
|
readonly player_index: PlayerIndex
|
@@ -2952,7 +3020,7 @@ declare module "factorio:runtime" {
|
|
2952
3020
|
}
|
2953
3021
|
/**
|
2954
3022
|
* Called when a player is un-banned.
|
2955
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3023
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_player_unbanned Online documentation}
|
2956
3024
|
*/
|
2957
3025
|
interface OnPlayerUnbannedEvent extends EventData {
|
2958
3026
|
/**
|
@@ -2982,7 +3050,7 @@ declare module "factorio:runtime" {
|
|
2982
3050
|
}
|
2983
3051
|
/**
|
2984
3052
|
* Called when a player is unmuted.
|
2985
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3053
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_player_unmuted Online documentation}
|
2986
3054
|
*/
|
2987
3055
|
interface OnPlayerUnmutedEvent extends EventData {
|
2988
3056
|
/**
|
@@ -3000,7 +3068,7 @@ declare module "factorio:runtime" {
|
|
3000
3068
|
}
|
3001
3069
|
/**
|
3002
3070
|
* Called when a player uses a capsule that results in some game action.
|
3003
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3071
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_player_used_capsule Online documentation}
|
3004
3072
|
*/
|
3005
3073
|
interface OnPlayerUsedCapsuleEvent extends EventData {
|
3006
3074
|
/**
|
@@ -3030,7 +3098,7 @@ declare module "factorio:runtime" {
|
|
3030
3098
|
}
|
3031
3099
|
/**
|
3032
3100
|
* Called when a player uses spidertron remote to send all selected units to a given position
|
3033
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3101
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_player_used_spidertron_remote Online documentation}
|
3034
3102
|
*/
|
3035
3103
|
interface OnPlayerUsedSpidertronRemoteEvent extends EventData {
|
3036
3104
|
/**
|
@@ -3054,7 +3122,7 @@ declare module "factorio:runtime" {
|
|
3054
3122
|
* Called after an entity dies.
|
3055
3123
|
*
|
3056
3124
|
* Event filter: [LuaPostEntityDiedEventFilter](LuaPostEntityDiedEventFilter]
|
3057
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3125
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_post_entity_died Online documentation}
|
3058
3126
|
*/
|
3059
3127
|
interface OnPostEntityDiedEvent extends EventData {
|
3060
3128
|
/**
|
@@ -3104,7 +3172,7 @@ declare module "factorio:runtime" {
|
|
3104
3172
|
}
|
3105
3173
|
/**
|
3106
3174
|
* Called when players uses an item to build something. Called before {@link OnBuiltEntityEvent on_built_entity}.
|
3107
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3175
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_pre_build Online documentation}
|
3108
3176
|
*/
|
3109
3177
|
interface OnPreBuildEvent extends EventData {
|
3110
3178
|
/**
|
@@ -3150,7 +3218,7 @@ declare module "factorio:runtime" {
|
|
3150
3218
|
}
|
3151
3219
|
/**
|
3152
3220
|
* Called before one or more chunks are deleted using {@link LuaSurface#delete_chunk LuaSurface::delete_chunk}.
|
3153
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3221
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_pre_chunk_deleted Online documentation}
|
3154
3222
|
*/
|
3155
3223
|
interface OnPreChunkDeletedEvent extends EventData {
|
3156
3224
|
readonly surface_index: SurfaceIndex
|
@@ -3169,7 +3237,7 @@ declare module "factorio:runtime" {
|
|
3169
3237
|
}
|
3170
3238
|
/**
|
3171
3239
|
* Called before entity copy-paste is done.
|
3172
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3240
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_pre_entity_settings_pasted Online documentation}
|
3173
3241
|
*/
|
3174
3242
|
interface OnPreEntitySettingsPastedEvent extends EventData {
|
3175
3243
|
readonly player_index: PlayerIndex
|
@@ -3196,7 +3264,7 @@ declare module "factorio:runtime" {
|
|
3196
3264
|
* Also called for item request proxies before they are destroyed as a result of being marked for deconstruction.
|
3197
3265
|
*
|
3198
3266
|
* Event filter: [LuaPreGhostDeconstructedEventFilter](LuaPreGhostDeconstructedEventFilter]
|
3199
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3267
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_pre_ghost_deconstructed Online documentation}
|
3200
3268
|
*/
|
3201
3269
|
interface OnPreGhostDeconstructedEvent extends EventData {
|
3202
3270
|
/**
|
@@ -3217,7 +3285,7 @@ declare module "factorio:runtime" {
|
|
3217
3285
|
* Called before a ghost entity is upgraded.
|
3218
3286
|
*
|
3219
3287
|
* Event filter: [LuaPreGhostUpgradedEventFilter](LuaPreGhostUpgradedEventFilter]
|
3220
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3288
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_pre_ghost_upgraded Online documentation}
|
3221
3289
|
*/
|
3222
3290
|
interface OnPreGhostUpgradedEvent extends EventData {
|
3223
3291
|
/**
|
@@ -3238,7 +3306,7 @@ declare module "factorio:runtime" {
|
|
3238
3306
|
}
|
3239
3307
|
/**
|
3240
3308
|
* Called directly before a permission group is deleted.
|
3241
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3309
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_pre_permission_group_deleted Online documentation}
|
3242
3310
|
*/
|
3243
3311
|
interface OnPrePermissionGroupDeletedEvent extends EventData {
|
3244
3312
|
/**
|
@@ -3260,7 +3328,7 @@ declare module "factorio:runtime" {
|
|
3260
3328
|
}
|
3261
3329
|
/**
|
3262
3330
|
* Called directly before a permission string is imported.
|
3263
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3331
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_pre_permission_string_imported Online documentation}
|
3264
3332
|
*/
|
3265
3333
|
interface OnPrePermissionStringImportedEvent extends EventData {
|
3266
3334
|
/**
|
@@ -3278,7 +3346,7 @@ declare module "factorio:runtime" {
|
|
3278
3346
|
}
|
3279
3347
|
/**
|
3280
3348
|
* Called when a player queues something to be crafted.
|
3281
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3349
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_pre_player_crafted_item Online documentation}
|
3282
3350
|
*/
|
3283
3351
|
interface OnPrePlayerCraftedItemEvent extends EventData {
|
3284
3352
|
/**
|
@@ -3308,7 +3376,7 @@ declare module "factorio:runtime" {
|
|
3308
3376
|
}
|
3309
3377
|
/**
|
3310
3378
|
* Called before a players dies.
|
3311
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3379
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_pre_player_died Online documentation}
|
3312
3380
|
*/
|
3313
3381
|
interface OnPrePlayerDiedEvent extends EventData {
|
3314
3382
|
readonly player_index: PlayerIndex
|
@@ -3324,7 +3392,7 @@ declare module "factorio:runtime" {
|
|
3324
3392
|
}
|
3325
3393
|
/**
|
3326
3394
|
* Called before a player leaves the game.
|
3327
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3395
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_pre_player_left_game Online documentation}
|
3328
3396
|
*/
|
3329
3397
|
interface OnPrePlayerLeftGameEvent extends EventData {
|
3330
3398
|
readonly player_index: PlayerIndex
|
@@ -3342,7 +3410,7 @@ declare module "factorio:runtime" {
|
|
3342
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.
|
3343
3411
|
*
|
3344
3412
|
* Event filter: [LuaPrePlayerMinedEntityEventFilter](LuaPrePlayerMinedEntityEventFilter]
|
3345
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3413
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_pre_player_mined_item Online documentation}
|
3346
3414
|
*/
|
3347
3415
|
interface OnPrePlayerMinedItemEvent extends EventData {
|
3348
3416
|
/**
|
@@ -3361,7 +3429,7 @@ declare module "factorio:runtime" {
|
|
3361
3429
|
}
|
3362
3430
|
/**
|
3363
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.
|
3364
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3432
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_pre_player_removed Online documentation}
|
3365
3433
|
*/
|
3366
3434
|
interface OnPrePlayerRemovedEvent extends EventData {
|
3367
3435
|
/**
|
@@ -3379,7 +3447,7 @@ declare module "factorio:runtime" {
|
|
3379
3447
|
}
|
3380
3448
|
/**
|
3381
3449
|
* Called before a player toggles the map editor on or off.
|
3382
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3450
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_pre_player_toggled_map_editor Online documentation}
|
3383
3451
|
*/
|
3384
3452
|
interface OnPrePlayerToggledMapEditorEvent extends EventData {
|
3385
3453
|
readonly player_index: PlayerIndex
|
@@ -3394,7 +3462,7 @@ declare module "factorio:runtime" {
|
|
3394
3462
|
}
|
3395
3463
|
/**
|
3396
3464
|
* Called directly before a robot explodes cliffs.
|
3397
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3465
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_pre_robot_exploded_cliff Online documentation}
|
3398
3466
|
*/
|
3399
3467
|
interface OnPreRobotExplodedCliffEvent extends EventData {
|
3400
3468
|
readonly robot: LuaEntity
|
@@ -3418,7 +3486,7 @@ declare module "factorio:runtime" {
|
|
3418
3486
|
}
|
3419
3487
|
/**
|
3420
3488
|
* Called just before the scenario finishes.
|
3421
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3489
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_pre_scenario_finished Online documentation}
|
3422
3490
|
*/
|
3423
3491
|
interface OnPreScenarioFinishedEvent extends EventData {
|
3424
3492
|
/**
|
@@ -3436,7 +3504,7 @@ declare module "factorio:runtime" {
|
|
3436
3504
|
}
|
3437
3505
|
/**
|
3438
3506
|
* Called just before a script inventory is resized.
|
3439
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3507
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_pre_script_inventory_resized Online documentation}
|
3440
3508
|
*/
|
3441
3509
|
interface OnPreScriptInventoryResizedEvent extends EventData {
|
3442
3510
|
/**
|
@@ -3467,7 +3535,7 @@ declare module "factorio:runtime" {
|
|
3467
3535
|
}
|
3468
3536
|
/**
|
3469
3537
|
* Called just before a surface is cleared (all entities removed and all chunks deleted).
|
3470
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3538
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_pre_surface_cleared Online documentation}
|
3471
3539
|
*/
|
3472
3540
|
interface OnPreSurfaceClearedEvent extends EventData {
|
3473
3541
|
readonly surface_index: SurfaceIndex
|
@@ -3482,7 +3550,7 @@ declare module "factorio:runtime" {
|
|
3482
3550
|
}
|
3483
3551
|
/**
|
3484
3552
|
* Called just before a surface is deleted.
|
3485
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3553
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_pre_surface_deleted Online documentation}
|
3486
3554
|
*/
|
3487
3555
|
interface OnPreSurfaceDeletedEvent extends EventData {
|
3488
3556
|
readonly surface_index: SurfaceIndex
|
@@ -3497,7 +3565,7 @@ declare module "factorio:runtime" {
|
|
3497
3565
|
}
|
3498
3566
|
/**
|
3499
3567
|
* Called when the player triggers "redo".
|
3500
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3568
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_redo_applied Online documentation}
|
3501
3569
|
*/
|
3502
3570
|
interface OnRedoAppliedEvent extends EventData {
|
3503
3571
|
/**
|
@@ -3519,7 +3587,7 @@ declare module "factorio:runtime" {
|
|
3519
3587
|
}
|
3520
3588
|
/**
|
3521
3589
|
* Called when research is cancelled.
|
3522
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3590
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_research_cancelled Online documentation}
|
3523
3591
|
*/
|
3524
3592
|
interface OnResearchCancelledEvent extends EventData {
|
3525
3593
|
/**
|
@@ -3541,7 +3609,7 @@ declare module "factorio:runtime" {
|
|
3541
3609
|
}
|
3542
3610
|
/**
|
3543
3611
|
* Called when a research finishes.
|
3544
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3612
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_research_finished Online documentation}
|
3545
3613
|
*/
|
3546
3614
|
interface OnResearchFinishedEvent extends EventData {
|
3547
3615
|
/**
|
@@ -3563,7 +3631,7 @@ declare module "factorio:runtime" {
|
|
3563
3631
|
}
|
3564
3632
|
/**
|
3565
3633
|
* Called when research is moved forwards or backwards in the research queue.
|
3566
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3634
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_research_moved Online documentation}
|
3567
3635
|
*/
|
3568
3636
|
interface OnResearchMovedEvent extends EventData {
|
3569
3637
|
/**
|
@@ -3581,7 +3649,7 @@ declare module "factorio:runtime" {
|
|
3581
3649
|
}
|
3582
3650
|
/**
|
3583
3651
|
* Called when a research is reversed (unresearched).
|
3584
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3652
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_research_reversed Online documentation}
|
3585
3653
|
*/
|
3586
3654
|
interface OnResearchReversedEvent extends EventData {
|
3587
3655
|
/**
|
@@ -3603,7 +3671,7 @@ declare module "factorio:runtime" {
|
|
3603
3671
|
}
|
3604
3672
|
/**
|
3605
3673
|
* Called when a technology research starts.
|
3606
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3674
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_research_started Online documentation}
|
3607
3675
|
*/
|
3608
3676
|
interface OnResearchStartedEvent extends EventData {
|
3609
3677
|
/**
|
@@ -3622,7 +3690,7 @@ declare module "factorio:runtime" {
|
|
3622
3690
|
}
|
3623
3691
|
/**
|
3624
3692
|
* Called when a resource entity reaches 0 or its minimum yield for infinite resources.
|
3625
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3693
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_resource_depleted Online documentation}
|
3626
3694
|
*/
|
3627
3695
|
interface OnResourceDepletedEvent extends EventData {
|
3628
3696
|
readonly entity: LuaEntity
|
@@ -3639,7 +3707,7 @@ declare module "factorio:runtime" {
|
|
3639
3707
|
* Called when a construction robot builds an entity.
|
3640
3708
|
*
|
3641
3709
|
* Event filter: [LuaRobotBuiltEntityEventFilter](LuaRobotBuiltEntityEventFilter]
|
3642
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3710
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_robot_built_entity Online documentation}
|
3643
3711
|
*/
|
3644
3712
|
interface OnRobotBuiltEntityEvent extends EventData {
|
3645
3713
|
/**
|
@@ -3669,7 +3737,7 @@ declare module "factorio:runtime" {
|
|
3669
3737
|
}
|
3670
3738
|
/**
|
3671
3739
|
* Called after a robot builds tiles.
|
3672
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3740
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_robot_built_tile Online documentation}
|
3673
3741
|
*/
|
3674
3742
|
interface OnRobotBuiltTileEvent extends EventData {
|
3675
3743
|
/**
|
@@ -3711,7 +3779,7 @@ declare module "factorio:runtime" {
|
|
3711
3779
|
}
|
3712
3780
|
/**
|
3713
3781
|
* Called directly after a robot explodes cliffs.
|
3714
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3782
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_robot_exploded_cliff Online documentation}
|
3715
3783
|
*/
|
3716
3784
|
interface OnRobotExplodedCliffEvent extends EventData {
|
3717
3785
|
readonly robot: LuaEntity
|
@@ -3734,7 +3802,7 @@ declare module "factorio:runtime" {
|
|
3734
3802
|
}
|
3735
3803
|
/**
|
3736
3804
|
* Called when a robot mines an entity.
|
3737
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3805
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_robot_mined Online documentation}
|
3738
3806
|
*/
|
3739
3807
|
interface OnRobotMinedEvent extends EventData {
|
3740
3808
|
/**
|
@@ -3762,7 +3830,7 @@ declare module "factorio:runtime" {
|
|
3762
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.
|
3763
3831
|
*
|
3764
3832
|
* Event filter: [LuaRobotMinedEntityEventFilter](LuaRobotMinedEntityEventFilter]
|
3765
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3833
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_robot_mined_entity Online documentation}
|
3766
3834
|
*/
|
3767
3835
|
interface OnRobotMinedEntityEvent extends EventData {
|
3768
3836
|
/**
|
@@ -3788,7 +3856,7 @@ declare module "factorio:runtime" {
|
|
3788
3856
|
}
|
3789
3857
|
/**
|
3790
3858
|
* Called after a robot mines tiles.
|
3791
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3859
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_robot_mined_tile Online documentation}
|
3792
3860
|
*/
|
3793
3861
|
interface OnRobotMinedTileEvent extends EventData {
|
3794
3862
|
/**
|
@@ -3816,7 +3884,7 @@ declare module "factorio:runtime" {
|
|
3816
3884
|
* Called before a robot mines an entity.
|
3817
3885
|
*
|
3818
3886
|
* Event filter: [LuaPreRobotMinedEntityEventFilter](LuaPreRobotMinedEntityEventFilter]
|
3819
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3887
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_robot_pre_mined Online documentation}
|
3820
3888
|
*/
|
3821
3889
|
interface OnRobotPreMinedEvent extends EventData {
|
3822
3890
|
/**
|
@@ -3838,7 +3906,7 @@ declare module "factorio:runtime" {
|
|
3838
3906
|
}
|
3839
3907
|
/**
|
3840
3908
|
* Called when a rocket silo is ordered to be launched.
|
3841
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3909
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_rocket_launch_ordered Online documentation}
|
3842
3910
|
*/
|
3843
3911
|
interface OnRocketLaunchOrderedEvent extends EventData {
|
3844
3912
|
readonly rocket: LuaEntity
|
@@ -3858,7 +3926,7 @@ declare module "factorio:runtime" {
|
|
3858
3926
|
}
|
3859
3927
|
/**
|
3860
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)
|
3861
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3929
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_rocket_launched Online documentation}
|
3862
3930
|
*/
|
3863
3931
|
interface OnRocketLaunchedEvent extends EventData {
|
3864
3932
|
readonly rocket: LuaEntity
|
@@ -3874,7 +3942,7 @@ declare module "factorio:runtime" {
|
|
3874
3942
|
}
|
3875
3943
|
/**
|
3876
3944
|
* Called when a runtime mod setting is changed by a player.
|
3877
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3945
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_runtime_mod_setting_changed Online documentation}
|
3878
3946
|
*/
|
3879
3947
|
interface OnRuntimeModSettingChangedEvent extends EventData {
|
3880
3948
|
/**
|
@@ -3897,7 +3965,7 @@ declare module "factorio:runtime" {
|
|
3897
3965
|
}
|
3898
3966
|
/**
|
3899
3967
|
* Called just after a script inventory is resized.
|
3900
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3968
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_script_inventory_resized Online documentation}
|
3901
3969
|
*/
|
3902
3970
|
interface OnScriptInventoryResizedEvent extends EventData {
|
3903
3971
|
/**
|
@@ -3932,7 +4000,7 @@ declare module "factorio:runtime" {
|
|
3932
4000
|
}
|
3933
4001
|
/**
|
3934
4002
|
* Called when a {@link LuaSurface#request_path LuaSurface::request_path} call completes.
|
3935
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4003
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_script_path_request_finished Online documentation}
|
3936
4004
|
*/
|
3937
4005
|
interface OnScriptPathRequestFinishedEvent extends EventData {
|
3938
4006
|
/**
|
@@ -3958,7 +4026,7 @@ declare module "factorio:runtime" {
|
|
3958
4026
|
}
|
3959
4027
|
/**
|
3960
4028
|
* Called when a script trigger effect is triggered.
|
3961
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4029
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_script_trigger_effect Online documentation}
|
3962
4030
|
*/
|
3963
4031
|
interface OnScriptTriggerEffectEvent extends EventData {
|
3964
4032
|
/**
|
@@ -3990,7 +4058,7 @@ declare module "factorio:runtime" {
|
|
3990
4058
|
* Called when an entity of type `radar` finishes scanning a sector.
|
3991
4059
|
*
|
3992
4060
|
* Event filter: [LuaSectorScannedEventFilter](LuaSectorScannedEventFilter]
|
3993
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4061
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_sector_scanned Online documentation}
|
3994
4062
|
*/
|
3995
4063
|
interface OnSectorScannedEvent extends EventData {
|
3996
4064
|
/**
|
@@ -4016,7 +4084,7 @@ declare module "factorio:runtime" {
|
|
4016
4084
|
}
|
4017
4085
|
/**
|
4018
4086
|
* Called when an individual segment of a SegmentedUnit is created.
|
4019
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4087
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_segment_entity_created Online documentation}
|
4020
4088
|
*/
|
4021
4089
|
interface OnSegmentEntityCreatedEvent extends EventData {
|
4022
4090
|
readonly entity: LuaEntity
|
@@ -4031,7 +4099,7 @@ declare module "factorio:runtime" {
|
|
4031
4099
|
}
|
4032
4100
|
/**
|
4033
4101
|
* Called after the selected entity changes for a given player.
|
4034
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4102
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_selected_entity_changed Online documentation}
|
4035
4103
|
*/
|
4036
4104
|
interface OnSelectedEntityChangedEvent extends EventData {
|
4037
4105
|
/**
|
@@ -4051,11 +4119,25 @@ declare module "factorio:runtime" {
|
|
4051
4119
|
*/
|
4052
4120
|
readonly tick: uint
|
4053
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.35/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
|
+
}
|
4054
4136
|
/**
|
4055
4137
|
* Called when a space platform builds an entity.
|
4056
4138
|
*
|
4057
4139
|
* Event filter: [LuaPlatformBuiltEntityEventFilter](LuaPlatformBuiltEntityEventFilter]
|
4058
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4140
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_space_platform_built_entity Online documentation}
|
4059
4141
|
*/
|
4060
4142
|
interface OnSpacePlatformBuiltEntityEvent extends EventData {
|
4061
4143
|
/**
|
@@ -4085,7 +4167,7 @@ declare module "factorio:runtime" {
|
|
4085
4167
|
}
|
4086
4168
|
/**
|
4087
4169
|
* Called after a space platform builds tiles.
|
4088
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4170
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_space_platform_built_tile Online documentation}
|
4089
4171
|
*/
|
4090
4172
|
interface OnSpacePlatformBuiltTileEvent extends EventData {
|
4091
4173
|
/**
|
@@ -4127,7 +4209,7 @@ declare module "factorio:runtime" {
|
|
4127
4209
|
}
|
4128
4210
|
/**
|
4129
4211
|
* Called when a space platform changes state
|
4130
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4212
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_space_platform_changed_state Online documentation}
|
4131
4213
|
*/
|
4132
4214
|
interface OnSpacePlatformChangedStateEvent extends EventData {
|
4133
4215
|
readonly platform: LuaSpacePlatform
|
@@ -4149,7 +4231,7 @@ declare module "factorio:runtime" {
|
|
4149
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.
|
4150
4232
|
*
|
4151
4233
|
* Event filter: [LuaPlatformMinedEntityEventFilter](LuaPlatformMinedEntityEventFilter]
|
4152
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4234
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_space_platform_mined_entity Online documentation}
|
4153
4235
|
*/
|
4154
4236
|
interface OnSpacePlatformMinedEntityEvent extends EventData {
|
4155
4237
|
/**
|
@@ -4175,7 +4257,7 @@ declare module "factorio:runtime" {
|
|
4175
4257
|
}
|
4176
4258
|
/**
|
4177
4259
|
* Called when a platform mines an entity.
|
4178
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4260
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_space_platform_mined_item Online documentation}
|
4179
4261
|
*/
|
4180
4262
|
interface OnSpacePlatformMinedItemEvent extends EventData {
|
4181
4263
|
/**
|
@@ -4197,7 +4279,7 @@ declare module "factorio:runtime" {
|
|
4197
4279
|
}
|
4198
4280
|
/**
|
4199
4281
|
* Called after a platform mines tiles.
|
4200
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4282
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_space_platform_mined_tile Online documentation}
|
4201
4283
|
*/
|
4202
4284
|
interface OnSpacePlatformMinedTileEvent extends EventData {
|
4203
4285
|
/**
|
@@ -4225,7 +4307,7 @@ declare module "factorio:runtime" {
|
|
4225
4307
|
* Called before a platform mines an entity.
|
4226
4308
|
*
|
4227
4309
|
* Event filter: [LuaPrePlatformMinedEntityEventFilter](LuaPrePlatformMinedEntityEventFilter]
|
4228
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4310
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_space_platform_pre_mined Online documentation}
|
4229
4311
|
*/
|
4230
4312
|
interface OnSpacePlatformPreMinedEvent extends EventData {
|
4231
4313
|
/**
|
@@ -4247,7 +4329,7 @@ declare module "factorio:runtime" {
|
|
4247
4329
|
}
|
4248
4330
|
/**
|
4249
4331
|
* Called when a spider finishes moving to its autopilot position.
|
4250
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4332
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_spider_command_completed Online documentation}
|
4251
4333
|
*/
|
4252
4334
|
interface OnSpiderCommandCompletedEvent extends EventData {
|
4253
4335
|
/**
|
@@ -4265,7 +4347,7 @@ declare module "factorio:runtime" {
|
|
4265
4347
|
}
|
4266
4348
|
/**
|
4267
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.
|
4268
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4350
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_string_translated Online documentation}
|
4269
4351
|
*/
|
4270
4352
|
interface OnStringTranslatedEvent extends EventData {
|
4271
4353
|
/**
|
@@ -4299,7 +4381,7 @@ declare module "factorio:runtime" {
|
|
4299
4381
|
}
|
4300
4382
|
/**
|
4301
4383
|
* Called just after a surface is cleared (all entities removed and all chunks deleted).
|
4302
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4384
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_surface_cleared Online documentation}
|
4303
4385
|
*/
|
4304
4386
|
interface OnSurfaceClearedEvent extends EventData {
|
4305
4387
|
readonly surface_index: SurfaceIndex
|
@@ -4316,7 +4398,7 @@ declare module "factorio:runtime" {
|
|
4316
4398
|
* Called when a surface is created.
|
4317
4399
|
*
|
4318
4400
|
* This is not called when the default surface is created as it will always exist.
|
4319
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4401
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_surface_created Online documentation}
|
4320
4402
|
*/
|
4321
4403
|
interface OnSurfaceCreatedEvent extends EventData {
|
4322
4404
|
readonly surface_index: SurfaceIndex
|
@@ -4331,7 +4413,7 @@ declare module "factorio:runtime" {
|
|
4331
4413
|
}
|
4332
4414
|
/**
|
4333
4415
|
* Called after a surface is deleted.
|
4334
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4416
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_surface_deleted Online documentation}
|
4335
4417
|
*/
|
4336
4418
|
interface OnSurfaceDeletedEvent extends EventData {
|
4337
4419
|
readonly surface_index: SurfaceIndex
|
@@ -4346,7 +4428,7 @@ declare module "factorio:runtime" {
|
|
4346
4428
|
}
|
4347
4429
|
/**
|
4348
4430
|
* Called after a surface is imported via the map editor.
|
4349
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4431
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_surface_imported Online documentation}
|
4350
4432
|
*/
|
4351
4433
|
interface OnSurfaceImportedEvent extends EventData {
|
4352
4434
|
readonly surface_index: SurfaceIndex
|
@@ -4365,7 +4447,7 @@ declare module "factorio:runtime" {
|
|
4365
4447
|
}
|
4366
4448
|
/**
|
4367
4449
|
* Called when a surface is renamed.
|
4368
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4450
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_surface_renamed Online documentation}
|
4369
4451
|
*/
|
4370
4452
|
interface OnSurfaceRenamedEvent extends EventData {
|
4371
4453
|
readonly surface_index: SurfaceIndex
|
@@ -4382,7 +4464,7 @@ declare module "factorio:runtime" {
|
|
4382
4464
|
}
|
4383
4465
|
/**
|
4384
4466
|
* Called when {@link LuaForce#reset_technology_effects LuaForce::reset_technology_effects} is finished.
|
4385
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4467
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_technology_effects_reset Online documentation}
|
4386
4468
|
*/
|
4387
4469
|
interface OnTechnologyEffectsResetEvent extends EventData {
|
4388
4470
|
readonly force: LuaForce
|
@@ -4397,7 +4479,7 @@ declare module "factorio:runtime" {
|
|
4397
4479
|
}
|
4398
4480
|
/**
|
4399
4481
|
* It is fired once every tick. Since this event is fired every tick, its handler shouldn't include performance heavy code.
|
4400
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4482
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_tick Online documentation}
|
4401
4483
|
*/
|
4402
4484
|
interface OnTickEvent extends EventData {
|
4403
4485
|
/**
|
@@ -4411,7 +4493,7 @@ declare module "factorio:runtime" {
|
|
4411
4493
|
}
|
4412
4494
|
/**
|
4413
4495
|
* Called when a train changes state (started to stopped and vice versa)
|
4414
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4496
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_train_changed_state Online documentation}
|
4415
4497
|
*/
|
4416
4498
|
interface OnTrainChangedStateEvent extends EventData {
|
4417
4499
|
readonly train: LuaTrain
|
@@ -4427,7 +4509,7 @@ declare module "factorio:runtime" {
|
|
4427
4509
|
}
|
4428
4510
|
/**
|
4429
4511
|
* Called when a new train is created either through disconnecting/connecting an existing one or building a new one.
|
4430
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4512
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_train_created Online documentation}
|
4431
4513
|
*/
|
4432
4514
|
interface OnTrainCreatedEvent extends EventData {
|
4433
4515
|
readonly train: LuaTrain
|
@@ -4450,7 +4532,7 @@ declare module "factorio:runtime" {
|
|
4450
4532
|
}
|
4451
4533
|
/**
|
4452
4534
|
* Called when a trains schedule is changed either by the player or through script.
|
4453
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4535
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_train_schedule_changed Online documentation}
|
4454
4536
|
*/
|
4455
4537
|
interface OnTrainScheduleChangedEvent extends EventData {
|
4456
4538
|
readonly train: LuaTrain
|
@@ -4469,7 +4551,7 @@ declare module "factorio:runtime" {
|
|
4469
4551
|
}
|
4470
4552
|
/**
|
4471
4553
|
* Called when an entity with a trigger prototype (such as capsules) create an entity AND that trigger prototype defined `trigger_created_entity=true`.
|
4472
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4554
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_trigger_created_entity Online documentation}
|
4473
4555
|
*/
|
4474
4556
|
interface OnTriggerCreatedEntityEvent extends EventData {
|
4475
4557
|
readonly entity: LuaEntity
|
@@ -4485,7 +4567,7 @@ declare module "factorio:runtime" {
|
|
4485
4567
|
}
|
4486
4568
|
/**
|
4487
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`.
|
4488
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4570
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_trigger_fired_artillery Online documentation}
|
4489
4571
|
*/
|
4490
4572
|
interface OnTriggerFiredArtilleryEvent extends EventData {
|
4491
4573
|
readonly entity: LuaEntity
|
@@ -4501,7 +4583,7 @@ declare module "factorio:runtime" {
|
|
4501
4583
|
}
|
4502
4584
|
/**
|
4503
4585
|
* Called when the player triggers "undo".
|
4504
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4586
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_undo_applied Online documentation}
|
4505
4587
|
*/
|
4506
4588
|
interface OnUndoAppliedEvent extends EventData {
|
4507
4589
|
/**
|
@@ -4523,7 +4605,7 @@ declare module "factorio:runtime" {
|
|
4523
4605
|
}
|
4524
4606
|
/**
|
4525
4607
|
* Called when a unit is added to a unit group.
|
4526
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4608
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_unit_added_to_group Online documentation}
|
4527
4609
|
*/
|
4528
4610
|
interface OnUnitAddedToGroupEvent extends EventData {
|
4529
4611
|
readonly unit: LuaEntity
|
@@ -4539,7 +4621,7 @@ declare module "factorio:runtime" {
|
|
4539
4621
|
}
|
4540
4622
|
/**
|
4541
4623
|
* Called when a new unit group is created, before any members are added to it.
|
4542
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4624
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_unit_group_created Online documentation}
|
4543
4625
|
*/
|
4544
4626
|
interface OnUnitGroupCreatedEvent extends EventData {
|
4545
4627
|
readonly group: LuaCommandable
|
@@ -4554,7 +4636,7 @@ declare module "factorio:runtime" {
|
|
4554
4636
|
}
|
4555
4637
|
/**
|
4556
4638
|
* Called when a unit group finishes gathering and starts executing its command.
|
4557
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4639
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_unit_group_finished_gathering Online documentation}
|
4558
4640
|
*/
|
4559
4641
|
interface OnUnitGroupFinishedGatheringEvent extends EventData {
|
4560
4642
|
readonly group: LuaCommandable
|
@@ -4569,7 +4651,7 @@ declare module "factorio:runtime" {
|
|
4569
4651
|
}
|
4570
4652
|
/**
|
4571
4653
|
* Called when a unit is removed from a unit group.
|
4572
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4654
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_unit_removed_from_group Online documentation}
|
4573
4655
|
*/
|
4574
4656
|
interface OnUnitRemovedFromGroupEvent extends EventData {
|
4575
4657
|
readonly unit: LuaEntity
|
@@ -4585,7 +4667,7 @@ declare module "factorio:runtime" {
|
|
4585
4667
|
}
|
4586
4668
|
/**
|
4587
4669
|
* Called when a worker (construction or logistic) robot expires through a lack of energy.
|
4588
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4670
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#on_worker_robot_expired Online documentation}
|
4589
4671
|
*/
|
4590
4672
|
interface OnWorkerRobotExpiredEvent extends EventData {
|
4591
4673
|
readonly robot: LuaEntity
|
@@ -4602,7 +4684,7 @@ declare module "factorio:runtime" {
|
|
4602
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}.
|
4603
4685
|
*
|
4604
4686
|
* Event filter: [LuaScriptRaisedBuiltEventFilter](LuaScriptRaisedBuiltEventFilter]
|
4605
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4687
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#script_raised_built Online documentation}
|
4606
4688
|
*/
|
4607
4689
|
interface ScriptRaisedBuiltEvent extends EventData {
|
4608
4690
|
/**
|
@@ -4622,7 +4704,7 @@ declare module "factorio:runtime" {
|
|
4622
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}.
|
4623
4705
|
*
|
4624
4706
|
* Event filter: [LuaScriptRaisedDestroyEventFilter](LuaScriptRaisedDestroyEventFilter]
|
4625
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4707
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#script_raised_destroy Online documentation}
|
4626
4708
|
*/
|
4627
4709
|
interface ScriptRaisedDestroyEvent extends EventData {
|
4628
4710
|
/**
|
@@ -4642,7 +4724,7 @@ declare module "factorio:runtime" {
|
|
4642
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}.
|
4643
4725
|
*
|
4644
4726
|
* Event filter: [LuaScriptRaisedReviveEventFilter](LuaScriptRaisedReviveEventFilter]
|
4645
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4727
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#script_raised_revive Online documentation}
|
4646
4728
|
*/
|
4647
4729
|
interface ScriptRaisedReviveEvent extends EventData {
|
4648
4730
|
/**
|
@@ -4664,7 +4746,7 @@ declare module "factorio:runtime" {
|
|
4664
4746
|
}
|
4665
4747
|
/**
|
4666
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}.
|
4667
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4749
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#script_raised_set_tiles Online documentation}
|
4668
4750
|
*/
|
4669
4751
|
interface ScriptRaisedSetTilesEvent extends EventData {
|
4670
4752
|
/**
|
@@ -4688,7 +4770,7 @@ declare module "factorio:runtime" {
|
|
4688
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}.
|
4689
4771
|
*
|
4690
4772
|
* Event filter: [LuaScriptRaisedTeleportedEventFilter](LuaScriptRaisedTeleportedEventFilter]
|
4691
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4773
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/events.html#script_raised_teleported Online documentation}
|
4692
4774
|
*/
|
4693
4775
|
interface ScriptRaisedTeleportedEvent extends EventData {
|
4694
4776
|
/**
|