typed-factorio 3.5.1 → 3.7.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.
@@ -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.21/events.html#CustomInputEvent Online documentation}
16
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#CustomInputEvent Online documentation}
17
17
  */
18
18
  interface CustomInputEvent extends EventData {
19
19
  /**
@@ -47,7 +47,7 @@ declare module "factorio:runtime" {
47
47
  }
48
48
  /**
49
49
  * Called when an achievement is gained.
50
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_achievement_gained Online documentation}
50
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_achievement_gained Online documentation}
51
51
  */
52
52
  interface OnAchievementGainedEvent extends EventData {
53
53
  /**
@@ -66,7 +66,7 @@ declare module "factorio:runtime" {
66
66
  }
67
67
  /**
68
68
  * Called when a unit/group completes a command.
69
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_ai_command_completed Online documentation}
69
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_ai_command_completed Online documentation}
70
70
  */
71
71
  interface OnAiCommandCompletedEvent extends EventData {
72
72
  /**
@@ -89,7 +89,7 @@ declare module "factorio:runtime" {
89
89
  }
90
90
  /**
91
91
  * Called when an area of the map is cloned.
92
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_area_cloned Online documentation}
92
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_area_cloned Online documentation}
93
93
  */
94
94
  interface OnAreaClonedEvent extends EventData {
95
95
  readonly source_surface: LuaSurface
@@ -115,7 +115,7 @@ declare module "factorio:runtime" {
115
115
  * Called when a biter migration builds a base.
116
116
  *
117
117
  * This will be called multiple times for each migration, once for every biter that is sacrificed to build part of the new base.
118
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_biter_base_built Online documentation}
118
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_biter_base_built Online documentation}
119
119
  */
120
120
  interface OnBiterBaseBuiltEvent extends EventData {
121
121
  /**
@@ -133,7 +133,7 @@ declare module "factorio:runtime" {
133
133
  }
134
134
  /**
135
135
  * Called when a set of positions on the map is cloned.
136
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_brush_cloned Online documentation}
136
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_brush_cloned Online documentation}
137
137
  */
138
138
  interface OnBrushClonedEvent extends EventData {
139
139
  readonly source_offset: TilePosition
@@ -158,7 +158,7 @@ declare module "factorio:runtime" {
158
158
  }
159
159
  /**
160
160
  * Called when a {@link defines.command.build_base} command reaches its destination, and before building starts.
161
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_build_base_arrived Online documentation}
161
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_build_base_arrived Online documentation}
162
162
  */
163
163
  interface OnBuildBaseArrivedEvent extends EventData {
164
164
  /**
@@ -182,7 +182,7 @@ declare module "factorio:runtime" {
182
182
  * Called when player builds something.
183
183
  *
184
184
  * Event filter: [LuaPlayerBuiltEntityEventFilter](LuaPlayerBuiltEntityEventFilter]
185
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_built_entity Online documentation}
185
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_built_entity Online documentation}
186
186
  */
187
187
  interface OnBuiltEntityEvent extends EventData {
188
188
  readonly entity: LuaEntity
@@ -205,7 +205,7 @@ declare module "factorio:runtime" {
205
205
  * Called when the deconstruction of an entity is canceled.
206
206
  *
207
207
  * Event filter: [LuaEntityDeconstructionCancelledEventFilter](LuaEntityDeconstructionCancelledEventFilter]
208
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_cancelled_deconstruction Online documentation}
208
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_cancelled_deconstruction Online documentation}
209
209
  */
210
210
  interface OnCancelledDeconstructionEvent extends EventData {
211
211
  readonly entity: LuaEntity
@@ -223,7 +223,7 @@ declare module "factorio:runtime" {
223
223
  * Called when the upgrade of an entity is canceled.
224
224
  *
225
225
  * Event filter: [LuaUpgradeCancelledEventFilter](LuaUpgradeCancelledEventFilter]
226
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_cancelled_upgrade Online documentation}
226
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_cancelled_upgrade Online documentation}
227
227
  */
228
228
  interface OnCancelledUpgradeEvent extends EventData {
229
229
  readonly entity: LuaEntity
@@ -239,11 +239,34 @@ declare module "factorio:runtime" {
239
239
  */
240
240
  readonly tick: uint
241
241
  }
242
+ /**
243
+ * Called when a cargo pod departs a surface.
244
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_cargo_pod_finished_ascending Online documentation}
245
+ */
246
+ interface OnCargoPodFinishedAscendingEvent extends EventData {
247
+ readonly cargo_pod: LuaEntity
248
+ /**
249
+ * True for pods spawned on a rocket. This event triggers for platform and modded pods as well, but only when true will the pod count towards rocket launch statistics and trigger 'rocket-launched' achievement with objective_condition.
250
+ */
251
+ readonly launched_by_rocket: boolean
252
+ /**
253
+ * The player that is riding the rocket, if any.
254
+ */
255
+ readonly player_index?: PlayerIndex
256
+ /**
257
+ * Identifier of the event
258
+ */
259
+ readonly name: typeof defines.events.on_cargo_pod_finished_ascending
260
+ /**
261
+ * Tick the event was generated.
262
+ */
263
+ readonly tick: uint
264
+ }
242
265
  /**
243
266
  * Called when a character corpse expires due to timeout or all of the items being removed from it.
244
267
  *
245
268
  * this is not called if the corpse is mined. See {@link defines.events.on_pre_player_mined_item} to detect that.
246
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_character_corpse_expired Online documentation}
269
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_character_corpse_expired Online documentation}
247
270
  */
248
271
  interface OnCharacterCorpseExpiredEvent extends EventData {
249
272
  /**
@@ -261,7 +284,7 @@ declare module "factorio:runtime" {
261
284
  }
262
285
  /**
263
286
  * Called when a chart tag is created.
264
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_chart_tag_added Online documentation}
287
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_chart_tag_added Online documentation}
265
288
  */
266
289
  interface OnChartTagAddedEvent extends EventData {
267
290
  readonly tag: LuaCustomChartTag
@@ -278,7 +301,7 @@ declare module "factorio:runtime" {
278
301
  }
279
302
  /**
280
303
  * Called when a chart tag is modified by a player.
281
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_chart_tag_modified Online documentation}
304
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_chart_tag_modified Online documentation}
282
305
  */
283
306
  interface OnChartTagModifiedEvent extends EventData {
284
307
  readonly tag: LuaCustomChartTag
@@ -300,7 +323,7 @@ declare module "factorio:runtime" {
300
323
  }
301
324
  /**
302
325
  * Called just before a chart tag is deleted.
303
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_chart_tag_removed Online documentation}
326
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_chart_tag_removed Online documentation}
304
327
  */
305
328
  interface OnChartTagRemovedEvent extends EventData {
306
329
  readonly tag: LuaCustomChartTag
@@ -317,7 +340,7 @@ declare module "factorio:runtime" {
317
340
  }
318
341
  /**
319
342
  * Called when a chunk is charted or re-charted.
320
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_chunk_charted Online documentation}
343
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_chunk_charted Online documentation}
321
344
  */
322
345
  interface OnChunkChartedEvent extends EventData {
323
346
  readonly surface_index: SurfaceIndex
@@ -338,7 +361,7 @@ declare module "factorio:runtime" {
338
361
  }
339
362
  /**
340
363
  * Called when one or more chunks are deleted using {@link LuaSurface#delete_chunk LuaSurface::delete_chunk}.
341
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_chunk_deleted Online documentation}
364
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_chunk_deleted Online documentation}
342
365
  */
343
366
  interface OnChunkDeletedEvent extends EventData {
344
367
  readonly surface_index: SurfaceIndex
@@ -357,7 +380,7 @@ declare module "factorio:runtime" {
357
380
  }
358
381
  /**
359
382
  * Called when a chunk is generated.
360
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_chunk_generated Online documentation}
383
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_chunk_generated Online documentation}
361
384
  */
362
385
  interface OnChunkGeneratedEvent extends EventData {
363
386
  /**
@@ -383,7 +406,7 @@ declare module "factorio:runtime" {
383
406
  }
384
407
  /**
385
408
  * Called when a combat robot expires through a lack of energy, or timeout.
386
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_combat_robot_expired Online documentation}
409
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_combat_robot_expired Online documentation}
387
410
  */
388
411
  interface OnCombatRobotExpiredEvent extends EventData {
389
412
  readonly robot: LuaEntity
@@ -404,7 +427,7 @@ declare module "factorio:runtime" {
404
427
  * Called when a message is sent to the in-game console, either by a player or through the server interface.
405
428
  *
406
429
  * This event only fires for plain messages, not for any commands (including `/shout` or `/whisper`).
407
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_console_chat Online documentation}
430
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_console_chat Online documentation}
408
431
  */
409
432
  interface OnConsoleChatEvent extends EventData {
410
433
  /**
@@ -426,7 +449,7 @@ declare module "factorio:runtime" {
426
449
  }
427
450
  /**
428
451
  * Called when someone enters a command-like message regardless of it being a valid command.
429
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_console_command Online documentation}
452
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_console_command Online documentation}
430
453
  */
431
454
  interface OnConsoleCommandEvent extends EventData {
432
455
  /**
@@ -452,7 +475,7 @@ declare module "factorio:runtime" {
452
475
  }
453
476
  /**
454
477
  * Called when a cutscene is cancelled by the player or by script.
455
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_cutscene_cancelled Online documentation}
478
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_cutscene_cancelled Online documentation}
456
479
  */
457
480
  interface OnCutsceneCancelledEvent extends EventData {
458
481
  /**
@@ -470,7 +493,7 @@ declare module "factorio:runtime" {
470
493
  }
471
494
  /**
472
495
  * Called when a cutscene finishes naturally (was not cancelled).
473
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_cutscene_finished Online documentation}
496
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_cutscene_finished Online documentation}
474
497
  */
475
498
  interface OnCutsceneFinishedEvent extends EventData {
476
499
  /**
@@ -488,7 +511,7 @@ declare module "factorio:runtime" {
488
511
  }
489
512
  /**
490
513
  * Called when a cutscene starts.
491
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_cutscene_started Online documentation}
514
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_cutscene_started Online documentation}
492
515
  */
493
516
  interface OnCutsceneStartedEvent extends EventData {
494
517
  /**
@@ -508,7 +531,7 @@ declare module "factorio:runtime" {
508
531
  * Called when a cutscene is playing, each time it reaches a waypoint in that cutscene.
509
532
  *
510
533
  * This refers to an index in the table previously passed to set_controller which started the cutscene.
511
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_cutscene_waypoint_reached Online documentation}
534
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_cutscene_waypoint_reached Online documentation}
512
535
  */
513
536
  interface OnCutsceneWaypointReachedEvent extends EventData {
514
537
  /**
@@ -532,7 +555,7 @@ declare module "factorio:runtime" {
532
555
  * Called when an entity is cloned. The filter applies to the source entity.
533
556
  *
534
557
  * Event filter: [LuaEntityClonedEventFilter](LuaEntityClonedEventFilter]
535
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_entity_cloned Online documentation}
558
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_entity_cloned Online documentation}
536
559
  */
537
560
  interface OnEntityClonedEvent extends EventData {
538
561
  readonly source: LuaEntity
@@ -550,7 +573,7 @@ declare module "factorio:runtime" {
550
573
  * Called after an entity has been recolored either by the player or through script.
551
574
  *
552
575
  * Automatic recoloring due to {@link LuaPlayer#color LuaPlayer::color} will not raise events, as that is a separate mechanism.
553
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_entity_color_changed Online documentation}
576
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_entity_color_changed Online documentation}
554
577
  */
555
578
  interface OnEntityColorChangedEvent extends EventData {
556
579
  /**
@@ -570,7 +593,7 @@ declare module "factorio:runtime" {
570
593
  * Called when an entity is damaged. This is not called when an entities health is set directly by another mod.
571
594
  *
572
595
  * Event filter: [LuaEntityDamagedEventFilter](LuaEntityDamagedEventFilter]
573
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_entity_damaged Online documentation}
596
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_entity_damaged Online documentation}
574
597
  */
575
598
  interface OnEntityDamagedEvent extends EventData {
576
599
  readonly entity: LuaEntity
@@ -612,7 +635,7 @@ declare module "factorio:runtime" {
612
635
  * Called when an entity dies.
613
636
  *
614
637
  * Event filter: [LuaEntityDiedEventFilter](LuaEntityDiedEventFilter]
615
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_entity_died Online documentation}
638
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_entity_died Online documentation}
616
639
  */
617
640
  interface OnEntityDiedEvent extends EventData {
618
641
  /**
@@ -646,7 +669,7 @@ declare module "factorio:runtime" {
646
669
  }
647
670
  /**
648
671
  * Called when one of an entity's logistic slots changes.
649
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_entity_logistic_slot_changed Online documentation}
672
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_entity_logistic_slot_changed Online documentation}
650
673
  */
651
674
  interface OnEntityLogisticSlotChangedEvent extends EventData {
652
675
  /**
@@ -676,7 +699,7 @@ declare module "factorio:runtime" {
676
699
  }
677
700
  /**
678
701
  * Called after an entity has been renamed either by the player or through script.
679
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_entity_renamed Online documentation}
702
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_entity_renamed Online documentation}
680
703
  */
681
704
  interface OnEntityRenamedEvent extends EventData {
682
705
  /**
@@ -697,7 +720,7 @@ declare module "factorio:runtime" {
697
720
  }
698
721
  /**
699
722
  * Called after entity copy-paste is done.
700
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_entity_settings_pasted Online documentation}
723
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_entity_settings_pasted Online documentation}
701
724
  */
702
725
  interface OnEntitySettingsPastedEvent extends EventData {
703
726
  readonly player_index: PlayerIndex
@@ -720,7 +743,7 @@ declare module "factorio:runtime" {
720
743
  }
721
744
  /**
722
745
  * Called when an entity is spawned by a EnemySpawner
723
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_entity_spawned Online documentation}
746
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_entity_spawned Online documentation}
724
747
  */
725
748
  interface OnEntitySpawnedEvent extends EventData {
726
749
  readonly spawner: LuaEntity
@@ -736,7 +759,7 @@ declare module "factorio:runtime" {
736
759
  }
737
760
  /**
738
761
  * Called after equipment is inserted into an equipment grid.
739
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_equipment_inserted Online documentation}
762
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_equipment_inserted Online documentation}
740
763
  */
741
764
  interface OnEquipmentInsertedEvent extends EventData {
742
765
  /**
@@ -758,7 +781,7 @@ declare module "factorio:runtime" {
758
781
  }
759
782
  /**
760
783
  * Called after equipment is removed from an equipment grid.
761
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_equipment_removed Online documentation}
784
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_equipment_removed Online documentation}
762
785
  */
763
786
  interface OnEquipmentRemovedEvent extends EventData {
764
787
  /**
@@ -788,7 +811,7 @@ declare module "factorio:runtime" {
788
811
  }
789
812
  /**
790
813
  * Called when the a forces cease fire values change.
791
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_force_cease_fire_changed Online documentation}
814
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_force_cease_fire_changed Online documentation}
792
815
  */
793
816
  interface OnForceCeaseFireChangedEvent extends EventData {
794
817
  /**
@@ -816,7 +839,7 @@ declare module "factorio:runtime" {
816
839
  * Called when a new force is created using `game.create_force()`
817
840
  *
818
841
  * This is not called when the default forces (`'player'`, `'enemy'`, `'neutral'`) are created as they will always exist.
819
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_force_created Online documentation}
842
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_force_created Online documentation}
820
843
  */
821
844
  interface OnForceCreatedEvent extends EventData {
822
845
  /**
@@ -834,7 +857,7 @@ declare module "factorio:runtime" {
834
857
  }
835
858
  /**
836
859
  * Called when the a forces friends change.
837
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_force_friends_changed Online documentation}
860
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_force_friends_changed Online documentation}
838
861
  */
839
862
  interface OnForceFriendsChangedEvent extends EventData {
840
863
  /**
@@ -860,7 +883,7 @@ declare module "factorio:runtime" {
860
883
  }
861
884
  /**
862
885
  * Called when {@link LuaForce#reset LuaForce::reset} is finished.
863
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_force_reset Online documentation}
886
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_force_reset Online documentation}
864
887
  */
865
888
  interface OnForceResetEvent extends EventData {
866
889
  readonly force: LuaForce
@@ -877,7 +900,7 @@ declare module "factorio:runtime" {
877
900
  * Called after two forces have been merged using `game.merge_forces()`.
878
901
  *
879
902
  * The source force is invalidated before this event is called and the name can be re-used in this event if desired.
880
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_forces_merged Online documentation}
903
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_forces_merged Online documentation}
881
904
  */
882
905
  interface OnForcesMergedEvent extends EventData {
883
906
  /**
@@ -903,7 +926,7 @@ declare module "factorio:runtime" {
903
926
  }
904
927
  /**
905
928
  * Called when two forces are about to be merged using `game.merge_forces()`.
906
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_forces_merging Online documentation}
929
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_forces_merging Online documentation}
907
930
  */
908
931
  interface OnForcesMergingEvent extends EventData {
909
932
  /**
@@ -927,7 +950,7 @@ declare module "factorio:runtime" {
927
950
  * 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.
928
951
  *
929
952
  * This event is not fired when the scenario is loaded via the map editor.
930
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_game_created_from_scenario Online documentation}
953
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_game_created_from_scenario Online documentation}
931
954
  */
932
955
  interface OnGameCreatedFromScenarioEvent extends EventData {
933
956
  /**
@@ -941,7 +964,7 @@ declare module "factorio:runtime" {
941
964
  }
942
965
  /**
943
966
  * Called when {@link LuaGuiElement} checked state is changed (related to checkboxes and radio buttons).
944
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_gui_checked_state_changed Online documentation}
967
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_gui_checked_state_changed Online documentation}
945
968
  */
946
969
  interface OnGuiCheckedStateChangedEvent extends EventData {
947
970
  /**
@@ -963,7 +986,7 @@ declare module "factorio:runtime" {
963
986
  }
964
987
  /**
965
988
  * Called when {@link LuaGuiElement} is clicked.
966
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_gui_click Online documentation}
989
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_gui_click Online documentation}
967
990
  */
968
991
  interface OnGuiClickEvent extends EventData {
969
992
  /**
@@ -1009,7 +1032,7 @@ declare module "factorio:runtime" {
1009
1032
  * 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.
1010
1033
  *
1011
1034
  * 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.
1012
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_gui_closed Online documentation}
1035
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_gui_closed Online documentation}
1013
1036
  */
1014
1037
  interface OnGuiClosedEvent extends EventData {
1015
1038
  /**
@@ -1063,7 +1086,7 @@ declare module "factorio:runtime" {
1063
1086
  }
1064
1087
  /**
1065
1088
  * Called when a {@link LuaGuiElement} is confirmed, for example by pressing Enter in a textfield.
1066
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_gui_confirmed Online documentation}
1089
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_gui_confirmed Online documentation}
1067
1090
  */
1068
1091
  interface OnGuiConfirmedEvent extends EventData {
1069
1092
  /**
@@ -1097,7 +1120,7 @@ declare module "factorio:runtime" {
1097
1120
  }
1098
1121
  /**
1099
1122
  * Called when {@link LuaGuiElement} element value is changed (related to choose element buttons).
1100
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_gui_elem_changed Online documentation}
1123
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_gui_elem_changed Online documentation}
1101
1124
  */
1102
1125
  interface OnGuiElemChangedEvent extends EventData {
1103
1126
  /**
@@ -1121,7 +1144,7 @@ declare module "factorio:runtime" {
1121
1144
  * Called when {@link LuaGuiElement} is hovered by the mouse.
1122
1145
  *
1123
1146
  * Only fired for events whose {@link LuaGuiElement#raise_hover_events LuaGuiElement::raise_hover_events} is `true`.
1124
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_gui_hover Online documentation}
1147
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_gui_hover Online documentation}
1125
1148
  */
1126
1149
  interface OnGuiHoverEvent extends EventData {
1127
1150
  /**
@@ -1145,7 +1168,7 @@ declare module "factorio:runtime" {
1145
1168
  * Called when the player's cursor leaves a {@link LuaGuiElement} that was previously hovered.
1146
1169
  *
1147
1170
  * Only fired for events whose {@link LuaGuiElement#raise_hover_events LuaGuiElement::raise_hover_events} is `true`.
1148
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_gui_leave Online documentation}
1171
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_gui_leave Online documentation}
1149
1172
  */
1150
1173
  interface OnGuiLeaveEvent extends EventData {
1151
1174
  /**
@@ -1167,7 +1190,7 @@ declare module "factorio:runtime" {
1167
1190
  }
1168
1191
  /**
1169
1192
  * Called when {@link LuaGuiElement} element location is changed (related to frames in `player.gui.screen`).
1170
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_gui_location_changed Online documentation}
1193
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_gui_location_changed Online documentation}
1171
1194
  */
1172
1195
  interface OnGuiLocationChangedEvent extends EventData {
1173
1196
  /**
@@ -1189,7 +1212,7 @@ declare module "factorio:runtime" {
1189
1212
  }
1190
1213
  /**
1191
1214
  * Called when the player opens a GUI.
1192
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_gui_opened Online documentation}
1215
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_gui_opened Online documentation}
1193
1216
  */
1194
1217
  interface OnGuiOpenedEvent extends EventData {
1195
1218
  /**
@@ -1235,7 +1258,7 @@ declare module "factorio:runtime" {
1235
1258
  }
1236
1259
  /**
1237
1260
  * Called when {@link LuaGuiElement} selected tab is changed (related to tabbed-panes).
1238
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_gui_selected_tab_changed Online documentation}
1261
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_gui_selected_tab_changed Online documentation}
1239
1262
  */
1240
1263
  interface OnGuiSelectedTabChangedEvent extends EventData {
1241
1264
  /**
@@ -1257,7 +1280,7 @@ declare module "factorio:runtime" {
1257
1280
  }
1258
1281
  /**
1259
1282
  * Called when {@link LuaGuiElement} selection state is changed (related to drop-downs and listboxes).
1260
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_gui_selection_state_changed Online documentation}
1283
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_gui_selection_state_changed Online documentation}
1261
1284
  */
1262
1285
  interface OnGuiSelectionStateChangedEvent extends EventData {
1263
1286
  /**
@@ -1279,7 +1302,7 @@ declare module "factorio:runtime" {
1279
1302
  }
1280
1303
  /**
1281
1304
  * Called when {@link LuaGuiElement} switch state is changed (related to switches).
1282
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_gui_switch_state_changed Online documentation}
1305
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_gui_switch_state_changed Online documentation}
1283
1306
  */
1284
1307
  interface OnGuiSwitchStateChangedEvent extends EventData {
1285
1308
  /**
@@ -1301,7 +1324,7 @@ declare module "factorio:runtime" {
1301
1324
  }
1302
1325
  /**
1303
1326
  * Called when {@link LuaGuiElement} text is changed by the player.
1304
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_gui_text_changed Online documentation}
1327
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_gui_text_changed Online documentation}
1305
1328
  */
1306
1329
  interface OnGuiTextChangedEvent extends EventData {
1307
1330
  /**
@@ -1327,7 +1350,7 @@ declare module "factorio:runtime" {
1327
1350
  }
1328
1351
  /**
1329
1352
  * Called when {@link LuaGuiElement} slider value is changed (related to the slider element).
1330
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_gui_value_changed Online documentation}
1353
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_gui_value_changed Online documentation}
1331
1354
  */
1332
1355
  interface OnGuiValueChangedEvent extends EventData {
1333
1356
  /**
@@ -1349,7 +1372,7 @@ declare module "factorio:runtime" {
1349
1372
  }
1350
1373
  /**
1351
1374
  * Called when a land mine is armed.
1352
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_land_mine_armed Online documentation}
1375
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_land_mine_armed Online documentation}
1353
1376
  */
1354
1377
  interface OnLandMineArmedEvent extends EventData {
1355
1378
  readonly mine: LuaEntity
@@ -1364,7 +1387,7 @@ declare module "factorio:runtime" {
1364
1387
  }
1365
1388
  /**
1366
1389
  * Called when a custom {@link import("factorio:prototype").ShortcutPrototype Lua shortcut} is pressed.
1367
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_lua_shortcut Online documentation}
1390
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_lua_shortcut Online documentation}
1368
1391
  */
1369
1392
  interface OnLuaShortcutEvent extends EventData {
1370
1393
  readonly player_index: PlayerIndex
@@ -1385,7 +1408,7 @@ declare module "factorio:runtime" {
1385
1408
  * Called when an entity is marked for deconstruction with the Deconstruction planner or via script.
1386
1409
  *
1387
1410
  * Event filter: [LuaEntityMarkedForDeconstructionEventFilter](LuaEntityMarkedForDeconstructionEventFilter]
1388
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_marked_for_deconstruction Online documentation}
1411
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_marked_for_deconstruction Online documentation}
1389
1412
  */
1390
1413
  interface OnMarkedForDeconstructionEvent extends EventData {
1391
1414
  readonly entity: LuaEntity
@@ -1403,7 +1426,7 @@ declare module "factorio:runtime" {
1403
1426
  * Called when an entity is marked for upgrade with the Upgrade planner or via script.
1404
1427
  *
1405
1428
  * Event filter: [LuaEntityMarkedForUpgradeEventFilter](LuaEntityMarkedForUpgradeEventFilter]
1406
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_marked_for_upgrade Online documentation}
1429
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_marked_for_upgrade Online documentation}
1407
1430
  */
1408
1431
  interface OnMarkedForUpgradeEvent extends EventData {
1409
1432
  readonly player_index?: PlayerIndex
@@ -1421,7 +1444,7 @@ declare module "factorio:runtime" {
1421
1444
  }
1422
1445
  /**
1423
1446
  * Called after a player purchases some offer from a `market` entity.
1424
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_market_item_purchased Online documentation}
1447
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_market_item_purchased Online documentation}
1425
1448
  */
1426
1449
  interface OnMarketItemPurchasedEvent extends EventData {
1427
1450
  /**
@@ -1451,7 +1474,7 @@ declare module "factorio:runtime" {
1451
1474
  }
1452
1475
  /**
1453
1476
  * Called when the player uses the 'Open item GUI' control on an item defined with the 'mod-openable' flag
1454
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_mod_item_opened Online documentation}
1477
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_mod_item_opened Online documentation}
1455
1478
  */
1456
1479
  interface OnModItemOpenedEvent extends EventData {
1457
1480
  /**
@@ -1479,7 +1502,7 @@ declare module "factorio:runtime" {
1479
1502
  * Called after an object is destroyed that has been registered with {@link LuaBootstrap#register_on_object_destroyed LuaBootstrap::register_on_object_destroyed}.
1480
1503
  *
1481
1504
  * 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.
1482
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_object_destroyed Online documentation}
1505
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_object_destroyed Online documentation}
1483
1506
  */
1484
1507
  interface OnObjectDestroyedEvent extends EventData {
1485
1508
  /**
@@ -1505,7 +1528,7 @@ declare module "factorio:runtime" {
1505
1528
  }
1506
1529
  /**
1507
1530
  * Called directly after a permission group is added.
1508
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_permission_group_added Online documentation}
1531
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_permission_group_added Online documentation}
1509
1532
  */
1510
1533
  interface OnPermissionGroupAddedEvent extends EventData {
1511
1534
  /**
@@ -1527,7 +1550,7 @@ declare module "factorio:runtime" {
1527
1550
  }
1528
1551
  /**
1529
1552
  * Called directly after a permission group is deleted.
1530
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_permission_group_deleted Online documentation}
1553
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_permission_group_deleted Online documentation}
1531
1554
  */
1532
1555
  interface OnPermissionGroupDeletedEvent extends EventData {
1533
1556
  /**
@@ -1553,7 +1576,7 @@ declare module "factorio:runtime" {
1553
1576
  }
1554
1577
  /**
1555
1578
  * Called directly after a permission group is edited in some way.
1556
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_permission_group_edited Online documentation}
1579
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_permission_group_edited Online documentation}
1557
1580
  */
1558
1581
  interface OnPermissionGroupEditedEvent extends EventData {
1559
1582
  /**
@@ -1602,7 +1625,7 @@ declare module "factorio:runtime" {
1602
1625
  }
1603
1626
  /**
1604
1627
  * Called directly after a permission string is imported.
1605
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_permission_string_imported Online documentation}
1628
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_permission_string_imported Online documentation}
1606
1629
  */
1607
1630
  interface OnPermissionStringImportedEvent extends EventData {
1608
1631
  /**
@@ -1620,7 +1643,7 @@ declare module "factorio:runtime" {
1620
1643
  }
1621
1644
  /**
1622
1645
  * Called when a player picks up an item.
1623
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_picked_up_item Online documentation}
1646
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_picked_up_item Online documentation}
1624
1647
  */
1625
1648
  interface OnPickedUpItemEvent extends EventData {
1626
1649
  readonly item_stack: SimpleItemStack
@@ -1636,7 +1659,7 @@ declare module "factorio:runtime" {
1636
1659
  }
1637
1660
  /**
1638
1661
  * Called after a player alt-reverse-selects an area with a selection-tool item.
1639
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_alt_reverse_selected_area Online documentation}
1662
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_alt_reverse_selected_area Online documentation}
1640
1663
  */
1641
1664
  interface OnPlayerAltReverseSelectedAreaEvent extends EventData {
1642
1665
  /**
@@ -1674,7 +1697,7 @@ declare module "factorio:runtime" {
1674
1697
  }
1675
1698
  /**
1676
1699
  * Called after a player alt-selects an area with a selection-tool item.
1677
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_alt_selected_area Online documentation}
1700
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_alt_selected_area Online documentation}
1678
1701
  */
1679
1702
  interface OnPlayerAltSelectedAreaEvent extends EventData {
1680
1703
  /**
@@ -1716,7 +1739,7 @@ declare module "factorio:runtime" {
1716
1739
  }
1717
1740
  /**
1718
1741
  * Called after a players ammo inventory changed in some way.
1719
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_ammo_inventory_changed Online documentation}
1742
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_ammo_inventory_changed Online documentation}
1720
1743
  */
1721
1744
  interface OnPlayerAmmoInventoryChangedEvent extends EventData {
1722
1745
  readonly player_index: PlayerIndex
@@ -1731,7 +1754,7 @@ declare module "factorio:runtime" {
1731
1754
  }
1732
1755
  /**
1733
1756
  * Called after a players armor inventory changed in some way.
1734
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_armor_inventory_changed Online documentation}
1757
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_armor_inventory_changed Online documentation}
1735
1758
  */
1736
1759
  interface OnPlayerArmorInventoryChangedEvent extends EventData {
1737
1760
  readonly player_index: PlayerIndex
@@ -1746,7 +1769,7 @@ declare module "factorio:runtime" {
1746
1769
  }
1747
1770
  /**
1748
1771
  * Called when a player is banned.
1749
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_banned Online documentation}
1772
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_banned Online documentation}
1750
1773
  */
1751
1774
  interface OnPlayerBannedEvent extends EventData {
1752
1775
  /**
@@ -1776,7 +1799,7 @@ declare module "factorio:runtime" {
1776
1799
  }
1777
1800
  /**
1778
1801
  * Called after a player builds tiles.
1779
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_built_tile Online documentation}
1802
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_built_tile Online documentation}
1780
1803
  */
1781
1804
  interface OnPlayerBuiltTileEvent extends EventData {
1782
1805
  readonly player_index: PlayerIndex
@@ -1815,7 +1838,7 @@ declare module "factorio:runtime" {
1815
1838
  }
1816
1839
  /**
1817
1840
  * Called when a player cancels crafting.
1818
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_cancelled_crafting Online documentation}
1841
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_cancelled_crafting Online documentation}
1819
1842
  */
1820
1843
  interface OnPlayerCancelledCraftingEvent extends EventData {
1821
1844
  /**
@@ -1845,7 +1868,7 @@ declare module "factorio:runtime" {
1845
1868
  }
1846
1869
  /**
1847
1870
  * Called after a player changes forces.
1848
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_changed_force Online documentation}
1871
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_changed_force Online documentation}
1849
1872
  */
1850
1873
  interface OnPlayerChangedForceEvent extends EventData {
1851
1874
  /**
@@ -1867,7 +1890,7 @@ declare module "factorio:runtime" {
1867
1890
  }
1868
1891
  /**
1869
1892
  * Called when the tile position a player is located at changes.
1870
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_changed_position Online documentation}
1893
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_changed_position Online documentation}
1871
1894
  */
1872
1895
  interface OnPlayerChangedPositionEvent extends EventData {
1873
1896
  /**
@@ -1885,7 +1908,7 @@ declare module "factorio:runtime" {
1885
1908
  }
1886
1909
  /**
1887
1910
  * Called after a player changes surfaces.
1888
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_changed_surface Online documentation}
1911
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_changed_surface Online documentation}
1889
1912
  */
1890
1913
  interface OnPlayerChangedSurfaceEvent extends EventData {
1891
1914
  /**
@@ -1907,7 +1930,7 @@ declare module "factorio:runtime" {
1907
1930
  }
1908
1931
  /**
1909
1932
  * Called when cheat mode is disabled on a player.
1910
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_cheat_mode_disabled Online documentation}
1933
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_cheat_mode_disabled Online documentation}
1911
1934
  */
1912
1935
  interface OnPlayerCheatModeDisabledEvent extends EventData {
1913
1936
  /**
@@ -1925,7 +1948,7 @@ declare module "factorio:runtime" {
1925
1948
  }
1926
1949
  /**
1927
1950
  * Called when cheat mode is enabled on a player.
1928
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_cheat_mode_enabled Online documentation}
1951
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_cheat_mode_enabled Online documentation}
1929
1952
  */
1930
1953
  interface OnPlayerCheatModeEnabledEvent extends EventData {
1931
1954
  /**
@@ -1943,7 +1966,7 @@ declare module "factorio:runtime" {
1943
1966
  }
1944
1967
  /**
1945
1968
  * Called when a player clicks a gps tag
1946
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_clicked_gps_tag Online documentation}
1969
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_clicked_gps_tag Online documentation}
1947
1970
  */
1948
1971
  interface OnPlayerClickedGpsTagEvent extends EventData {
1949
1972
  /**
@@ -1969,7 +1992,7 @@ declare module "factorio:runtime" {
1969
1992
  }
1970
1993
  /**
1971
1994
  * Called when a player clicks the "confirm" button in the configure Blueprint GUI.
1972
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_configured_blueprint Online documentation}
1995
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_configured_blueprint Online documentation}
1973
1996
  */
1974
1997
  interface OnPlayerConfiguredBlueprintEvent extends EventData {
1975
1998
  /**
@@ -1987,7 +2010,7 @@ declare module "factorio:runtime" {
1987
2010
  }
1988
2011
  /**
1989
2012
  * Called after a player changes controller types.
1990
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_controller_changed Online documentation}
2013
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_controller_changed Online documentation}
1991
2014
  */
1992
2015
  interface OnPlayerControllerChangedEvent extends EventData {
1993
2016
  /**
@@ -2009,7 +2032,7 @@ declare module "factorio:runtime" {
2009
2032
  }
2010
2033
  /**
2011
2034
  * 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}).
2012
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_crafted_item Online documentation}
2035
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_crafted_item Online documentation}
2013
2036
  */
2014
2037
  interface OnPlayerCraftedItemEvent extends EventData {
2015
2038
  /**
@@ -2035,7 +2058,7 @@ declare module "factorio:runtime" {
2035
2058
  }
2036
2059
  /**
2037
2060
  * Called after the player was created.
2038
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_created Online documentation}
2061
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_created Online documentation}
2039
2062
  */
2040
2063
  interface OnPlayerCreatedEvent extends EventData {
2041
2064
  readonly player_index: PlayerIndex
@@ -2052,7 +2075,7 @@ declare module "factorio:runtime" {
2052
2075
  * Called after a player's {@link LuaControl#cursor_stack cursor stack} changed in some way.
2053
2076
  *
2054
2077
  * This is fired in the same tick that the change happens, but not instantly.
2055
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_cursor_stack_changed Online documentation}
2078
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_cursor_stack_changed Online documentation}
2056
2079
  */
2057
2080
  interface OnPlayerCursorStackChangedEvent extends EventData {
2058
2081
  readonly player_index: PlayerIndex
@@ -2067,7 +2090,7 @@ declare module "factorio:runtime" {
2067
2090
  }
2068
2091
  /**
2069
2092
  * Called when a player selects an area with a deconstruction planner.
2070
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_deconstructed_area Online documentation}
2093
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_deconstructed_area Online documentation}
2071
2094
  */
2072
2095
  interface OnPlayerDeconstructedAreaEvent extends EventData {
2073
2096
  /**
@@ -2109,7 +2132,7 @@ declare module "factorio:runtime" {
2109
2132
  }
2110
2133
  /**
2111
2134
  * Called when a player is demoted.
2112
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_demoted Online documentation}
2135
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_demoted Online documentation}
2113
2136
  */
2114
2137
  interface OnPlayerDemotedEvent extends EventData {
2115
2138
  /**
@@ -2127,7 +2150,7 @@ declare module "factorio:runtime" {
2127
2150
  }
2128
2151
  /**
2129
2152
  * Called after a player dies.
2130
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_died Online documentation}
2153
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_died Online documentation}
2131
2154
  */
2132
2155
  interface OnPlayerDiedEvent extends EventData {
2133
2156
  readonly player_index: PlayerIndex
@@ -2143,7 +2166,7 @@ declare module "factorio:runtime" {
2143
2166
  }
2144
2167
  /**
2145
2168
  * 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.
2146
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_display_density_scale_changed Online documentation}
2169
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_display_density_scale_changed Online documentation}
2147
2170
  */
2148
2171
  interface OnPlayerDisplayDensityScaleChangedEvent extends EventData {
2149
2172
  /**
@@ -2165,7 +2188,7 @@ declare module "factorio:runtime" {
2165
2188
  }
2166
2189
  /**
2167
2190
  * Called when the display resolution changes for a given player.
2168
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_display_resolution_changed Online documentation}
2191
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_display_resolution_changed Online documentation}
2169
2192
  */
2170
2193
  interface OnPlayerDisplayResolutionChangedEvent extends EventData {
2171
2194
  /**
@@ -2187,7 +2210,7 @@ declare module "factorio:runtime" {
2187
2210
  }
2188
2211
  /**
2189
2212
  * Called when the display scale changes for a given player.
2190
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_display_scale_changed Online documentation}
2213
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_display_scale_changed Online documentation}
2191
2214
  */
2192
2215
  interface OnPlayerDisplayScaleChangedEvent extends EventData {
2193
2216
  /**
@@ -2211,7 +2234,7 @@ declare module "factorio:runtime" {
2211
2234
  * Called when the player's driving state has changed, meaning a player has either entered or left a vehicle.
2212
2235
  *
2213
2236
  * This event is not raised when the player is ejected from a vehicle due to it being destroyed.
2214
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_driving_changed_state Online documentation}
2237
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_driving_changed_state Online documentation}
2215
2238
  */
2216
2239
  interface OnPlayerDrivingChangedStateEvent extends EventData {
2217
2240
  readonly player_index: PlayerIndex
@@ -2230,7 +2253,7 @@ declare module "factorio:runtime" {
2230
2253
  }
2231
2254
  /**
2232
2255
  * Called when a player drops an item on the ground.
2233
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_dropped_item Online documentation}
2256
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_dropped_item Online documentation}
2234
2257
  */
2235
2258
  interface OnPlayerDroppedItemEvent extends EventData {
2236
2259
  readonly player_index: PlayerIndex
@@ -2249,7 +2272,7 @@ declare module "factorio:runtime" {
2249
2272
  }
2250
2273
  /**
2251
2274
  * Called when a player fast-transfers something to or from an entity.
2252
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_fast_transferred Online documentation}
2275
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_fast_transferred Online documentation}
2253
2276
  */
2254
2277
  interface OnPlayerFastTransferredEvent extends EventData {
2255
2278
  /**
@@ -2279,7 +2302,7 @@ declare module "factorio:runtime" {
2279
2302
  }
2280
2303
  /**
2281
2304
  * Called when the player flips an entity. This event is only fired when the entity actually changes its orientation or mirroring -- pressing the flip keys on an entity that can't be flipped won't fire this event.
2282
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_flipped_entity Online documentation}
2305
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_flipped_entity Online documentation}
2283
2306
  */
2284
2307
  interface OnPlayerFlippedEntityEvent extends EventData {
2285
2308
  /**
@@ -2302,7 +2325,7 @@ declare module "factorio:runtime" {
2302
2325
  }
2303
2326
  /**
2304
2327
  * Called after player flushed fluid
2305
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_flushed_fluid Online documentation}
2328
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_flushed_fluid Online documentation}
2306
2329
  */
2307
2330
  interface OnPlayerFlushedFluidEvent extends EventData {
2308
2331
  /**
@@ -2336,7 +2359,7 @@ declare module "factorio:runtime" {
2336
2359
  }
2337
2360
  /**
2338
2361
  * Called after a players gun inventory changed in some way.
2339
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_gun_inventory_changed Online documentation}
2362
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_gun_inventory_changed Online documentation}
2340
2363
  */
2341
2364
  interface OnPlayerGunInventoryChangedEvent extends EventData {
2342
2365
  readonly player_index: PlayerIndex
@@ -2351,7 +2374,7 @@ declare module "factorio:runtime" {
2351
2374
  }
2352
2375
  /**
2353
2376
  * Called when a player's input method changes. See {@link LuaPlayer#input_method LuaPlayer::input_method}.
2354
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_input_method_changed Online documentation}
2377
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_input_method_changed Online documentation}
2355
2378
  */
2356
2379
  interface OnPlayerInputMethodChangedEvent extends EventData {
2357
2380
  /**
@@ -2369,7 +2392,7 @@ declare module "factorio:runtime" {
2369
2392
  }
2370
2393
  /**
2371
2394
  * 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.
2372
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_joined_game Online documentation}
2395
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_joined_game Online documentation}
2373
2396
  */
2374
2397
  interface OnPlayerJoinedGameEvent extends EventData {
2375
2398
  readonly player_index: PlayerIndex
@@ -2384,7 +2407,7 @@ declare module "factorio:runtime" {
2384
2407
  }
2385
2408
  /**
2386
2409
  * Called when a player is kicked.
2387
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_kicked Online documentation}
2410
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_kicked Online documentation}
2388
2411
  */
2389
2412
  interface OnPlayerKickedEvent extends EventData {
2390
2413
  /**
@@ -2410,7 +2433,7 @@ declare module "factorio:runtime" {
2410
2433
  }
2411
2434
  /**
2412
2435
  * 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.
2413
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_left_game Online documentation}
2436
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_left_game Online documentation}
2414
2437
  */
2415
2438
  interface OnPlayerLeftGameEvent extends EventData {
2416
2439
  readonly player_index: PlayerIndex
@@ -2426,7 +2449,7 @@ declare module "factorio:runtime" {
2426
2449
  }
2427
2450
  /**
2428
2451
  * Called when a player's active locale changes. See {@link LuaPlayer#locale LuaPlayer::locale}.
2429
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_locale_changed Online documentation}
2452
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_locale_changed Online documentation}
2430
2453
  */
2431
2454
  interface OnPlayerLocaleChangedEvent extends EventData {
2432
2455
  /**
@@ -2448,7 +2471,7 @@ declare module "factorio:runtime" {
2448
2471
  }
2449
2472
  /**
2450
2473
  * Called after a players main inventory changed in some way.
2451
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_main_inventory_changed Online documentation}
2474
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_main_inventory_changed Online documentation}
2452
2475
  */
2453
2476
  interface OnPlayerMainInventoryChangedEvent extends EventData {
2454
2477
  readonly player_index: PlayerIndex
@@ -2469,7 +2492,7 @@ declare module "factorio:runtime" {
2469
2492
  * 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.
2470
2493
  *
2471
2494
  * Event filter: [LuaPlayerMinedEntityEventFilter](LuaPlayerMinedEntityEventFilter]
2472
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_mined_entity Online documentation}
2495
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_mined_entity Online documentation}
2473
2496
  */
2474
2497
  interface OnPlayerMinedEntityEvent extends EventData {
2475
2498
  /**
@@ -2495,7 +2518,7 @@ declare module "factorio:runtime" {
2495
2518
  }
2496
2519
  /**
2497
2520
  * Called when the player mines something.
2498
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_mined_item Online documentation}
2521
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_mined_item Online documentation}
2499
2522
  */
2500
2523
  interface OnPlayerMinedItemEvent extends EventData {
2501
2524
  /**
@@ -2514,7 +2537,7 @@ declare module "factorio:runtime" {
2514
2537
  }
2515
2538
  /**
2516
2539
  * Called after a player mines tiles.
2517
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_mined_tile Online documentation}
2540
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_mined_tile Online documentation}
2518
2541
  */
2519
2542
  interface OnPlayerMinedTileEvent extends EventData {
2520
2543
  readonly player_index: PlayerIndex
@@ -2537,7 +2560,7 @@ declare module "factorio:runtime" {
2537
2560
  }
2538
2561
  /**
2539
2562
  * Called when a player is muted.
2540
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_muted Online documentation}
2563
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_muted Online documentation}
2541
2564
  */
2542
2565
  interface OnPlayerMutedEvent extends EventData {
2543
2566
  /**
@@ -2555,7 +2578,7 @@ declare module "factorio:runtime" {
2555
2578
  }
2556
2579
  /**
2557
2580
  * Called when a player invokes the "smart pipette" over an entity.
2558
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_pipette Online documentation}
2581
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_pipette Online documentation}
2559
2582
  */
2560
2583
  interface OnPlayerPipetteEvent extends EventData {
2561
2584
  /**
@@ -2585,7 +2608,7 @@ declare module "factorio:runtime" {
2585
2608
  }
2586
2609
  /**
2587
2610
  * Called after the player puts equipment in an equipment grid
2588
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_placed_equipment Online documentation}
2611
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_placed_equipment Online documentation}
2589
2612
  */
2590
2613
  interface OnPlayerPlacedEquipmentEvent extends EventData {
2591
2614
  readonly player_index: PlayerIndex
@@ -2608,7 +2631,7 @@ declare module "factorio:runtime" {
2608
2631
  }
2609
2632
  /**
2610
2633
  * Called when a player is promoted.
2611
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_promoted Online documentation}
2634
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_promoted Online documentation}
2612
2635
  */
2613
2636
  interface OnPlayerPromotedEvent extends EventData {
2614
2637
  /**
@@ -2626,7 +2649,7 @@ declare module "factorio:runtime" {
2626
2649
  }
2627
2650
  /**
2628
2651
  * 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.
2629
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_removed Online documentation}
2652
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_removed Online documentation}
2630
2653
  */
2631
2654
  interface OnPlayerRemovedEvent extends EventData {
2632
2655
  /**
@@ -2644,7 +2667,7 @@ declare module "factorio:runtime" {
2644
2667
  }
2645
2668
  /**
2646
2669
  * Called after the player removes equipment from an equipment grid
2647
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_removed_equipment Online documentation}
2670
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_removed_equipment Online documentation}
2648
2671
  */
2649
2672
  interface OnPlayerRemovedEquipmentEvent extends EventData {
2650
2673
  readonly player_index: PlayerIndex
@@ -2677,7 +2700,7 @@ declare module "factorio:runtime" {
2677
2700
  * Called when a player repairs an entity.
2678
2701
  *
2679
2702
  * Event filter: [LuaPlayerRepairedEntityEventFilter](LuaPlayerRepairedEntityEventFilter]
2680
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_repaired_entity Online documentation}
2703
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_repaired_entity Online documentation}
2681
2704
  */
2682
2705
  interface OnPlayerRepairedEntityEvent extends EventData {
2683
2706
  readonly player_index: PlayerIndex
@@ -2693,7 +2716,7 @@ declare module "factorio:runtime" {
2693
2716
  }
2694
2717
  /**
2695
2718
  * Called after a player respawns.
2696
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_respawned Online documentation}
2719
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_respawned Online documentation}
2697
2720
  */
2698
2721
  interface OnPlayerRespawnedEvent extends EventData {
2699
2722
  readonly player_index: PlayerIndex
@@ -2712,7 +2735,7 @@ declare module "factorio:runtime" {
2712
2735
  }
2713
2736
  /**
2714
2737
  * Called after a player reverse-selects an area with a selection-tool item.
2715
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_reverse_selected_area Online documentation}
2738
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_reverse_selected_area Online documentation}
2716
2739
  */
2717
2740
  interface OnPlayerReverseSelectedAreaEvent extends EventData {
2718
2741
  /**
@@ -2752,7 +2775,7 @@ declare module "factorio:runtime" {
2752
2775
  * 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.
2753
2776
  *
2754
2777
  * Entities being flipped will not fire this event, even if the flip involves rotating. See {@link OnPlayerFlippedEntityEvent on_player_flipped_entity}.
2755
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_rotated_entity Online documentation}
2778
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_rotated_entity Online documentation}
2756
2779
  */
2757
2780
  interface OnPlayerRotatedEntityEvent extends EventData {
2758
2781
  /**
@@ -2775,7 +2798,7 @@ declare module "factorio:runtime" {
2775
2798
  }
2776
2799
  /**
2777
2800
  * Called after a player selects an area with a selection-tool item.
2778
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_selected_area Online documentation}
2801
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_selected_area Online documentation}
2779
2802
  */
2780
2803
  interface OnPlayerSelectedAreaEvent extends EventData {
2781
2804
  /**
@@ -2817,7 +2840,7 @@ declare module "factorio:runtime" {
2817
2840
  }
2818
2841
  /**
2819
2842
  * Called when a player sets a quickbar slot to anything (new value, or set to empty).
2820
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_set_quick_bar_slot Online documentation}
2843
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_set_quick_bar_slot Online documentation}
2821
2844
  */
2822
2845
  interface OnPlayerSetQuickBarSlotEvent extends EventData {
2823
2846
  readonly player_index: PlayerIndex
@@ -2832,7 +2855,7 @@ declare module "factorio:runtime" {
2832
2855
  }
2833
2856
  /**
2834
2857
  * Called when a player selects an area with a blueprint.
2835
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_setup_blueprint Online documentation}
2858
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_setup_blueprint Online documentation}
2836
2859
  */
2837
2860
  interface OnPlayerSetupBlueprintEvent extends EventData {
2838
2861
  /**
@@ -2878,7 +2901,7 @@ declare module "factorio:runtime" {
2878
2901
  }
2879
2902
  /**
2880
2903
  * Called when a player toggles alt mode, also known as "show entity info".
2881
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_toggled_alt_mode Online documentation}
2904
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_toggled_alt_mode Online documentation}
2882
2905
  */
2883
2906
  interface OnPlayerToggledAltModeEvent extends EventData {
2884
2907
  readonly player_index: PlayerIndex
@@ -2897,7 +2920,7 @@ declare module "factorio:runtime" {
2897
2920
  }
2898
2921
  /**
2899
2922
  * Called when a player toggles the map editor on or off.
2900
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_toggled_map_editor Online documentation}
2923
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_toggled_map_editor Online documentation}
2901
2924
  */
2902
2925
  interface OnPlayerToggledMapEditorEvent extends EventData {
2903
2926
  readonly player_index: PlayerIndex
@@ -2912,7 +2935,7 @@ declare module "factorio:runtime" {
2912
2935
  }
2913
2936
  /**
2914
2937
  * Called after a players trash inventory changed in some way.
2915
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_trash_inventory_changed Online documentation}
2938
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_trash_inventory_changed Online documentation}
2916
2939
  */
2917
2940
  interface OnPlayerTrashInventoryChangedEvent extends EventData {
2918
2941
  readonly player_index: PlayerIndex
@@ -2927,7 +2950,7 @@ declare module "factorio:runtime" {
2927
2950
  }
2928
2951
  /**
2929
2952
  * Called when a player is un-banned.
2930
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_unbanned Online documentation}
2953
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_unbanned Online documentation}
2931
2954
  */
2932
2955
  interface OnPlayerUnbannedEvent extends EventData {
2933
2956
  /**
@@ -2957,7 +2980,7 @@ declare module "factorio:runtime" {
2957
2980
  }
2958
2981
  /**
2959
2982
  * Called when a player is unmuted.
2960
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_unmuted Online documentation}
2983
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_unmuted Online documentation}
2961
2984
  */
2962
2985
  interface OnPlayerUnmutedEvent extends EventData {
2963
2986
  /**
@@ -2975,7 +2998,7 @@ declare module "factorio:runtime" {
2975
2998
  }
2976
2999
  /**
2977
3000
  * Called when a player uses a capsule that results in some game action.
2978
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_used_capsule Online documentation}
3001
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_used_capsule Online documentation}
2979
3002
  */
2980
3003
  interface OnPlayerUsedCapsuleEvent extends EventData {
2981
3004
  /**
@@ -3005,7 +3028,7 @@ declare module "factorio:runtime" {
3005
3028
  }
3006
3029
  /**
3007
3030
  * Called when a player uses spidertron remote to send all selected units to a given position
3008
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_player_used_spidertron_remote Online documentation}
3031
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_used_spidertron_remote Online documentation}
3009
3032
  */
3010
3033
  interface OnPlayerUsedSpidertronRemoteEvent extends EventData {
3011
3034
  /**
@@ -3029,7 +3052,7 @@ declare module "factorio:runtime" {
3029
3052
  * Called after an entity dies.
3030
3053
  *
3031
3054
  * Event filter: [LuaPostEntityDiedEventFilter](LuaPostEntityDiedEventFilter]
3032
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_post_entity_died Online documentation}
3055
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_post_entity_died Online documentation}
3033
3056
  */
3034
3057
  interface OnPostEntityDiedEvent extends EventData {
3035
3058
  /**
@@ -3079,7 +3102,7 @@ declare module "factorio:runtime" {
3079
3102
  }
3080
3103
  /**
3081
3104
  * Called when players uses an item to build something. Called before {@link OnBuiltEntityEvent on_built_entity}.
3082
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_pre_build Online documentation}
3105
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_pre_build Online documentation}
3083
3106
  */
3084
3107
  interface OnPreBuildEvent extends EventData {
3085
3108
  /**
@@ -3125,7 +3148,7 @@ declare module "factorio:runtime" {
3125
3148
  }
3126
3149
  /**
3127
3150
  * Called before one or more chunks are deleted using {@link LuaSurface#delete_chunk LuaSurface::delete_chunk}.
3128
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_pre_chunk_deleted Online documentation}
3151
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_pre_chunk_deleted Online documentation}
3129
3152
  */
3130
3153
  interface OnPreChunkDeletedEvent extends EventData {
3131
3154
  readonly surface_index: SurfaceIndex
@@ -3144,7 +3167,7 @@ declare module "factorio:runtime" {
3144
3167
  }
3145
3168
  /**
3146
3169
  * Called before entity copy-paste is done.
3147
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_pre_entity_settings_pasted Online documentation}
3170
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_pre_entity_settings_pasted Online documentation}
3148
3171
  */
3149
3172
  interface OnPreEntitySettingsPastedEvent extends EventData {
3150
3173
  readonly player_index: PlayerIndex
@@ -3171,7 +3194,7 @@ declare module "factorio:runtime" {
3171
3194
  * Also called for item request proxies before they are destroyed as a result of being marked for deconstruction.
3172
3195
  *
3173
3196
  * Event filter: [LuaPreGhostDeconstructedEventFilter](LuaPreGhostDeconstructedEventFilter]
3174
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_pre_ghost_deconstructed Online documentation}
3197
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_pre_ghost_deconstructed Online documentation}
3175
3198
  */
3176
3199
  interface OnPreGhostDeconstructedEvent extends EventData {
3177
3200
  /**
@@ -3192,7 +3215,7 @@ declare module "factorio:runtime" {
3192
3215
  * Called before a ghost entity is upgraded.
3193
3216
  *
3194
3217
  * Event filter: [LuaPreGhostUpgradedEventFilter](LuaPreGhostUpgradedEventFilter]
3195
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_pre_ghost_upgraded Online documentation}
3218
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_pre_ghost_upgraded Online documentation}
3196
3219
  */
3197
3220
  interface OnPreGhostUpgradedEvent extends EventData {
3198
3221
  /**
@@ -3213,7 +3236,7 @@ declare module "factorio:runtime" {
3213
3236
  }
3214
3237
  /**
3215
3238
  * Called directly before a permission group is deleted.
3216
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_pre_permission_group_deleted Online documentation}
3239
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_pre_permission_group_deleted Online documentation}
3217
3240
  */
3218
3241
  interface OnPrePermissionGroupDeletedEvent extends EventData {
3219
3242
  /**
@@ -3235,7 +3258,7 @@ declare module "factorio:runtime" {
3235
3258
  }
3236
3259
  /**
3237
3260
  * Called directly before a permission string is imported.
3238
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_pre_permission_string_imported Online documentation}
3261
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_pre_permission_string_imported Online documentation}
3239
3262
  */
3240
3263
  interface OnPrePermissionStringImportedEvent extends EventData {
3241
3264
  /**
@@ -3253,7 +3276,7 @@ declare module "factorio:runtime" {
3253
3276
  }
3254
3277
  /**
3255
3278
  * Called when a player queues something to be crafted.
3256
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_pre_player_crafted_item Online documentation}
3279
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_pre_player_crafted_item Online documentation}
3257
3280
  */
3258
3281
  interface OnPrePlayerCraftedItemEvent extends EventData {
3259
3282
  /**
@@ -3283,7 +3306,7 @@ declare module "factorio:runtime" {
3283
3306
  }
3284
3307
  /**
3285
3308
  * Called before a players dies.
3286
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_pre_player_died Online documentation}
3309
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_pre_player_died Online documentation}
3287
3310
  */
3288
3311
  interface OnPrePlayerDiedEvent extends EventData {
3289
3312
  readonly player_index: PlayerIndex
@@ -3299,7 +3322,7 @@ declare module "factorio:runtime" {
3299
3322
  }
3300
3323
  /**
3301
3324
  * Called before a player leaves the game.
3302
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_pre_player_left_game Online documentation}
3325
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_pre_player_left_game Online documentation}
3303
3326
  */
3304
3327
  interface OnPrePlayerLeftGameEvent extends EventData {
3305
3328
  readonly player_index: PlayerIndex
@@ -3317,7 +3340,7 @@ declare module "factorio:runtime" {
3317
3340
  * 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.
3318
3341
  *
3319
3342
  * Event filter: [LuaPrePlayerMinedEntityEventFilter](LuaPrePlayerMinedEntityEventFilter]
3320
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_pre_player_mined_item Online documentation}
3343
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_pre_player_mined_item Online documentation}
3321
3344
  */
3322
3345
  interface OnPrePlayerMinedItemEvent extends EventData {
3323
3346
  /**
@@ -3336,7 +3359,7 @@ declare module "factorio:runtime" {
3336
3359
  }
3337
3360
  /**
3338
3361
  * 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.
3339
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_pre_player_removed Online documentation}
3362
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_pre_player_removed Online documentation}
3340
3363
  */
3341
3364
  interface OnPrePlayerRemovedEvent extends EventData {
3342
3365
  /**
@@ -3354,7 +3377,7 @@ declare module "factorio:runtime" {
3354
3377
  }
3355
3378
  /**
3356
3379
  * Called before a player toggles the map editor on or off.
3357
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_pre_player_toggled_map_editor Online documentation}
3380
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_pre_player_toggled_map_editor Online documentation}
3358
3381
  */
3359
3382
  interface OnPrePlayerToggledMapEditorEvent extends EventData {
3360
3383
  readonly player_index: PlayerIndex
@@ -3369,7 +3392,7 @@ declare module "factorio:runtime" {
3369
3392
  }
3370
3393
  /**
3371
3394
  * Called directly before a robot explodes cliffs.
3372
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_pre_robot_exploded_cliff Online documentation}
3395
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_pre_robot_exploded_cliff Online documentation}
3373
3396
  */
3374
3397
  interface OnPreRobotExplodedCliffEvent extends EventData {
3375
3398
  readonly robot: LuaEntity
@@ -3393,7 +3416,7 @@ declare module "factorio:runtime" {
3393
3416
  }
3394
3417
  /**
3395
3418
  * Called just before the scenario finishes.
3396
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_pre_scenario_finished Online documentation}
3419
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_pre_scenario_finished Online documentation}
3397
3420
  */
3398
3421
  interface OnPreScenarioFinishedEvent extends EventData {
3399
3422
  /**
@@ -3411,7 +3434,7 @@ declare module "factorio:runtime" {
3411
3434
  }
3412
3435
  /**
3413
3436
  * Called just before a script inventory is resized.
3414
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_pre_script_inventory_resized Online documentation}
3437
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_pre_script_inventory_resized Online documentation}
3415
3438
  */
3416
3439
  interface OnPreScriptInventoryResizedEvent extends EventData {
3417
3440
  /**
@@ -3442,7 +3465,7 @@ declare module "factorio:runtime" {
3442
3465
  }
3443
3466
  /**
3444
3467
  * Called just before a surface is cleared (all entities removed and all chunks deleted).
3445
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_pre_surface_cleared Online documentation}
3468
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_pre_surface_cleared Online documentation}
3446
3469
  */
3447
3470
  interface OnPreSurfaceClearedEvent extends EventData {
3448
3471
  readonly surface_index: SurfaceIndex
@@ -3457,7 +3480,7 @@ declare module "factorio:runtime" {
3457
3480
  }
3458
3481
  /**
3459
3482
  * Called just before a surface is deleted.
3460
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_pre_surface_deleted Online documentation}
3483
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_pre_surface_deleted Online documentation}
3461
3484
  */
3462
3485
  interface OnPreSurfaceDeletedEvent extends EventData {
3463
3486
  readonly surface_index: SurfaceIndex
@@ -3472,7 +3495,7 @@ declare module "factorio:runtime" {
3472
3495
  }
3473
3496
  /**
3474
3497
  * Called when the player triggers "redo".
3475
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_redo_applied Online documentation}
3498
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_redo_applied Online documentation}
3476
3499
  */
3477
3500
  interface OnRedoAppliedEvent extends EventData {
3478
3501
  /**
@@ -3494,7 +3517,7 @@ declare module "factorio:runtime" {
3494
3517
  }
3495
3518
  /**
3496
3519
  * Called when research is cancelled.
3497
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_research_cancelled Online documentation}
3520
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_research_cancelled Online documentation}
3498
3521
  */
3499
3522
  interface OnResearchCancelledEvent extends EventData {
3500
3523
  /**
@@ -3516,7 +3539,7 @@ declare module "factorio:runtime" {
3516
3539
  }
3517
3540
  /**
3518
3541
  * Called when a research finishes.
3519
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_research_finished Online documentation}
3542
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_research_finished Online documentation}
3520
3543
  */
3521
3544
  interface OnResearchFinishedEvent extends EventData {
3522
3545
  /**
@@ -3538,7 +3561,7 @@ declare module "factorio:runtime" {
3538
3561
  }
3539
3562
  /**
3540
3563
  * Called when research is moved forwards or backwards in the research queue.
3541
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_research_moved Online documentation}
3564
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_research_moved Online documentation}
3542
3565
  */
3543
3566
  interface OnResearchMovedEvent extends EventData {
3544
3567
  /**
@@ -3556,7 +3579,7 @@ declare module "factorio:runtime" {
3556
3579
  }
3557
3580
  /**
3558
3581
  * Called when a research is reversed (unresearched).
3559
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_research_reversed Online documentation}
3582
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_research_reversed Online documentation}
3560
3583
  */
3561
3584
  interface OnResearchReversedEvent extends EventData {
3562
3585
  /**
@@ -3578,7 +3601,7 @@ declare module "factorio:runtime" {
3578
3601
  }
3579
3602
  /**
3580
3603
  * Called when a technology research starts.
3581
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_research_started Online documentation}
3604
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_research_started Online documentation}
3582
3605
  */
3583
3606
  interface OnResearchStartedEvent extends EventData {
3584
3607
  /**
@@ -3597,7 +3620,7 @@ declare module "factorio:runtime" {
3597
3620
  }
3598
3621
  /**
3599
3622
  * Called when a resource entity reaches 0 or its minimum yield for infinite resources.
3600
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_resource_depleted Online documentation}
3623
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_resource_depleted Online documentation}
3601
3624
  */
3602
3625
  interface OnResourceDepletedEvent extends EventData {
3603
3626
  readonly entity: LuaEntity
@@ -3614,7 +3637,7 @@ declare module "factorio:runtime" {
3614
3637
  * Called when a construction robot builds an entity.
3615
3638
  *
3616
3639
  * Event filter: [LuaRobotBuiltEntityEventFilter](LuaRobotBuiltEntityEventFilter]
3617
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_robot_built_entity Online documentation}
3640
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_robot_built_entity Online documentation}
3618
3641
  */
3619
3642
  interface OnRobotBuiltEntityEvent extends EventData {
3620
3643
  /**
@@ -3644,7 +3667,7 @@ declare module "factorio:runtime" {
3644
3667
  }
3645
3668
  /**
3646
3669
  * Called after a robot builds tiles.
3647
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_robot_built_tile Online documentation}
3670
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_robot_built_tile Online documentation}
3648
3671
  */
3649
3672
  interface OnRobotBuiltTileEvent extends EventData {
3650
3673
  /**
@@ -3686,7 +3709,7 @@ declare module "factorio:runtime" {
3686
3709
  }
3687
3710
  /**
3688
3711
  * Called directly after a robot explodes cliffs.
3689
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_robot_exploded_cliff Online documentation}
3712
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_robot_exploded_cliff Online documentation}
3690
3713
  */
3691
3714
  interface OnRobotExplodedCliffEvent extends EventData {
3692
3715
  readonly robot: LuaEntity
@@ -3709,7 +3732,7 @@ declare module "factorio:runtime" {
3709
3732
  }
3710
3733
  /**
3711
3734
  * Called when a robot mines an entity.
3712
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_robot_mined Online documentation}
3735
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_robot_mined Online documentation}
3713
3736
  */
3714
3737
  interface OnRobotMinedEvent extends EventData {
3715
3738
  /**
@@ -3737,7 +3760,7 @@ declare module "factorio:runtime" {
3737
3760
  * 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.
3738
3761
  *
3739
3762
  * Event filter: [LuaRobotMinedEntityEventFilter](LuaRobotMinedEntityEventFilter]
3740
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_robot_mined_entity Online documentation}
3763
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_robot_mined_entity Online documentation}
3741
3764
  */
3742
3765
  interface OnRobotMinedEntityEvent extends EventData {
3743
3766
  /**
@@ -3763,7 +3786,7 @@ declare module "factorio:runtime" {
3763
3786
  }
3764
3787
  /**
3765
3788
  * Called after a robot mines tiles.
3766
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_robot_mined_tile Online documentation}
3789
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_robot_mined_tile Online documentation}
3767
3790
  */
3768
3791
  interface OnRobotMinedTileEvent extends EventData {
3769
3792
  /**
@@ -3791,7 +3814,7 @@ declare module "factorio:runtime" {
3791
3814
  * Called before a robot mines an entity.
3792
3815
  *
3793
3816
  * Event filter: [LuaPreRobotMinedEntityEventFilter](LuaPreRobotMinedEntityEventFilter]
3794
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_robot_pre_mined Online documentation}
3817
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_robot_pre_mined Online documentation}
3795
3818
  */
3796
3819
  interface OnRobotPreMinedEvent extends EventData {
3797
3820
  /**
@@ -3813,7 +3836,7 @@ declare module "factorio:runtime" {
3813
3836
  }
3814
3837
  /**
3815
3838
  * Called when a rocket silo is ordered to be launched.
3816
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_rocket_launch_ordered Online documentation}
3839
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_rocket_launch_ordered Online documentation}
3817
3840
  */
3818
3841
  interface OnRocketLaunchOrderedEvent extends EventData {
3819
3842
  readonly rocket: LuaEntity
@@ -3832,16 +3855,12 @@ declare module "factorio:runtime" {
3832
3855
  readonly tick: uint
3833
3856
  }
3834
3857
  /**
3835
- * Called when the rocket is launched.
3836
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_rocket_launched Online documentation}
3858
+ * 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)
3859
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_rocket_launched Online documentation}
3837
3860
  */
3838
3861
  interface OnRocketLaunchedEvent extends EventData {
3839
3862
  readonly rocket: LuaEntity
3840
3863
  readonly rocket_silo?: LuaEntity
3841
- /**
3842
- * The player that is riding the rocket, if any.
3843
- */
3844
- readonly player_index?: PlayerIndex
3845
3864
  /**
3846
3865
  * Identifier of the event
3847
3866
  */
@@ -3853,7 +3872,7 @@ declare module "factorio:runtime" {
3853
3872
  }
3854
3873
  /**
3855
3874
  * Called when a runtime mod setting is changed by a player.
3856
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_runtime_mod_setting_changed Online documentation}
3875
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_runtime_mod_setting_changed Online documentation}
3857
3876
  */
3858
3877
  interface OnRuntimeModSettingChangedEvent extends EventData {
3859
3878
  /**
@@ -3876,7 +3895,7 @@ declare module "factorio:runtime" {
3876
3895
  }
3877
3896
  /**
3878
3897
  * Called just after a script inventory is resized.
3879
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_script_inventory_resized Online documentation}
3898
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_script_inventory_resized Online documentation}
3880
3899
  */
3881
3900
  interface OnScriptInventoryResizedEvent extends EventData {
3882
3901
  /**
@@ -3911,7 +3930,7 @@ declare module "factorio:runtime" {
3911
3930
  }
3912
3931
  /**
3913
3932
  * Called when a {@link LuaSurface#request_path LuaSurface::request_path} call completes.
3914
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_script_path_request_finished Online documentation}
3933
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_script_path_request_finished Online documentation}
3915
3934
  */
3916
3935
  interface OnScriptPathRequestFinishedEvent extends EventData {
3917
3936
  /**
@@ -3937,7 +3956,7 @@ declare module "factorio:runtime" {
3937
3956
  }
3938
3957
  /**
3939
3958
  * Called when a script trigger effect is triggered.
3940
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_script_trigger_effect Online documentation}
3959
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_script_trigger_effect Online documentation}
3941
3960
  */
3942
3961
  interface OnScriptTriggerEffectEvent extends EventData {
3943
3962
  /**
@@ -3969,7 +3988,7 @@ declare module "factorio:runtime" {
3969
3988
  * Called when an entity of type `radar` finishes scanning a sector.
3970
3989
  *
3971
3990
  * Event filter: [LuaSectorScannedEventFilter](LuaSectorScannedEventFilter]
3972
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_sector_scanned Online documentation}
3991
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_sector_scanned Online documentation}
3973
3992
  */
3974
3993
  interface OnSectorScannedEvent extends EventData {
3975
3994
  /**
@@ -3995,7 +4014,7 @@ declare module "factorio:runtime" {
3995
4014
  }
3996
4015
  /**
3997
4016
  * Called when an individual segment of a SegmentedUnit is created.
3998
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_segment_entity_created Online documentation}
4017
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_segment_entity_created Online documentation}
3999
4018
  */
4000
4019
  interface OnSegmentEntityCreatedEvent extends EventData {
4001
4020
  readonly entity: LuaEntity
@@ -4010,7 +4029,7 @@ declare module "factorio:runtime" {
4010
4029
  }
4011
4030
  /**
4012
4031
  * Called after the selected entity changes for a given player.
4013
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_selected_entity_changed Online documentation}
4032
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_selected_entity_changed Online documentation}
4014
4033
  */
4015
4034
  interface OnSelectedEntityChangedEvent extends EventData {
4016
4035
  /**
@@ -4034,7 +4053,7 @@ declare module "factorio:runtime" {
4034
4053
  * Called when a space platform builds an entity.
4035
4054
  *
4036
4055
  * Event filter: [LuaPlatformBuiltEntityEventFilter](LuaPlatformBuiltEntityEventFilter]
4037
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_space_platform_built_entity Online documentation}
4056
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_space_platform_built_entity Online documentation}
4038
4057
  */
4039
4058
  interface OnSpacePlatformBuiltEntityEvent extends EventData {
4040
4059
  /**
@@ -4064,7 +4083,7 @@ declare module "factorio:runtime" {
4064
4083
  }
4065
4084
  /**
4066
4085
  * Called after a space platform builds tiles.
4067
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_space_platform_built_tile Online documentation}
4086
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_space_platform_built_tile Online documentation}
4068
4087
  */
4069
4088
  interface OnSpacePlatformBuiltTileEvent extends EventData {
4070
4089
  /**
@@ -4106,7 +4125,7 @@ declare module "factorio:runtime" {
4106
4125
  }
4107
4126
  /**
4108
4127
  * Called when a space platform changes state
4109
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_space_platform_changed_state Online documentation}
4128
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_space_platform_changed_state Online documentation}
4110
4129
  */
4111
4130
  interface OnSpacePlatformChangedStateEvent extends EventData {
4112
4131
  readonly platform: LuaSpacePlatform
@@ -4128,7 +4147,7 @@ declare module "factorio:runtime" {
4128
4147
  * 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.
4129
4148
  *
4130
4149
  * Event filter: [LuaPlatformMinedEntityEventFilter](LuaPlatformMinedEntityEventFilter]
4131
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_space_platform_mined_entity Online documentation}
4150
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_space_platform_mined_entity Online documentation}
4132
4151
  */
4133
4152
  interface OnSpacePlatformMinedEntityEvent extends EventData {
4134
4153
  /**
@@ -4154,7 +4173,7 @@ declare module "factorio:runtime" {
4154
4173
  }
4155
4174
  /**
4156
4175
  * Called when a platform mines an entity.
4157
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_space_platform_mined_item Online documentation}
4176
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_space_platform_mined_item Online documentation}
4158
4177
  */
4159
4178
  interface OnSpacePlatformMinedItemEvent extends EventData {
4160
4179
  /**
@@ -4176,7 +4195,7 @@ declare module "factorio:runtime" {
4176
4195
  }
4177
4196
  /**
4178
4197
  * Called after a platform mines tiles.
4179
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_space_platform_mined_tile Online documentation}
4198
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_space_platform_mined_tile Online documentation}
4180
4199
  */
4181
4200
  interface OnSpacePlatformMinedTileEvent extends EventData {
4182
4201
  /**
@@ -4204,7 +4223,7 @@ declare module "factorio:runtime" {
4204
4223
  * Called before a platform mines an entity.
4205
4224
  *
4206
4225
  * Event filter: [LuaPrePlatformMinedEntityEventFilter](LuaPrePlatformMinedEntityEventFilter]
4207
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_space_platform_pre_mined Online documentation}
4226
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_space_platform_pre_mined Online documentation}
4208
4227
  */
4209
4228
  interface OnSpacePlatformPreMinedEvent extends EventData {
4210
4229
  /**
@@ -4226,7 +4245,7 @@ declare module "factorio:runtime" {
4226
4245
  }
4227
4246
  /**
4228
4247
  * Called when a spider finishes moving to its autopilot position.
4229
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_spider_command_completed Online documentation}
4248
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_spider_command_completed Online documentation}
4230
4249
  */
4231
4250
  interface OnSpiderCommandCompletedEvent extends EventData {
4232
4251
  /**
@@ -4244,7 +4263,7 @@ declare module "factorio:runtime" {
4244
4263
  }
4245
4264
  /**
4246
4265
  * 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.
4247
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_string_translated Online documentation}
4266
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_string_translated Online documentation}
4248
4267
  */
4249
4268
  interface OnStringTranslatedEvent extends EventData {
4250
4269
  /**
@@ -4278,7 +4297,7 @@ declare module "factorio:runtime" {
4278
4297
  }
4279
4298
  /**
4280
4299
  * Called just after a surface is cleared (all entities removed and all chunks deleted).
4281
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_surface_cleared Online documentation}
4300
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_surface_cleared Online documentation}
4282
4301
  */
4283
4302
  interface OnSurfaceClearedEvent extends EventData {
4284
4303
  readonly surface_index: SurfaceIndex
@@ -4295,7 +4314,7 @@ declare module "factorio:runtime" {
4295
4314
  * Called when a surface is created.
4296
4315
  *
4297
4316
  * This is not called when the default surface is created as it will always exist.
4298
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_surface_created Online documentation}
4317
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_surface_created Online documentation}
4299
4318
  */
4300
4319
  interface OnSurfaceCreatedEvent extends EventData {
4301
4320
  readonly surface_index: SurfaceIndex
@@ -4310,7 +4329,7 @@ declare module "factorio:runtime" {
4310
4329
  }
4311
4330
  /**
4312
4331
  * Called after a surface is deleted.
4313
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_surface_deleted Online documentation}
4332
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_surface_deleted Online documentation}
4314
4333
  */
4315
4334
  interface OnSurfaceDeletedEvent extends EventData {
4316
4335
  readonly surface_index: SurfaceIndex
@@ -4325,7 +4344,7 @@ declare module "factorio:runtime" {
4325
4344
  }
4326
4345
  /**
4327
4346
  * Called after a surface is imported via the map editor.
4328
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_surface_imported Online documentation}
4347
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_surface_imported Online documentation}
4329
4348
  */
4330
4349
  interface OnSurfaceImportedEvent extends EventData {
4331
4350
  readonly surface_index: SurfaceIndex
@@ -4344,7 +4363,7 @@ declare module "factorio:runtime" {
4344
4363
  }
4345
4364
  /**
4346
4365
  * Called when a surface is renamed.
4347
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_surface_renamed Online documentation}
4366
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_surface_renamed Online documentation}
4348
4367
  */
4349
4368
  interface OnSurfaceRenamedEvent extends EventData {
4350
4369
  readonly surface_index: SurfaceIndex
@@ -4361,7 +4380,7 @@ declare module "factorio:runtime" {
4361
4380
  }
4362
4381
  /**
4363
4382
  * Called when {@link LuaForce#reset_technology_effects LuaForce::reset_technology_effects} is finished.
4364
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_technology_effects_reset Online documentation}
4383
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_technology_effects_reset Online documentation}
4365
4384
  */
4366
4385
  interface OnTechnologyEffectsResetEvent extends EventData {
4367
4386
  readonly force: LuaForce
@@ -4376,7 +4395,7 @@ declare module "factorio:runtime" {
4376
4395
  }
4377
4396
  /**
4378
4397
  * It is fired once every tick. Since this event is fired every tick, its handler shouldn't include performance heavy code.
4379
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_tick Online documentation}
4398
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_tick Online documentation}
4380
4399
  */
4381
4400
  interface OnTickEvent extends EventData {
4382
4401
  /**
@@ -4390,7 +4409,7 @@ declare module "factorio:runtime" {
4390
4409
  }
4391
4410
  /**
4392
4411
  * Called when a train changes state (started to stopped and vice versa)
4393
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_train_changed_state Online documentation}
4412
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_train_changed_state Online documentation}
4394
4413
  */
4395
4414
  interface OnTrainChangedStateEvent extends EventData {
4396
4415
  readonly train: LuaTrain
@@ -4406,7 +4425,7 @@ declare module "factorio:runtime" {
4406
4425
  }
4407
4426
  /**
4408
4427
  * Called when a new train is created either through disconnecting/connecting an existing one or building a new one.
4409
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_train_created Online documentation}
4428
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_train_created Online documentation}
4410
4429
  */
4411
4430
  interface OnTrainCreatedEvent extends EventData {
4412
4431
  readonly train: LuaTrain
@@ -4429,7 +4448,7 @@ declare module "factorio:runtime" {
4429
4448
  }
4430
4449
  /**
4431
4450
  * Called when a trains schedule is changed either by the player or through script.
4432
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_train_schedule_changed Online documentation}
4451
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_train_schedule_changed Online documentation}
4433
4452
  */
4434
4453
  interface OnTrainScheduleChangedEvent extends EventData {
4435
4454
  readonly train: LuaTrain
@@ -4448,7 +4467,7 @@ declare module "factorio:runtime" {
4448
4467
  }
4449
4468
  /**
4450
4469
  * Called when an entity with a trigger prototype (such as capsules) create an entity AND that trigger prototype defined `trigger_created_entity=true`.
4451
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_trigger_created_entity Online documentation}
4470
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_trigger_created_entity Online documentation}
4452
4471
  */
4453
4472
  interface OnTriggerCreatedEntityEvent extends EventData {
4454
4473
  readonly entity: LuaEntity
@@ -4464,7 +4483,7 @@ declare module "factorio:runtime" {
4464
4483
  }
4465
4484
  /**
4466
4485
  * Called when an entity with a trigger prototype (such as capsules) fire an artillery projectile AND that trigger prototype defined `trigger_fired_artillery=true`.
4467
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_trigger_fired_artillery Online documentation}
4486
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_trigger_fired_artillery Online documentation}
4468
4487
  */
4469
4488
  interface OnTriggerFiredArtilleryEvent extends EventData {
4470
4489
  readonly entity: LuaEntity
@@ -4480,7 +4499,7 @@ declare module "factorio:runtime" {
4480
4499
  }
4481
4500
  /**
4482
4501
  * Called when the player triggers "undo".
4483
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_undo_applied Online documentation}
4502
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_undo_applied Online documentation}
4484
4503
  */
4485
4504
  interface OnUndoAppliedEvent extends EventData {
4486
4505
  /**
@@ -4502,7 +4521,7 @@ declare module "factorio:runtime" {
4502
4521
  }
4503
4522
  /**
4504
4523
  * Called when a unit is added to a unit group.
4505
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_unit_added_to_group Online documentation}
4524
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_unit_added_to_group Online documentation}
4506
4525
  */
4507
4526
  interface OnUnitAddedToGroupEvent extends EventData {
4508
4527
  readonly unit: LuaEntity
@@ -4518,7 +4537,7 @@ declare module "factorio:runtime" {
4518
4537
  }
4519
4538
  /**
4520
4539
  * Called when a new unit group is created, before any members are added to it.
4521
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_unit_group_created Online documentation}
4540
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_unit_group_created Online documentation}
4522
4541
  */
4523
4542
  interface OnUnitGroupCreatedEvent extends EventData {
4524
4543
  readonly group: LuaCommandable
@@ -4533,7 +4552,7 @@ declare module "factorio:runtime" {
4533
4552
  }
4534
4553
  /**
4535
4554
  * Called when a unit group finishes gathering and starts executing its command.
4536
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_unit_group_finished_gathering Online documentation}
4555
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_unit_group_finished_gathering Online documentation}
4537
4556
  */
4538
4557
  interface OnUnitGroupFinishedGatheringEvent extends EventData {
4539
4558
  readonly group: LuaCommandable
@@ -4548,7 +4567,7 @@ declare module "factorio:runtime" {
4548
4567
  }
4549
4568
  /**
4550
4569
  * Called when a unit is removed from a unit group.
4551
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_unit_removed_from_group Online documentation}
4570
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_unit_removed_from_group Online documentation}
4552
4571
  */
4553
4572
  interface OnUnitRemovedFromGroupEvent extends EventData {
4554
4573
  readonly unit: LuaEntity
@@ -4564,7 +4583,7 @@ declare module "factorio:runtime" {
4564
4583
  }
4565
4584
  /**
4566
4585
  * Called when a worker (construction or logistic) robot expires through a lack of energy.
4567
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#on_worker_robot_expired Online documentation}
4586
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_worker_robot_expired Online documentation}
4568
4587
  */
4569
4588
  interface OnWorkerRobotExpiredEvent extends EventData {
4570
4589
  readonly robot: LuaEntity
@@ -4581,7 +4600,7 @@ declare module "factorio:runtime" {
4581
4600
  * 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}.
4582
4601
  *
4583
4602
  * Event filter: [LuaScriptRaisedBuiltEventFilter](LuaScriptRaisedBuiltEventFilter]
4584
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#script_raised_built Online documentation}
4603
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#script_raised_built Online documentation}
4585
4604
  */
4586
4605
  interface ScriptRaisedBuiltEvent extends EventData {
4587
4606
  /**
@@ -4601,7 +4620,7 @@ declare module "factorio:runtime" {
4601
4620
  * 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}.
4602
4621
  *
4603
4622
  * Event filter: [LuaScriptRaisedDestroyEventFilter](LuaScriptRaisedDestroyEventFilter]
4604
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#script_raised_destroy Online documentation}
4623
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#script_raised_destroy Online documentation}
4605
4624
  */
4606
4625
  interface ScriptRaisedDestroyEvent extends EventData {
4607
4626
  /**
@@ -4621,7 +4640,7 @@ declare module "factorio:runtime" {
4621
4640
  * 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}.
4622
4641
  *
4623
4642
  * Event filter: [LuaScriptRaisedReviveEventFilter](LuaScriptRaisedReviveEventFilter]
4624
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#script_raised_revive Online documentation}
4643
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#script_raised_revive Online documentation}
4625
4644
  */
4626
4645
  interface ScriptRaisedReviveEvent extends EventData {
4627
4646
  /**
@@ -4643,7 +4662,7 @@ declare module "factorio:runtime" {
4643
4662
  }
4644
4663
  /**
4645
4664
  * 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}.
4646
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#script_raised_set_tiles Online documentation}
4665
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#script_raised_set_tiles Online documentation}
4647
4666
  */
4648
4667
  interface ScriptRaisedSetTilesEvent extends EventData {
4649
4668
  /**
@@ -4667,7 +4686,7 @@ declare module "factorio:runtime" {
4667
4686
  * 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}.
4668
4687
  *
4669
4688
  * Event filter: [LuaScriptRaisedTeleportedEventFilter](LuaScriptRaisedTeleportedEventFilter]
4670
- * @see {@link https://lua-api.factorio.com/2.0.21/events.html#script_raised_teleported Online documentation}
4689
+ * @see {@link https://lua-api.factorio.com/2.0.23/events.html#script_raised_teleported Online documentation}
4671
4690
  */
4672
4691
  interface ScriptRaisedTeleportedEvent extends EventData {
4673
4692
  /**