typed-factorio 3.6.0 → 3.7.1
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/README.md +2 -0
- package/package.json +3 -2
- package/prototype/generated/prototypes.d.ts +2069 -2069
- package/prototype/generated/types.d.ts +2098 -2093
- package/runtime/generated/classes.d.ts +3524 -3524
- package/runtime/generated/concepts.d.ts +284 -284
- package/runtime/generated/defines.d.ts +177 -177
- package/runtime/generated/events.d.ts +202 -201
- 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.23/events.html#CustomInputEvent Online documentation}
|
17
17
|
*/
|
18
18
|
interface CustomInputEvent extends EventData {
|
19
19
|
/**
|
@@ -47,7 +47,7 @@ declare module "factorio:runtime" {
|
|
47
47
|
}
|
48
48
|
/**
|
49
49
|
* Called when an achievement is gained.
|
50
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
50
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_achievement_gained Online documentation}
|
51
51
|
*/
|
52
52
|
interface OnAchievementGainedEvent extends EventData {
|
53
53
|
/**
|
@@ -66,7 +66,7 @@ declare module "factorio:runtime" {
|
|
66
66
|
}
|
67
67
|
/**
|
68
68
|
* Called when a unit/group completes a command.
|
69
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
69
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_ai_command_completed Online documentation}
|
70
70
|
*/
|
71
71
|
interface OnAiCommandCompletedEvent extends EventData {
|
72
72
|
/**
|
@@ -89,7 +89,7 @@ declare module "factorio:runtime" {
|
|
89
89
|
}
|
90
90
|
/**
|
91
91
|
* Called when an area of the map is cloned.
|
92
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
92
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_area_cloned Online documentation}
|
93
93
|
*/
|
94
94
|
interface OnAreaClonedEvent extends EventData {
|
95
95
|
readonly source_surface: LuaSurface
|
@@ -115,7 +115,7 @@ declare module "factorio:runtime" {
|
|
115
115
|
* Called when a biter migration builds a base.
|
116
116
|
*
|
117
117
|
* This will be called multiple times for each migration, once for every biter that is sacrificed to build part of the new base.
|
118
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
118
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_biter_base_built Online documentation}
|
119
119
|
*/
|
120
120
|
interface OnBiterBaseBuiltEvent extends EventData {
|
121
121
|
/**
|
@@ -133,7 +133,7 @@ declare module "factorio:runtime" {
|
|
133
133
|
}
|
134
134
|
/**
|
135
135
|
* Called when a set of positions on the map is cloned.
|
136
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
136
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_brush_cloned Online documentation}
|
137
137
|
*/
|
138
138
|
interface OnBrushClonedEvent extends EventData {
|
139
139
|
readonly source_offset: TilePosition
|
@@ -158,7 +158,7 @@ declare module "factorio:runtime" {
|
|
158
158
|
}
|
159
159
|
/**
|
160
160
|
* Called when a {@link defines.command.build_base} command reaches its destination, and before building starts.
|
161
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
161
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_build_base_arrived Online documentation}
|
162
162
|
*/
|
163
163
|
interface OnBuildBaseArrivedEvent extends EventData {
|
164
164
|
/**
|
@@ -182,7 +182,7 @@ declare module "factorio:runtime" {
|
|
182
182
|
* Called when player builds something.
|
183
183
|
*
|
184
184
|
* Event filter: [LuaPlayerBuiltEntityEventFilter](LuaPlayerBuiltEntityEventFilter]
|
185
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
185
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_built_entity Online documentation}
|
186
186
|
*/
|
187
187
|
interface OnBuiltEntityEvent extends EventData {
|
188
188
|
readonly entity: LuaEntity
|
@@ -205,7 +205,7 @@ declare module "factorio:runtime" {
|
|
205
205
|
* Called when the deconstruction of an entity is canceled.
|
206
206
|
*
|
207
207
|
* Event filter: [LuaEntityDeconstructionCancelledEventFilter](LuaEntityDeconstructionCancelledEventFilter]
|
208
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
208
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_cancelled_deconstruction Online documentation}
|
209
209
|
*/
|
210
210
|
interface OnCancelledDeconstructionEvent extends EventData {
|
211
211
|
readonly entity: LuaEntity
|
@@ -223,7 +223,7 @@ declare module "factorio:runtime" {
|
|
223
223
|
* Called when the upgrade of an entity is canceled.
|
224
224
|
*
|
225
225
|
* Event filter: [LuaUpgradeCancelledEventFilter](LuaUpgradeCancelledEventFilter]
|
226
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
226
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_cancelled_upgrade Online documentation}
|
227
227
|
*/
|
228
228
|
interface OnCancelledUpgradeEvent extends EventData {
|
229
229
|
readonly entity: LuaEntity
|
@@ -241,9 +241,10 @@ declare module "factorio:runtime" {
|
|
241
241
|
}
|
242
242
|
/**
|
243
243
|
* Called when a cargo pod departs a surface.
|
244
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
244
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_cargo_pod_finished_ascending Online documentation}
|
245
245
|
*/
|
246
246
|
interface OnCargoPodFinishedAscendingEvent extends EventData {
|
247
|
+
readonly cargo_pod: LuaEntity
|
247
248
|
/**
|
248
249
|
* True for pods spawned on a rocket. This event triggers for platform and modded pods as well, but only when true will the pod count towards rocket launch statistics and trigger 'rocket-launched' achievement with objective_condition.
|
249
250
|
*/
|
@@ -265,7 +266,7 @@ declare module "factorio:runtime" {
|
|
265
266
|
* Called when a character corpse expires due to timeout or all of the items being removed from it.
|
266
267
|
*
|
267
268
|
* this is not called if the corpse is mined. See {@link defines.events.on_pre_player_mined_item} to detect that.
|
268
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
269
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_character_corpse_expired Online documentation}
|
269
270
|
*/
|
270
271
|
interface OnCharacterCorpseExpiredEvent extends EventData {
|
271
272
|
/**
|
@@ -283,7 +284,7 @@ declare module "factorio:runtime" {
|
|
283
284
|
}
|
284
285
|
/**
|
285
286
|
* Called when a chart tag is created.
|
286
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
287
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_chart_tag_added Online documentation}
|
287
288
|
*/
|
288
289
|
interface OnChartTagAddedEvent extends EventData {
|
289
290
|
readonly tag: LuaCustomChartTag
|
@@ -300,7 +301,7 @@ declare module "factorio:runtime" {
|
|
300
301
|
}
|
301
302
|
/**
|
302
303
|
* Called when a chart tag is modified by a player.
|
303
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
304
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_chart_tag_modified Online documentation}
|
304
305
|
*/
|
305
306
|
interface OnChartTagModifiedEvent extends EventData {
|
306
307
|
readonly tag: LuaCustomChartTag
|
@@ -322,7 +323,7 @@ declare module "factorio:runtime" {
|
|
322
323
|
}
|
323
324
|
/**
|
324
325
|
* Called just before a chart tag is deleted.
|
325
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
326
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_chart_tag_removed Online documentation}
|
326
327
|
*/
|
327
328
|
interface OnChartTagRemovedEvent extends EventData {
|
328
329
|
readonly tag: LuaCustomChartTag
|
@@ -339,7 +340,7 @@ declare module "factorio:runtime" {
|
|
339
340
|
}
|
340
341
|
/**
|
341
342
|
* Called when a chunk is charted or re-charted.
|
342
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
343
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_chunk_charted Online documentation}
|
343
344
|
*/
|
344
345
|
interface OnChunkChartedEvent extends EventData {
|
345
346
|
readonly surface_index: SurfaceIndex
|
@@ -360,7 +361,7 @@ declare module "factorio:runtime" {
|
|
360
361
|
}
|
361
362
|
/**
|
362
363
|
* Called when one or more chunks are deleted using {@link LuaSurface#delete_chunk LuaSurface::delete_chunk}.
|
363
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
364
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_chunk_deleted Online documentation}
|
364
365
|
*/
|
365
366
|
interface OnChunkDeletedEvent extends EventData {
|
366
367
|
readonly surface_index: SurfaceIndex
|
@@ -379,7 +380,7 @@ declare module "factorio:runtime" {
|
|
379
380
|
}
|
380
381
|
/**
|
381
382
|
* Called when a chunk is generated.
|
382
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
383
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_chunk_generated Online documentation}
|
383
384
|
*/
|
384
385
|
interface OnChunkGeneratedEvent extends EventData {
|
385
386
|
/**
|
@@ -405,7 +406,7 @@ declare module "factorio:runtime" {
|
|
405
406
|
}
|
406
407
|
/**
|
407
408
|
* Called when a combat robot expires through a lack of energy, or timeout.
|
408
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
409
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_combat_robot_expired Online documentation}
|
409
410
|
*/
|
410
411
|
interface OnCombatRobotExpiredEvent extends EventData {
|
411
412
|
readonly robot: LuaEntity
|
@@ -426,7 +427,7 @@ declare module "factorio:runtime" {
|
|
426
427
|
* Called when a message is sent to the in-game console, either by a player or through the server interface.
|
427
428
|
*
|
428
429
|
* This event only fires for plain messages, not for any commands (including `/shout` or `/whisper`).
|
429
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
430
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_console_chat Online documentation}
|
430
431
|
*/
|
431
432
|
interface OnConsoleChatEvent extends EventData {
|
432
433
|
/**
|
@@ -448,7 +449,7 @@ declare module "factorio:runtime" {
|
|
448
449
|
}
|
449
450
|
/**
|
450
451
|
* Called when someone enters a command-like message regardless of it being a valid command.
|
451
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
452
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_console_command Online documentation}
|
452
453
|
*/
|
453
454
|
interface OnConsoleCommandEvent extends EventData {
|
454
455
|
/**
|
@@ -474,7 +475,7 @@ declare module "factorio:runtime" {
|
|
474
475
|
}
|
475
476
|
/**
|
476
477
|
* Called when a cutscene is cancelled by the player or by script.
|
477
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
478
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_cutscene_cancelled Online documentation}
|
478
479
|
*/
|
479
480
|
interface OnCutsceneCancelledEvent extends EventData {
|
480
481
|
/**
|
@@ -492,7 +493,7 @@ declare module "factorio:runtime" {
|
|
492
493
|
}
|
493
494
|
/**
|
494
495
|
* Called when a cutscene finishes naturally (was not cancelled).
|
495
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
496
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_cutscene_finished Online documentation}
|
496
497
|
*/
|
497
498
|
interface OnCutsceneFinishedEvent extends EventData {
|
498
499
|
/**
|
@@ -510,7 +511,7 @@ declare module "factorio:runtime" {
|
|
510
511
|
}
|
511
512
|
/**
|
512
513
|
* Called when a cutscene starts.
|
513
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
514
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_cutscene_started Online documentation}
|
514
515
|
*/
|
515
516
|
interface OnCutsceneStartedEvent extends EventData {
|
516
517
|
/**
|
@@ -530,7 +531,7 @@ declare module "factorio:runtime" {
|
|
530
531
|
* Called when a cutscene is playing, each time it reaches a waypoint in that cutscene.
|
531
532
|
*
|
532
533
|
* This refers to an index in the table previously passed to set_controller which started the cutscene.
|
533
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
534
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_cutscene_waypoint_reached Online documentation}
|
534
535
|
*/
|
535
536
|
interface OnCutsceneWaypointReachedEvent extends EventData {
|
536
537
|
/**
|
@@ -554,7 +555,7 @@ declare module "factorio:runtime" {
|
|
554
555
|
* Called when an entity is cloned. The filter applies to the source entity.
|
555
556
|
*
|
556
557
|
* Event filter: [LuaEntityClonedEventFilter](LuaEntityClonedEventFilter]
|
557
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
558
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_entity_cloned Online documentation}
|
558
559
|
*/
|
559
560
|
interface OnEntityClonedEvent extends EventData {
|
560
561
|
readonly source: LuaEntity
|
@@ -572,7 +573,7 @@ declare module "factorio:runtime" {
|
|
572
573
|
* Called after an entity has been recolored either by the player or through script.
|
573
574
|
*
|
574
575
|
* Automatic recoloring due to {@link LuaPlayer#color LuaPlayer::color} will not raise events, as that is a separate mechanism.
|
575
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
576
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_entity_color_changed Online documentation}
|
576
577
|
*/
|
577
578
|
interface OnEntityColorChangedEvent extends EventData {
|
578
579
|
/**
|
@@ -592,7 +593,7 @@ declare module "factorio:runtime" {
|
|
592
593
|
* Called when an entity is damaged. This is not called when an entities health is set directly by another mod.
|
593
594
|
*
|
594
595
|
* Event filter: [LuaEntityDamagedEventFilter](LuaEntityDamagedEventFilter]
|
595
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
596
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_entity_damaged Online documentation}
|
596
597
|
*/
|
597
598
|
interface OnEntityDamagedEvent extends EventData {
|
598
599
|
readonly entity: LuaEntity
|
@@ -634,7 +635,7 @@ declare module "factorio:runtime" {
|
|
634
635
|
* Called when an entity dies.
|
635
636
|
*
|
636
637
|
* Event filter: [LuaEntityDiedEventFilter](LuaEntityDiedEventFilter]
|
637
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
638
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_entity_died Online documentation}
|
638
639
|
*/
|
639
640
|
interface OnEntityDiedEvent extends EventData {
|
640
641
|
/**
|
@@ -668,7 +669,7 @@ declare module "factorio:runtime" {
|
|
668
669
|
}
|
669
670
|
/**
|
670
671
|
* Called when one of an entity's logistic slots changes.
|
671
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
672
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_entity_logistic_slot_changed Online documentation}
|
672
673
|
*/
|
673
674
|
interface OnEntityLogisticSlotChangedEvent extends EventData {
|
674
675
|
/**
|
@@ -698,7 +699,7 @@ declare module "factorio:runtime" {
|
|
698
699
|
}
|
699
700
|
/**
|
700
701
|
* Called after an entity has been renamed either by the player or through script.
|
701
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
702
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_entity_renamed Online documentation}
|
702
703
|
*/
|
703
704
|
interface OnEntityRenamedEvent extends EventData {
|
704
705
|
/**
|
@@ -719,7 +720,7 @@ declare module "factorio:runtime" {
|
|
719
720
|
}
|
720
721
|
/**
|
721
722
|
* Called after entity copy-paste is done.
|
722
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
723
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_entity_settings_pasted Online documentation}
|
723
724
|
*/
|
724
725
|
interface OnEntitySettingsPastedEvent extends EventData {
|
725
726
|
readonly player_index: PlayerIndex
|
@@ -742,7 +743,7 @@ declare module "factorio:runtime" {
|
|
742
743
|
}
|
743
744
|
/**
|
744
745
|
* Called when an entity is spawned by a EnemySpawner
|
745
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
746
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_entity_spawned Online documentation}
|
746
747
|
*/
|
747
748
|
interface OnEntitySpawnedEvent extends EventData {
|
748
749
|
readonly spawner: LuaEntity
|
@@ -758,7 +759,7 @@ declare module "factorio:runtime" {
|
|
758
759
|
}
|
759
760
|
/**
|
760
761
|
* Called after equipment is inserted into an equipment grid.
|
761
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
762
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_equipment_inserted Online documentation}
|
762
763
|
*/
|
763
764
|
interface OnEquipmentInsertedEvent extends EventData {
|
764
765
|
/**
|
@@ -780,7 +781,7 @@ declare module "factorio:runtime" {
|
|
780
781
|
}
|
781
782
|
/**
|
782
783
|
* Called after equipment is removed from an equipment grid.
|
783
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
784
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_equipment_removed Online documentation}
|
784
785
|
*/
|
785
786
|
interface OnEquipmentRemovedEvent extends EventData {
|
786
787
|
/**
|
@@ -810,7 +811,7 @@ declare module "factorio:runtime" {
|
|
810
811
|
}
|
811
812
|
/**
|
812
813
|
* Called when the a forces cease fire values change.
|
813
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
814
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_force_cease_fire_changed Online documentation}
|
814
815
|
*/
|
815
816
|
interface OnForceCeaseFireChangedEvent extends EventData {
|
816
817
|
/**
|
@@ -838,7 +839,7 @@ declare module "factorio:runtime" {
|
|
838
839
|
* Called when a new force is created using `game.create_force()`
|
839
840
|
*
|
840
841
|
* This is not called when the default forces (`'player'`, `'enemy'`, `'neutral'`) are created as they will always exist.
|
841
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
842
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_force_created Online documentation}
|
842
843
|
*/
|
843
844
|
interface OnForceCreatedEvent extends EventData {
|
844
845
|
/**
|
@@ -856,7 +857,7 @@ declare module "factorio:runtime" {
|
|
856
857
|
}
|
857
858
|
/**
|
858
859
|
* Called when the a forces friends change.
|
859
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
860
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_force_friends_changed Online documentation}
|
860
861
|
*/
|
861
862
|
interface OnForceFriendsChangedEvent extends EventData {
|
862
863
|
/**
|
@@ -882,7 +883,7 @@ declare module "factorio:runtime" {
|
|
882
883
|
}
|
883
884
|
/**
|
884
885
|
* Called when {@link LuaForce#reset LuaForce::reset} is finished.
|
885
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
886
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_force_reset Online documentation}
|
886
887
|
*/
|
887
888
|
interface OnForceResetEvent extends EventData {
|
888
889
|
readonly force: LuaForce
|
@@ -899,7 +900,7 @@ declare module "factorio:runtime" {
|
|
899
900
|
* Called after two forces have been merged using `game.merge_forces()`.
|
900
901
|
*
|
901
902
|
* The source force is invalidated before this event is called and the name can be re-used in this event if desired.
|
902
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
903
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_forces_merged Online documentation}
|
903
904
|
*/
|
904
905
|
interface OnForcesMergedEvent extends EventData {
|
905
906
|
/**
|
@@ -925,7 +926,7 @@ declare module "factorio:runtime" {
|
|
925
926
|
}
|
926
927
|
/**
|
927
928
|
* Called when two forces are about to be merged using `game.merge_forces()`.
|
928
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
929
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_forces_merging Online documentation}
|
929
930
|
*/
|
930
931
|
interface OnForcesMergingEvent extends EventData {
|
931
932
|
/**
|
@@ -949,7 +950,7 @@ declare module "factorio:runtime" {
|
|
949
950
|
* Called when a game is created from a scenario. This is fired for every mod, even when the scenario's save data already includes it. In those cases however, {@link LuaBootstrap#on_init LuaBootstrap::on_init} is not fired.
|
950
951
|
*
|
951
952
|
* This event is not fired when the scenario is loaded via the map editor.
|
952
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
953
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_game_created_from_scenario Online documentation}
|
953
954
|
*/
|
954
955
|
interface OnGameCreatedFromScenarioEvent extends EventData {
|
955
956
|
/**
|
@@ -963,7 +964,7 @@ declare module "factorio:runtime" {
|
|
963
964
|
}
|
964
965
|
/**
|
965
966
|
* Called when {@link LuaGuiElement} checked state is changed (related to checkboxes and radio buttons).
|
966
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
967
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_gui_checked_state_changed Online documentation}
|
967
968
|
*/
|
968
969
|
interface OnGuiCheckedStateChangedEvent extends EventData {
|
969
970
|
/**
|
@@ -985,7 +986,7 @@ declare module "factorio:runtime" {
|
|
985
986
|
}
|
986
987
|
/**
|
987
988
|
* Called when {@link LuaGuiElement} is clicked.
|
988
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
989
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_gui_click Online documentation}
|
989
990
|
*/
|
990
991
|
interface OnGuiClickEvent extends EventData {
|
991
992
|
/**
|
@@ -1031,7 +1032,7 @@ declare module "factorio:runtime" {
|
|
1031
1032
|
* This can only be raised when the GUI's player controller is still valid. If a GUI is thus closed due to the player disconnecting, dying, or becoming a spectator in other ways, it won't cause this event to be raised.
|
1032
1033
|
*
|
1033
1034
|
* It's not advised to open any other GUI during this event because if this is run as a request to open a different GUI the game will force close the new opened GUI without notice to ensure the original requested GUI is opened.
|
1034
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1035
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_gui_closed Online documentation}
|
1035
1036
|
*/
|
1036
1037
|
interface OnGuiClosedEvent extends EventData {
|
1037
1038
|
/**
|
@@ -1085,7 +1086,7 @@ declare module "factorio:runtime" {
|
|
1085
1086
|
}
|
1086
1087
|
/**
|
1087
1088
|
* Called when a {@link LuaGuiElement} is confirmed, for example by pressing Enter in a textfield.
|
1088
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1089
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_gui_confirmed Online documentation}
|
1089
1090
|
*/
|
1090
1091
|
interface OnGuiConfirmedEvent extends EventData {
|
1091
1092
|
/**
|
@@ -1119,7 +1120,7 @@ declare module "factorio:runtime" {
|
|
1119
1120
|
}
|
1120
1121
|
/**
|
1121
1122
|
* Called when {@link LuaGuiElement} element value is changed (related to choose element buttons).
|
1122
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1123
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_gui_elem_changed Online documentation}
|
1123
1124
|
*/
|
1124
1125
|
interface OnGuiElemChangedEvent extends EventData {
|
1125
1126
|
/**
|
@@ -1143,7 +1144,7 @@ declare module "factorio:runtime" {
|
|
1143
1144
|
* Called when {@link LuaGuiElement} is hovered by the mouse.
|
1144
1145
|
*
|
1145
1146
|
* Only fired for events whose {@link LuaGuiElement#raise_hover_events LuaGuiElement::raise_hover_events} is `true`.
|
1146
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1147
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_gui_hover Online documentation}
|
1147
1148
|
*/
|
1148
1149
|
interface OnGuiHoverEvent extends EventData {
|
1149
1150
|
/**
|
@@ -1167,7 +1168,7 @@ declare module "factorio:runtime" {
|
|
1167
1168
|
* Called when the player's cursor leaves a {@link LuaGuiElement} that was previously hovered.
|
1168
1169
|
*
|
1169
1170
|
* Only fired for events whose {@link LuaGuiElement#raise_hover_events LuaGuiElement::raise_hover_events} is `true`.
|
1170
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1171
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_gui_leave Online documentation}
|
1171
1172
|
*/
|
1172
1173
|
interface OnGuiLeaveEvent extends EventData {
|
1173
1174
|
/**
|
@@ -1189,7 +1190,7 @@ declare module "factorio:runtime" {
|
|
1189
1190
|
}
|
1190
1191
|
/**
|
1191
1192
|
* Called when {@link LuaGuiElement} element location is changed (related to frames in `player.gui.screen`).
|
1192
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1193
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_gui_location_changed Online documentation}
|
1193
1194
|
*/
|
1194
1195
|
interface OnGuiLocationChangedEvent extends EventData {
|
1195
1196
|
/**
|
@@ -1211,7 +1212,7 @@ declare module "factorio:runtime" {
|
|
1211
1212
|
}
|
1212
1213
|
/**
|
1213
1214
|
* Called when the player opens a GUI.
|
1214
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1215
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_gui_opened Online documentation}
|
1215
1216
|
*/
|
1216
1217
|
interface OnGuiOpenedEvent extends EventData {
|
1217
1218
|
/**
|
@@ -1257,7 +1258,7 @@ declare module "factorio:runtime" {
|
|
1257
1258
|
}
|
1258
1259
|
/**
|
1259
1260
|
* Called when {@link LuaGuiElement} selected tab is changed (related to tabbed-panes).
|
1260
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1261
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_gui_selected_tab_changed Online documentation}
|
1261
1262
|
*/
|
1262
1263
|
interface OnGuiSelectedTabChangedEvent extends EventData {
|
1263
1264
|
/**
|
@@ -1279,7 +1280,7 @@ declare module "factorio:runtime" {
|
|
1279
1280
|
}
|
1280
1281
|
/**
|
1281
1282
|
* Called when {@link LuaGuiElement} selection state is changed (related to drop-downs and listboxes).
|
1282
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1283
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_gui_selection_state_changed Online documentation}
|
1283
1284
|
*/
|
1284
1285
|
interface OnGuiSelectionStateChangedEvent extends EventData {
|
1285
1286
|
/**
|
@@ -1301,7 +1302,7 @@ declare module "factorio:runtime" {
|
|
1301
1302
|
}
|
1302
1303
|
/**
|
1303
1304
|
* Called when {@link LuaGuiElement} switch state is changed (related to switches).
|
1304
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1305
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_gui_switch_state_changed Online documentation}
|
1305
1306
|
*/
|
1306
1307
|
interface OnGuiSwitchStateChangedEvent extends EventData {
|
1307
1308
|
/**
|
@@ -1323,7 +1324,7 @@ declare module "factorio:runtime" {
|
|
1323
1324
|
}
|
1324
1325
|
/**
|
1325
1326
|
* Called when {@link LuaGuiElement} text is changed by the player.
|
1326
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1327
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_gui_text_changed Online documentation}
|
1327
1328
|
*/
|
1328
1329
|
interface OnGuiTextChangedEvent extends EventData {
|
1329
1330
|
/**
|
@@ -1349,7 +1350,7 @@ declare module "factorio:runtime" {
|
|
1349
1350
|
}
|
1350
1351
|
/**
|
1351
1352
|
* Called when {@link LuaGuiElement} slider value is changed (related to the slider element).
|
1352
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1353
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_gui_value_changed Online documentation}
|
1353
1354
|
*/
|
1354
1355
|
interface OnGuiValueChangedEvent extends EventData {
|
1355
1356
|
/**
|
@@ -1371,7 +1372,7 @@ declare module "factorio:runtime" {
|
|
1371
1372
|
}
|
1372
1373
|
/**
|
1373
1374
|
* Called when a land mine is armed.
|
1374
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1375
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_land_mine_armed Online documentation}
|
1375
1376
|
*/
|
1376
1377
|
interface OnLandMineArmedEvent extends EventData {
|
1377
1378
|
readonly mine: LuaEntity
|
@@ -1386,7 +1387,7 @@ declare module "factorio:runtime" {
|
|
1386
1387
|
}
|
1387
1388
|
/**
|
1388
1389
|
* Called when a custom {@link import("factorio:prototype").ShortcutPrototype Lua shortcut} is pressed.
|
1389
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1390
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_lua_shortcut Online documentation}
|
1390
1391
|
*/
|
1391
1392
|
interface OnLuaShortcutEvent extends EventData {
|
1392
1393
|
readonly player_index: PlayerIndex
|
@@ -1407,7 +1408,7 @@ declare module "factorio:runtime" {
|
|
1407
1408
|
* Called when an entity is marked for deconstruction with the Deconstruction planner or via script.
|
1408
1409
|
*
|
1409
1410
|
* Event filter: [LuaEntityMarkedForDeconstructionEventFilter](LuaEntityMarkedForDeconstructionEventFilter]
|
1410
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1411
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_marked_for_deconstruction Online documentation}
|
1411
1412
|
*/
|
1412
1413
|
interface OnMarkedForDeconstructionEvent extends EventData {
|
1413
1414
|
readonly entity: LuaEntity
|
@@ -1425,7 +1426,7 @@ declare module "factorio:runtime" {
|
|
1425
1426
|
* Called when an entity is marked for upgrade with the Upgrade planner or via script.
|
1426
1427
|
*
|
1427
1428
|
* Event filter: [LuaEntityMarkedForUpgradeEventFilter](LuaEntityMarkedForUpgradeEventFilter]
|
1428
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1429
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_marked_for_upgrade Online documentation}
|
1429
1430
|
*/
|
1430
1431
|
interface OnMarkedForUpgradeEvent extends EventData {
|
1431
1432
|
readonly player_index?: PlayerIndex
|
@@ -1443,7 +1444,7 @@ declare module "factorio:runtime" {
|
|
1443
1444
|
}
|
1444
1445
|
/**
|
1445
1446
|
* Called after a player purchases some offer from a `market` entity.
|
1446
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1447
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_market_item_purchased Online documentation}
|
1447
1448
|
*/
|
1448
1449
|
interface OnMarketItemPurchasedEvent extends EventData {
|
1449
1450
|
/**
|
@@ -1473,7 +1474,7 @@ declare module "factorio:runtime" {
|
|
1473
1474
|
}
|
1474
1475
|
/**
|
1475
1476
|
* Called when the player uses the 'Open item GUI' control on an item defined with the 'mod-openable' flag
|
1476
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1477
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_mod_item_opened Online documentation}
|
1477
1478
|
*/
|
1478
1479
|
interface OnModItemOpenedEvent extends EventData {
|
1479
1480
|
/**
|
@@ -1501,7 +1502,7 @@ declare module "factorio:runtime" {
|
|
1501
1502
|
* Called after an object is destroyed that has been registered with {@link LuaBootstrap#register_on_object_destroyed LuaBootstrap::register_on_object_destroyed}.
|
1502
1503
|
*
|
1503
1504
|
* Depending on when a given object is destroyed, this event will be fired at the end of the current tick or at the end of the next tick.
|
1504
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1505
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_object_destroyed Online documentation}
|
1505
1506
|
*/
|
1506
1507
|
interface OnObjectDestroyedEvent extends EventData {
|
1507
1508
|
/**
|
@@ -1527,7 +1528,7 @@ declare module "factorio:runtime" {
|
|
1527
1528
|
}
|
1528
1529
|
/**
|
1529
1530
|
* Called directly after a permission group is added.
|
1530
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1531
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_permission_group_added Online documentation}
|
1531
1532
|
*/
|
1532
1533
|
interface OnPermissionGroupAddedEvent extends EventData {
|
1533
1534
|
/**
|
@@ -1549,7 +1550,7 @@ declare module "factorio:runtime" {
|
|
1549
1550
|
}
|
1550
1551
|
/**
|
1551
1552
|
* Called directly after a permission group is deleted.
|
1552
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1553
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_permission_group_deleted Online documentation}
|
1553
1554
|
*/
|
1554
1555
|
interface OnPermissionGroupDeletedEvent extends EventData {
|
1555
1556
|
/**
|
@@ -1575,7 +1576,7 @@ declare module "factorio:runtime" {
|
|
1575
1576
|
}
|
1576
1577
|
/**
|
1577
1578
|
* Called directly after a permission group is edited in some way.
|
1578
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1579
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_permission_group_edited Online documentation}
|
1579
1580
|
*/
|
1580
1581
|
interface OnPermissionGroupEditedEvent extends EventData {
|
1581
1582
|
/**
|
@@ -1624,7 +1625,7 @@ declare module "factorio:runtime" {
|
|
1624
1625
|
}
|
1625
1626
|
/**
|
1626
1627
|
* Called directly after a permission string is imported.
|
1627
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1628
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_permission_string_imported Online documentation}
|
1628
1629
|
*/
|
1629
1630
|
interface OnPermissionStringImportedEvent extends EventData {
|
1630
1631
|
/**
|
@@ -1642,7 +1643,7 @@ declare module "factorio:runtime" {
|
|
1642
1643
|
}
|
1643
1644
|
/**
|
1644
1645
|
* Called when a player picks up an item.
|
1645
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1646
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_picked_up_item Online documentation}
|
1646
1647
|
*/
|
1647
1648
|
interface OnPickedUpItemEvent extends EventData {
|
1648
1649
|
readonly item_stack: SimpleItemStack
|
@@ -1658,7 +1659,7 @@ declare module "factorio:runtime" {
|
|
1658
1659
|
}
|
1659
1660
|
/**
|
1660
1661
|
* Called after a player alt-reverse-selects an area with a selection-tool item.
|
1661
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1662
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_alt_reverse_selected_area Online documentation}
|
1662
1663
|
*/
|
1663
1664
|
interface OnPlayerAltReverseSelectedAreaEvent extends EventData {
|
1664
1665
|
/**
|
@@ -1696,7 +1697,7 @@ declare module "factorio:runtime" {
|
|
1696
1697
|
}
|
1697
1698
|
/**
|
1698
1699
|
* Called after a player alt-selects an area with a selection-tool item.
|
1699
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1700
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_alt_selected_area Online documentation}
|
1700
1701
|
*/
|
1701
1702
|
interface OnPlayerAltSelectedAreaEvent extends EventData {
|
1702
1703
|
/**
|
@@ -1738,7 +1739,7 @@ declare module "factorio:runtime" {
|
|
1738
1739
|
}
|
1739
1740
|
/**
|
1740
1741
|
* Called after a players ammo inventory changed in some way.
|
1741
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1742
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_ammo_inventory_changed Online documentation}
|
1742
1743
|
*/
|
1743
1744
|
interface OnPlayerAmmoInventoryChangedEvent extends EventData {
|
1744
1745
|
readonly player_index: PlayerIndex
|
@@ -1753,7 +1754,7 @@ declare module "factorio:runtime" {
|
|
1753
1754
|
}
|
1754
1755
|
/**
|
1755
1756
|
* Called after a players armor inventory changed in some way.
|
1756
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1757
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_armor_inventory_changed Online documentation}
|
1757
1758
|
*/
|
1758
1759
|
interface OnPlayerArmorInventoryChangedEvent extends EventData {
|
1759
1760
|
readonly player_index: PlayerIndex
|
@@ -1768,7 +1769,7 @@ declare module "factorio:runtime" {
|
|
1768
1769
|
}
|
1769
1770
|
/**
|
1770
1771
|
* Called when a player is banned.
|
1771
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1772
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_banned Online documentation}
|
1772
1773
|
*/
|
1773
1774
|
interface OnPlayerBannedEvent extends EventData {
|
1774
1775
|
/**
|
@@ -1798,7 +1799,7 @@ declare module "factorio:runtime" {
|
|
1798
1799
|
}
|
1799
1800
|
/**
|
1800
1801
|
* Called after a player builds tiles.
|
1801
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1802
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_built_tile Online documentation}
|
1802
1803
|
*/
|
1803
1804
|
interface OnPlayerBuiltTileEvent extends EventData {
|
1804
1805
|
readonly player_index: PlayerIndex
|
@@ -1837,7 +1838,7 @@ declare module "factorio:runtime" {
|
|
1837
1838
|
}
|
1838
1839
|
/**
|
1839
1840
|
* Called when a player cancels crafting.
|
1840
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1841
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_cancelled_crafting Online documentation}
|
1841
1842
|
*/
|
1842
1843
|
interface OnPlayerCancelledCraftingEvent extends EventData {
|
1843
1844
|
/**
|
@@ -1867,7 +1868,7 @@ declare module "factorio:runtime" {
|
|
1867
1868
|
}
|
1868
1869
|
/**
|
1869
1870
|
* Called after a player changes forces.
|
1870
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1871
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_changed_force Online documentation}
|
1871
1872
|
*/
|
1872
1873
|
interface OnPlayerChangedForceEvent extends EventData {
|
1873
1874
|
/**
|
@@ -1889,7 +1890,7 @@ declare module "factorio:runtime" {
|
|
1889
1890
|
}
|
1890
1891
|
/**
|
1891
1892
|
* Called when the tile position a player is located at changes.
|
1892
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1893
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_changed_position Online documentation}
|
1893
1894
|
*/
|
1894
1895
|
interface OnPlayerChangedPositionEvent extends EventData {
|
1895
1896
|
/**
|
@@ -1907,7 +1908,7 @@ declare module "factorio:runtime" {
|
|
1907
1908
|
}
|
1908
1909
|
/**
|
1909
1910
|
* Called after a player changes surfaces.
|
1910
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1911
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_changed_surface Online documentation}
|
1911
1912
|
*/
|
1912
1913
|
interface OnPlayerChangedSurfaceEvent extends EventData {
|
1913
1914
|
/**
|
@@ -1929,7 +1930,7 @@ declare module "factorio:runtime" {
|
|
1929
1930
|
}
|
1930
1931
|
/**
|
1931
1932
|
* Called when cheat mode is disabled on a player.
|
1932
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1933
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_cheat_mode_disabled Online documentation}
|
1933
1934
|
*/
|
1934
1935
|
interface OnPlayerCheatModeDisabledEvent extends EventData {
|
1935
1936
|
/**
|
@@ -1947,7 +1948,7 @@ declare module "factorio:runtime" {
|
|
1947
1948
|
}
|
1948
1949
|
/**
|
1949
1950
|
* Called when cheat mode is enabled on a player.
|
1950
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1951
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_cheat_mode_enabled Online documentation}
|
1951
1952
|
*/
|
1952
1953
|
interface OnPlayerCheatModeEnabledEvent extends EventData {
|
1953
1954
|
/**
|
@@ -1965,7 +1966,7 @@ declare module "factorio:runtime" {
|
|
1965
1966
|
}
|
1966
1967
|
/**
|
1967
1968
|
* Called when a player clicks a gps tag
|
1968
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1969
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_clicked_gps_tag Online documentation}
|
1969
1970
|
*/
|
1970
1971
|
interface OnPlayerClickedGpsTagEvent extends EventData {
|
1971
1972
|
/**
|
@@ -1991,7 +1992,7 @@ declare module "factorio:runtime" {
|
|
1991
1992
|
}
|
1992
1993
|
/**
|
1993
1994
|
* Called when a player clicks the "confirm" button in the configure Blueprint GUI.
|
1994
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1995
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_configured_blueprint Online documentation}
|
1995
1996
|
*/
|
1996
1997
|
interface OnPlayerConfiguredBlueprintEvent extends EventData {
|
1997
1998
|
/**
|
@@ -2009,7 +2010,7 @@ declare module "factorio:runtime" {
|
|
2009
2010
|
}
|
2010
2011
|
/**
|
2011
2012
|
* Called after a player changes controller types.
|
2012
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2013
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_controller_changed Online documentation}
|
2013
2014
|
*/
|
2014
2015
|
interface OnPlayerControllerChangedEvent extends EventData {
|
2015
2016
|
/**
|
@@ -2031,7 +2032,7 @@ declare module "factorio:runtime" {
|
|
2031
2032
|
}
|
2032
2033
|
/**
|
2033
2034
|
* Called when the player finishes crafting an item. This event fires just before the results are inserted into the player's inventory, not when the crafting is queued (see {@link OnPrePlayerCraftedItemEvent on_pre_player_crafted_item}).
|
2034
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2035
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_crafted_item Online documentation}
|
2035
2036
|
*/
|
2036
2037
|
interface OnPlayerCraftedItemEvent extends EventData {
|
2037
2038
|
/**
|
@@ -2057,7 +2058,7 @@ declare module "factorio:runtime" {
|
|
2057
2058
|
}
|
2058
2059
|
/**
|
2059
2060
|
* Called after the player was created.
|
2060
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2061
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_created Online documentation}
|
2061
2062
|
*/
|
2062
2063
|
interface OnPlayerCreatedEvent extends EventData {
|
2063
2064
|
readonly player_index: PlayerIndex
|
@@ -2074,7 +2075,7 @@ declare module "factorio:runtime" {
|
|
2074
2075
|
* Called after a player's {@link LuaControl#cursor_stack cursor stack} changed in some way.
|
2075
2076
|
*
|
2076
2077
|
* This is fired in the same tick that the change happens, but not instantly.
|
2077
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2078
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_cursor_stack_changed Online documentation}
|
2078
2079
|
*/
|
2079
2080
|
interface OnPlayerCursorStackChangedEvent extends EventData {
|
2080
2081
|
readonly player_index: PlayerIndex
|
@@ -2089,7 +2090,7 @@ declare module "factorio:runtime" {
|
|
2089
2090
|
}
|
2090
2091
|
/**
|
2091
2092
|
* Called when a player selects an area with a deconstruction planner.
|
2092
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2093
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_deconstructed_area Online documentation}
|
2093
2094
|
*/
|
2094
2095
|
interface OnPlayerDeconstructedAreaEvent extends EventData {
|
2095
2096
|
/**
|
@@ -2131,7 +2132,7 @@ declare module "factorio:runtime" {
|
|
2131
2132
|
}
|
2132
2133
|
/**
|
2133
2134
|
* Called when a player is demoted.
|
2134
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2135
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_demoted Online documentation}
|
2135
2136
|
*/
|
2136
2137
|
interface OnPlayerDemotedEvent extends EventData {
|
2137
2138
|
/**
|
@@ -2149,7 +2150,7 @@ declare module "factorio:runtime" {
|
|
2149
2150
|
}
|
2150
2151
|
/**
|
2151
2152
|
* Called after a player dies.
|
2152
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2153
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_died Online documentation}
|
2153
2154
|
*/
|
2154
2155
|
interface OnPlayerDiedEvent extends EventData {
|
2155
2156
|
readonly player_index: PlayerIndex
|
@@ -2165,7 +2166,7 @@ declare module "factorio:runtime" {
|
|
2165
2166
|
}
|
2166
2167
|
/**
|
2167
2168
|
* Called when the display density scale changes for a given player. The display density scale is the scale value automatically applied based on the player's display DPI. This is only relevant on platforms that support high-density displays.
|
2168
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2169
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_display_density_scale_changed Online documentation}
|
2169
2170
|
*/
|
2170
2171
|
interface OnPlayerDisplayDensityScaleChangedEvent extends EventData {
|
2171
2172
|
/**
|
@@ -2187,7 +2188,7 @@ declare module "factorio:runtime" {
|
|
2187
2188
|
}
|
2188
2189
|
/**
|
2189
2190
|
* Called when the display resolution changes for a given player.
|
2190
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2191
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_display_resolution_changed Online documentation}
|
2191
2192
|
*/
|
2192
2193
|
interface OnPlayerDisplayResolutionChangedEvent extends EventData {
|
2193
2194
|
/**
|
@@ -2209,7 +2210,7 @@ declare module "factorio:runtime" {
|
|
2209
2210
|
}
|
2210
2211
|
/**
|
2211
2212
|
* Called when the display scale changes for a given player.
|
2212
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2213
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_display_scale_changed Online documentation}
|
2213
2214
|
*/
|
2214
2215
|
interface OnPlayerDisplayScaleChangedEvent extends EventData {
|
2215
2216
|
/**
|
@@ -2233,7 +2234,7 @@ declare module "factorio:runtime" {
|
|
2233
2234
|
* Called when the player's driving state has changed, meaning a player has either entered or left a vehicle.
|
2234
2235
|
*
|
2235
2236
|
* This event is not raised when the player is ejected from a vehicle due to it being destroyed.
|
2236
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2237
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_driving_changed_state Online documentation}
|
2237
2238
|
*/
|
2238
2239
|
interface OnPlayerDrivingChangedStateEvent extends EventData {
|
2239
2240
|
readonly player_index: PlayerIndex
|
@@ -2252,7 +2253,7 @@ declare module "factorio:runtime" {
|
|
2252
2253
|
}
|
2253
2254
|
/**
|
2254
2255
|
* Called when a player drops an item on the ground.
|
2255
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2256
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_dropped_item Online documentation}
|
2256
2257
|
*/
|
2257
2258
|
interface OnPlayerDroppedItemEvent extends EventData {
|
2258
2259
|
readonly player_index: PlayerIndex
|
@@ -2271,7 +2272,7 @@ declare module "factorio:runtime" {
|
|
2271
2272
|
}
|
2272
2273
|
/**
|
2273
2274
|
* Called when a player fast-transfers something to or from an entity.
|
2274
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2275
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_fast_transferred Online documentation}
|
2275
2276
|
*/
|
2276
2277
|
interface OnPlayerFastTransferredEvent extends EventData {
|
2277
2278
|
/**
|
@@ -2301,7 +2302,7 @@ declare module "factorio:runtime" {
|
|
2301
2302
|
}
|
2302
2303
|
/**
|
2303
2304
|
* Called when the player flips an entity. This event is only fired when the entity actually changes its orientation or mirroring -- pressing the flip keys on an entity that can't be flipped won't fire this event.
|
2304
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2305
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_flipped_entity Online documentation}
|
2305
2306
|
*/
|
2306
2307
|
interface OnPlayerFlippedEntityEvent extends EventData {
|
2307
2308
|
/**
|
@@ -2324,7 +2325,7 @@ declare module "factorio:runtime" {
|
|
2324
2325
|
}
|
2325
2326
|
/**
|
2326
2327
|
* Called after player flushed fluid
|
2327
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2328
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_flushed_fluid Online documentation}
|
2328
2329
|
*/
|
2329
2330
|
interface OnPlayerFlushedFluidEvent extends EventData {
|
2330
2331
|
/**
|
@@ -2358,7 +2359,7 @@ declare module "factorio:runtime" {
|
|
2358
2359
|
}
|
2359
2360
|
/**
|
2360
2361
|
* Called after a players gun inventory changed in some way.
|
2361
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2362
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_gun_inventory_changed Online documentation}
|
2362
2363
|
*/
|
2363
2364
|
interface OnPlayerGunInventoryChangedEvent extends EventData {
|
2364
2365
|
readonly player_index: PlayerIndex
|
@@ -2373,7 +2374,7 @@ declare module "factorio:runtime" {
|
|
2373
2374
|
}
|
2374
2375
|
/**
|
2375
2376
|
* Called when a player's input method changes. See {@link LuaPlayer#input_method LuaPlayer::input_method}.
|
2376
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2377
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_input_method_changed Online documentation}
|
2377
2378
|
*/
|
2378
2379
|
interface OnPlayerInputMethodChangedEvent extends EventData {
|
2379
2380
|
/**
|
@@ -2391,7 +2392,7 @@ declare module "factorio:runtime" {
|
|
2391
2392
|
}
|
2392
2393
|
/**
|
2393
2394
|
* Called after a player joins the game. This is not called when loading a save file in singleplayer, as the player doesn't actually leave the game, and the save is just on pause until they rejoin.
|
2394
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2395
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_joined_game Online documentation}
|
2395
2396
|
*/
|
2396
2397
|
interface OnPlayerJoinedGameEvent extends EventData {
|
2397
2398
|
readonly player_index: PlayerIndex
|
@@ -2406,7 +2407,7 @@ declare module "factorio:runtime" {
|
|
2406
2407
|
}
|
2407
2408
|
/**
|
2408
2409
|
* Called when a player is kicked.
|
2409
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2410
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_kicked Online documentation}
|
2410
2411
|
*/
|
2411
2412
|
interface OnPlayerKickedEvent extends EventData {
|
2412
2413
|
/**
|
@@ -2432,7 +2433,7 @@ declare module "factorio:runtime" {
|
|
2432
2433
|
}
|
2433
2434
|
/**
|
2434
2435
|
* Called after a player leaves the game. This is not called when closing a save file in singleplayer, as the player doesn't actually leave the game, and the save is just on pause until they rejoin.
|
2435
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2436
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_left_game Online documentation}
|
2436
2437
|
*/
|
2437
2438
|
interface OnPlayerLeftGameEvent extends EventData {
|
2438
2439
|
readonly player_index: PlayerIndex
|
@@ -2448,7 +2449,7 @@ declare module "factorio:runtime" {
|
|
2448
2449
|
}
|
2449
2450
|
/**
|
2450
2451
|
* Called when a player's active locale changes. See {@link LuaPlayer#locale LuaPlayer::locale}.
|
2451
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2452
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_locale_changed Online documentation}
|
2452
2453
|
*/
|
2453
2454
|
interface OnPlayerLocaleChangedEvent extends EventData {
|
2454
2455
|
/**
|
@@ -2470,7 +2471,7 @@ declare module "factorio:runtime" {
|
|
2470
2471
|
}
|
2471
2472
|
/**
|
2472
2473
|
* Called after a players main inventory changed in some way.
|
2473
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2474
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_main_inventory_changed Online documentation}
|
2474
2475
|
*/
|
2475
2476
|
interface OnPlayerMainInventoryChangedEvent extends EventData {
|
2476
2477
|
readonly player_index: PlayerIndex
|
@@ -2491,7 +2492,7 @@ declare module "factorio:runtime" {
|
|
2491
2492
|
* The buffer inventory is special in that it's only valid during this event and has a dynamic size expanding as more items are transferred into it.
|
2492
2493
|
*
|
2493
2494
|
* Event filter: [LuaPlayerMinedEntityEventFilter](LuaPlayerMinedEntityEventFilter]
|
2494
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2495
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_mined_entity Online documentation}
|
2495
2496
|
*/
|
2496
2497
|
interface OnPlayerMinedEntityEvent extends EventData {
|
2497
2498
|
/**
|
@@ -2517,7 +2518,7 @@ declare module "factorio:runtime" {
|
|
2517
2518
|
}
|
2518
2519
|
/**
|
2519
2520
|
* Called when the player mines something.
|
2520
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2521
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_mined_item Online documentation}
|
2521
2522
|
*/
|
2522
2523
|
interface OnPlayerMinedItemEvent extends EventData {
|
2523
2524
|
/**
|
@@ -2536,7 +2537,7 @@ declare module "factorio:runtime" {
|
|
2536
2537
|
}
|
2537
2538
|
/**
|
2538
2539
|
* Called after a player mines tiles.
|
2539
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2540
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_mined_tile Online documentation}
|
2540
2541
|
*/
|
2541
2542
|
interface OnPlayerMinedTileEvent extends EventData {
|
2542
2543
|
readonly player_index: PlayerIndex
|
@@ -2559,7 +2560,7 @@ declare module "factorio:runtime" {
|
|
2559
2560
|
}
|
2560
2561
|
/**
|
2561
2562
|
* Called when a player is muted.
|
2562
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2563
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_muted Online documentation}
|
2563
2564
|
*/
|
2564
2565
|
interface OnPlayerMutedEvent extends EventData {
|
2565
2566
|
/**
|
@@ -2577,7 +2578,7 @@ declare module "factorio:runtime" {
|
|
2577
2578
|
}
|
2578
2579
|
/**
|
2579
2580
|
* Called when a player invokes the "smart pipette" over an entity.
|
2580
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2581
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_pipette Online documentation}
|
2581
2582
|
*/
|
2582
2583
|
interface OnPlayerPipetteEvent extends EventData {
|
2583
2584
|
/**
|
@@ -2607,7 +2608,7 @@ declare module "factorio:runtime" {
|
|
2607
2608
|
}
|
2608
2609
|
/**
|
2609
2610
|
* Called after the player puts equipment in an equipment grid
|
2610
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2611
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_placed_equipment Online documentation}
|
2611
2612
|
*/
|
2612
2613
|
interface OnPlayerPlacedEquipmentEvent extends EventData {
|
2613
2614
|
readonly player_index: PlayerIndex
|
@@ -2630,7 +2631,7 @@ declare module "factorio:runtime" {
|
|
2630
2631
|
}
|
2631
2632
|
/**
|
2632
2633
|
* Called when a player is promoted.
|
2633
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2634
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_promoted Online documentation}
|
2634
2635
|
*/
|
2635
2636
|
interface OnPlayerPromotedEvent extends EventData {
|
2636
2637
|
/**
|
@@ -2648,7 +2649,7 @@ declare module "factorio:runtime" {
|
|
2648
2649
|
}
|
2649
2650
|
/**
|
2650
2651
|
* Called when a player is removed (deleted) from the game. This is markedly different from a player temporarily {@link OnPlayerLeftGameEvent leaving} the game, and instead behaves like the player never existed in the save file.
|
2651
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2652
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_removed Online documentation}
|
2652
2653
|
*/
|
2653
2654
|
interface OnPlayerRemovedEvent extends EventData {
|
2654
2655
|
/**
|
@@ -2666,7 +2667,7 @@ declare module "factorio:runtime" {
|
|
2666
2667
|
}
|
2667
2668
|
/**
|
2668
2669
|
* Called after the player removes equipment from an equipment grid
|
2669
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2670
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_removed_equipment Online documentation}
|
2670
2671
|
*/
|
2671
2672
|
interface OnPlayerRemovedEquipmentEvent extends EventData {
|
2672
2673
|
readonly player_index: PlayerIndex
|
@@ -2699,7 +2700,7 @@ declare module "factorio:runtime" {
|
|
2699
2700
|
* Called when a player repairs an entity.
|
2700
2701
|
*
|
2701
2702
|
* Event filter: [LuaPlayerRepairedEntityEventFilter](LuaPlayerRepairedEntityEventFilter]
|
2702
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2703
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_repaired_entity Online documentation}
|
2703
2704
|
*/
|
2704
2705
|
interface OnPlayerRepairedEntityEvent extends EventData {
|
2705
2706
|
readonly player_index: PlayerIndex
|
@@ -2715,7 +2716,7 @@ declare module "factorio:runtime" {
|
|
2715
2716
|
}
|
2716
2717
|
/**
|
2717
2718
|
* Called after a player respawns.
|
2718
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2719
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_respawned Online documentation}
|
2719
2720
|
*/
|
2720
2721
|
interface OnPlayerRespawnedEvent extends EventData {
|
2721
2722
|
readonly player_index: PlayerIndex
|
@@ -2734,7 +2735,7 @@ declare module "factorio:runtime" {
|
|
2734
2735
|
}
|
2735
2736
|
/**
|
2736
2737
|
* Called after a player reverse-selects an area with a selection-tool item.
|
2737
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2738
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_reverse_selected_area Online documentation}
|
2738
2739
|
*/
|
2739
2740
|
interface OnPlayerReverseSelectedAreaEvent extends EventData {
|
2740
2741
|
/**
|
@@ -2774,7 +2775,7 @@ declare module "factorio:runtime" {
|
|
2774
2775
|
* Called when the player rotates an entity. This event is only fired when the entity actually changes its orientation -- pressing the rotate key on an entity that can't be rotated won't fire this event.
|
2775
2776
|
*
|
2776
2777
|
* Entities being flipped will not fire this event, even if the flip involves rotating. See {@link OnPlayerFlippedEntityEvent on_player_flipped_entity}.
|
2777
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2778
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_rotated_entity Online documentation}
|
2778
2779
|
*/
|
2779
2780
|
interface OnPlayerRotatedEntityEvent extends EventData {
|
2780
2781
|
/**
|
@@ -2797,7 +2798,7 @@ declare module "factorio:runtime" {
|
|
2797
2798
|
}
|
2798
2799
|
/**
|
2799
2800
|
* Called after a player selects an area with a selection-tool item.
|
2800
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2801
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_selected_area Online documentation}
|
2801
2802
|
*/
|
2802
2803
|
interface OnPlayerSelectedAreaEvent extends EventData {
|
2803
2804
|
/**
|
@@ -2839,7 +2840,7 @@ declare module "factorio:runtime" {
|
|
2839
2840
|
}
|
2840
2841
|
/**
|
2841
2842
|
* Called when a player sets a quickbar slot to anything (new value, or set to empty).
|
2842
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2843
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_set_quick_bar_slot Online documentation}
|
2843
2844
|
*/
|
2844
2845
|
interface OnPlayerSetQuickBarSlotEvent extends EventData {
|
2845
2846
|
readonly player_index: PlayerIndex
|
@@ -2854,7 +2855,7 @@ declare module "factorio:runtime" {
|
|
2854
2855
|
}
|
2855
2856
|
/**
|
2856
2857
|
* Called when a player selects an area with a blueprint.
|
2857
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2858
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_setup_blueprint Online documentation}
|
2858
2859
|
*/
|
2859
2860
|
interface OnPlayerSetupBlueprintEvent extends EventData {
|
2860
2861
|
/**
|
@@ -2900,7 +2901,7 @@ declare module "factorio:runtime" {
|
|
2900
2901
|
}
|
2901
2902
|
/**
|
2902
2903
|
* Called when a player toggles alt mode, also known as "show entity info".
|
2903
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2904
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_toggled_alt_mode Online documentation}
|
2904
2905
|
*/
|
2905
2906
|
interface OnPlayerToggledAltModeEvent extends EventData {
|
2906
2907
|
readonly player_index: PlayerIndex
|
@@ -2919,7 +2920,7 @@ declare module "factorio:runtime" {
|
|
2919
2920
|
}
|
2920
2921
|
/**
|
2921
2922
|
* Called when a player toggles the map editor on or off.
|
2922
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2923
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_toggled_map_editor Online documentation}
|
2923
2924
|
*/
|
2924
2925
|
interface OnPlayerToggledMapEditorEvent extends EventData {
|
2925
2926
|
readonly player_index: PlayerIndex
|
@@ -2934,7 +2935,7 @@ declare module "factorio:runtime" {
|
|
2934
2935
|
}
|
2935
2936
|
/**
|
2936
2937
|
* Called after a players trash inventory changed in some way.
|
2937
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2938
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_trash_inventory_changed Online documentation}
|
2938
2939
|
*/
|
2939
2940
|
interface OnPlayerTrashInventoryChangedEvent extends EventData {
|
2940
2941
|
readonly player_index: PlayerIndex
|
@@ -2949,7 +2950,7 @@ declare module "factorio:runtime" {
|
|
2949
2950
|
}
|
2950
2951
|
/**
|
2951
2952
|
* Called when a player is un-banned.
|
2952
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2953
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_unbanned Online documentation}
|
2953
2954
|
*/
|
2954
2955
|
interface OnPlayerUnbannedEvent extends EventData {
|
2955
2956
|
/**
|
@@ -2979,7 +2980,7 @@ declare module "factorio:runtime" {
|
|
2979
2980
|
}
|
2980
2981
|
/**
|
2981
2982
|
* Called when a player is unmuted.
|
2982
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2983
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_unmuted Online documentation}
|
2983
2984
|
*/
|
2984
2985
|
interface OnPlayerUnmutedEvent extends EventData {
|
2985
2986
|
/**
|
@@ -2997,7 +2998,7 @@ declare module "factorio:runtime" {
|
|
2997
2998
|
}
|
2998
2999
|
/**
|
2999
3000
|
* Called when a player uses a capsule that results in some game action.
|
3000
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3001
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_used_capsule Online documentation}
|
3001
3002
|
*/
|
3002
3003
|
interface OnPlayerUsedCapsuleEvent extends EventData {
|
3003
3004
|
/**
|
@@ -3027,7 +3028,7 @@ declare module "factorio:runtime" {
|
|
3027
3028
|
}
|
3028
3029
|
/**
|
3029
3030
|
* Called when a player uses spidertron remote to send all selected units to a given position
|
3030
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3031
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_player_used_spidertron_remote Online documentation}
|
3031
3032
|
*/
|
3032
3033
|
interface OnPlayerUsedSpidertronRemoteEvent extends EventData {
|
3033
3034
|
/**
|
@@ -3051,7 +3052,7 @@ declare module "factorio:runtime" {
|
|
3051
3052
|
* Called after an entity dies.
|
3052
3053
|
*
|
3053
3054
|
* Event filter: [LuaPostEntityDiedEventFilter](LuaPostEntityDiedEventFilter]
|
3054
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3055
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_post_entity_died Online documentation}
|
3055
3056
|
*/
|
3056
3057
|
interface OnPostEntityDiedEvent extends EventData {
|
3057
3058
|
/**
|
@@ -3101,7 +3102,7 @@ declare module "factorio:runtime" {
|
|
3101
3102
|
}
|
3102
3103
|
/**
|
3103
3104
|
* Called when players uses an item to build something. Called before {@link OnBuiltEntityEvent on_built_entity}.
|
3104
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3105
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_pre_build Online documentation}
|
3105
3106
|
*/
|
3106
3107
|
interface OnPreBuildEvent extends EventData {
|
3107
3108
|
/**
|
@@ -3147,7 +3148,7 @@ declare module "factorio:runtime" {
|
|
3147
3148
|
}
|
3148
3149
|
/**
|
3149
3150
|
* Called before one or more chunks are deleted using {@link LuaSurface#delete_chunk LuaSurface::delete_chunk}.
|
3150
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3151
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_pre_chunk_deleted Online documentation}
|
3151
3152
|
*/
|
3152
3153
|
interface OnPreChunkDeletedEvent extends EventData {
|
3153
3154
|
readonly surface_index: SurfaceIndex
|
@@ -3166,7 +3167,7 @@ declare module "factorio:runtime" {
|
|
3166
3167
|
}
|
3167
3168
|
/**
|
3168
3169
|
* Called before entity copy-paste is done.
|
3169
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3170
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_pre_entity_settings_pasted Online documentation}
|
3170
3171
|
*/
|
3171
3172
|
interface OnPreEntitySettingsPastedEvent extends EventData {
|
3172
3173
|
readonly player_index: PlayerIndex
|
@@ -3193,7 +3194,7 @@ declare module "factorio:runtime" {
|
|
3193
3194
|
* Also called for item request proxies before they are destroyed as a result of being marked for deconstruction.
|
3194
3195
|
*
|
3195
3196
|
* Event filter: [LuaPreGhostDeconstructedEventFilter](LuaPreGhostDeconstructedEventFilter]
|
3196
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3197
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_pre_ghost_deconstructed Online documentation}
|
3197
3198
|
*/
|
3198
3199
|
interface OnPreGhostDeconstructedEvent extends EventData {
|
3199
3200
|
/**
|
@@ -3214,7 +3215,7 @@ declare module "factorio:runtime" {
|
|
3214
3215
|
* Called before a ghost entity is upgraded.
|
3215
3216
|
*
|
3216
3217
|
* Event filter: [LuaPreGhostUpgradedEventFilter](LuaPreGhostUpgradedEventFilter]
|
3217
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3218
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_pre_ghost_upgraded Online documentation}
|
3218
3219
|
*/
|
3219
3220
|
interface OnPreGhostUpgradedEvent extends EventData {
|
3220
3221
|
/**
|
@@ -3235,7 +3236,7 @@ declare module "factorio:runtime" {
|
|
3235
3236
|
}
|
3236
3237
|
/**
|
3237
3238
|
* Called directly before a permission group is deleted.
|
3238
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3239
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_pre_permission_group_deleted Online documentation}
|
3239
3240
|
*/
|
3240
3241
|
interface OnPrePermissionGroupDeletedEvent extends EventData {
|
3241
3242
|
/**
|
@@ -3257,7 +3258,7 @@ declare module "factorio:runtime" {
|
|
3257
3258
|
}
|
3258
3259
|
/**
|
3259
3260
|
* Called directly before a permission string is imported.
|
3260
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3261
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_pre_permission_string_imported Online documentation}
|
3261
3262
|
*/
|
3262
3263
|
interface OnPrePermissionStringImportedEvent extends EventData {
|
3263
3264
|
/**
|
@@ -3275,7 +3276,7 @@ declare module "factorio:runtime" {
|
|
3275
3276
|
}
|
3276
3277
|
/**
|
3277
3278
|
* Called when a player queues something to be crafted.
|
3278
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3279
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_pre_player_crafted_item Online documentation}
|
3279
3280
|
*/
|
3280
3281
|
interface OnPrePlayerCraftedItemEvent extends EventData {
|
3281
3282
|
/**
|
@@ -3305,7 +3306,7 @@ declare module "factorio:runtime" {
|
|
3305
3306
|
}
|
3306
3307
|
/**
|
3307
3308
|
* Called before a players dies.
|
3308
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3309
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_pre_player_died Online documentation}
|
3309
3310
|
*/
|
3310
3311
|
interface OnPrePlayerDiedEvent extends EventData {
|
3311
3312
|
readonly player_index: PlayerIndex
|
@@ -3321,7 +3322,7 @@ declare module "factorio:runtime" {
|
|
3321
3322
|
}
|
3322
3323
|
/**
|
3323
3324
|
* Called before a player leaves the game.
|
3324
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3325
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_pre_player_left_game Online documentation}
|
3325
3326
|
*/
|
3326
3327
|
interface OnPrePlayerLeftGameEvent extends EventData {
|
3327
3328
|
readonly player_index: PlayerIndex
|
@@ -3339,7 +3340,7 @@ declare module "factorio:runtime" {
|
|
3339
3340
|
* Called when the player completes a mining action, but before the entity is potentially removed from the map. This is called even if the entity does not end up being removed.
|
3340
3341
|
*
|
3341
3342
|
* Event filter: [LuaPrePlayerMinedEntityEventFilter](LuaPrePlayerMinedEntityEventFilter]
|
3342
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3343
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_pre_player_mined_item Online documentation}
|
3343
3344
|
*/
|
3344
3345
|
interface OnPrePlayerMinedItemEvent extends EventData {
|
3345
3346
|
/**
|
@@ -3358,7 +3359,7 @@ declare module "factorio:runtime" {
|
|
3358
3359
|
}
|
3359
3360
|
/**
|
3360
3361
|
* Called before a player is removed (deleted) from the game. This is markedly different from a player temporarily {@link OnPlayerLeftGameEvent leaving} the game, and instead behaves like the player never existed in the save file.
|
3361
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3362
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_pre_player_removed Online documentation}
|
3362
3363
|
*/
|
3363
3364
|
interface OnPrePlayerRemovedEvent extends EventData {
|
3364
3365
|
/**
|
@@ -3376,7 +3377,7 @@ declare module "factorio:runtime" {
|
|
3376
3377
|
}
|
3377
3378
|
/**
|
3378
3379
|
* Called before a player toggles the map editor on or off.
|
3379
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3380
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_pre_player_toggled_map_editor Online documentation}
|
3380
3381
|
*/
|
3381
3382
|
interface OnPrePlayerToggledMapEditorEvent extends EventData {
|
3382
3383
|
readonly player_index: PlayerIndex
|
@@ -3391,7 +3392,7 @@ declare module "factorio:runtime" {
|
|
3391
3392
|
}
|
3392
3393
|
/**
|
3393
3394
|
* Called directly before a robot explodes cliffs.
|
3394
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3395
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_pre_robot_exploded_cliff Online documentation}
|
3395
3396
|
*/
|
3396
3397
|
interface OnPreRobotExplodedCliffEvent extends EventData {
|
3397
3398
|
readonly robot: LuaEntity
|
@@ -3415,7 +3416,7 @@ declare module "factorio:runtime" {
|
|
3415
3416
|
}
|
3416
3417
|
/**
|
3417
3418
|
* Called just before the scenario finishes.
|
3418
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3419
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_pre_scenario_finished Online documentation}
|
3419
3420
|
*/
|
3420
3421
|
interface OnPreScenarioFinishedEvent extends EventData {
|
3421
3422
|
/**
|
@@ -3433,7 +3434,7 @@ declare module "factorio:runtime" {
|
|
3433
3434
|
}
|
3434
3435
|
/**
|
3435
3436
|
* Called just before a script inventory is resized.
|
3436
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3437
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_pre_script_inventory_resized Online documentation}
|
3437
3438
|
*/
|
3438
3439
|
interface OnPreScriptInventoryResizedEvent extends EventData {
|
3439
3440
|
/**
|
@@ -3464,7 +3465,7 @@ declare module "factorio:runtime" {
|
|
3464
3465
|
}
|
3465
3466
|
/**
|
3466
3467
|
* Called just before a surface is cleared (all entities removed and all chunks deleted).
|
3467
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3468
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_pre_surface_cleared Online documentation}
|
3468
3469
|
*/
|
3469
3470
|
interface OnPreSurfaceClearedEvent extends EventData {
|
3470
3471
|
readonly surface_index: SurfaceIndex
|
@@ -3479,7 +3480,7 @@ declare module "factorio:runtime" {
|
|
3479
3480
|
}
|
3480
3481
|
/**
|
3481
3482
|
* Called just before a surface is deleted.
|
3482
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3483
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_pre_surface_deleted Online documentation}
|
3483
3484
|
*/
|
3484
3485
|
interface OnPreSurfaceDeletedEvent extends EventData {
|
3485
3486
|
readonly surface_index: SurfaceIndex
|
@@ -3494,7 +3495,7 @@ declare module "factorio:runtime" {
|
|
3494
3495
|
}
|
3495
3496
|
/**
|
3496
3497
|
* Called when the player triggers "redo".
|
3497
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3498
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_redo_applied Online documentation}
|
3498
3499
|
*/
|
3499
3500
|
interface OnRedoAppliedEvent extends EventData {
|
3500
3501
|
/**
|
@@ -3516,7 +3517,7 @@ declare module "factorio:runtime" {
|
|
3516
3517
|
}
|
3517
3518
|
/**
|
3518
3519
|
* Called when research is cancelled.
|
3519
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3520
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_research_cancelled Online documentation}
|
3520
3521
|
*/
|
3521
3522
|
interface OnResearchCancelledEvent extends EventData {
|
3522
3523
|
/**
|
@@ -3538,7 +3539,7 @@ declare module "factorio:runtime" {
|
|
3538
3539
|
}
|
3539
3540
|
/**
|
3540
3541
|
* Called when a research finishes.
|
3541
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3542
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_research_finished Online documentation}
|
3542
3543
|
*/
|
3543
3544
|
interface OnResearchFinishedEvent extends EventData {
|
3544
3545
|
/**
|
@@ -3560,7 +3561,7 @@ declare module "factorio:runtime" {
|
|
3560
3561
|
}
|
3561
3562
|
/**
|
3562
3563
|
* Called when research is moved forwards or backwards in the research queue.
|
3563
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3564
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_research_moved Online documentation}
|
3564
3565
|
*/
|
3565
3566
|
interface OnResearchMovedEvent extends EventData {
|
3566
3567
|
/**
|
@@ -3578,7 +3579,7 @@ declare module "factorio:runtime" {
|
|
3578
3579
|
}
|
3579
3580
|
/**
|
3580
3581
|
* Called when a research is reversed (unresearched).
|
3581
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3582
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_research_reversed Online documentation}
|
3582
3583
|
*/
|
3583
3584
|
interface OnResearchReversedEvent extends EventData {
|
3584
3585
|
/**
|
@@ -3600,7 +3601,7 @@ declare module "factorio:runtime" {
|
|
3600
3601
|
}
|
3601
3602
|
/**
|
3602
3603
|
* Called when a technology research starts.
|
3603
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3604
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_research_started Online documentation}
|
3604
3605
|
*/
|
3605
3606
|
interface OnResearchStartedEvent extends EventData {
|
3606
3607
|
/**
|
@@ -3619,7 +3620,7 @@ declare module "factorio:runtime" {
|
|
3619
3620
|
}
|
3620
3621
|
/**
|
3621
3622
|
* Called when a resource entity reaches 0 or its minimum yield for infinite resources.
|
3622
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3623
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_resource_depleted Online documentation}
|
3623
3624
|
*/
|
3624
3625
|
interface OnResourceDepletedEvent extends EventData {
|
3625
3626
|
readonly entity: LuaEntity
|
@@ -3636,7 +3637,7 @@ declare module "factorio:runtime" {
|
|
3636
3637
|
* Called when a construction robot builds an entity.
|
3637
3638
|
*
|
3638
3639
|
* Event filter: [LuaRobotBuiltEntityEventFilter](LuaRobotBuiltEntityEventFilter]
|
3639
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3640
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_robot_built_entity Online documentation}
|
3640
3641
|
*/
|
3641
3642
|
interface OnRobotBuiltEntityEvent extends EventData {
|
3642
3643
|
/**
|
@@ -3666,7 +3667,7 @@ declare module "factorio:runtime" {
|
|
3666
3667
|
}
|
3667
3668
|
/**
|
3668
3669
|
* Called after a robot builds tiles.
|
3669
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3670
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_robot_built_tile Online documentation}
|
3670
3671
|
*/
|
3671
3672
|
interface OnRobotBuiltTileEvent extends EventData {
|
3672
3673
|
/**
|
@@ -3708,7 +3709,7 @@ declare module "factorio:runtime" {
|
|
3708
3709
|
}
|
3709
3710
|
/**
|
3710
3711
|
* Called directly after a robot explodes cliffs.
|
3711
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3712
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_robot_exploded_cliff Online documentation}
|
3712
3713
|
*/
|
3713
3714
|
interface OnRobotExplodedCliffEvent extends EventData {
|
3714
3715
|
readonly robot: LuaEntity
|
@@ -3731,7 +3732,7 @@ declare module "factorio:runtime" {
|
|
3731
3732
|
}
|
3732
3733
|
/**
|
3733
3734
|
* Called when a robot mines an entity.
|
3734
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3735
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_robot_mined Online documentation}
|
3735
3736
|
*/
|
3736
3737
|
interface OnRobotMinedEvent extends EventData {
|
3737
3738
|
/**
|
@@ -3759,7 +3760,7 @@ declare module "factorio:runtime" {
|
|
3759
3760
|
* The buffer inventory is special in that it's only valid during this event and has a dynamic size expanding as more items are transferred into it.
|
3760
3761
|
*
|
3761
3762
|
* Event filter: [LuaRobotMinedEntityEventFilter](LuaRobotMinedEntityEventFilter]
|
3762
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3763
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_robot_mined_entity Online documentation}
|
3763
3764
|
*/
|
3764
3765
|
interface OnRobotMinedEntityEvent extends EventData {
|
3765
3766
|
/**
|
@@ -3785,7 +3786,7 @@ declare module "factorio:runtime" {
|
|
3785
3786
|
}
|
3786
3787
|
/**
|
3787
3788
|
* Called after a robot mines tiles.
|
3788
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3789
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_robot_mined_tile Online documentation}
|
3789
3790
|
*/
|
3790
3791
|
interface OnRobotMinedTileEvent extends EventData {
|
3791
3792
|
/**
|
@@ -3813,7 +3814,7 @@ declare module "factorio:runtime" {
|
|
3813
3814
|
* Called before a robot mines an entity.
|
3814
3815
|
*
|
3815
3816
|
* Event filter: [LuaPreRobotMinedEntityEventFilter](LuaPreRobotMinedEntityEventFilter]
|
3816
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3817
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_robot_pre_mined Online documentation}
|
3817
3818
|
*/
|
3818
3819
|
interface OnRobotPreMinedEvent extends EventData {
|
3819
3820
|
/**
|
@@ -3835,7 +3836,7 @@ declare module "factorio:runtime" {
|
|
3835
3836
|
}
|
3836
3837
|
/**
|
3837
3838
|
* Called when a rocket silo is ordered to be launched.
|
3838
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3839
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_rocket_launch_ordered Online documentation}
|
3839
3840
|
*/
|
3840
3841
|
interface OnRocketLaunchOrderedEvent extends EventData {
|
3841
3842
|
readonly rocket: LuaEntity
|
@@ -3855,7 +3856,7 @@ declare module "factorio:runtime" {
|
|
3855
3856
|
}
|
3856
3857
|
/**
|
3857
3858
|
* Called when a rocket finishes ascending. (Triggers listening for finished rocket launch past 2.0 have been moved to 'on_cargo_pod_finished_ascending' as rocket and cargo pod are two separate entities)
|
3858
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3859
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_rocket_launched Online documentation}
|
3859
3860
|
*/
|
3860
3861
|
interface OnRocketLaunchedEvent extends EventData {
|
3861
3862
|
readonly rocket: LuaEntity
|
@@ -3871,7 +3872,7 @@ declare module "factorio:runtime" {
|
|
3871
3872
|
}
|
3872
3873
|
/**
|
3873
3874
|
* Called when a runtime mod setting is changed by a player.
|
3874
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3875
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_runtime_mod_setting_changed Online documentation}
|
3875
3876
|
*/
|
3876
3877
|
interface OnRuntimeModSettingChangedEvent extends EventData {
|
3877
3878
|
/**
|
@@ -3894,7 +3895,7 @@ declare module "factorio:runtime" {
|
|
3894
3895
|
}
|
3895
3896
|
/**
|
3896
3897
|
* Called just after a script inventory is resized.
|
3897
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3898
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_script_inventory_resized Online documentation}
|
3898
3899
|
*/
|
3899
3900
|
interface OnScriptInventoryResizedEvent extends EventData {
|
3900
3901
|
/**
|
@@ -3929,7 +3930,7 @@ declare module "factorio:runtime" {
|
|
3929
3930
|
}
|
3930
3931
|
/**
|
3931
3932
|
* Called when a {@link LuaSurface#request_path LuaSurface::request_path} call completes.
|
3932
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3933
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_script_path_request_finished Online documentation}
|
3933
3934
|
*/
|
3934
3935
|
interface OnScriptPathRequestFinishedEvent extends EventData {
|
3935
3936
|
/**
|
@@ -3955,7 +3956,7 @@ declare module "factorio:runtime" {
|
|
3955
3956
|
}
|
3956
3957
|
/**
|
3957
3958
|
* Called when a script trigger effect is triggered.
|
3958
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3959
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_script_trigger_effect Online documentation}
|
3959
3960
|
*/
|
3960
3961
|
interface OnScriptTriggerEffectEvent extends EventData {
|
3961
3962
|
/**
|
@@ -3987,7 +3988,7 @@ declare module "factorio:runtime" {
|
|
3987
3988
|
* Called when an entity of type `radar` finishes scanning a sector.
|
3988
3989
|
*
|
3989
3990
|
* Event filter: [LuaSectorScannedEventFilter](LuaSectorScannedEventFilter]
|
3990
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3991
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_sector_scanned Online documentation}
|
3991
3992
|
*/
|
3992
3993
|
interface OnSectorScannedEvent extends EventData {
|
3993
3994
|
/**
|
@@ -4013,7 +4014,7 @@ declare module "factorio:runtime" {
|
|
4013
4014
|
}
|
4014
4015
|
/**
|
4015
4016
|
* Called when an individual segment of a SegmentedUnit is created.
|
4016
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4017
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_segment_entity_created Online documentation}
|
4017
4018
|
*/
|
4018
4019
|
interface OnSegmentEntityCreatedEvent extends EventData {
|
4019
4020
|
readonly entity: LuaEntity
|
@@ -4028,7 +4029,7 @@ declare module "factorio:runtime" {
|
|
4028
4029
|
}
|
4029
4030
|
/**
|
4030
4031
|
* Called after the selected entity changes for a given player.
|
4031
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4032
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_selected_entity_changed Online documentation}
|
4032
4033
|
*/
|
4033
4034
|
interface OnSelectedEntityChangedEvent extends EventData {
|
4034
4035
|
/**
|
@@ -4052,7 +4053,7 @@ declare module "factorio:runtime" {
|
|
4052
4053
|
* Called when a space platform builds an entity.
|
4053
4054
|
*
|
4054
4055
|
* Event filter: [LuaPlatformBuiltEntityEventFilter](LuaPlatformBuiltEntityEventFilter]
|
4055
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4056
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_space_platform_built_entity Online documentation}
|
4056
4057
|
*/
|
4057
4058
|
interface OnSpacePlatformBuiltEntityEvent extends EventData {
|
4058
4059
|
/**
|
@@ -4082,7 +4083,7 @@ declare module "factorio:runtime" {
|
|
4082
4083
|
}
|
4083
4084
|
/**
|
4084
4085
|
* Called after a space platform builds tiles.
|
4085
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4086
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_space_platform_built_tile Online documentation}
|
4086
4087
|
*/
|
4087
4088
|
interface OnSpacePlatformBuiltTileEvent extends EventData {
|
4088
4089
|
/**
|
@@ -4124,7 +4125,7 @@ declare module "factorio:runtime" {
|
|
4124
4125
|
}
|
4125
4126
|
/**
|
4126
4127
|
* Called when a space platform changes state
|
4127
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4128
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_space_platform_changed_state Online documentation}
|
4128
4129
|
*/
|
4129
4130
|
interface OnSpacePlatformChangedStateEvent extends EventData {
|
4130
4131
|
readonly platform: LuaSpacePlatform
|
@@ -4146,7 +4147,7 @@ declare module "factorio:runtime" {
|
|
4146
4147
|
* The buffer inventory is special in that it's only valid during this event and has a dynamic size expanding as more items are transferred into it.
|
4147
4148
|
*
|
4148
4149
|
* Event filter: [LuaPlatformMinedEntityEventFilter](LuaPlatformMinedEntityEventFilter]
|
4149
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4150
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_space_platform_mined_entity Online documentation}
|
4150
4151
|
*/
|
4151
4152
|
interface OnSpacePlatformMinedEntityEvent extends EventData {
|
4152
4153
|
/**
|
@@ -4172,7 +4173,7 @@ declare module "factorio:runtime" {
|
|
4172
4173
|
}
|
4173
4174
|
/**
|
4174
4175
|
* Called when a platform mines an entity.
|
4175
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4176
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_space_platform_mined_item Online documentation}
|
4176
4177
|
*/
|
4177
4178
|
interface OnSpacePlatformMinedItemEvent extends EventData {
|
4178
4179
|
/**
|
@@ -4194,7 +4195,7 @@ declare module "factorio:runtime" {
|
|
4194
4195
|
}
|
4195
4196
|
/**
|
4196
4197
|
* Called after a platform mines tiles.
|
4197
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4198
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_space_platform_mined_tile Online documentation}
|
4198
4199
|
*/
|
4199
4200
|
interface OnSpacePlatformMinedTileEvent extends EventData {
|
4200
4201
|
/**
|
@@ -4222,7 +4223,7 @@ declare module "factorio:runtime" {
|
|
4222
4223
|
* Called before a platform mines an entity.
|
4223
4224
|
*
|
4224
4225
|
* Event filter: [LuaPrePlatformMinedEntityEventFilter](LuaPrePlatformMinedEntityEventFilter]
|
4225
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4226
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_space_platform_pre_mined Online documentation}
|
4226
4227
|
*/
|
4227
4228
|
interface OnSpacePlatformPreMinedEvent extends EventData {
|
4228
4229
|
/**
|
@@ -4244,7 +4245,7 @@ declare module "factorio:runtime" {
|
|
4244
4245
|
}
|
4245
4246
|
/**
|
4246
4247
|
* Called when a spider finishes moving to its autopilot position.
|
4247
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4248
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_spider_command_completed Online documentation}
|
4248
4249
|
*/
|
4249
4250
|
interface OnSpiderCommandCompletedEvent extends EventData {
|
4250
4251
|
/**
|
@@ -4262,7 +4263,7 @@ declare module "factorio:runtime" {
|
|
4262
4263
|
}
|
4263
4264
|
/**
|
4264
4265
|
* Called when a translation request generated through {@link LuaPlayer#request_translation LuaPlayer::request_translation} or {@link LuaPlayer#request_translations LuaPlayer::request_translations} has been completed.
|
4265
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4266
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_string_translated Online documentation}
|
4266
4267
|
*/
|
4267
4268
|
interface OnStringTranslatedEvent extends EventData {
|
4268
4269
|
/**
|
@@ -4296,7 +4297,7 @@ declare module "factorio:runtime" {
|
|
4296
4297
|
}
|
4297
4298
|
/**
|
4298
4299
|
* Called just after a surface is cleared (all entities removed and all chunks deleted).
|
4299
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4300
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_surface_cleared Online documentation}
|
4300
4301
|
*/
|
4301
4302
|
interface OnSurfaceClearedEvent extends EventData {
|
4302
4303
|
readonly surface_index: SurfaceIndex
|
@@ -4313,7 +4314,7 @@ declare module "factorio:runtime" {
|
|
4313
4314
|
* Called when a surface is created.
|
4314
4315
|
*
|
4315
4316
|
* This is not called when the default surface is created as it will always exist.
|
4316
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4317
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_surface_created Online documentation}
|
4317
4318
|
*/
|
4318
4319
|
interface OnSurfaceCreatedEvent extends EventData {
|
4319
4320
|
readonly surface_index: SurfaceIndex
|
@@ -4328,7 +4329,7 @@ declare module "factorio:runtime" {
|
|
4328
4329
|
}
|
4329
4330
|
/**
|
4330
4331
|
* Called after a surface is deleted.
|
4331
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4332
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_surface_deleted Online documentation}
|
4332
4333
|
*/
|
4333
4334
|
interface OnSurfaceDeletedEvent extends EventData {
|
4334
4335
|
readonly surface_index: SurfaceIndex
|
@@ -4343,7 +4344,7 @@ declare module "factorio:runtime" {
|
|
4343
4344
|
}
|
4344
4345
|
/**
|
4345
4346
|
* Called after a surface is imported via the map editor.
|
4346
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4347
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_surface_imported Online documentation}
|
4347
4348
|
*/
|
4348
4349
|
interface OnSurfaceImportedEvent extends EventData {
|
4349
4350
|
readonly surface_index: SurfaceIndex
|
@@ -4362,7 +4363,7 @@ declare module "factorio:runtime" {
|
|
4362
4363
|
}
|
4363
4364
|
/**
|
4364
4365
|
* Called when a surface is renamed.
|
4365
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4366
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_surface_renamed Online documentation}
|
4366
4367
|
*/
|
4367
4368
|
interface OnSurfaceRenamedEvent extends EventData {
|
4368
4369
|
readonly surface_index: SurfaceIndex
|
@@ -4379,7 +4380,7 @@ declare module "factorio:runtime" {
|
|
4379
4380
|
}
|
4380
4381
|
/**
|
4381
4382
|
* Called when {@link LuaForce#reset_technology_effects LuaForce::reset_technology_effects} is finished.
|
4382
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4383
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_technology_effects_reset Online documentation}
|
4383
4384
|
*/
|
4384
4385
|
interface OnTechnologyEffectsResetEvent extends EventData {
|
4385
4386
|
readonly force: LuaForce
|
@@ -4394,7 +4395,7 @@ declare module "factorio:runtime" {
|
|
4394
4395
|
}
|
4395
4396
|
/**
|
4396
4397
|
* It is fired once every tick. Since this event is fired every tick, its handler shouldn't include performance heavy code.
|
4397
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4398
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_tick Online documentation}
|
4398
4399
|
*/
|
4399
4400
|
interface OnTickEvent extends EventData {
|
4400
4401
|
/**
|
@@ -4408,7 +4409,7 @@ declare module "factorio:runtime" {
|
|
4408
4409
|
}
|
4409
4410
|
/**
|
4410
4411
|
* Called when a train changes state (started to stopped and vice versa)
|
4411
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4412
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_train_changed_state Online documentation}
|
4412
4413
|
*/
|
4413
4414
|
interface OnTrainChangedStateEvent extends EventData {
|
4414
4415
|
readonly train: LuaTrain
|
@@ -4424,7 +4425,7 @@ declare module "factorio:runtime" {
|
|
4424
4425
|
}
|
4425
4426
|
/**
|
4426
4427
|
* Called when a new train is created either through disconnecting/connecting an existing one or building a new one.
|
4427
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4428
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_train_created Online documentation}
|
4428
4429
|
*/
|
4429
4430
|
interface OnTrainCreatedEvent extends EventData {
|
4430
4431
|
readonly train: LuaTrain
|
@@ -4447,7 +4448,7 @@ declare module "factorio:runtime" {
|
|
4447
4448
|
}
|
4448
4449
|
/**
|
4449
4450
|
* Called when a trains schedule is changed either by the player or through script.
|
4450
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4451
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_train_schedule_changed Online documentation}
|
4451
4452
|
*/
|
4452
4453
|
interface OnTrainScheduleChangedEvent extends EventData {
|
4453
4454
|
readonly train: LuaTrain
|
@@ -4466,7 +4467,7 @@ declare module "factorio:runtime" {
|
|
4466
4467
|
}
|
4467
4468
|
/**
|
4468
4469
|
* Called when an entity with a trigger prototype (such as capsules) create an entity AND that trigger prototype defined `trigger_created_entity=true`.
|
4469
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4470
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_trigger_created_entity Online documentation}
|
4470
4471
|
*/
|
4471
4472
|
interface OnTriggerCreatedEntityEvent extends EventData {
|
4472
4473
|
readonly entity: LuaEntity
|
@@ -4482,7 +4483,7 @@ declare module "factorio:runtime" {
|
|
4482
4483
|
}
|
4483
4484
|
/**
|
4484
4485
|
* Called when an entity with a trigger prototype (such as capsules) fire an artillery projectile AND that trigger prototype defined `trigger_fired_artillery=true`.
|
4485
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4486
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_trigger_fired_artillery Online documentation}
|
4486
4487
|
*/
|
4487
4488
|
interface OnTriggerFiredArtilleryEvent extends EventData {
|
4488
4489
|
readonly entity: LuaEntity
|
@@ -4498,7 +4499,7 @@ declare module "factorio:runtime" {
|
|
4498
4499
|
}
|
4499
4500
|
/**
|
4500
4501
|
* Called when the player triggers "undo".
|
4501
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4502
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_undo_applied Online documentation}
|
4502
4503
|
*/
|
4503
4504
|
interface OnUndoAppliedEvent extends EventData {
|
4504
4505
|
/**
|
@@ -4520,7 +4521,7 @@ declare module "factorio:runtime" {
|
|
4520
4521
|
}
|
4521
4522
|
/**
|
4522
4523
|
* Called when a unit is added to a unit group.
|
4523
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4524
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_unit_added_to_group Online documentation}
|
4524
4525
|
*/
|
4525
4526
|
interface OnUnitAddedToGroupEvent extends EventData {
|
4526
4527
|
readonly unit: LuaEntity
|
@@ -4536,7 +4537,7 @@ declare module "factorio:runtime" {
|
|
4536
4537
|
}
|
4537
4538
|
/**
|
4538
4539
|
* Called when a new unit group is created, before any members are added to it.
|
4539
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4540
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_unit_group_created Online documentation}
|
4540
4541
|
*/
|
4541
4542
|
interface OnUnitGroupCreatedEvent extends EventData {
|
4542
4543
|
readonly group: LuaCommandable
|
@@ -4551,7 +4552,7 @@ declare module "factorio:runtime" {
|
|
4551
4552
|
}
|
4552
4553
|
/**
|
4553
4554
|
* Called when a unit group finishes gathering and starts executing its command.
|
4554
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4555
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_unit_group_finished_gathering Online documentation}
|
4555
4556
|
*/
|
4556
4557
|
interface OnUnitGroupFinishedGatheringEvent extends EventData {
|
4557
4558
|
readonly group: LuaCommandable
|
@@ -4566,7 +4567,7 @@ declare module "factorio:runtime" {
|
|
4566
4567
|
}
|
4567
4568
|
/**
|
4568
4569
|
* Called when a unit is removed from a unit group.
|
4569
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4570
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_unit_removed_from_group Online documentation}
|
4570
4571
|
*/
|
4571
4572
|
interface OnUnitRemovedFromGroupEvent extends EventData {
|
4572
4573
|
readonly unit: LuaEntity
|
@@ -4582,7 +4583,7 @@ declare module "factorio:runtime" {
|
|
4582
4583
|
}
|
4583
4584
|
/**
|
4584
4585
|
* Called when a worker (construction or logistic) robot expires through a lack of energy.
|
4585
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4586
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#on_worker_robot_expired Online documentation}
|
4586
4587
|
*/
|
4587
4588
|
interface OnWorkerRobotExpiredEvent extends EventData {
|
4588
4589
|
readonly robot: LuaEntity
|
@@ -4599,7 +4600,7 @@ declare module "factorio:runtime" {
|
|
4599
4600
|
* A static event mods can use to tell other mods they built something by script. This event is only raised if a mod does so with {@link LuaBootstrap#raise_event LuaBootstrap::raise_event} or {@link LuaBootstrap#raise_script_built LuaBootstrap::raise_script_built}, or when `raise_built` is passed to {@link LuaSurface#create_entity LuaSurface::create_entity}.
|
4600
4601
|
*
|
4601
4602
|
* Event filter: [LuaScriptRaisedBuiltEventFilter](LuaScriptRaisedBuiltEventFilter]
|
4602
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4603
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#script_raised_built Online documentation}
|
4603
4604
|
*/
|
4604
4605
|
interface ScriptRaisedBuiltEvent extends EventData {
|
4605
4606
|
/**
|
@@ -4619,7 +4620,7 @@ declare module "factorio:runtime" {
|
|
4619
4620
|
* A static event mods can use to tell other mods they destroyed something by script. This event is only raised if a mod does so with {@link LuaBootstrap#raise_event LuaBootstrap::raise_event} or {@link LuaBootstrap#raise_script_destroy LuaBootstrap::raise_script_destroy}, or when `raise_destroy` is passed to {@link LuaEntity#destroy LuaEntity::destroy}.
|
4620
4621
|
*
|
4621
4622
|
* Event filter: [LuaScriptRaisedDestroyEventFilter](LuaScriptRaisedDestroyEventFilter]
|
4622
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4623
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#script_raised_destroy Online documentation}
|
4623
4624
|
*/
|
4624
4625
|
interface ScriptRaisedDestroyEvent extends EventData {
|
4625
4626
|
/**
|
@@ -4639,7 +4640,7 @@ declare module "factorio:runtime" {
|
|
4639
4640
|
* A static event mods can use to tell other mods they revived something by script. This event is only raised if a mod does so with {@link LuaBootstrap#raise_event LuaBootstrap::raise_event} or {@link LuaBootstrap#raise_script_revive LuaBootstrap::raise_script_revive}, or when `raise_revive` is passed to {@link LuaEntity#revive LuaEntity::revive}.
|
4640
4641
|
*
|
4641
4642
|
* Event filter: [LuaScriptRaisedReviveEventFilter](LuaScriptRaisedReviveEventFilter]
|
4642
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4643
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#script_raised_revive Online documentation}
|
4643
4644
|
*/
|
4644
4645
|
interface ScriptRaisedReviveEvent extends EventData {
|
4645
4646
|
/**
|
@@ -4661,7 +4662,7 @@ declare module "factorio:runtime" {
|
|
4661
4662
|
}
|
4662
4663
|
/**
|
4663
4664
|
* A static event mods can use to tell other mods they changed tiles on a surface by script. This event is only raised if a mod does so with {@link LuaBootstrap#raise_event LuaBootstrap::raise_event} or {@link LuaBootstrap#raise_script_set_tiles LuaBootstrap::raise_script_set_tiles}, or when `raise_event` is passed to {@link LuaSurface#set_tiles LuaSurface::set_tiles}.
|
4664
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4665
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#script_raised_set_tiles Online documentation}
|
4665
4666
|
*/
|
4666
4667
|
interface ScriptRaisedSetTilesEvent extends EventData {
|
4667
4668
|
/**
|
@@ -4685,7 +4686,7 @@ declare module "factorio:runtime" {
|
|
4685
4686
|
* A static event mods can use to tell other mods they teleported something by script. This event is only raised if a mod does so with {@link LuaBootstrap#raise_event LuaBootstrap::raise_event} or {@link LuaBootstrap#raise_script_teleported LuaBootstrap::raise_script_teleported}, or when `raise_teleported` is passed to {@link LuaControl#teleport LuaControl::teleport}.
|
4686
4687
|
*
|
4687
4688
|
* Event filter: [LuaScriptRaisedTeleportedEventFilter](LuaScriptRaisedTeleportedEventFilter]
|
4688
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4689
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/events.html#script_raised_teleported Online documentation}
|
4689
4690
|
*/
|
4690
4691
|
interface ScriptRaisedTeleportedEvent extends EventData {
|
4691
4692
|
/**
|