typed-factorio 3.15.0 → 3.17.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 +2190 -2098
- package/prototype/generated/types.d.ts +2176 -2154
- package/runtime/generated/classes.d.ts +3987 -3617
- package/runtime/generated/concepts.d.ts +381 -345
- package/runtime/generated/defines.d.ts +196 -186
- package/runtime/generated/events.d.ts +205 -205
- 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.41/events.html#CustomInputEvent Online documentation}
|
17
17
|
*/
|
18
18
|
interface CustomInputEvent extends EventData {
|
19
19
|
/**
|
@@ -51,7 +51,7 @@ declare module "factorio:runtime" {
|
|
51
51
|
}
|
52
52
|
/**
|
53
53
|
* Called when an achievement is gained.
|
54
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
54
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_achievement_gained Online documentation}
|
55
55
|
*/
|
56
56
|
interface OnAchievementGainedEvent extends EventData {
|
57
57
|
/**
|
@@ -70,7 +70,7 @@ declare module "factorio:runtime" {
|
|
70
70
|
}
|
71
71
|
/**
|
72
72
|
* Called when a unit/group completes a command.
|
73
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
73
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_ai_command_completed Online documentation}
|
74
74
|
*/
|
75
75
|
interface OnAiCommandCompletedEvent extends EventData {
|
76
76
|
/**
|
@@ -93,7 +93,7 @@ declare module "factorio:runtime" {
|
|
93
93
|
}
|
94
94
|
/**
|
95
95
|
* Called when an area of the map is cloned.
|
96
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
96
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_area_cloned Online documentation}
|
97
97
|
*/
|
98
98
|
interface OnAreaClonedEvent extends EventData {
|
99
99
|
readonly source_surface: LuaSurface
|
@@ -119,7 +119,7 @@ declare module "factorio:runtime" {
|
|
119
119
|
* Called when a biter migration builds a base.
|
120
120
|
*
|
121
121
|
* This will be called multiple times for each migration, once for every biter that is sacrificed to build part of the new base.
|
122
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
122
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_biter_base_built Online documentation}
|
123
123
|
*/
|
124
124
|
interface OnBiterBaseBuiltEvent extends EventData {
|
125
125
|
/**
|
@@ -137,7 +137,7 @@ declare module "factorio:runtime" {
|
|
137
137
|
}
|
138
138
|
/**
|
139
139
|
* Called when a set of positions on the map is cloned.
|
140
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
140
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_brush_cloned Online documentation}
|
141
141
|
*/
|
142
142
|
interface OnBrushClonedEvent extends EventData {
|
143
143
|
readonly source_offset: TilePosition
|
@@ -162,7 +162,7 @@ declare module "factorio:runtime" {
|
|
162
162
|
}
|
163
163
|
/**
|
164
164
|
* Called when a {@link defines.command.build_base} command reaches its destination, and before building starts.
|
165
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
165
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_build_base_arrived Online documentation}
|
166
166
|
*/
|
167
167
|
interface OnBuildBaseArrivedEvent extends EventData {
|
168
168
|
/**
|
@@ -186,7 +186,7 @@ declare module "factorio:runtime" {
|
|
186
186
|
* Called when player builds something.
|
187
187
|
*
|
188
188
|
* Event filter: [LuaPlayerBuiltEntityEventFilter](LuaPlayerBuiltEntityEventFilter]
|
189
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
189
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_built_entity Online documentation}
|
190
190
|
*/
|
191
191
|
interface OnBuiltEntityEvent extends EventData {
|
192
192
|
readonly entity: LuaEntity
|
@@ -209,7 +209,7 @@ declare module "factorio:runtime" {
|
|
209
209
|
* Called when the deconstruction of an entity is canceled.
|
210
210
|
*
|
211
211
|
* Event filter: [LuaEntityDeconstructionCancelledEventFilter](LuaEntityDeconstructionCancelledEventFilter]
|
212
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
212
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_cancelled_deconstruction Online documentation}
|
213
213
|
*/
|
214
214
|
interface OnCancelledDeconstructionEvent extends EventData {
|
215
215
|
readonly entity: LuaEntity
|
@@ -227,7 +227,7 @@ declare module "factorio:runtime" {
|
|
227
227
|
* Called when the upgrade of an entity is canceled.
|
228
228
|
*
|
229
229
|
* Event filter: [LuaUpgradeCancelledEventFilter](LuaUpgradeCancelledEventFilter]
|
230
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
230
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_cancelled_upgrade Online documentation}
|
231
231
|
*/
|
232
232
|
interface OnCancelledUpgradeEvent extends EventData {
|
233
233
|
readonly entity: LuaEntity
|
@@ -245,7 +245,7 @@ declare module "factorio:runtime" {
|
|
245
245
|
}
|
246
246
|
/**
|
247
247
|
* Called after a cargo pod has delivered its cargo.
|
248
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
248
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_cargo_pod_delivered_cargo Online documentation}
|
249
249
|
*/
|
250
250
|
interface OnCargoPodDeliveredCargoEvent extends EventData {
|
251
251
|
readonly cargo_pod: LuaEntity
|
@@ -264,7 +264,7 @@ declare module "factorio:runtime" {
|
|
264
264
|
}
|
265
265
|
/**
|
266
266
|
* Called when a cargo pod departs a surface.
|
267
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
267
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_cargo_pod_finished_ascending Online documentation}
|
268
268
|
*/
|
269
269
|
interface OnCargoPodFinishedAscendingEvent extends EventData {
|
270
270
|
readonly cargo_pod: LuaEntity
|
@@ -287,7 +287,7 @@ declare module "factorio:runtime" {
|
|
287
287
|
}
|
288
288
|
/**
|
289
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.
|
290
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_cargo_pod_finished_descending Online documentation}
|
291
291
|
*/
|
292
292
|
interface OnCargoPodFinishedDescendingEvent extends EventData {
|
293
293
|
readonly cargo_pod: LuaEntity
|
@@ -312,7 +312,7 @@ declare module "factorio:runtime" {
|
|
312
312
|
* Called when a character corpse expires due to timeout or all of the items being removed from it.
|
313
313
|
*
|
314
314
|
* this is not called if the corpse is mined. See {@link defines.events.on_pre_player_mined_item} to detect that.
|
315
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
315
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_character_corpse_expired Online documentation}
|
316
316
|
*/
|
317
317
|
interface OnCharacterCorpseExpiredEvent extends EventData {
|
318
318
|
/**
|
@@ -330,7 +330,7 @@ declare module "factorio:runtime" {
|
|
330
330
|
}
|
331
331
|
/**
|
332
332
|
* Called when a chart tag is created.
|
333
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
333
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_chart_tag_added Online documentation}
|
334
334
|
*/
|
335
335
|
interface OnChartTagAddedEvent extends EventData {
|
336
336
|
readonly tag: LuaCustomChartTag
|
@@ -347,7 +347,7 @@ declare module "factorio:runtime" {
|
|
347
347
|
}
|
348
348
|
/**
|
349
349
|
* Called when a chart tag is modified by a player.
|
350
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
350
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_chart_tag_modified Online documentation}
|
351
351
|
*/
|
352
352
|
interface OnChartTagModifiedEvent extends EventData {
|
353
353
|
readonly tag: LuaCustomChartTag
|
@@ -369,7 +369,7 @@ declare module "factorio:runtime" {
|
|
369
369
|
}
|
370
370
|
/**
|
371
371
|
* Called just before a chart tag is deleted.
|
372
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
372
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_chart_tag_removed Online documentation}
|
373
373
|
*/
|
374
374
|
interface OnChartTagRemovedEvent extends EventData {
|
375
375
|
readonly tag: LuaCustomChartTag
|
@@ -386,7 +386,7 @@ declare module "factorio:runtime" {
|
|
386
386
|
}
|
387
387
|
/**
|
388
388
|
* Called when a chunk is charted or re-charted.
|
389
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
389
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_chunk_charted Online documentation}
|
390
390
|
*/
|
391
391
|
interface OnChunkChartedEvent extends EventData {
|
392
392
|
readonly surface_index: SurfaceIndex
|
@@ -407,7 +407,7 @@ declare module "factorio:runtime" {
|
|
407
407
|
}
|
408
408
|
/**
|
409
409
|
* Called when one or more chunks are deleted using {@link LuaSurface#delete_chunk LuaSurface::delete_chunk}.
|
410
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
410
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_chunk_deleted Online documentation}
|
411
411
|
*/
|
412
412
|
interface OnChunkDeletedEvent extends EventData {
|
413
413
|
readonly surface_index: SurfaceIndex
|
@@ -426,7 +426,7 @@ declare module "factorio:runtime" {
|
|
426
426
|
}
|
427
427
|
/**
|
428
428
|
* Called when a chunk is generated.
|
429
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
429
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_chunk_generated Online documentation}
|
430
430
|
*/
|
431
431
|
interface OnChunkGeneratedEvent extends EventData {
|
432
432
|
/**
|
@@ -452,7 +452,7 @@ declare module "factorio:runtime" {
|
|
452
452
|
}
|
453
453
|
/**
|
454
454
|
* Called when a combat robot expires through a lack of energy, or timeout.
|
455
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
455
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_combat_robot_expired Online documentation}
|
456
456
|
*/
|
457
457
|
interface OnCombatRobotExpiredEvent extends EventData {
|
458
458
|
readonly robot: LuaEntity
|
@@ -473,7 +473,7 @@ declare module "factorio:runtime" {
|
|
473
473
|
* Called when a message is sent to the in-game console, either by a player or through the server interface.
|
474
474
|
*
|
475
475
|
* This event only fires for plain messages, not for any commands (including `/shout` or `/whisper`).
|
476
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
476
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_console_chat Online documentation}
|
477
477
|
*/
|
478
478
|
interface OnConsoleChatEvent extends EventData {
|
479
479
|
/**
|
@@ -495,7 +495,7 @@ declare module "factorio:runtime" {
|
|
495
495
|
}
|
496
496
|
/**
|
497
497
|
* Called when someone enters a command-like message regardless of it being a valid command.
|
498
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
498
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_console_command Online documentation}
|
499
499
|
*/
|
500
500
|
interface OnConsoleCommandEvent extends EventData {
|
501
501
|
/**
|
@@ -521,7 +521,7 @@ declare module "factorio:runtime" {
|
|
521
521
|
}
|
522
522
|
/**
|
523
523
|
* Called when a cutscene is cancelled by the player or by script.
|
524
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
524
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_cutscene_cancelled Online documentation}
|
525
525
|
*/
|
526
526
|
interface OnCutsceneCancelledEvent extends EventData {
|
527
527
|
/**
|
@@ -539,7 +539,7 @@ declare module "factorio:runtime" {
|
|
539
539
|
}
|
540
540
|
/**
|
541
541
|
* Called when a cutscene finishes naturally (was not cancelled).
|
542
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
542
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_cutscene_finished Online documentation}
|
543
543
|
*/
|
544
544
|
interface OnCutsceneFinishedEvent extends EventData {
|
545
545
|
/**
|
@@ -557,7 +557,7 @@ declare module "factorio:runtime" {
|
|
557
557
|
}
|
558
558
|
/**
|
559
559
|
* Called when a cutscene starts.
|
560
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
560
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_cutscene_started Online documentation}
|
561
561
|
*/
|
562
562
|
interface OnCutsceneStartedEvent extends EventData {
|
563
563
|
/**
|
@@ -577,7 +577,7 @@ declare module "factorio:runtime" {
|
|
577
577
|
* Called when a cutscene is playing, each time it reaches a waypoint in that cutscene.
|
578
578
|
*
|
579
579
|
* This refers to an index in the table previously passed to set_controller which started the cutscene.
|
580
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
580
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_cutscene_waypoint_reached Online documentation}
|
581
581
|
*/
|
582
582
|
interface OnCutsceneWaypointReachedEvent extends EventData {
|
583
583
|
/**
|
@@ -601,7 +601,7 @@ declare module "factorio:runtime" {
|
|
601
601
|
* Called when an entity is cloned. The filter applies to the source entity.
|
602
602
|
*
|
603
603
|
* Event filter: [LuaEntityClonedEventFilter](LuaEntityClonedEventFilter]
|
604
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
604
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_entity_cloned Online documentation}
|
605
605
|
*/
|
606
606
|
interface OnEntityClonedEvent extends EventData {
|
607
607
|
readonly source: LuaEntity
|
@@ -619,7 +619,7 @@ declare module "factorio:runtime" {
|
|
619
619
|
* Called after an entity has been recolored either by the player or through script.
|
620
620
|
*
|
621
621
|
* Automatic recoloring due to {@link LuaPlayer#color LuaPlayer::color} will not raise events, as that is a separate mechanism.
|
622
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
622
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_entity_color_changed Online documentation}
|
623
623
|
*/
|
624
624
|
interface OnEntityColorChangedEvent extends EventData {
|
625
625
|
/**
|
@@ -639,7 +639,7 @@ declare module "factorio:runtime" {
|
|
639
639
|
* Called when an entity is damaged. This is not called when an entities health is set directly by another mod.
|
640
640
|
*
|
641
641
|
* Event filter: [LuaEntityDamagedEventFilter](LuaEntityDamagedEventFilter]
|
642
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
642
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_entity_damaged Online documentation}
|
643
643
|
*/
|
644
644
|
interface OnEntityDamagedEvent extends EventData {
|
645
645
|
readonly entity: LuaEntity
|
@@ -681,7 +681,7 @@ declare module "factorio:runtime" {
|
|
681
681
|
* Called when an entity dies.
|
682
682
|
*
|
683
683
|
* Event filter: [LuaEntityDiedEventFilter](LuaEntityDiedEventFilter]
|
684
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
684
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_entity_died Online documentation}
|
685
685
|
*/
|
686
686
|
interface OnEntityDiedEvent extends EventData {
|
687
687
|
/**
|
@@ -715,7 +715,7 @@ declare module "factorio:runtime" {
|
|
715
715
|
}
|
716
716
|
/**
|
717
717
|
* Called when one of an entity's logistic slots changes.
|
718
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
718
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_entity_logistic_slot_changed Online documentation}
|
719
719
|
*/
|
720
720
|
interface OnEntityLogisticSlotChangedEvent extends EventData {
|
721
721
|
/**
|
@@ -745,7 +745,7 @@ declare module "factorio:runtime" {
|
|
745
745
|
}
|
746
746
|
/**
|
747
747
|
* Called after an entity has been renamed either by the player or through script.
|
748
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
748
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_entity_renamed Online documentation}
|
749
749
|
*/
|
750
750
|
interface OnEntityRenamedEvent extends EventData {
|
751
751
|
/**
|
@@ -766,7 +766,7 @@ declare module "factorio:runtime" {
|
|
766
766
|
}
|
767
767
|
/**
|
768
768
|
* Called after entity copy-paste is done.
|
769
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
769
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_entity_settings_pasted Online documentation}
|
770
770
|
*/
|
771
771
|
interface OnEntitySettingsPastedEvent extends EventData {
|
772
772
|
readonly player_index: PlayerIndex
|
@@ -789,7 +789,7 @@ declare module "factorio:runtime" {
|
|
789
789
|
}
|
790
790
|
/**
|
791
791
|
* Called when an entity is spawned by a EnemySpawner
|
792
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
792
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_entity_spawned Online documentation}
|
793
793
|
*/
|
794
794
|
interface OnEntitySpawnedEvent extends EventData {
|
795
795
|
readonly spawner: LuaEntity
|
@@ -805,7 +805,7 @@ declare module "factorio:runtime" {
|
|
805
805
|
}
|
806
806
|
/**
|
807
807
|
* Called after equipment is inserted into an equipment grid.
|
808
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
808
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_equipment_inserted Online documentation}
|
809
809
|
*/
|
810
810
|
interface OnEquipmentInsertedEvent extends EventData {
|
811
811
|
/**
|
@@ -827,7 +827,7 @@ declare module "factorio:runtime" {
|
|
827
827
|
}
|
828
828
|
/**
|
829
829
|
* Called after equipment is removed from an equipment grid.
|
830
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
830
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_equipment_removed Online documentation}
|
831
831
|
*/
|
832
832
|
interface OnEquipmentRemovedEvent extends EventData {
|
833
833
|
/**
|
@@ -857,7 +857,7 @@ declare module "factorio:runtime" {
|
|
857
857
|
}
|
858
858
|
/**
|
859
859
|
* Called when the a forces cease fire values change.
|
860
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
860
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_force_cease_fire_changed Online documentation}
|
861
861
|
*/
|
862
862
|
interface OnForceCeaseFireChangedEvent extends EventData {
|
863
863
|
/**
|
@@ -885,7 +885,7 @@ declare module "factorio:runtime" {
|
|
885
885
|
* Called when a new force is created using `game.create_force()`
|
886
886
|
*
|
887
887
|
* This is not called when the default forces (`'player'`, `'enemy'`, `'neutral'`) are created as they will always exist.
|
888
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
888
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_force_created Online documentation}
|
889
889
|
*/
|
890
890
|
interface OnForceCreatedEvent extends EventData {
|
891
891
|
/**
|
@@ -903,7 +903,7 @@ declare module "factorio:runtime" {
|
|
903
903
|
}
|
904
904
|
/**
|
905
905
|
* Called when the a forces friends change.
|
906
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
906
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_force_friends_changed Online documentation}
|
907
907
|
*/
|
908
908
|
interface OnForceFriendsChangedEvent extends EventData {
|
909
909
|
/**
|
@@ -929,7 +929,7 @@ declare module "factorio:runtime" {
|
|
929
929
|
}
|
930
930
|
/**
|
931
931
|
* Called when {@link LuaForce#reset LuaForce::reset} is finished.
|
932
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
932
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_force_reset Online documentation}
|
933
933
|
*/
|
934
934
|
interface OnForceResetEvent extends EventData {
|
935
935
|
readonly force: LuaForce
|
@@ -946,7 +946,7 @@ declare module "factorio:runtime" {
|
|
946
946
|
* Called after two forces have been merged using `game.merge_forces()`.
|
947
947
|
*
|
948
948
|
* The source force is invalidated before this event is called and the name can be re-used in this event if desired.
|
949
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
949
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_forces_merged Online documentation}
|
950
950
|
*/
|
951
951
|
interface OnForcesMergedEvent extends EventData {
|
952
952
|
/**
|
@@ -972,7 +972,7 @@ declare module "factorio:runtime" {
|
|
972
972
|
}
|
973
973
|
/**
|
974
974
|
* Called when two forces are about to be merged using `game.merge_forces()`.
|
975
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
975
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_forces_merging Online documentation}
|
976
976
|
*/
|
977
977
|
interface OnForcesMergingEvent extends EventData {
|
978
978
|
/**
|
@@ -996,7 +996,7 @@ declare module "factorio:runtime" {
|
|
996
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.
|
997
997
|
*
|
998
998
|
* This event is not fired when the scenario is loaded via the map editor.
|
999
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
999
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_game_created_from_scenario Online documentation}
|
1000
1000
|
*/
|
1001
1001
|
interface OnGameCreatedFromScenarioEvent extends EventData {
|
1002
1002
|
/**
|
@@ -1010,7 +1010,7 @@ declare module "factorio:runtime" {
|
|
1010
1010
|
}
|
1011
1011
|
/**
|
1012
1012
|
* Called when {@link LuaGuiElement} checked state is changed (related to checkboxes and radio buttons).
|
1013
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1013
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_gui_checked_state_changed Online documentation}
|
1014
1014
|
*/
|
1015
1015
|
interface OnGuiCheckedStateChangedEvent extends EventData {
|
1016
1016
|
/**
|
@@ -1032,7 +1032,7 @@ declare module "factorio:runtime" {
|
|
1032
1032
|
}
|
1033
1033
|
/**
|
1034
1034
|
* Called when {@link LuaGuiElement} is clicked.
|
1035
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1035
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_gui_click Online documentation}
|
1036
1036
|
*/
|
1037
1037
|
interface OnGuiClickEvent extends EventData {
|
1038
1038
|
/**
|
@@ -1078,7 +1078,7 @@ declare module "factorio:runtime" {
|
|
1078
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.
|
1079
1079
|
*
|
1080
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.
|
1081
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1081
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_gui_closed Online documentation}
|
1082
1082
|
*/
|
1083
1083
|
interface OnGuiClosedEvent extends EventData {
|
1084
1084
|
/**
|
@@ -1132,7 +1132,7 @@ declare module "factorio:runtime" {
|
|
1132
1132
|
}
|
1133
1133
|
/**
|
1134
1134
|
* Called when a {@link LuaGuiElement} is confirmed, for example by pressing Enter in a textfield.
|
1135
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1135
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_gui_confirmed Online documentation}
|
1136
1136
|
*/
|
1137
1137
|
interface OnGuiConfirmedEvent extends EventData {
|
1138
1138
|
/**
|
@@ -1166,7 +1166,7 @@ declare module "factorio:runtime" {
|
|
1166
1166
|
}
|
1167
1167
|
/**
|
1168
1168
|
* Called when {@link LuaGuiElement} element value is changed (related to choose element buttons).
|
1169
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1169
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_gui_elem_changed Online documentation}
|
1170
1170
|
*/
|
1171
1171
|
interface OnGuiElemChangedEvent extends EventData {
|
1172
1172
|
/**
|
@@ -1190,7 +1190,7 @@ declare module "factorio:runtime" {
|
|
1190
1190
|
* Called when {@link LuaGuiElement} is hovered by the mouse.
|
1191
1191
|
*
|
1192
1192
|
* Only fired for events whose {@link LuaGuiElement#raise_hover_events LuaGuiElement::raise_hover_events} is `true`.
|
1193
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1193
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_gui_hover Online documentation}
|
1194
1194
|
*/
|
1195
1195
|
interface OnGuiHoverEvent extends EventData {
|
1196
1196
|
/**
|
@@ -1214,7 +1214,7 @@ declare module "factorio:runtime" {
|
|
1214
1214
|
* Called when the player's cursor leaves a {@link LuaGuiElement} that was previously hovered.
|
1215
1215
|
*
|
1216
1216
|
* Only fired for events whose {@link LuaGuiElement#raise_hover_events LuaGuiElement::raise_hover_events} is `true`.
|
1217
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1217
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_gui_leave Online documentation}
|
1218
1218
|
*/
|
1219
1219
|
interface OnGuiLeaveEvent extends EventData {
|
1220
1220
|
/**
|
@@ -1236,7 +1236,7 @@ declare module "factorio:runtime" {
|
|
1236
1236
|
}
|
1237
1237
|
/**
|
1238
1238
|
* Called when {@link LuaGuiElement} element location is changed (related to frames in `player.gui.screen`).
|
1239
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1239
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_gui_location_changed Online documentation}
|
1240
1240
|
*/
|
1241
1241
|
interface OnGuiLocationChangedEvent extends EventData {
|
1242
1242
|
/**
|
@@ -1258,7 +1258,7 @@ declare module "factorio:runtime" {
|
|
1258
1258
|
}
|
1259
1259
|
/**
|
1260
1260
|
* Called when the player opens a GUI.
|
1261
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1261
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_gui_opened Online documentation}
|
1262
1262
|
*/
|
1263
1263
|
interface OnGuiOpenedEvent extends EventData {
|
1264
1264
|
/**
|
@@ -1304,7 +1304,7 @@ declare module "factorio:runtime" {
|
|
1304
1304
|
}
|
1305
1305
|
/**
|
1306
1306
|
* Called when {@link LuaGuiElement} selected tab is changed (related to tabbed-panes).
|
1307
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1307
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_gui_selected_tab_changed Online documentation}
|
1308
1308
|
*/
|
1309
1309
|
interface OnGuiSelectedTabChangedEvent extends EventData {
|
1310
1310
|
/**
|
@@ -1326,7 +1326,7 @@ declare module "factorio:runtime" {
|
|
1326
1326
|
}
|
1327
1327
|
/**
|
1328
1328
|
* Called when {@link LuaGuiElement} selection state is changed (related to drop-downs and listboxes).
|
1329
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1329
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_gui_selection_state_changed Online documentation}
|
1330
1330
|
*/
|
1331
1331
|
interface OnGuiSelectionStateChangedEvent extends EventData {
|
1332
1332
|
/**
|
@@ -1348,7 +1348,7 @@ declare module "factorio:runtime" {
|
|
1348
1348
|
}
|
1349
1349
|
/**
|
1350
1350
|
* Called when {@link LuaGuiElement} switch state is changed (related to switches).
|
1351
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1351
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_gui_switch_state_changed Online documentation}
|
1352
1352
|
*/
|
1353
1353
|
interface OnGuiSwitchStateChangedEvent extends EventData {
|
1354
1354
|
/**
|
@@ -1370,7 +1370,7 @@ declare module "factorio:runtime" {
|
|
1370
1370
|
}
|
1371
1371
|
/**
|
1372
1372
|
* Called when {@link LuaGuiElement} text is changed by the player.
|
1373
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1373
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_gui_text_changed Online documentation}
|
1374
1374
|
*/
|
1375
1375
|
interface OnGuiTextChangedEvent extends EventData {
|
1376
1376
|
/**
|
@@ -1396,7 +1396,7 @@ declare module "factorio:runtime" {
|
|
1396
1396
|
}
|
1397
1397
|
/**
|
1398
1398
|
* Called when {@link LuaGuiElement} slider value is changed (related to the slider element).
|
1399
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1399
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_gui_value_changed Online documentation}
|
1400
1400
|
*/
|
1401
1401
|
interface OnGuiValueChangedEvent extends EventData {
|
1402
1402
|
/**
|
@@ -1418,7 +1418,7 @@ declare module "factorio:runtime" {
|
|
1418
1418
|
}
|
1419
1419
|
/**
|
1420
1420
|
* Called when a land mine is armed.
|
1421
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1421
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_land_mine_armed Online documentation}
|
1422
1422
|
*/
|
1423
1423
|
interface OnLandMineArmedEvent extends EventData {
|
1424
1424
|
readonly mine: LuaEntity
|
@@ -1433,7 +1433,7 @@ declare module "factorio:runtime" {
|
|
1433
1433
|
}
|
1434
1434
|
/**
|
1435
1435
|
* Called when a custom {@link import("factorio:prototype").ShortcutPrototype Lua shortcut} is pressed.
|
1436
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1436
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_lua_shortcut Online documentation}
|
1437
1437
|
*/
|
1438
1438
|
interface OnLuaShortcutEvent extends EventData {
|
1439
1439
|
readonly player_index: PlayerIndex
|
@@ -1454,7 +1454,7 @@ declare module "factorio:runtime" {
|
|
1454
1454
|
* Called when an entity is marked for deconstruction with the Deconstruction planner or via script.
|
1455
1455
|
*
|
1456
1456
|
* Event filter: [LuaEntityMarkedForDeconstructionEventFilter](LuaEntityMarkedForDeconstructionEventFilter]
|
1457
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1457
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_marked_for_deconstruction Online documentation}
|
1458
1458
|
*/
|
1459
1459
|
interface OnMarkedForDeconstructionEvent extends EventData {
|
1460
1460
|
readonly entity: LuaEntity
|
@@ -1472,7 +1472,7 @@ declare module "factorio:runtime" {
|
|
1472
1472
|
* Called when an entity is marked for upgrade with the Upgrade planner or via script.
|
1473
1473
|
*
|
1474
1474
|
* Event filter: [LuaEntityMarkedForUpgradeEventFilter](LuaEntityMarkedForUpgradeEventFilter]
|
1475
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1475
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_marked_for_upgrade Online documentation}
|
1476
1476
|
*/
|
1477
1477
|
interface OnMarkedForUpgradeEvent extends EventData {
|
1478
1478
|
readonly player_index?: PlayerIndex
|
@@ -1490,7 +1490,7 @@ declare module "factorio:runtime" {
|
|
1490
1490
|
}
|
1491
1491
|
/**
|
1492
1492
|
* Called after a player purchases some offer from a `market` entity.
|
1493
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1493
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_market_item_purchased Online documentation}
|
1494
1494
|
*/
|
1495
1495
|
interface OnMarketItemPurchasedEvent extends EventData {
|
1496
1496
|
/**
|
@@ -1520,7 +1520,7 @@ declare module "factorio:runtime" {
|
|
1520
1520
|
}
|
1521
1521
|
/**
|
1522
1522
|
* Called when the player uses the 'Open item GUI' control on an item defined with the 'mod-openable' flag
|
1523
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1523
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_mod_item_opened Online documentation}
|
1524
1524
|
*/
|
1525
1525
|
interface OnModItemOpenedEvent extends EventData {
|
1526
1526
|
/**
|
@@ -1546,7 +1546,7 @@ declare module "factorio:runtime" {
|
|
1546
1546
|
}
|
1547
1547
|
/**
|
1548
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.
|
1549
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_multiplayer_init Online documentation}
|
1550
1550
|
*/
|
1551
1551
|
interface OnMultiplayerInitEvent extends EventData {
|
1552
1552
|
/**
|
@@ -1562,7 +1562,7 @@ declare module "factorio:runtime" {
|
|
1562
1562
|
* Called after an object is destroyed which was registered with {@link LuaBootstrap#register_on_object_destroyed LuaBootstrap::register_on_object_destroyed} previously.
|
1563
1563
|
*
|
1564
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.
|
1565
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1565
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_object_destroyed Online documentation}
|
1566
1566
|
*/
|
1567
1567
|
interface OnObjectDestroyedEvent extends EventData {
|
1568
1568
|
/**
|
@@ -1588,7 +1588,7 @@ declare module "factorio:runtime" {
|
|
1588
1588
|
}
|
1589
1589
|
/**
|
1590
1590
|
* Called directly after a permission group is added.
|
1591
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1591
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_permission_group_added Online documentation}
|
1592
1592
|
*/
|
1593
1593
|
interface OnPermissionGroupAddedEvent extends EventData {
|
1594
1594
|
/**
|
@@ -1610,7 +1610,7 @@ declare module "factorio:runtime" {
|
|
1610
1610
|
}
|
1611
1611
|
/**
|
1612
1612
|
* Called directly after a permission group is deleted.
|
1613
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1613
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_permission_group_deleted Online documentation}
|
1614
1614
|
*/
|
1615
1615
|
interface OnPermissionGroupDeletedEvent extends EventData {
|
1616
1616
|
/**
|
@@ -1636,7 +1636,7 @@ declare module "factorio:runtime" {
|
|
1636
1636
|
}
|
1637
1637
|
/**
|
1638
1638
|
* Called directly after a permission group is edited in some way.
|
1639
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1639
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_permission_group_edited Online documentation}
|
1640
1640
|
*/
|
1641
1641
|
interface OnPermissionGroupEditedEvent extends EventData {
|
1642
1642
|
/**
|
@@ -1685,7 +1685,7 @@ declare module "factorio:runtime" {
|
|
1685
1685
|
}
|
1686
1686
|
/**
|
1687
1687
|
* Called directly after a permission string is imported.
|
1688
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1688
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_permission_string_imported Online documentation}
|
1689
1689
|
*/
|
1690
1690
|
interface OnPermissionStringImportedEvent extends EventData {
|
1691
1691
|
/**
|
@@ -1703,7 +1703,7 @@ declare module "factorio:runtime" {
|
|
1703
1703
|
}
|
1704
1704
|
/**
|
1705
1705
|
* Called when a player picks up an item.
|
1706
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1706
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_picked_up_item Online documentation}
|
1707
1707
|
*/
|
1708
1708
|
interface OnPickedUpItemEvent extends EventData {
|
1709
1709
|
readonly item_stack: SimpleItemStack
|
@@ -1719,7 +1719,7 @@ declare module "factorio:runtime" {
|
|
1719
1719
|
}
|
1720
1720
|
/**
|
1721
1721
|
* Called after a player alt-reverse-selects an area with a selection-tool item.
|
1722
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1722
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_alt_reverse_selected_area Online documentation}
|
1723
1723
|
*/
|
1724
1724
|
interface OnPlayerAltReverseSelectedAreaEvent extends EventData {
|
1725
1725
|
/**
|
@@ -1757,7 +1757,7 @@ declare module "factorio:runtime" {
|
|
1757
1757
|
}
|
1758
1758
|
/**
|
1759
1759
|
* Called after a player alt-selects an area with a selection-tool item.
|
1760
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1760
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_alt_selected_area Online documentation}
|
1761
1761
|
*/
|
1762
1762
|
interface OnPlayerAltSelectedAreaEvent extends EventData {
|
1763
1763
|
/**
|
@@ -1799,7 +1799,7 @@ declare module "factorio:runtime" {
|
|
1799
1799
|
}
|
1800
1800
|
/**
|
1801
1801
|
* Called after a players ammo inventory changed in some way.
|
1802
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1802
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_ammo_inventory_changed Online documentation}
|
1803
1803
|
*/
|
1804
1804
|
interface OnPlayerAmmoInventoryChangedEvent extends EventData {
|
1805
1805
|
readonly player_index: PlayerIndex
|
@@ -1814,7 +1814,7 @@ declare module "factorio:runtime" {
|
|
1814
1814
|
}
|
1815
1815
|
/**
|
1816
1816
|
* Called after a players armor inventory changed in some way.
|
1817
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1817
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_armor_inventory_changed Online documentation}
|
1818
1818
|
*/
|
1819
1819
|
interface OnPlayerArmorInventoryChangedEvent extends EventData {
|
1820
1820
|
readonly player_index: PlayerIndex
|
@@ -1829,7 +1829,7 @@ declare module "factorio:runtime" {
|
|
1829
1829
|
}
|
1830
1830
|
/**
|
1831
1831
|
* Called when a player is banned.
|
1832
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1832
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_banned Online documentation}
|
1833
1833
|
*/
|
1834
1834
|
interface OnPlayerBannedEvent extends EventData {
|
1835
1835
|
/**
|
@@ -1859,7 +1859,7 @@ declare module "factorio:runtime" {
|
|
1859
1859
|
}
|
1860
1860
|
/**
|
1861
1861
|
* Called after a player builds tiles.
|
1862
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1862
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_built_tile Online documentation}
|
1863
1863
|
*/
|
1864
1864
|
interface OnPlayerBuiltTileEvent extends EventData {
|
1865
1865
|
readonly player_index: PlayerIndex
|
@@ -1898,7 +1898,7 @@ declare module "factorio:runtime" {
|
|
1898
1898
|
}
|
1899
1899
|
/**
|
1900
1900
|
* Called when a player cancels crafting.
|
1901
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1901
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_cancelled_crafting Online documentation}
|
1902
1902
|
*/
|
1903
1903
|
interface OnPlayerCancelledCraftingEvent extends EventData {
|
1904
1904
|
/**
|
@@ -1928,7 +1928,7 @@ declare module "factorio:runtime" {
|
|
1928
1928
|
}
|
1929
1929
|
/**
|
1930
1930
|
* Called after a player changes forces.
|
1931
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1931
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_changed_force Online documentation}
|
1932
1932
|
*/
|
1933
1933
|
interface OnPlayerChangedForceEvent extends EventData {
|
1934
1934
|
/**
|
@@ -1950,7 +1950,7 @@ declare module "factorio:runtime" {
|
|
1950
1950
|
}
|
1951
1951
|
/**
|
1952
1952
|
* Called when the tile position a player is located at changes.
|
1953
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1953
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_changed_position Online documentation}
|
1954
1954
|
*/
|
1955
1955
|
interface OnPlayerChangedPositionEvent extends EventData {
|
1956
1956
|
/**
|
@@ -1968,7 +1968,7 @@ declare module "factorio:runtime" {
|
|
1968
1968
|
}
|
1969
1969
|
/**
|
1970
1970
|
* Called after a player changes surfaces.
|
1971
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1971
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_changed_surface Online documentation}
|
1972
1972
|
*/
|
1973
1973
|
interface OnPlayerChangedSurfaceEvent extends EventData {
|
1974
1974
|
/**
|
@@ -1990,7 +1990,7 @@ declare module "factorio:runtime" {
|
|
1990
1990
|
}
|
1991
1991
|
/**
|
1992
1992
|
* Called when cheat mode is disabled on a player.
|
1993
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1993
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_cheat_mode_disabled Online documentation}
|
1994
1994
|
*/
|
1995
1995
|
interface OnPlayerCheatModeDisabledEvent extends EventData {
|
1996
1996
|
/**
|
@@ -2008,7 +2008,7 @@ declare module "factorio:runtime" {
|
|
2008
2008
|
}
|
2009
2009
|
/**
|
2010
2010
|
* Called when cheat mode is enabled on a player.
|
2011
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2011
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_cheat_mode_enabled Online documentation}
|
2012
2012
|
*/
|
2013
2013
|
interface OnPlayerCheatModeEnabledEvent extends EventData {
|
2014
2014
|
/**
|
@@ -2026,7 +2026,7 @@ declare module "factorio:runtime" {
|
|
2026
2026
|
}
|
2027
2027
|
/**
|
2028
2028
|
* Called when a player clicks a gps tag
|
2029
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2029
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_clicked_gps_tag Online documentation}
|
2030
2030
|
*/
|
2031
2031
|
interface OnPlayerClickedGpsTagEvent extends EventData {
|
2032
2032
|
/**
|
@@ -2052,7 +2052,7 @@ declare module "factorio:runtime" {
|
|
2052
2052
|
}
|
2053
2053
|
/**
|
2054
2054
|
* Called when a player clicks the "confirm" button in the configure Blueprint GUI.
|
2055
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2055
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_configured_blueprint Online documentation}
|
2056
2056
|
*/
|
2057
2057
|
interface OnPlayerConfiguredBlueprintEvent extends EventData {
|
2058
2058
|
/**
|
@@ -2070,7 +2070,7 @@ declare module "factorio:runtime" {
|
|
2070
2070
|
}
|
2071
2071
|
/**
|
2072
2072
|
* Called after a player changes controller types.
|
2073
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2073
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_controller_changed Online documentation}
|
2074
2074
|
*/
|
2075
2075
|
interface OnPlayerControllerChangedEvent extends EventData {
|
2076
2076
|
/**
|
@@ -2092,7 +2092,7 @@ declare module "factorio:runtime" {
|
|
2092
2092
|
}
|
2093
2093
|
/**
|
2094
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}).
|
2095
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2095
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_crafted_item Online documentation}
|
2096
2096
|
*/
|
2097
2097
|
interface OnPlayerCraftedItemEvent extends EventData {
|
2098
2098
|
/**
|
@@ -2118,7 +2118,7 @@ declare module "factorio:runtime" {
|
|
2118
2118
|
}
|
2119
2119
|
/**
|
2120
2120
|
* Called after the player was created.
|
2121
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2121
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_created Online documentation}
|
2122
2122
|
*/
|
2123
2123
|
interface OnPlayerCreatedEvent extends EventData {
|
2124
2124
|
readonly player_index: PlayerIndex
|
@@ -2135,7 +2135,7 @@ declare module "factorio:runtime" {
|
|
2135
2135
|
* Called after a player's {@link LuaControl#cursor_stack cursor stack} changed in some way.
|
2136
2136
|
*
|
2137
2137
|
* This is fired in the same tick that the change happens, but not instantly.
|
2138
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2138
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_cursor_stack_changed Online documentation}
|
2139
2139
|
*/
|
2140
2140
|
interface OnPlayerCursorStackChangedEvent extends EventData {
|
2141
2141
|
readonly player_index: PlayerIndex
|
@@ -2150,7 +2150,7 @@ declare module "factorio:runtime" {
|
|
2150
2150
|
}
|
2151
2151
|
/**
|
2152
2152
|
* Called when a player selects an area with a deconstruction planner.
|
2153
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2153
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_deconstructed_area Online documentation}
|
2154
2154
|
*/
|
2155
2155
|
interface OnPlayerDeconstructedAreaEvent extends EventData {
|
2156
2156
|
/**
|
@@ -2196,7 +2196,7 @@ declare module "factorio:runtime" {
|
|
2196
2196
|
}
|
2197
2197
|
/**
|
2198
2198
|
* Called when a player is demoted.
|
2199
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2199
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_demoted Online documentation}
|
2200
2200
|
*/
|
2201
2201
|
interface OnPlayerDemotedEvent extends EventData {
|
2202
2202
|
/**
|
@@ -2214,7 +2214,7 @@ declare module "factorio:runtime" {
|
|
2214
2214
|
}
|
2215
2215
|
/**
|
2216
2216
|
* Called after a player dies.
|
2217
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2217
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_died Online documentation}
|
2218
2218
|
*/
|
2219
2219
|
interface OnPlayerDiedEvent extends EventData {
|
2220
2220
|
readonly player_index: PlayerIndex
|
@@ -2230,7 +2230,7 @@ declare module "factorio:runtime" {
|
|
2230
2230
|
}
|
2231
2231
|
/**
|
2232
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.
|
2233
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2233
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_display_density_scale_changed Online documentation}
|
2234
2234
|
*/
|
2235
2235
|
interface OnPlayerDisplayDensityScaleChangedEvent extends EventData {
|
2236
2236
|
/**
|
@@ -2252,7 +2252,7 @@ declare module "factorio:runtime" {
|
|
2252
2252
|
}
|
2253
2253
|
/**
|
2254
2254
|
* Called when the display resolution changes for a given player.
|
2255
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2255
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_display_resolution_changed Online documentation}
|
2256
2256
|
*/
|
2257
2257
|
interface OnPlayerDisplayResolutionChangedEvent extends EventData {
|
2258
2258
|
/**
|
@@ -2274,7 +2274,7 @@ declare module "factorio:runtime" {
|
|
2274
2274
|
}
|
2275
2275
|
/**
|
2276
2276
|
* Called when the display scale changes for a given player.
|
2277
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2277
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_display_scale_changed Online documentation}
|
2278
2278
|
*/
|
2279
2279
|
interface OnPlayerDisplayScaleChangedEvent extends EventData {
|
2280
2280
|
/**
|
@@ -2298,7 +2298,7 @@ declare module "factorio:runtime" {
|
|
2298
2298
|
* Called when the player's driving state has changed, meaning a player has either entered or left a vehicle.
|
2299
2299
|
*
|
2300
2300
|
* This event is not raised when the player is ejected from a vehicle due to it being destroyed.
|
2301
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2301
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_driving_changed_state Online documentation}
|
2302
2302
|
*/
|
2303
2303
|
interface OnPlayerDrivingChangedStateEvent extends EventData {
|
2304
2304
|
readonly player_index: PlayerIndex
|
@@ -2317,7 +2317,7 @@ declare module "factorio:runtime" {
|
|
2317
2317
|
}
|
2318
2318
|
/**
|
2319
2319
|
* Called when a player drops an item on the ground.
|
2320
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2320
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_dropped_item Online documentation}
|
2321
2321
|
*/
|
2322
2322
|
interface OnPlayerDroppedItemEvent extends EventData {
|
2323
2323
|
readonly player_index: PlayerIndex
|
@@ -2336,7 +2336,7 @@ declare module "factorio:runtime" {
|
|
2336
2336
|
}
|
2337
2337
|
/**
|
2338
2338
|
* Called when a player fast-transfers something to or from an entity.
|
2339
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2339
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_fast_transferred Online documentation}
|
2340
2340
|
*/
|
2341
2341
|
interface OnPlayerFastTransferredEvent extends EventData {
|
2342
2342
|
/**
|
@@ -2368,7 +2368,7 @@ declare module "factorio:runtime" {
|
|
2368
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.
|
2369
2369
|
*
|
2370
2370
|
* This event reflects a change in the {@link LuaEntity#mirroring LuaEntity::mirroring} property.
|
2371
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2371
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_flipped_entity Online documentation}
|
2372
2372
|
*/
|
2373
2373
|
interface OnPlayerFlippedEntityEvent extends EventData {
|
2374
2374
|
/**
|
@@ -2391,7 +2391,7 @@ declare module "factorio:runtime" {
|
|
2391
2391
|
}
|
2392
2392
|
/**
|
2393
2393
|
* Called after player flushed fluid
|
2394
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2394
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_flushed_fluid Online documentation}
|
2395
2395
|
*/
|
2396
2396
|
interface OnPlayerFlushedFluidEvent extends EventData {
|
2397
2397
|
/**
|
@@ -2425,7 +2425,7 @@ declare module "factorio:runtime" {
|
|
2425
2425
|
}
|
2426
2426
|
/**
|
2427
2427
|
* Called after a players gun inventory changed in some way.
|
2428
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2428
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_gun_inventory_changed Online documentation}
|
2429
2429
|
*/
|
2430
2430
|
interface OnPlayerGunInventoryChangedEvent extends EventData {
|
2431
2431
|
readonly player_index: PlayerIndex
|
@@ -2440,7 +2440,7 @@ declare module "factorio:runtime" {
|
|
2440
2440
|
}
|
2441
2441
|
/**
|
2442
2442
|
* Called when a player's input method changes. See {@link LuaPlayer#input_method LuaPlayer::input_method}.
|
2443
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2443
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_input_method_changed Online documentation}
|
2444
2444
|
*/
|
2445
2445
|
interface OnPlayerInputMethodChangedEvent extends EventData {
|
2446
2446
|
/**
|
@@ -2458,7 +2458,7 @@ declare module "factorio:runtime" {
|
|
2458
2458
|
}
|
2459
2459
|
/**
|
2460
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.
|
2461
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2461
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_joined_game Online documentation}
|
2462
2462
|
*/
|
2463
2463
|
interface OnPlayerJoinedGameEvent extends EventData {
|
2464
2464
|
readonly player_index: PlayerIndex
|
@@ -2473,7 +2473,7 @@ declare module "factorio:runtime" {
|
|
2473
2473
|
}
|
2474
2474
|
/**
|
2475
2475
|
* Called when a player is kicked.
|
2476
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2476
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_kicked Online documentation}
|
2477
2477
|
*/
|
2478
2478
|
interface OnPlayerKickedEvent extends EventData {
|
2479
2479
|
/**
|
@@ -2499,7 +2499,7 @@ declare module "factorio:runtime" {
|
|
2499
2499
|
}
|
2500
2500
|
/**
|
2501
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.
|
2502
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2502
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_left_game Online documentation}
|
2503
2503
|
*/
|
2504
2504
|
interface OnPlayerLeftGameEvent extends EventData {
|
2505
2505
|
readonly player_index: PlayerIndex
|
@@ -2515,7 +2515,7 @@ declare module "factorio:runtime" {
|
|
2515
2515
|
}
|
2516
2516
|
/**
|
2517
2517
|
* Called when a player's active locale changes. See {@link LuaPlayer#locale LuaPlayer::locale}.
|
2518
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2518
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_locale_changed Online documentation}
|
2519
2519
|
*/
|
2520
2520
|
interface OnPlayerLocaleChangedEvent extends EventData {
|
2521
2521
|
/**
|
@@ -2537,7 +2537,7 @@ declare module "factorio:runtime" {
|
|
2537
2537
|
}
|
2538
2538
|
/**
|
2539
2539
|
* Called after a players main inventory changed in some way.
|
2540
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2540
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_main_inventory_changed Online documentation}
|
2541
2541
|
*/
|
2542
2542
|
interface OnPlayerMainInventoryChangedEvent extends EventData {
|
2543
2543
|
readonly player_index: PlayerIndex
|
@@ -2558,7 +2558,7 @@ declare module "factorio:runtime" {
|
|
2558
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.
|
2559
2559
|
*
|
2560
2560
|
* Event filter: [LuaPlayerMinedEntityEventFilter](LuaPlayerMinedEntityEventFilter]
|
2561
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2561
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_mined_entity Online documentation}
|
2562
2562
|
*/
|
2563
2563
|
interface OnPlayerMinedEntityEvent extends EventData {
|
2564
2564
|
/**
|
@@ -2584,7 +2584,7 @@ declare module "factorio:runtime" {
|
|
2584
2584
|
}
|
2585
2585
|
/**
|
2586
2586
|
* Called when the player mines something.
|
2587
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2587
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_mined_item Online documentation}
|
2588
2588
|
*/
|
2589
2589
|
interface OnPlayerMinedItemEvent extends EventData {
|
2590
2590
|
/**
|
@@ -2603,7 +2603,7 @@ declare module "factorio:runtime" {
|
|
2603
2603
|
}
|
2604
2604
|
/**
|
2605
2605
|
* Called after a player mines tiles.
|
2606
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2606
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_mined_tile Online documentation}
|
2607
2607
|
*/
|
2608
2608
|
interface OnPlayerMinedTileEvent extends EventData {
|
2609
2609
|
readonly player_index: PlayerIndex
|
@@ -2626,7 +2626,7 @@ declare module "factorio:runtime" {
|
|
2626
2626
|
}
|
2627
2627
|
/**
|
2628
2628
|
* Called when a player is muted.
|
2629
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2629
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_muted Online documentation}
|
2630
2630
|
*/
|
2631
2631
|
interface OnPlayerMutedEvent extends EventData {
|
2632
2632
|
/**
|
@@ -2644,7 +2644,7 @@ declare module "factorio:runtime" {
|
|
2644
2644
|
}
|
2645
2645
|
/**
|
2646
2646
|
* Called when a player invokes the "smart pipette" over an entity.
|
2647
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2647
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_pipette Online documentation}
|
2648
2648
|
*/
|
2649
2649
|
interface OnPlayerPipetteEvent extends EventData {
|
2650
2650
|
/**
|
@@ -2674,7 +2674,7 @@ declare module "factorio:runtime" {
|
|
2674
2674
|
}
|
2675
2675
|
/**
|
2676
2676
|
* Called after the player puts equipment in an equipment grid
|
2677
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2677
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_placed_equipment Online documentation}
|
2678
2678
|
*/
|
2679
2679
|
interface OnPlayerPlacedEquipmentEvent extends EventData {
|
2680
2680
|
readonly player_index: PlayerIndex
|
@@ -2697,7 +2697,7 @@ declare module "factorio:runtime" {
|
|
2697
2697
|
}
|
2698
2698
|
/**
|
2699
2699
|
* Called when a player is promoted.
|
2700
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2700
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_promoted Online documentation}
|
2701
2701
|
*/
|
2702
2702
|
interface OnPlayerPromotedEvent extends EventData {
|
2703
2703
|
/**
|
@@ -2715,7 +2715,7 @@ declare module "factorio:runtime" {
|
|
2715
2715
|
}
|
2716
2716
|
/**
|
2717
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.
|
2718
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2718
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_removed Online documentation}
|
2719
2719
|
*/
|
2720
2720
|
interface OnPlayerRemovedEvent extends EventData {
|
2721
2721
|
/**
|
@@ -2733,7 +2733,7 @@ declare module "factorio:runtime" {
|
|
2733
2733
|
}
|
2734
2734
|
/**
|
2735
2735
|
* Called after the player removes equipment from an equipment grid
|
2736
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2736
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_removed_equipment Online documentation}
|
2737
2737
|
*/
|
2738
2738
|
interface OnPlayerRemovedEquipmentEvent extends EventData {
|
2739
2739
|
readonly player_index: PlayerIndex
|
@@ -2766,7 +2766,7 @@ declare module "factorio:runtime" {
|
|
2766
2766
|
* Called when a player repairs an entity.
|
2767
2767
|
*
|
2768
2768
|
* Event filter: [LuaPlayerRepairedEntityEventFilter](LuaPlayerRepairedEntityEventFilter]
|
2769
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2769
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_repaired_entity Online documentation}
|
2770
2770
|
*/
|
2771
2771
|
interface OnPlayerRepairedEntityEvent extends EventData {
|
2772
2772
|
readonly player_index: PlayerIndex
|
@@ -2782,7 +2782,7 @@ declare module "factorio:runtime" {
|
|
2782
2782
|
}
|
2783
2783
|
/**
|
2784
2784
|
* Called after a player respawns.
|
2785
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2785
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_respawned Online documentation}
|
2786
2786
|
*/
|
2787
2787
|
interface OnPlayerRespawnedEvent extends EventData {
|
2788
2788
|
readonly player_index: PlayerIndex
|
@@ -2801,7 +2801,7 @@ declare module "factorio:runtime" {
|
|
2801
2801
|
}
|
2802
2802
|
/**
|
2803
2803
|
* Called after a player reverse-selects an area with a selection-tool item.
|
2804
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2804
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_reverse_selected_area Online documentation}
|
2805
2805
|
*/
|
2806
2806
|
interface OnPlayerReverseSelectedAreaEvent extends EventData {
|
2807
2807
|
/**
|
@@ -2841,7 +2841,7 @@ declare module "factorio:runtime" {
|
|
2841
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.
|
2842
2842
|
*
|
2843
2843
|
* Entities being flipped will not fire this event, even if the flip involves rotating. See {@link OnPlayerFlippedEntityEvent on_player_flipped_entity}.
|
2844
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2844
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_rotated_entity Online documentation}
|
2845
2845
|
*/
|
2846
2846
|
interface OnPlayerRotatedEntityEvent extends EventData {
|
2847
2847
|
/**
|
@@ -2864,7 +2864,7 @@ declare module "factorio:runtime" {
|
|
2864
2864
|
}
|
2865
2865
|
/**
|
2866
2866
|
* Called after a player selects an area with a selection-tool item.
|
2867
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2867
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_selected_area Online documentation}
|
2868
2868
|
*/
|
2869
2869
|
interface OnPlayerSelectedAreaEvent extends EventData {
|
2870
2870
|
/**
|
@@ -2906,7 +2906,7 @@ declare module "factorio:runtime" {
|
|
2906
2906
|
}
|
2907
2907
|
/**
|
2908
2908
|
* Called when a player sets a quickbar slot to anything (new value, or set to empty).
|
2909
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2909
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_set_quick_bar_slot Online documentation}
|
2910
2910
|
*/
|
2911
2911
|
interface OnPlayerSetQuickBarSlotEvent extends EventData {
|
2912
2912
|
readonly player_index: PlayerIndex
|
@@ -2921,7 +2921,7 @@ declare module "factorio:runtime" {
|
|
2921
2921
|
}
|
2922
2922
|
/**
|
2923
2923
|
* Called when a player selects an area with a blueprint.
|
2924
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2924
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_setup_blueprint Online documentation}
|
2925
2925
|
*/
|
2926
2926
|
interface OnPlayerSetupBlueprintEvent extends EventData {
|
2927
2927
|
/**
|
@@ -2971,7 +2971,7 @@ declare module "factorio:runtime" {
|
|
2971
2971
|
}
|
2972
2972
|
/**
|
2973
2973
|
* Called when a player toggles alt mode, also known as "show entity info".
|
2974
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2974
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_toggled_alt_mode Online documentation}
|
2975
2975
|
*/
|
2976
2976
|
interface OnPlayerToggledAltModeEvent extends EventData {
|
2977
2977
|
readonly player_index: PlayerIndex
|
@@ -2990,7 +2990,7 @@ declare module "factorio:runtime" {
|
|
2990
2990
|
}
|
2991
2991
|
/**
|
2992
2992
|
* Called when a player toggles the map editor on or off.
|
2993
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2993
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_toggled_map_editor Online documentation}
|
2994
2994
|
*/
|
2995
2995
|
interface OnPlayerToggledMapEditorEvent extends EventData {
|
2996
2996
|
readonly player_index: PlayerIndex
|
@@ -3005,7 +3005,7 @@ declare module "factorio:runtime" {
|
|
3005
3005
|
}
|
3006
3006
|
/**
|
3007
3007
|
* Called after a players trash inventory changed in some way.
|
3008
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3008
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_trash_inventory_changed Online documentation}
|
3009
3009
|
*/
|
3010
3010
|
interface OnPlayerTrashInventoryChangedEvent extends EventData {
|
3011
3011
|
readonly player_index: PlayerIndex
|
@@ -3020,7 +3020,7 @@ declare module "factorio:runtime" {
|
|
3020
3020
|
}
|
3021
3021
|
/**
|
3022
3022
|
* Called when a player is un-banned.
|
3023
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3023
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_unbanned Online documentation}
|
3024
3024
|
*/
|
3025
3025
|
interface OnPlayerUnbannedEvent extends EventData {
|
3026
3026
|
/**
|
@@ -3050,7 +3050,7 @@ declare module "factorio:runtime" {
|
|
3050
3050
|
}
|
3051
3051
|
/**
|
3052
3052
|
* Called when a player is unmuted.
|
3053
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3053
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_unmuted Online documentation}
|
3054
3054
|
*/
|
3055
3055
|
interface OnPlayerUnmutedEvent extends EventData {
|
3056
3056
|
/**
|
@@ -3068,7 +3068,7 @@ declare module "factorio:runtime" {
|
|
3068
3068
|
}
|
3069
3069
|
/**
|
3070
3070
|
* Called when a player uses a capsule that results in some game action.
|
3071
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3071
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_used_capsule Online documentation}
|
3072
3072
|
*/
|
3073
3073
|
interface OnPlayerUsedCapsuleEvent extends EventData {
|
3074
3074
|
/**
|
@@ -3098,7 +3098,7 @@ declare module "factorio:runtime" {
|
|
3098
3098
|
}
|
3099
3099
|
/**
|
3100
3100
|
* Called when a player uses spidertron remote to send all selected units to a given position
|
3101
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3101
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_player_used_spidertron_remote Online documentation}
|
3102
3102
|
*/
|
3103
3103
|
interface OnPlayerUsedSpidertronRemoteEvent extends EventData {
|
3104
3104
|
/**
|
@@ -3122,7 +3122,7 @@ declare module "factorio:runtime" {
|
|
3122
3122
|
* Called after an entity dies.
|
3123
3123
|
*
|
3124
3124
|
* Event filter: [LuaPostEntityDiedEventFilter](LuaPostEntityDiedEventFilter]
|
3125
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3125
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_post_entity_died Online documentation}
|
3126
3126
|
*/
|
3127
3127
|
interface OnPostEntityDiedEvent extends EventData {
|
3128
3128
|
/**
|
@@ -3172,7 +3172,7 @@ declare module "factorio:runtime" {
|
|
3172
3172
|
}
|
3173
3173
|
/**
|
3174
3174
|
* Called when players uses an item to build something. Called before {@link OnBuiltEntityEvent on_built_entity}.
|
3175
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3175
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_pre_build Online documentation}
|
3176
3176
|
*/
|
3177
3177
|
interface OnPreBuildEvent extends EventData {
|
3178
3178
|
/**
|
@@ -3218,7 +3218,7 @@ declare module "factorio:runtime" {
|
|
3218
3218
|
}
|
3219
3219
|
/**
|
3220
3220
|
* Called before one or more chunks are deleted using {@link LuaSurface#delete_chunk LuaSurface::delete_chunk}.
|
3221
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3221
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_pre_chunk_deleted Online documentation}
|
3222
3222
|
*/
|
3223
3223
|
interface OnPreChunkDeletedEvent extends EventData {
|
3224
3224
|
readonly surface_index: SurfaceIndex
|
@@ -3237,7 +3237,7 @@ declare module "factorio:runtime" {
|
|
3237
3237
|
}
|
3238
3238
|
/**
|
3239
3239
|
* Called before entity copy-paste is done.
|
3240
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3240
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_pre_entity_settings_pasted Online documentation}
|
3241
3241
|
*/
|
3242
3242
|
interface OnPreEntitySettingsPastedEvent extends EventData {
|
3243
3243
|
readonly player_index: PlayerIndex
|
@@ -3264,7 +3264,7 @@ declare module "factorio:runtime" {
|
|
3264
3264
|
* Also called for item request proxies before they are destroyed as a result of being marked for deconstruction.
|
3265
3265
|
*
|
3266
3266
|
* Event filter: [LuaPreGhostDeconstructedEventFilter](LuaPreGhostDeconstructedEventFilter]
|
3267
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3267
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_pre_ghost_deconstructed Online documentation}
|
3268
3268
|
*/
|
3269
3269
|
interface OnPreGhostDeconstructedEvent extends EventData {
|
3270
3270
|
/**
|
@@ -3285,7 +3285,7 @@ declare module "factorio:runtime" {
|
|
3285
3285
|
* Called before a ghost entity is upgraded.
|
3286
3286
|
*
|
3287
3287
|
* Event filter: [LuaPreGhostUpgradedEventFilter](LuaPreGhostUpgradedEventFilter]
|
3288
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3288
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_pre_ghost_upgraded Online documentation}
|
3289
3289
|
*/
|
3290
3290
|
interface OnPreGhostUpgradedEvent extends EventData {
|
3291
3291
|
/**
|
@@ -3306,7 +3306,7 @@ declare module "factorio:runtime" {
|
|
3306
3306
|
}
|
3307
3307
|
/**
|
3308
3308
|
* Called directly before a permission group is deleted.
|
3309
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3309
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_pre_permission_group_deleted Online documentation}
|
3310
3310
|
*/
|
3311
3311
|
interface OnPrePermissionGroupDeletedEvent extends EventData {
|
3312
3312
|
/**
|
@@ -3328,7 +3328,7 @@ declare module "factorio:runtime" {
|
|
3328
3328
|
}
|
3329
3329
|
/**
|
3330
3330
|
* Called directly before a permission string is imported.
|
3331
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3331
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_pre_permission_string_imported Online documentation}
|
3332
3332
|
*/
|
3333
3333
|
interface OnPrePermissionStringImportedEvent extends EventData {
|
3334
3334
|
/**
|
@@ -3346,7 +3346,7 @@ declare module "factorio:runtime" {
|
|
3346
3346
|
}
|
3347
3347
|
/**
|
3348
3348
|
* Called when a player queues something to be crafted.
|
3349
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3349
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_pre_player_crafted_item Online documentation}
|
3350
3350
|
*/
|
3351
3351
|
interface OnPrePlayerCraftedItemEvent extends EventData {
|
3352
3352
|
/**
|
@@ -3376,7 +3376,7 @@ declare module "factorio:runtime" {
|
|
3376
3376
|
}
|
3377
3377
|
/**
|
3378
3378
|
* Called before a players dies.
|
3379
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3379
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_pre_player_died Online documentation}
|
3380
3380
|
*/
|
3381
3381
|
interface OnPrePlayerDiedEvent extends EventData {
|
3382
3382
|
readonly player_index: PlayerIndex
|
@@ -3392,7 +3392,7 @@ declare module "factorio:runtime" {
|
|
3392
3392
|
}
|
3393
3393
|
/**
|
3394
3394
|
* Called before a player leaves the game.
|
3395
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3395
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_pre_player_left_game Online documentation}
|
3396
3396
|
*/
|
3397
3397
|
interface OnPrePlayerLeftGameEvent extends EventData {
|
3398
3398
|
readonly player_index: PlayerIndex
|
@@ -3410,7 +3410,7 @@ declare module "factorio:runtime" {
|
|
3410
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.
|
3411
3411
|
*
|
3412
3412
|
* Event filter: [LuaPrePlayerMinedEntityEventFilter](LuaPrePlayerMinedEntityEventFilter]
|
3413
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3413
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_pre_player_mined_item Online documentation}
|
3414
3414
|
*/
|
3415
3415
|
interface OnPrePlayerMinedItemEvent extends EventData {
|
3416
3416
|
/**
|
@@ -3429,7 +3429,7 @@ declare module "factorio:runtime" {
|
|
3429
3429
|
}
|
3430
3430
|
/**
|
3431
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.
|
3432
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3432
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_pre_player_removed Online documentation}
|
3433
3433
|
*/
|
3434
3434
|
interface OnPrePlayerRemovedEvent extends EventData {
|
3435
3435
|
/**
|
@@ -3447,7 +3447,7 @@ declare module "factorio:runtime" {
|
|
3447
3447
|
}
|
3448
3448
|
/**
|
3449
3449
|
* Called before a player toggles the map editor on or off.
|
3450
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3450
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_pre_player_toggled_map_editor Online documentation}
|
3451
3451
|
*/
|
3452
3452
|
interface OnPrePlayerToggledMapEditorEvent extends EventData {
|
3453
3453
|
readonly player_index: PlayerIndex
|
@@ -3462,7 +3462,7 @@ declare module "factorio:runtime" {
|
|
3462
3462
|
}
|
3463
3463
|
/**
|
3464
3464
|
* Called directly before a robot explodes cliffs.
|
3465
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3465
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_pre_robot_exploded_cliff Online documentation}
|
3466
3466
|
*/
|
3467
3467
|
interface OnPreRobotExplodedCliffEvent extends EventData {
|
3468
3468
|
readonly robot: LuaEntity
|
@@ -3486,7 +3486,7 @@ declare module "factorio:runtime" {
|
|
3486
3486
|
}
|
3487
3487
|
/**
|
3488
3488
|
* Called just before the scenario finishes.
|
3489
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3489
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_pre_scenario_finished Online documentation}
|
3490
3490
|
*/
|
3491
3491
|
interface OnPreScenarioFinishedEvent extends EventData {
|
3492
3492
|
/**
|
@@ -3504,7 +3504,7 @@ declare module "factorio:runtime" {
|
|
3504
3504
|
}
|
3505
3505
|
/**
|
3506
3506
|
* Called just before a script inventory is resized.
|
3507
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3507
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_pre_script_inventory_resized Online documentation}
|
3508
3508
|
*/
|
3509
3509
|
interface OnPreScriptInventoryResizedEvent extends EventData {
|
3510
3510
|
/**
|
@@ -3535,7 +3535,7 @@ declare module "factorio:runtime" {
|
|
3535
3535
|
}
|
3536
3536
|
/**
|
3537
3537
|
* Called just before a surface is cleared (all entities removed and all chunks deleted).
|
3538
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3538
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_pre_surface_cleared Online documentation}
|
3539
3539
|
*/
|
3540
3540
|
interface OnPreSurfaceClearedEvent extends EventData {
|
3541
3541
|
readonly surface_index: SurfaceIndex
|
@@ -3550,7 +3550,7 @@ declare module "factorio:runtime" {
|
|
3550
3550
|
}
|
3551
3551
|
/**
|
3552
3552
|
* Called just before a surface is deleted.
|
3553
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3553
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_pre_surface_deleted Online documentation}
|
3554
3554
|
*/
|
3555
3555
|
interface OnPreSurfaceDeletedEvent extends EventData {
|
3556
3556
|
readonly surface_index: SurfaceIndex
|
@@ -3565,7 +3565,7 @@ declare module "factorio:runtime" {
|
|
3565
3565
|
}
|
3566
3566
|
/**
|
3567
3567
|
* Called when the player triggers "redo".
|
3568
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3568
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_redo_applied Online documentation}
|
3569
3569
|
*/
|
3570
3570
|
interface OnRedoAppliedEvent extends EventData {
|
3571
3571
|
/**
|
@@ -3587,7 +3587,7 @@ declare module "factorio:runtime" {
|
|
3587
3587
|
}
|
3588
3588
|
/**
|
3589
3589
|
* Called when research is cancelled.
|
3590
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3590
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_research_cancelled Online documentation}
|
3591
3591
|
*/
|
3592
3592
|
interface OnResearchCancelledEvent extends EventData {
|
3593
3593
|
/**
|
@@ -3609,7 +3609,7 @@ declare module "factorio:runtime" {
|
|
3609
3609
|
}
|
3610
3610
|
/**
|
3611
3611
|
* Called when a research finishes.
|
3612
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3612
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_research_finished Online documentation}
|
3613
3613
|
*/
|
3614
3614
|
interface OnResearchFinishedEvent extends EventData {
|
3615
3615
|
/**
|
@@ -3631,7 +3631,7 @@ declare module "factorio:runtime" {
|
|
3631
3631
|
}
|
3632
3632
|
/**
|
3633
3633
|
* Called when research is moved forwards or backwards in the research queue.
|
3634
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3634
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_research_moved Online documentation}
|
3635
3635
|
*/
|
3636
3636
|
interface OnResearchMovedEvent extends EventData {
|
3637
3637
|
/**
|
@@ -3649,7 +3649,7 @@ declare module "factorio:runtime" {
|
|
3649
3649
|
}
|
3650
3650
|
/**
|
3651
3651
|
* Called when a research is reversed (unresearched).
|
3652
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3652
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_research_reversed Online documentation}
|
3653
3653
|
*/
|
3654
3654
|
interface OnResearchReversedEvent extends EventData {
|
3655
3655
|
/**
|
@@ -3671,7 +3671,7 @@ declare module "factorio:runtime" {
|
|
3671
3671
|
}
|
3672
3672
|
/**
|
3673
3673
|
* Called when a technology research starts.
|
3674
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3674
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_research_started Online documentation}
|
3675
3675
|
*/
|
3676
3676
|
interface OnResearchStartedEvent extends EventData {
|
3677
3677
|
/**
|
@@ -3690,7 +3690,7 @@ declare module "factorio:runtime" {
|
|
3690
3690
|
}
|
3691
3691
|
/**
|
3692
3692
|
* Called when a resource entity reaches 0 or its minimum yield for infinite resources.
|
3693
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3693
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_resource_depleted Online documentation}
|
3694
3694
|
*/
|
3695
3695
|
interface OnResourceDepletedEvent extends EventData {
|
3696
3696
|
readonly entity: LuaEntity
|
@@ -3707,7 +3707,7 @@ declare module "factorio:runtime" {
|
|
3707
3707
|
* Called when a construction robot builds an entity.
|
3708
3708
|
*
|
3709
3709
|
* Event filter: [LuaRobotBuiltEntityEventFilter](LuaRobotBuiltEntityEventFilter]
|
3710
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3710
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_robot_built_entity Online documentation}
|
3711
3711
|
*/
|
3712
3712
|
interface OnRobotBuiltEntityEvent extends EventData {
|
3713
3713
|
/**
|
@@ -3737,7 +3737,7 @@ declare module "factorio:runtime" {
|
|
3737
3737
|
}
|
3738
3738
|
/**
|
3739
3739
|
* Called after a robot builds tiles.
|
3740
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3740
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_robot_built_tile Online documentation}
|
3741
3741
|
*/
|
3742
3742
|
interface OnRobotBuiltTileEvent extends EventData {
|
3743
3743
|
/**
|
@@ -3779,7 +3779,7 @@ declare module "factorio:runtime" {
|
|
3779
3779
|
}
|
3780
3780
|
/**
|
3781
3781
|
* Called directly after a robot explodes cliffs.
|
3782
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3782
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_robot_exploded_cliff Online documentation}
|
3783
3783
|
*/
|
3784
3784
|
interface OnRobotExplodedCliffEvent extends EventData {
|
3785
3785
|
readonly robot: LuaEntity
|
@@ -3802,7 +3802,7 @@ declare module "factorio:runtime" {
|
|
3802
3802
|
}
|
3803
3803
|
/**
|
3804
3804
|
* Called when a robot mines an entity.
|
3805
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3805
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_robot_mined Online documentation}
|
3806
3806
|
*/
|
3807
3807
|
interface OnRobotMinedEvent extends EventData {
|
3808
3808
|
/**
|
@@ -3830,7 +3830,7 @@ declare module "factorio:runtime" {
|
|
3830
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.
|
3831
3831
|
*
|
3832
3832
|
* Event filter: [LuaRobotMinedEntityEventFilter](LuaRobotMinedEntityEventFilter]
|
3833
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3833
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_robot_mined_entity Online documentation}
|
3834
3834
|
*/
|
3835
3835
|
interface OnRobotMinedEntityEvent extends EventData {
|
3836
3836
|
/**
|
@@ -3856,7 +3856,7 @@ declare module "factorio:runtime" {
|
|
3856
3856
|
}
|
3857
3857
|
/**
|
3858
3858
|
* Called after a robot mines tiles.
|
3859
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3859
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_robot_mined_tile Online documentation}
|
3860
3860
|
*/
|
3861
3861
|
interface OnRobotMinedTileEvent extends EventData {
|
3862
3862
|
/**
|
@@ -3884,7 +3884,7 @@ declare module "factorio:runtime" {
|
|
3884
3884
|
* Called before a robot mines an entity.
|
3885
3885
|
*
|
3886
3886
|
* Event filter: [LuaPreRobotMinedEntityEventFilter](LuaPreRobotMinedEntityEventFilter]
|
3887
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3887
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_robot_pre_mined Online documentation}
|
3888
3888
|
*/
|
3889
3889
|
interface OnRobotPreMinedEvent extends EventData {
|
3890
3890
|
/**
|
@@ -3906,7 +3906,7 @@ declare module "factorio:runtime" {
|
|
3906
3906
|
}
|
3907
3907
|
/**
|
3908
3908
|
* Called when a rocket silo is ordered to be launched.
|
3909
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3909
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_rocket_launch_ordered Online documentation}
|
3910
3910
|
*/
|
3911
3911
|
interface OnRocketLaunchOrderedEvent extends EventData {
|
3912
3912
|
readonly rocket: LuaEntity
|
@@ -3926,7 +3926,7 @@ declare module "factorio:runtime" {
|
|
3926
3926
|
}
|
3927
3927
|
/**
|
3928
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)
|
3929
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3929
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_rocket_launched Online documentation}
|
3930
3930
|
*/
|
3931
3931
|
interface OnRocketLaunchedEvent extends EventData {
|
3932
3932
|
readonly rocket: LuaEntity
|
@@ -3942,7 +3942,7 @@ declare module "factorio:runtime" {
|
|
3942
3942
|
}
|
3943
3943
|
/**
|
3944
3944
|
* Called when a runtime mod setting is changed by a player.
|
3945
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3945
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_runtime_mod_setting_changed Online documentation}
|
3946
3946
|
*/
|
3947
3947
|
interface OnRuntimeModSettingChangedEvent extends EventData {
|
3948
3948
|
/**
|
@@ -3965,7 +3965,7 @@ declare module "factorio:runtime" {
|
|
3965
3965
|
}
|
3966
3966
|
/**
|
3967
3967
|
* Called just after a script inventory is resized.
|
3968
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3968
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_script_inventory_resized Online documentation}
|
3969
3969
|
*/
|
3970
3970
|
interface OnScriptInventoryResizedEvent extends EventData {
|
3971
3971
|
/**
|
@@ -4000,7 +4000,7 @@ declare module "factorio:runtime" {
|
|
4000
4000
|
}
|
4001
4001
|
/**
|
4002
4002
|
* Called when a {@link LuaSurface#request_path LuaSurface::request_path} call completes.
|
4003
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4003
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_script_path_request_finished Online documentation}
|
4004
4004
|
*/
|
4005
4005
|
interface OnScriptPathRequestFinishedEvent extends EventData {
|
4006
4006
|
/**
|
@@ -4026,7 +4026,7 @@ declare module "factorio:runtime" {
|
|
4026
4026
|
}
|
4027
4027
|
/**
|
4028
4028
|
* Called when a script trigger effect is triggered.
|
4029
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4029
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_script_trigger_effect Online documentation}
|
4030
4030
|
*/
|
4031
4031
|
interface OnScriptTriggerEffectEvent extends EventData {
|
4032
4032
|
/**
|
@@ -4058,7 +4058,7 @@ declare module "factorio:runtime" {
|
|
4058
4058
|
* Called when an entity of type `radar` finishes scanning a sector.
|
4059
4059
|
*
|
4060
4060
|
* Event filter: [LuaSectorScannedEventFilter](LuaSectorScannedEventFilter]
|
4061
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4061
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_sector_scanned Online documentation}
|
4062
4062
|
*/
|
4063
4063
|
interface OnSectorScannedEvent extends EventData {
|
4064
4064
|
/**
|
@@ -4084,7 +4084,7 @@ declare module "factorio:runtime" {
|
|
4084
4084
|
}
|
4085
4085
|
/**
|
4086
4086
|
* Called when an individual segment of a SegmentedUnit is created.
|
4087
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4087
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_segment_entity_created Online documentation}
|
4088
4088
|
*/
|
4089
4089
|
interface OnSegmentEntityCreatedEvent extends EventData {
|
4090
4090
|
readonly entity: LuaEntity
|
@@ -4099,7 +4099,7 @@ declare module "factorio:runtime" {
|
|
4099
4099
|
}
|
4100
4100
|
/**
|
4101
4101
|
* Called after the selected entity changes for a given player.
|
4102
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4102
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_selected_entity_changed Online documentation}
|
4103
4103
|
*/
|
4104
4104
|
interface OnSelectedEntityChangedEvent extends EventData {
|
4105
4105
|
/**
|
@@ -4121,7 +4121,7 @@ declare module "factorio:runtime" {
|
|
4121
4121
|
}
|
4122
4122
|
/**
|
4123
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.
|
4124
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_singleplayer_init Online documentation}
|
4125
4125
|
*/
|
4126
4126
|
interface OnSingleplayerInitEvent extends EventData {
|
4127
4127
|
/**
|
@@ -4137,7 +4137,7 @@ declare module "factorio:runtime" {
|
|
4137
4137
|
* Called when a space platform builds an entity.
|
4138
4138
|
*
|
4139
4139
|
* Event filter: [LuaPlatformBuiltEntityEventFilter](LuaPlatformBuiltEntityEventFilter]
|
4140
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4140
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_space_platform_built_entity Online documentation}
|
4141
4141
|
*/
|
4142
4142
|
interface OnSpacePlatformBuiltEntityEvent extends EventData {
|
4143
4143
|
/**
|
@@ -4167,7 +4167,7 @@ declare module "factorio:runtime" {
|
|
4167
4167
|
}
|
4168
4168
|
/**
|
4169
4169
|
* Called after a space platform builds tiles.
|
4170
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4170
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_space_platform_built_tile Online documentation}
|
4171
4171
|
*/
|
4172
4172
|
interface OnSpacePlatformBuiltTileEvent extends EventData {
|
4173
4173
|
/**
|
@@ -4209,7 +4209,7 @@ declare module "factorio:runtime" {
|
|
4209
4209
|
}
|
4210
4210
|
/**
|
4211
4211
|
* Called when a space platform changes state
|
4212
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4212
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_space_platform_changed_state Online documentation}
|
4213
4213
|
*/
|
4214
4214
|
interface OnSpacePlatformChangedStateEvent extends EventData {
|
4215
4215
|
readonly platform: LuaSpacePlatform
|
@@ -4231,7 +4231,7 @@ declare module "factorio:runtime" {
|
|
4231
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.
|
4232
4232
|
*
|
4233
4233
|
* Event filter: [LuaPlatformMinedEntityEventFilter](LuaPlatformMinedEntityEventFilter]
|
4234
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4234
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_space_platform_mined_entity Online documentation}
|
4235
4235
|
*/
|
4236
4236
|
interface OnSpacePlatformMinedEntityEvent extends EventData {
|
4237
4237
|
/**
|
@@ -4257,7 +4257,7 @@ declare module "factorio:runtime" {
|
|
4257
4257
|
}
|
4258
4258
|
/**
|
4259
4259
|
* Called when a platform mines an entity.
|
4260
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4260
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_space_platform_mined_item Online documentation}
|
4261
4261
|
*/
|
4262
4262
|
interface OnSpacePlatformMinedItemEvent extends EventData {
|
4263
4263
|
/**
|
@@ -4279,7 +4279,7 @@ declare module "factorio:runtime" {
|
|
4279
4279
|
}
|
4280
4280
|
/**
|
4281
4281
|
* Called after a platform mines tiles.
|
4282
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4282
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_space_platform_mined_tile Online documentation}
|
4283
4283
|
*/
|
4284
4284
|
interface OnSpacePlatformMinedTileEvent extends EventData {
|
4285
4285
|
/**
|
@@ -4307,7 +4307,7 @@ declare module "factorio:runtime" {
|
|
4307
4307
|
* Called before a platform mines an entity.
|
4308
4308
|
*
|
4309
4309
|
* Event filter: [LuaPrePlatformMinedEntityEventFilter](LuaPrePlatformMinedEntityEventFilter]
|
4310
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4310
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_space_platform_pre_mined Online documentation}
|
4311
4311
|
*/
|
4312
4312
|
interface OnSpacePlatformPreMinedEvent extends EventData {
|
4313
4313
|
/**
|
@@ -4329,7 +4329,7 @@ declare module "factorio:runtime" {
|
|
4329
4329
|
}
|
4330
4330
|
/**
|
4331
4331
|
* Called when a spider finishes moving to its autopilot position.
|
4332
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4332
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_spider_command_completed Online documentation}
|
4333
4333
|
*/
|
4334
4334
|
interface OnSpiderCommandCompletedEvent extends EventData {
|
4335
4335
|
/**
|
@@ -4347,7 +4347,7 @@ declare module "factorio:runtime" {
|
|
4347
4347
|
}
|
4348
4348
|
/**
|
4349
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.
|
4350
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4350
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_string_translated Online documentation}
|
4351
4351
|
*/
|
4352
4352
|
interface OnStringTranslatedEvent extends EventData {
|
4353
4353
|
/**
|
@@ -4381,7 +4381,7 @@ declare module "factorio:runtime" {
|
|
4381
4381
|
}
|
4382
4382
|
/**
|
4383
4383
|
* Called just after a surface is cleared (all entities removed and all chunks deleted).
|
4384
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4384
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_surface_cleared Online documentation}
|
4385
4385
|
*/
|
4386
4386
|
interface OnSurfaceClearedEvent extends EventData {
|
4387
4387
|
readonly surface_index: SurfaceIndex
|
@@ -4398,7 +4398,7 @@ declare module "factorio:runtime" {
|
|
4398
4398
|
* Called when a surface is created.
|
4399
4399
|
*
|
4400
4400
|
* This is not called when the default surface is created as it will always exist.
|
4401
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4401
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_surface_created Online documentation}
|
4402
4402
|
*/
|
4403
4403
|
interface OnSurfaceCreatedEvent extends EventData {
|
4404
4404
|
readonly surface_index: SurfaceIndex
|
@@ -4413,7 +4413,7 @@ declare module "factorio:runtime" {
|
|
4413
4413
|
}
|
4414
4414
|
/**
|
4415
4415
|
* Called after a surface is deleted.
|
4416
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4416
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_surface_deleted Online documentation}
|
4417
4417
|
*/
|
4418
4418
|
interface OnSurfaceDeletedEvent extends EventData {
|
4419
4419
|
readonly surface_index: SurfaceIndex
|
@@ -4428,7 +4428,7 @@ declare module "factorio:runtime" {
|
|
4428
4428
|
}
|
4429
4429
|
/**
|
4430
4430
|
* Called after a surface is imported via the map editor.
|
4431
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4431
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_surface_imported Online documentation}
|
4432
4432
|
*/
|
4433
4433
|
interface OnSurfaceImportedEvent extends EventData {
|
4434
4434
|
readonly surface_index: SurfaceIndex
|
@@ -4447,7 +4447,7 @@ declare module "factorio:runtime" {
|
|
4447
4447
|
}
|
4448
4448
|
/**
|
4449
4449
|
* Called when a surface is renamed.
|
4450
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4450
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_surface_renamed Online documentation}
|
4451
4451
|
*/
|
4452
4452
|
interface OnSurfaceRenamedEvent extends EventData {
|
4453
4453
|
readonly surface_index: SurfaceIndex
|
@@ -4464,7 +4464,7 @@ declare module "factorio:runtime" {
|
|
4464
4464
|
}
|
4465
4465
|
/**
|
4466
4466
|
* Called when {@link LuaForce#reset_technology_effects LuaForce::reset_technology_effects} is finished.
|
4467
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4467
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_technology_effects_reset Online documentation}
|
4468
4468
|
*/
|
4469
4469
|
interface OnTechnologyEffectsResetEvent extends EventData {
|
4470
4470
|
readonly force: LuaForce
|
@@ -4479,7 +4479,7 @@ declare module "factorio:runtime" {
|
|
4479
4479
|
}
|
4480
4480
|
/**
|
4481
4481
|
* It is fired once every tick. Since this event is fired every tick, its handler shouldn't include performance heavy code.
|
4482
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4482
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_tick Online documentation}
|
4483
4483
|
*/
|
4484
4484
|
interface OnTickEvent extends EventData {
|
4485
4485
|
/**
|
@@ -4493,7 +4493,7 @@ declare module "factorio:runtime" {
|
|
4493
4493
|
}
|
4494
4494
|
/**
|
4495
4495
|
* Called when a train changes state (started to stopped and vice versa)
|
4496
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4496
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_train_changed_state Online documentation}
|
4497
4497
|
*/
|
4498
4498
|
interface OnTrainChangedStateEvent extends EventData {
|
4499
4499
|
readonly train: LuaTrain
|
@@ -4509,7 +4509,7 @@ declare module "factorio:runtime" {
|
|
4509
4509
|
}
|
4510
4510
|
/**
|
4511
4511
|
* Called when a new train is created either through disconnecting/connecting an existing one or building a new one.
|
4512
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4512
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_train_created Online documentation}
|
4513
4513
|
*/
|
4514
4514
|
interface OnTrainCreatedEvent extends EventData {
|
4515
4515
|
readonly train: LuaTrain
|
@@ -4532,7 +4532,7 @@ declare module "factorio:runtime" {
|
|
4532
4532
|
}
|
4533
4533
|
/**
|
4534
4534
|
* Called when a trains schedule is changed either by the player or through script.
|
4535
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4535
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_train_schedule_changed Online documentation}
|
4536
4536
|
*/
|
4537
4537
|
interface OnTrainScheduleChangedEvent extends EventData {
|
4538
4538
|
readonly train: LuaTrain
|
@@ -4551,7 +4551,7 @@ declare module "factorio:runtime" {
|
|
4551
4551
|
}
|
4552
4552
|
/**
|
4553
4553
|
* Called when an entity with a trigger prototype (such as capsules) create an entity AND that trigger prototype defined `trigger_created_entity=true`.
|
4554
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4554
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_trigger_created_entity Online documentation}
|
4555
4555
|
*/
|
4556
4556
|
interface OnTriggerCreatedEntityEvent extends EventData {
|
4557
4557
|
readonly entity: LuaEntity
|
@@ -4567,7 +4567,7 @@ declare module "factorio:runtime" {
|
|
4567
4567
|
}
|
4568
4568
|
/**
|
4569
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`.
|
4570
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4570
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_trigger_fired_artillery Online documentation}
|
4571
4571
|
*/
|
4572
4572
|
interface OnTriggerFiredArtilleryEvent extends EventData {
|
4573
4573
|
readonly entity: LuaEntity
|
@@ -4583,7 +4583,7 @@ declare module "factorio:runtime" {
|
|
4583
4583
|
}
|
4584
4584
|
/**
|
4585
4585
|
* Called when the player triggers "undo".
|
4586
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4586
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_undo_applied Online documentation}
|
4587
4587
|
*/
|
4588
4588
|
interface OnUndoAppliedEvent extends EventData {
|
4589
4589
|
/**
|
@@ -4605,7 +4605,7 @@ declare module "factorio:runtime" {
|
|
4605
4605
|
}
|
4606
4606
|
/**
|
4607
4607
|
* Called when a unit is added to a unit group.
|
4608
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4608
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_unit_added_to_group Online documentation}
|
4609
4609
|
*/
|
4610
4610
|
interface OnUnitAddedToGroupEvent extends EventData {
|
4611
4611
|
readonly unit: LuaEntity
|
@@ -4621,7 +4621,7 @@ declare module "factorio:runtime" {
|
|
4621
4621
|
}
|
4622
4622
|
/**
|
4623
4623
|
* Called when a new unit group is created, before any members are added to it.
|
4624
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4624
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_unit_group_created Online documentation}
|
4625
4625
|
*/
|
4626
4626
|
interface OnUnitGroupCreatedEvent extends EventData {
|
4627
4627
|
readonly group: LuaCommandable
|
@@ -4636,7 +4636,7 @@ declare module "factorio:runtime" {
|
|
4636
4636
|
}
|
4637
4637
|
/**
|
4638
4638
|
* Called when a unit group finishes gathering and starts executing its command.
|
4639
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4639
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_unit_group_finished_gathering Online documentation}
|
4640
4640
|
*/
|
4641
4641
|
interface OnUnitGroupFinishedGatheringEvent extends EventData {
|
4642
4642
|
readonly group: LuaCommandable
|
@@ -4651,7 +4651,7 @@ declare module "factorio:runtime" {
|
|
4651
4651
|
}
|
4652
4652
|
/**
|
4653
4653
|
* Called when a unit is removed from a unit group.
|
4654
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4654
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_unit_removed_from_group Online documentation}
|
4655
4655
|
*/
|
4656
4656
|
interface OnUnitRemovedFromGroupEvent extends EventData {
|
4657
4657
|
readonly unit: LuaEntity
|
@@ -4667,7 +4667,7 @@ declare module "factorio:runtime" {
|
|
4667
4667
|
}
|
4668
4668
|
/**
|
4669
4669
|
* Called when a worker (construction or logistic) robot expires through a lack of energy.
|
4670
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4670
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#on_worker_robot_expired Online documentation}
|
4671
4671
|
*/
|
4672
4672
|
interface OnWorkerRobotExpiredEvent extends EventData {
|
4673
4673
|
readonly robot: LuaEntity
|
@@ -4684,7 +4684,7 @@ declare module "factorio:runtime" {
|
|
4684
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}.
|
4685
4685
|
*
|
4686
4686
|
* Event filter: [LuaScriptRaisedBuiltEventFilter](LuaScriptRaisedBuiltEventFilter]
|
4687
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4687
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#script_raised_built Online documentation}
|
4688
4688
|
*/
|
4689
4689
|
interface ScriptRaisedBuiltEvent extends EventData {
|
4690
4690
|
/**
|
@@ -4704,7 +4704,7 @@ declare module "factorio:runtime" {
|
|
4704
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}.
|
4705
4705
|
*
|
4706
4706
|
* Event filter: [LuaScriptRaisedDestroyEventFilter](LuaScriptRaisedDestroyEventFilter]
|
4707
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4707
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#script_raised_destroy Online documentation}
|
4708
4708
|
*/
|
4709
4709
|
interface ScriptRaisedDestroyEvent extends EventData {
|
4710
4710
|
/**
|
@@ -4724,7 +4724,7 @@ declare module "factorio:runtime" {
|
|
4724
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}.
|
4725
4725
|
*
|
4726
4726
|
* Event filter: [LuaScriptRaisedReviveEventFilter](LuaScriptRaisedReviveEventFilter]
|
4727
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4727
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#script_raised_revive Online documentation}
|
4728
4728
|
*/
|
4729
4729
|
interface ScriptRaisedReviveEvent extends EventData {
|
4730
4730
|
/**
|
@@ -4746,7 +4746,7 @@ declare module "factorio:runtime" {
|
|
4746
4746
|
}
|
4747
4747
|
/**
|
4748
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}.
|
4749
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4749
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#script_raised_set_tiles Online documentation}
|
4750
4750
|
*/
|
4751
4751
|
interface ScriptRaisedSetTilesEvent extends EventData {
|
4752
4752
|
/**
|
@@ -4770,7 +4770,7 @@ declare module "factorio:runtime" {
|
|
4770
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}.
|
4771
4771
|
*
|
4772
4772
|
* Event filter: [LuaScriptRaisedTeleportedEventFilter](LuaScriptRaisedTeleportedEventFilter]
|
4773
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4773
|
+
* @see {@link https://lua-api.factorio.com/2.0.41/events.html#script_raised_teleported Online documentation}
|
4774
4774
|
*/
|
4775
4775
|
interface ScriptRaisedTeleportedEvent extends EventData {
|
4776
4776
|
/**
|