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