typed-factorio 3.13.1 → 3.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/prototype/generated/prototypes.d.ts +2092 -2089
- package/prototype/generated/types.d.ts +2157 -2143
- package/runtime/generated/classes.d.ts +3789 -3588
- package/runtime/generated/concepts.d.ts +366 -295
- package/runtime/generated/defines.d.ts +205 -177
- package/runtime/generated/events.d.ts +209 -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.34/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.34/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.34/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.34/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.34/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.34/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.34/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.34/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.34/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.34/events.html#on_cancelled_upgrade Online documentation}
|
227
227
|
*/
|
228
228
|
interface OnCancelledUpgradeEvent extends EventData {
|
229
229
|
readonly entity: LuaEntity
|
@@ -241,7 +241,7 @@ 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.34/events.html#on_cargo_pod_finished_ascending Online documentation}
|
245
245
|
*/
|
246
246
|
interface OnCargoPodFinishedAscendingEvent extends EventData {
|
247
247
|
readonly cargo_pod: LuaEntity
|
@@ -266,7 +266,7 @@ declare module "factorio:runtime" {
|
|
266
266
|
* Called when a character corpse expires due to timeout or all of the items being removed from it.
|
267
267
|
*
|
268
268
|
* this is not called if the corpse is mined. See {@link defines.events.on_pre_player_mined_item} to detect that.
|
269
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
269
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_character_corpse_expired Online documentation}
|
270
270
|
*/
|
271
271
|
interface OnCharacterCorpseExpiredEvent extends EventData {
|
272
272
|
/**
|
@@ -284,7 +284,7 @@ declare module "factorio:runtime" {
|
|
284
284
|
}
|
285
285
|
/**
|
286
286
|
* Called when a chart tag is created.
|
287
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
287
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_chart_tag_added Online documentation}
|
288
288
|
*/
|
289
289
|
interface OnChartTagAddedEvent extends EventData {
|
290
290
|
readonly tag: LuaCustomChartTag
|
@@ -301,7 +301,7 @@ declare module "factorio:runtime" {
|
|
301
301
|
}
|
302
302
|
/**
|
303
303
|
* Called when a chart tag is modified by a player.
|
304
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
304
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_chart_tag_modified Online documentation}
|
305
305
|
*/
|
306
306
|
interface OnChartTagModifiedEvent extends EventData {
|
307
307
|
readonly tag: LuaCustomChartTag
|
@@ -323,7 +323,7 @@ declare module "factorio:runtime" {
|
|
323
323
|
}
|
324
324
|
/**
|
325
325
|
* Called just before a chart tag is deleted.
|
326
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
326
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_chart_tag_removed Online documentation}
|
327
327
|
*/
|
328
328
|
interface OnChartTagRemovedEvent extends EventData {
|
329
329
|
readonly tag: LuaCustomChartTag
|
@@ -340,7 +340,7 @@ declare module "factorio:runtime" {
|
|
340
340
|
}
|
341
341
|
/**
|
342
342
|
* Called when a chunk is charted or re-charted.
|
343
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
343
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_chunk_charted Online documentation}
|
344
344
|
*/
|
345
345
|
interface OnChunkChartedEvent extends EventData {
|
346
346
|
readonly surface_index: SurfaceIndex
|
@@ -361,7 +361,7 @@ declare module "factorio:runtime" {
|
|
361
361
|
}
|
362
362
|
/**
|
363
363
|
* Called when one or more chunks are deleted using {@link LuaSurface#delete_chunk LuaSurface::delete_chunk}.
|
364
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
364
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_chunk_deleted Online documentation}
|
365
365
|
*/
|
366
366
|
interface OnChunkDeletedEvent extends EventData {
|
367
367
|
readonly surface_index: SurfaceIndex
|
@@ -380,7 +380,7 @@ declare module "factorio:runtime" {
|
|
380
380
|
}
|
381
381
|
/**
|
382
382
|
* Called when a chunk is generated.
|
383
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
383
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_chunk_generated Online documentation}
|
384
384
|
*/
|
385
385
|
interface OnChunkGeneratedEvent extends EventData {
|
386
386
|
/**
|
@@ -406,7 +406,7 @@ declare module "factorio:runtime" {
|
|
406
406
|
}
|
407
407
|
/**
|
408
408
|
* Called when a combat robot expires through a lack of energy, or timeout.
|
409
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
409
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_combat_robot_expired Online documentation}
|
410
410
|
*/
|
411
411
|
interface OnCombatRobotExpiredEvent extends EventData {
|
412
412
|
readonly robot: LuaEntity
|
@@ -427,7 +427,7 @@ declare module "factorio:runtime" {
|
|
427
427
|
* Called when a message is sent to the in-game console, either by a player or through the server interface.
|
428
428
|
*
|
429
429
|
* This event only fires for plain messages, not for any commands (including `/shout` or `/whisper`).
|
430
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
430
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_console_chat Online documentation}
|
431
431
|
*/
|
432
432
|
interface OnConsoleChatEvent extends EventData {
|
433
433
|
/**
|
@@ -449,7 +449,7 @@ declare module "factorio:runtime" {
|
|
449
449
|
}
|
450
450
|
/**
|
451
451
|
* Called when someone enters a command-like message regardless of it being a valid command.
|
452
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
452
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_console_command Online documentation}
|
453
453
|
*/
|
454
454
|
interface OnConsoleCommandEvent extends EventData {
|
455
455
|
/**
|
@@ -475,7 +475,7 @@ declare module "factorio:runtime" {
|
|
475
475
|
}
|
476
476
|
/**
|
477
477
|
* Called when a cutscene is cancelled by the player or by script.
|
478
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
478
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_cutscene_cancelled Online documentation}
|
479
479
|
*/
|
480
480
|
interface OnCutsceneCancelledEvent extends EventData {
|
481
481
|
/**
|
@@ -493,7 +493,7 @@ declare module "factorio:runtime" {
|
|
493
493
|
}
|
494
494
|
/**
|
495
495
|
* Called when a cutscene finishes naturally (was not cancelled).
|
496
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
496
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_cutscene_finished Online documentation}
|
497
497
|
*/
|
498
498
|
interface OnCutsceneFinishedEvent extends EventData {
|
499
499
|
/**
|
@@ -511,7 +511,7 @@ declare module "factorio:runtime" {
|
|
511
511
|
}
|
512
512
|
/**
|
513
513
|
* Called when a cutscene starts.
|
514
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
514
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_cutscene_started Online documentation}
|
515
515
|
*/
|
516
516
|
interface OnCutsceneStartedEvent extends EventData {
|
517
517
|
/**
|
@@ -531,7 +531,7 @@ declare module "factorio:runtime" {
|
|
531
531
|
* Called when a cutscene is playing, each time it reaches a waypoint in that cutscene.
|
532
532
|
*
|
533
533
|
* This refers to an index in the table previously passed to set_controller which started the cutscene.
|
534
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
534
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_cutscene_waypoint_reached Online documentation}
|
535
535
|
*/
|
536
536
|
interface OnCutsceneWaypointReachedEvent extends EventData {
|
537
537
|
/**
|
@@ -555,7 +555,7 @@ declare module "factorio:runtime" {
|
|
555
555
|
* Called when an entity is cloned. The filter applies to the source entity.
|
556
556
|
*
|
557
557
|
* Event filter: [LuaEntityClonedEventFilter](LuaEntityClonedEventFilter]
|
558
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
558
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_entity_cloned Online documentation}
|
559
559
|
*/
|
560
560
|
interface OnEntityClonedEvent extends EventData {
|
561
561
|
readonly source: LuaEntity
|
@@ -573,7 +573,7 @@ declare module "factorio:runtime" {
|
|
573
573
|
* Called after an entity has been recolored either by the player or through script.
|
574
574
|
*
|
575
575
|
* Automatic recoloring due to {@link LuaPlayer#color LuaPlayer::color} will not raise events, as that is a separate mechanism.
|
576
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
576
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_entity_color_changed Online documentation}
|
577
577
|
*/
|
578
578
|
interface OnEntityColorChangedEvent extends EventData {
|
579
579
|
/**
|
@@ -593,7 +593,7 @@ declare module "factorio:runtime" {
|
|
593
593
|
* Called when an entity is damaged. This is not called when an entities health is set directly by another mod.
|
594
594
|
*
|
595
595
|
* Event filter: [LuaEntityDamagedEventFilter](LuaEntityDamagedEventFilter]
|
596
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
596
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_entity_damaged Online documentation}
|
597
597
|
*/
|
598
598
|
interface OnEntityDamagedEvent extends EventData {
|
599
599
|
readonly entity: LuaEntity
|
@@ -635,7 +635,7 @@ declare module "factorio:runtime" {
|
|
635
635
|
* Called when an entity dies.
|
636
636
|
*
|
637
637
|
* Event filter: [LuaEntityDiedEventFilter](LuaEntityDiedEventFilter]
|
638
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
638
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_entity_died Online documentation}
|
639
639
|
*/
|
640
640
|
interface OnEntityDiedEvent extends EventData {
|
641
641
|
/**
|
@@ -669,7 +669,7 @@ declare module "factorio:runtime" {
|
|
669
669
|
}
|
670
670
|
/**
|
671
671
|
* Called when one of an entity's logistic slots changes.
|
672
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
672
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_entity_logistic_slot_changed Online documentation}
|
673
673
|
*/
|
674
674
|
interface OnEntityLogisticSlotChangedEvent extends EventData {
|
675
675
|
/**
|
@@ -699,7 +699,7 @@ declare module "factorio:runtime" {
|
|
699
699
|
}
|
700
700
|
/**
|
701
701
|
* Called after an entity has been renamed either by the player or through script.
|
702
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
702
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_entity_renamed Online documentation}
|
703
703
|
*/
|
704
704
|
interface OnEntityRenamedEvent extends EventData {
|
705
705
|
/**
|
@@ -720,7 +720,7 @@ declare module "factorio:runtime" {
|
|
720
720
|
}
|
721
721
|
/**
|
722
722
|
* Called after entity copy-paste is done.
|
723
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
723
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_entity_settings_pasted Online documentation}
|
724
724
|
*/
|
725
725
|
interface OnEntitySettingsPastedEvent extends EventData {
|
726
726
|
readonly player_index: PlayerIndex
|
@@ -743,7 +743,7 @@ declare module "factorio:runtime" {
|
|
743
743
|
}
|
744
744
|
/**
|
745
745
|
* Called when an entity is spawned by a EnemySpawner
|
746
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
746
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_entity_spawned Online documentation}
|
747
747
|
*/
|
748
748
|
interface OnEntitySpawnedEvent extends EventData {
|
749
749
|
readonly spawner: LuaEntity
|
@@ -759,7 +759,7 @@ declare module "factorio:runtime" {
|
|
759
759
|
}
|
760
760
|
/**
|
761
761
|
* Called after equipment is inserted into an equipment grid.
|
762
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
762
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_equipment_inserted Online documentation}
|
763
763
|
*/
|
764
764
|
interface OnEquipmentInsertedEvent extends EventData {
|
765
765
|
/**
|
@@ -781,7 +781,7 @@ declare module "factorio:runtime" {
|
|
781
781
|
}
|
782
782
|
/**
|
783
783
|
* Called after equipment is removed from an equipment grid.
|
784
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
784
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_equipment_removed Online documentation}
|
785
785
|
*/
|
786
786
|
interface OnEquipmentRemovedEvent extends EventData {
|
787
787
|
/**
|
@@ -811,7 +811,7 @@ declare module "factorio:runtime" {
|
|
811
811
|
}
|
812
812
|
/**
|
813
813
|
* Called when the a forces cease fire values change.
|
814
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
814
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_force_cease_fire_changed Online documentation}
|
815
815
|
*/
|
816
816
|
interface OnForceCeaseFireChangedEvent extends EventData {
|
817
817
|
/**
|
@@ -839,7 +839,7 @@ declare module "factorio:runtime" {
|
|
839
839
|
* Called when a new force is created using `game.create_force()`
|
840
840
|
*
|
841
841
|
* This is not called when the default forces (`'player'`, `'enemy'`, `'neutral'`) are created as they will always exist.
|
842
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
842
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_force_created Online documentation}
|
843
843
|
*/
|
844
844
|
interface OnForceCreatedEvent extends EventData {
|
845
845
|
/**
|
@@ -857,7 +857,7 @@ declare module "factorio:runtime" {
|
|
857
857
|
}
|
858
858
|
/**
|
859
859
|
* Called when the a forces friends change.
|
860
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
860
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_force_friends_changed Online documentation}
|
861
861
|
*/
|
862
862
|
interface OnForceFriendsChangedEvent extends EventData {
|
863
863
|
/**
|
@@ -883,7 +883,7 @@ declare module "factorio:runtime" {
|
|
883
883
|
}
|
884
884
|
/**
|
885
885
|
* Called when {@link LuaForce#reset LuaForce::reset} is finished.
|
886
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
886
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_force_reset Online documentation}
|
887
887
|
*/
|
888
888
|
interface OnForceResetEvent extends EventData {
|
889
889
|
readonly force: LuaForce
|
@@ -900,7 +900,7 @@ declare module "factorio:runtime" {
|
|
900
900
|
* Called after two forces have been merged using `game.merge_forces()`.
|
901
901
|
*
|
902
902
|
* The source force is invalidated before this event is called and the name can be re-used in this event if desired.
|
903
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
903
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_forces_merged Online documentation}
|
904
904
|
*/
|
905
905
|
interface OnForcesMergedEvent extends EventData {
|
906
906
|
/**
|
@@ -926,7 +926,7 @@ declare module "factorio:runtime" {
|
|
926
926
|
}
|
927
927
|
/**
|
928
928
|
* Called when two forces are about to be merged using `game.merge_forces()`.
|
929
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
929
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_forces_merging Online documentation}
|
930
930
|
*/
|
931
931
|
interface OnForcesMergingEvent extends EventData {
|
932
932
|
/**
|
@@ -950,7 +950,7 @@ declare module "factorio:runtime" {
|
|
950
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.
|
951
951
|
*
|
952
952
|
* This event is not fired when the scenario is loaded via the map editor.
|
953
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
953
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_game_created_from_scenario Online documentation}
|
954
954
|
*/
|
955
955
|
interface OnGameCreatedFromScenarioEvent extends EventData {
|
956
956
|
/**
|
@@ -964,7 +964,7 @@ declare module "factorio:runtime" {
|
|
964
964
|
}
|
965
965
|
/**
|
966
966
|
* Called when {@link LuaGuiElement} checked state is changed (related to checkboxes and radio buttons).
|
967
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
967
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_gui_checked_state_changed Online documentation}
|
968
968
|
*/
|
969
969
|
interface OnGuiCheckedStateChangedEvent extends EventData {
|
970
970
|
/**
|
@@ -986,7 +986,7 @@ declare module "factorio:runtime" {
|
|
986
986
|
}
|
987
987
|
/**
|
988
988
|
* Called when {@link LuaGuiElement} is clicked.
|
989
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
989
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_gui_click Online documentation}
|
990
990
|
*/
|
991
991
|
interface OnGuiClickEvent extends EventData {
|
992
992
|
/**
|
@@ -1032,7 +1032,7 @@ declare module "factorio:runtime" {
|
|
1032
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.
|
1033
1033
|
*
|
1034
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.
|
1035
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1035
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_gui_closed Online documentation}
|
1036
1036
|
*/
|
1037
1037
|
interface OnGuiClosedEvent extends EventData {
|
1038
1038
|
/**
|
@@ -1086,7 +1086,7 @@ declare module "factorio:runtime" {
|
|
1086
1086
|
}
|
1087
1087
|
/**
|
1088
1088
|
* Called when a {@link LuaGuiElement} is confirmed, for example by pressing Enter in a textfield.
|
1089
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1089
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_gui_confirmed Online documentation}
|
1090
1090
|
*/
|
1091
1091
|
interface OnGuiConfirmedEvent extends EventData {
|
1092
1092
|
/**
|
@@ -1120,7 +1120,7 @@ declare module "factorio:runtime" {
|
|
1120
1120
|
}
|
1121
1121
|
/**
|
1122
1122
|
* Called when {@link LuaGuiElement} element value is changed (related to choose element buttons).
|
1123
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1123
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_gui_elem_changed Online documentation}
|
1124
1124
|
*/
|
1125
1125
|
interface OnGuiElemChangedEvent extends EventData {
|
1126
1126
|
/**
|
@@ -1144,7 +1144,7 @@ declare module "factorio:runtime" {
|
|
1144
1144
|
* Called when {@link LuaGuiElement} is hovered by the mouse.
|
1145
1145
|
*
|
1146
1146
|
* Only fired for events whose {@link LuaGuiElement#raise_hover_events LuaGuiElement::raise_hover_events} is `true`.
|
1147
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1147
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_gui_hover Online documentation}
|
1148
1148
|
*/
|
1149
1149
|
interface OnGuiHoverEvent extends EventData {
|
1150
1150
|
/**
|
@@ -1168,7 +1168,7 @@ declare module "factorio:runtime" {
|
|
1168
1168
|
* Called when the player's cursor leaves a {@link LuaGuiElement} that was previously hovered.
|
1169
1169
|
*
|
1170
1170
|
* Only fired for events whose {@link LuaGuiElement#raise_hover_events LuaGuiElement::raise_hover_events} is `true`.
|
1171
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1171
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_gui_leave Online documentation}
|
1172
1172
|
*/
|
1173
1173
|
interface OnGuiLeaveEvent extends EventData {
|
1174
1174
|
/**
|
@@ -1190,7 +1190,7 @@ declare module "factorio:runtime" {
|
|
1190
1190
|
}
|
1191
1191
|
/**
|
1192
1192
|
* Called when {@link LuaGuiElement} element location is changed (related to frames in `player.gui.screen`).
|
1193
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1193
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_gui_location_changed Online documentation}
|
1194
1194
|
*/
|
1195
1195
|
interface OnGuiLocationChangedEvent extends EventData {
|
1196
1196
|
/**
|
@@ -1212,7 +1212,7 @@ declare module "factorio:runtime" {
|
|
1212
1212
|
}
|
1213
1213
|
/**
|
1214
1214
|
* Called when the player opens a GUI.
|
1215
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1215
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_gui_opened Online documentation}
|
1216
1216
|
*/
|
1217
1217
|
interface OnGuiOpenedEvent extends EventData {
|
1218
1218
|
/**
|
@@ -1258,7 +1258,7 @@ declare module "factorio:runtime" {
|
|
1258
1258
|
}
|
1259
1259
|
/**
|
1260
1260
|
* Called when {@link LuaGuiElement} selected tab is changed (related to tabbed-panes).
|
1261
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1261
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_gui_selected_tab_changed Online documentation}
|
1262
1262
|
*/
|
1263
1263
|
interface OnGuiSelectedTabChangedEvent extends EventData {
|
1264
1264
|
/**
|
@@ -1280,7 +1280,7 @@ declare module "factorio:runtime" {
|
|
1280
1280
|
}
|
1281
1281
|
/**
|
1282
1282
|
* Called when {@link LuaGuiElement} selection state is changed (related to drop-downs and listboxes).
|
1283
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1283
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_gui_selection_state_changed Online documentation}
|
1284
1284
|
*/
|
1285
1285
|
interface OnGuiSelectionStateChangedEvent extends EventData {
|
1286
1286
|
/**
|
@@ -1302,7 +1302,7 @@ declare module "factorio:runtime" {
|
|
1302
1302
|
}
|
1303
1303
|
/**
|
1304
1304
|
* Called when {@link LuaGuiElement} switch state is changed (related to switches).
|
1305
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1305
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_gui_switch_state_changed Online documentation}
|
1306
1306
|
*/
|
1307
1307
|
interface OnGuiSwitchStateChangedEvent extends EventData {
|
1308
1308
|
/**
|
@@ -1324,7 +1324,7 @@ declare module "factorio:runtime" {
|
|
1324
1324
|
}
|
1325
1325
|
/**
|
1326
1326
|
* Called when {@link LuaGuiElement} text is changed by the player.
|
1327
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1327
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_gui_text_changed Online documentation}
|
1328
1328
|
*/
|
1329
1329
|
interface OnGuiTextChangedEvent extends EventData {
|
1330
1330
|
/**
|
@@ -1350,7 +1350,7 @@ declare module "factorio:runtime" {
|
|
1350
1350
|
}
|
1351
1351
|
/**
|
1352
1352
|
* Called when {@link LuaGuiElement} slider value is changed (related to the slider element).
|
1353
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1353
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_gui_value_changed Online documentation}
|
1354
1354
|
*/
|
1355
1355
|
interface OnGuiValueChangedEvent extends EventData {
|
1356
1356
|
/**
|
@@ -1372,7 +1372,7 @@ declare module "factorio:runtime" {
|
|
1372
1372
|
}
|
1373
1373
|
/**
|
1374
1374
|
* Called when a land mine is armed.
|
1375
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1375
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_land_mine_armed Online documentation}
|
1376
1376
|
*/
|
1377
1377
|
interface OnLandMineArmedEvent extends EventData {
|
1378
1378
|
readonly mine: LuaEntity
|
@@ -1387,7 +1387,7 @@ declare module "factorio:runtime" {
|
|
1387
1387
|
}
|
1388
1388
|
/**
|
1389
1389
|
* Called when a custom {@link import("factorio:prototype").ShortcutPrototype Lua shortcut} is pressed.
|
1390
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1390
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_lua_shortcut Online documentation}
|
1391
1391
|
*/
|
1392
1392
|
interface OnLuaShortcutEvent extends EventData {
|
1393
1393
|
readonly player_index: PlayerIndex
|
@@ -1408,7 +1408,7 @@ declare module "factorio:runtime" {
|
|
1408
1408
|
* Called when an entity is marked for deconstruction with the Deconstruction planner or via script.
|
1409
1409
|
*
|
1410
1410
|
* Event filter: [LuaEntityMarkedForDeconstructionEventFilter](LuaEntityMarkedForDeconstructionEventFilter]
|
1411
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1411
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_marked_for_deconstruction Online documentation}
|
1412
1412
|
*/
|
1413
1413
|
interface OnMarkedForDeconstructionEvent extends EventData {
|
1414
1414
|
readonly entity: LuaEntity
|
@@ -1426,7 +1426,7 @@ declare module "factorio:runtime" {
|
|
1426
1426
|
* Called when an entity is marked for upgrade with the Upgrade planner or via script.
|
1427
1427
|
*
|
1428
1428
|
* Event filter: [LuaEntityMarkedForUpgradeEventFilter](LuaEntityMarkedForUpgradeEventFilter]
|
1429
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1429
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_marked_for_upgrade Online documentation}
|
1430
1430
|
*/
|
1431
1431
|
interface OnMarkedForUpgradeEvent extends EventData {
|
1432
1432
|
readonly player_index?: PlayerIndex
|
@@ -1444,7 +1444,7 @@ declare module "factorio:runtime" {
|
|
1444
1444
|
}
|
1445
1445
|
/**
|
1446
1446
|
* Called after a player purchases some offer from a `market` entity.
|
1447
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1447
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_market_item_purchased Online documentation}
|
1448
1448
|
*/
|
1449
1449
|
interface OnMarketItemPurchasedEvent extends EventData {
|
1450
1450
|
/**
|
@@ -1474,7 +1474,7 @@ declare module "factorio:runtime" {
|
|
1474
1474
|
}
|
1475
1475
|
/**
|
1476
1476
|
* Called when the player uses the 'Open item GUI' control on an item defined with the 'mod-openable' flag
|
1477
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1477
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_mod_item_opened Online documentation}
|
1478
1478
|
*/
|
1479
1479
|
interface OnModItemOpenedEvent extends EventData {
|
1480
1480
|
/**
|
@@ -1502,7 +1502,7 @@ declare module "factorio:runtime" {
|
|
1502
1502
|
* Called after an object is destroyed which was registered with {@link LuaBootstrap#register_on_object_destroyed LuaBootstrap::register_on_object_destroyed} previously.
|
1503
1503
|
*
|
1504
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. The event's timing is independent of the in-world object being destroyed.
|
1505
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1505
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_object_destroyed Online documentation}
|
1506
1506
|
*/
|
1507
1507
|
interface OnObjectDestroyedEvent extends EventData {
|
1508
1508
|
/**
|
@@ -1528,7 +1528,7 @@ declare module "factorio:runtime" {
|
|
1528
1528
|
}
|
1529
1529
|
/**
|
1530
1530
|
* Called directly after a permission group is added.
|
1531
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1531
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_permission_group_added Online documentation}
|
1532
1532
|
*/
|
1533
1533
|
interface OnPermissionGroupAddedEvent extends EventData {
|
1534
1534
|
/**
|
@@ -1550,7 +1550,7 @@ declare module "factorio:runtime" {
|
|
1550
1550
|
}
|
1551
1551
|
/**
|
1552
1552
|
* Called directly after a permission group is deleted.
|
1553
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1553
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_permission_group_deleted Online documentation}
|
1554
1554
|
*/
|
1555
1555
|
interface OnPermissionGroupDeletedEvent extends EventData {
|
1556
1556
|
/**
|
@@ -1576,7 +1576,7 @@ declare module "factorio:runtime" {
|
|
1576
1576
|
}
|
1577
1577
|
/**
|
1578
1578
|
* Called directly after a permission group is edited in some way.
|
1579
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1579
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_permission_group_edited Online documentation}
|
1580
1580
|
*/
|
1581
1581
|
interface OnPermissionGroupEditedEvent extends EventData {
|
1582
1582
|
/**
|
@@ -1625,7 +1625,7 @@ declare module "factorio:runtime" {
|
|
1625
1625
|
}
|
1626
1626
|
/**
|
1627
1627
|
* Called directly after a permission string is imported.
|
1628
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1628
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_permission_string_imported Online documentation}
|
1629
1629
|
*/
|
1630
1630
|
interface OnPermissionStringImportedEvent extends EventData {
|
1631
1631
|
/**
|
@@ -1643,7 +1643,7 @@ declare module "factorio:runtime" {
|
|
1643
1643
|
}
|
1644
1644
|
/**
|
1645
1645
|
* Called when a player picks up an item.
|
1646
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1646
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_picked_up_item Online documentation}
|
1647
1647
|
*/
|
1648
1648
|
interface OnPickedUpItemEvent extends EventData {
|
1649
1649
|
readonly item_stack: SimpleItemStack
|
@@ -1659,7 +1659,7 @@ declare module "factorio:runtime" {
|
|
1659
1659
|
}
|
1660
1660
|
/**
|
1661
1661
|
* Called after a player alt-reverse-selects an area with a selection-tool item.
|
1662
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1662
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_alt_reverse_selected_area Online documentation}
|
1663
1663
|
*/
|
1664
1664
|
interface OnPlayerAltReverseSelectedAreaEvent extends EventData {
|
1665
1665
|
/**
|
@@ -1697,7 +1697,7 @@ declare module "factorio:runtime" {
|
|
1697
1697
|
}
|
1698
1698
|
/**
|
1699
1699
|
* Called after a player alt-selects an area with a selection-tool item.
|
1700
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1700
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_alt_selected_area Online documentation}
|
1701
1701
|
*/
|
1702
1702
|
interface OnPlayerAltSelectedAreaEvent extends EventData {
|
1703
1703
|
/**
|
@@ -1739,7 +1739,7 @@ declare module "factorio:runtime" {
|
|
1739
1739
|
}
|
1740
1740
|
/**
|
1741
1741
|
* Called after a players ammo inventory changed in some way.
|
1742
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1742
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_ammo_inventory_changed Online documentation}
|
1743
1743
|
*/
|
1744
1744
|
interface OnPlayerAmmoInventoryChangedEvent extends EventData {
|
1745
1745
|
readonly player_index: PlayerIndex
|
@@ -1754,7 +1754,7 @@ declare module "factorio:runtime" {
|
|
1754
1754
|
}
|
1755
1755
|
/**
|
1756
1756
|
* Called after a players armor inventory changed in some way.
|
1757
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1757
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_armor_inventory_changed Online documentation}
|
1758
1758
|
*/
|
1759
1759
|
interface OnPlayerArmorInventoryChangedEvent extends EventData {
|
1760
1760
|
readonly player_index: PlayerIndex
|
@@ -1769,7 +1769,7 @@ declare module "factorio:runtime" {
|
|
1769
1769
|
}
|
1770
1770
|
/**
|
1771
1771
|
* Called when a player is banned.
|
1772
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1772
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_banned Online documentation}
|
1773
1773
|
*/
|
1774
1774
|
interface OnPlayerBannedEvent extends EventData {
|
1775
1775
|
/**
|
@@ -1799,7 +1799,7 @@ declare module "factorio:runtime" {
|
|
1799
1799
|
}
|
1800
1800
|
/**
|
1801
1801
|
* Called after a player builds tiles.
|
1802
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1802
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_built_tile Online documentation}
|
1803
1803
|
*/
|
1804
1804
|
interface OnPlayerBuiltTileEvent extends EventData {
|
1805
1805
|
readonly player_index: PlayerIndex
|
@@ -1838,7 +1838,7 @@ declare module "factorio:runtime" {
|
|
1838
1838
|
}
|
1839
1839
|
/**
|
1840
1840
|
* Called when a player cancels crafting.
|
1841
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1841
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_cancelled_crafting Online documentation}
|
1842
1842
|
*/
|
1843
1843
|
interface OnPlayerCancelledCraftingEvent extends EventData {
|
1844
1844
|
/**
|
@@ -1868,7 +1868,7 @@ declare module "factorio:runtime" {
|
|
1868
1868
|
}
|
1869
1869
|
/**
|
1870
1870
|
* Called after a player changes forces.
|
1871
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1871
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_changed_force Online documentation}
|
1872
1872
|
*/
|
1873
1873
|
interface OnPlayerChangedForceEvent extends EventData {
|
1874
1874
|
/**
|
@@ -1890,7 +1890,7 @@ declare module "factorio:runtime" {
|
|
1890
1890
|
}
|
1891
1891
|
/**
|
1892
1892
|
* Called when the tile position a player is located at changes.
|
1893
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1893
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_changed_position Online documentation}
|
1894
1894
|
*/
|
1895
1895
|
interface OnPlayerChangedPositionEvent extends EventData {
|
1896
1896
|
/**
|
@@ -1908,7 +1908,7 @@ declare module "factorio:runtime" {
|
|
1908
1908
|
}
|
1909
1909
|
/**
|
1910
1910
|
* Called after a player changes surfaces.
|
1911
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1911
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_changed_surface Online documentation}
|
1912
1912
|
*/
|
1913
1913
|
interface OnPlayerChangedSurfaceEvent extends EventData {
|
1914
1914
|
/**
|
@@ -1930,7 +1930,7 @@ declare module "factorio:runtime" {
|
|
1930
1930
|
}
|
1931
1931
|
/**
|
1932
1932
|
* Called when cheat mode is disabled on a player.
|
1933
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1933
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_cheat_mode_disabled Online documentation}
|
1934
1934
|
*/
|
1935
1935
|
interface OnPlayerCheatModeDisabledEvent extends EventData {
|
1936
1936
|
/**
|
@@ -1948,7 +1948,7 @@ declare module "factorio:runtime" {
|
|
1948
1948
|
}
|
1949
1949
|
/**
|
1950
1950
|
* Called when cheat mode is enabled on a player.
|
1951
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1951
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_cheat_mode_enabled Online documentation}
|
1952
1952
|
*/
|
1953
1953
|
interface OnPlayerCheatModeEnabledEvent extends EventData {
|
1954
1954
|
/**
|
@@ -1966,7 +1966,7 @@ declare module "factorio:runtime" {
|
|
1966
1966
|
}
|
1967
1967
|
/**
|
1968
1968
|
* Called when a player clicks a gps tag
|
1969
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1969
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_clicked_gps_tag Online documentation}
|
1970
1970
|
*/
|
1971
1971
|
interface OnPlayerClickedGpsTagEvent extends EventData {
|
1972
1972
|
/**
|
@@ -1992,7 +1992,7 @@ declare module "factorio:runtime" {
|
|
1992
1992
|
}
|
1993
1993
|
/**
|
1994
1994
|
* Called when a player clicks the "confirm" button in the configure Blueprint GUI.
|
1995
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1995
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_configured_blueprint Online documentation}
|
1996
1996
|
*/
|
1997
1997
|
interface OnPlayerConfiguredBlueprintEvent extends EventData {
|
1998
1998
|
/**
|
@@ -2010,7 +2010,7 @@ declare module "factorio:runtime" {
|
|
2010
2010
|
}
|
2011
2011
|
/**
|
2012
2012
|
* Called after a player changes controller types.
|
2013
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2013
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_controller_changed Online documentation}
|
2014
2014
|
*/
|
2015
2015
|
interface OnPlayerControllerChangedEvent extends EventData {
|
2016
2016
|
/**
|
@@ -2032,7 +2032,7 @@ declare module "factorio:runtime" {
|
|
2032
2032
|
}
|
2033
2033
|
/**
|
2034
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}).
|
2035
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2035
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_crafted_item Online documentation}
|
2036
2036
|
*/
|
2037
2037
|
interface OnPlayerCraftedItemEvent extends EventData {
|
2038
2038
|
/**
|
@@ -2058,7 +2058,7 @@ declare module "factorio:runtime" {
|
|
2058
2058
|
}
|
2059
2059
|
/**
|
2060
2060
|
* Called after the player was created.
|
2061
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2061
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_created Online documentation}
|
2062
2062
|
*/
|
2063
2063
|
interface OnPlayerCreatedEvent extends EventData {
|
2064
2064
|
readonly player_index: PlayerIndex
|
@@ -2075,7 +2075,7 @@ declare module "factorio:runtime" {
|
|
2075
2075
|
* Called after a player's {@link LuaControl#cursor_stack cursor stack} changed in some way.
|
2076
2076
|
*
|
2077
2077
|
* This is fired in the same tick that the change happens, but not instantly.
|
2078
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2078
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_cursor_stack_changed Online documentation}
|
2079
2079
|
*/
|
2080
2080
|
interface OnPlayerCursorStackChangedEvent extends EventData {
|
2081
2081
|
readonly player_index: PlayerIndex
|
@@ -2090,7 +2090,7 @@ declare module "factorio:runtime" {
|
|
2090
2090
|
}
|
2091
2091
|
/**
|
2092
2092
|
* Called when a player selects an area with a deconstruction planner.
|
2093
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2093
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_deconstructed_area Online documentation}
|
2094
2094
|
*/
|
2095
2095
|
interface OnPlayerDeconstructedAreaEvent extends EventData {
|
2096
2096
|
/**
|
@@ -2113,6 +2113,10 @@ declare module "factorio:runtime" {
|
|
2113
2113
|
* The item stack used to select the area.
|
2114
2114
|
*/
|
2115
2115
|
readonly stack?: LuaItemStack
|
2116
|
+
/**
|
2117
|
+
* The record that was used to select the area.
|
2118
|
+
*/
|
2119
|
+
readonly record?: LuaRecord
|
2116
2120
|
/**
|
2117
2121
|
* The item quality used to select the area.
|
2118
2122
|
*/
|
@@ -2132,7 +2136,7 @@ declare module "factorio:runtime" {
|
|
2132
2136
|
}
|
2133
2137
|
/**
|
2134
2138
|
* Called when a player is demoted.
|
2135
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2139
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_demoted Online documentation}
|
2136
2140
|
*/
|
2137
2141
|
interface OnPlayerDemotedEvent extends EventData {
|
2138
2142
|
/**
|
@@ -2150,7 +2154,7 @@ declare module "factorio:runtime" {
|
|
2150
2154
|
}
|
2151
2155
|
/**
|
2152
2156
|
* Called after a player dies.
|
2153
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2157
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_died Online documentation}
|
2154
2158
|
*/
|
2155
2159
|
interface OnPlayerDiedEvent extends EventData {
|
2156
2160
|
readonly player_index: PlayerIndex
|
@@ -2166,7 +2170,7 @@ declare module "factorio:runtime" {
|
|
2166
2170
|
}
|
2167
2171
|
/**
|
2168
2172
|
* Called when the display density scale changes for a given player. The display density scale is the scale value automatically applied based on the player's display DPI. This is only relevant on platforms that support high-density displays.
|
2169
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2173
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_display_density_scale_changed Online documentation}
|
2170
2174
|
*/
|
2171
2175
|
interface OnPlayerDisplayDensityScaleChangedEvent extends EventData {
|
2172
2176
|
/**
|
@@ -2188,7 +2192,7 @@ declare module "factorio:runtime" {
|
|
2188
2192
|
}
|
2189
2193
|
/**
|
2190
2194
|
* Called when the display resolution changes for a given player.
|
2191
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2195
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_display_resolution_changed Online documentation}
|
2192
2196
|
*/
|
2193
2197
|
interface OnPlayerDisplayResolutionChangedEvent extends EventData {
|
2194
2198
|
/**
|
@@ -2210,7 +2214,7 @@ declare module "factorio:runtime" {
|
|
2210
2214
|
}
|
2211
2215
|
/**
|
2212
2216
|
* Called when the display scale changes for a given player.
|
2213
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2217
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_display_scale_changed Online documentation}
|
2214
2218
|
*/
|
2215
2219
|
interface OnPlayerDisplayScaleChangedEvent extends EventData {
|
2216
2220
|
/**
|
@@ -2234,7 +2238,7 @@ declare module "factorio:runtime" {
|
|
2234
2238
|
* Called when the player's driving state has changed, meaning a player has either entered or left a vehicle.
|
2235
2239
|
*
|
2236
2240
|
* This event is not raised when the player is ejected from a vehicle due to it being destroyed.
|
2237
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2241
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_driving_changed_state Online documentation}
|
2238
2242
|
*/
|
2239
2243
|
interface OnPlayerDrivingChangedStateEvent extends EventData {
|
2240
2244
|
readonly player_index: PlayerIndex
|
@@ -2253,7 +2257,7 @@ declare module "factorio:runtime" {
|
|
2253
2257
|
}
|
2254
2258
|
/**
|
2255
2259
|
* Called when a player drops an item on the ground.
|
2256
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2260
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_dropped_item Online documentation}
|
2257
2261
|
*/
|
2258
2262
|
interface OnPlayerDroppedItemEvent extends EventData {
|
2259
2263
|
readonly player_index: PlayerIndex
|
@@ -2272,7 +2276,7 @@ declare module "factorio:runtime" {
|
|
2272
2276
|
}
|
2273
2277
|
/**
|
2274
2278
|
* Called when a player fast-transfers something to or from an entity.
|
2275
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2279
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_fast_transferred Online documentation}
|
2276
2280
|
*/
|
2277
2281
|
interface OnPlayerFastTransferredEvent extends EventData {
|
2278
2282
|
/**
|
@@ -2304,7 +2308,7 @@ declare module "factorio:runtime" {
|
|
2304
2308
|
* Called when the player flips an entity. This event is only fired when the entity actually changes its orientation or mirroring, so it won't be triggered when pressing the flip keys on an entity that can't be flipped.
|
2305
2309
|
*
|
2306
2310
|
* This event reflects a change in the {@link LuaEntity#mirroring LuaEntity::mirroring} property.
|
2307
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2311
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_flipped_entity Online documentation}
|
2308
2312
|
*/
|
2309
2313
|
interface OnPlayerFlippedEntityEvent extends EventData {
|
2310
2314
|
/**
|
@@ -2327,7 +2331,7 @@ declare module "factorio:runtime" {
|
|
2327
2331
|
}
|
2328
2332
|
/**
|
2329
2333
|
* Called after player flushed fluid
|
2330
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2334
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_flushed_fluid Online documentation}
|
2331
2335
|
*/
|
2332
2336
|
interface OnPlayerFlushedFluidEvent extends EventData {
|
2333
2337
|
/**
|
@@ -2361,7 +2365,7 @@ declare module "factorio:runtime" {
|
|
2361
2365
|
}
|
2362
2366
|
/**
|
2363
2367
|
* Called after a players gun inventory changed in some way.
|
2364
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2368
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_gun_inventory_changed Online documentation}
|
2365
2369
|
*/
|
2366
2370
|
interface OnPlayerGunInventoryChangedEvent extends EventData {
|
2367
2371
|
readonly player_index: PlayerIndex
|
@@ -2376,7 +2380,7 @@ declare module "factorio:runtime" {
|
|
2376
2380
|
}
|
2377
2381
|
/**
|
2378
2382
|
* Called when a player's input method changes. See {@link LuaPlayer#input_method LuaPlayer::input_method}.
|
2379
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2383
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_input_method_changed Online documentation}
|
2380
2384
|
*/
|
2381
2385
|
interface OnPlayerInputMethodChangedEvent extends EventData {
|
2382
2386
|
/**
|
@@ -2394,7 +2398,7 @@ declare module "factorio:runtime" {
|
|
2394
2398
|
}
|
2395
2399
|
/**
|
2396
2400
|
* Called after a player joins the game. This is not called when loading a save file in singleplayer, as the player doesn't actually leave the game, and the save is just on pause until they rejoin.
|
2397
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2401
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_joined_game Online documentation}
|
2398
2402
|
*/
|
2399
2403
|
interface OnPlayerJoinedGameEvent extends EventData {
|
2400
2404
|
readonly player_index: PlayerIndex
|
@@ -2409,7 +2413,7 @@ declare module "factorio:runtime" {
|
|
2409
2413
|
}
|
2410
2414
|
/**
|
2411
2415
|
* Called when a player is kicked.
|
2412
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2416
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_kicked Online documentation}
|
2413
2417
|
*/
|
2414
2418
|
interface OnPlayerKickedEvent extends EventData {
|
2415
2419
|
/**
|
@@ -2435,7 +2439,7 @@ declare module "factorio:runtime" {
|
|
2435
2439
|
}
|
2436
2440
|
/**
|
2437
2441
|
* Called after a player leaves the game. This is not called when closing a save file in singleplayer, as the player doesn't actually leave the game, and the save is just on pause until they rejoin.
|
2438
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2442
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_left_game Online documentation}
|
2439
2443
|
*/
|
2440
2444
|
interface OnPlayerLeftGameEvent extends EventData {
|
2441
2445
|
readonly player_index: PlayerIndex
|
@@ -2451,7 +2455,7 @@ declare module "factorio:runtime" {
|
|
2451
2455
|
}
|
2452
2456
|
/**
|
2453
2457
|
* Called when a player's active locale changes. See {@link LuaPlayer#locale LuaPlayer::locale}.
|
2454
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2458
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_locale_changed Online documentation}
|
2455
2459
|
*/
|
2456
2460
|
interface OnPlayerLocaleChangedEvent extends EventData {
|
2457
2461
|
/**
|
@@ -2473,7 +2477,7 @@ declare module "factorio:runtime" {
|
|
2473
2477
|
}
|
2474
2478
|
/**
|
2475
2479
|
* Called after a players main inventory changed in some way.
|
2476
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2480
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_main_inventory_changed Online documentation}
|
2477
2481
|
*/
|
2478
2482
|
interface OnPlayerMainInventoryChangedEvent extends EventData {
|
2479
2483
|
readonly player_index: PlayerIndex
|
@@ -2494,7 +2498,7 @@ declare module "factorio:runtime" {
|
|
2494
2498
|
* The buffer inventory is special in that it's only valid during this event and has a dynamic size expanding as more items are transferred into it.
|
2495
2499
|
*
|
2496
2500
|
* Event filter: [LuaPlayerMinedEntityEventFilter](LuaPlayerMinedEntityEventFilter]
|
2497
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2501
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_mined_entity Online documentation}
|
2498
2502
|
*/
|
2499
2503
|
interface OnPlayerMinedEntityEvent extends EventData {
|
2500
2504
|
/**
|
@@ -2520,7 +2524,7 @@ declare module "factorio:runtime" {
|
|
2520
2524
|
}
|
2521
2525
|
/**
|
2522
2526
|
* Called when the player mines something.
|
2523
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2527
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_mined_item Online documentation}
|
2524
2528
|
*/
|
2525
2529
|
interface OnPlayerMinedItemEvent extends EventData {
|
2526
2530
|
/**
|
@@ -2539,7 +2543,7 @@ declare module "factorio:runtime" {
|
|
2539
2543
|
}
|
2540
2544
|
/**
|
2541
2545
|
* Called after a player mines tiles.
|
2542
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2546
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_mined_tile Online documentation}
|
2543
2547
|
*/
|
2544
2548
|
interface OnPlayerMinedTileEvent extends EventData {
|
2545
2549
|
readonly player_index: PlayerIndex
|
@@ -2562,7 +2566,7 @@ declare module "factorio:runtime" {
|
|
2562
2566
|
}
|
2563
2567
|
/**
|
2564
2568
|
* Called when a player is muted.
|
2565
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2569
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_muted Online documentation}
|
2566
2570
|
*/
|
2567
2571
|
interface OnPlayerMutedEvent extends EventData {
|
2568
2572
|
/**
|
@@ -2580,7 +2584,7 @@ declare module "factorio:runtime" {
|
|
2580
2584
|
}
|
2581
2585
|
/**
|
2582
2586
|
* Called when a player invokes the "smart pipette" over an entity.
|
2583
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2587
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_pipette Online documentation}
|
2584
2588
|
*/
|
2585
2589
|
interface OnPlayerPipetteEvent extends EventData {
|
2586
2590
|
/**
|
@@ -2610,7 +2614,7 @@ declare module "factorio:runtime" {
|
|
2610
2614
|
}
|
2611
2615
|
/**
|
2612
2616
|
* Called after the player puts equipment in an equipment grid
|
2613
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2617
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_placed_equipment Online documentation}
|
2614
2618
|
*/
|
2615
2619
|
interface OnPlayerPlacedEquipmentEvent extends EventData {
|
2616
2620
|
readonly player_index: PlayerIndex
|
@@ -2633,7 +2637,7 @@ declare module "factorio:runtime" {
|
|
2633
2637
|
}
|
2634
2638
|
/**
|
2635
2639
|
* Called when a player is promoted.
|
2636
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2640
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_promoted Online documentation}
|
2637
2641
|
*/
|
2638
2642
|
interface OnPlayerPromotedEvent extends EventData {
|
2639
2643
|
/**
|
@@ -2651,7 +2655,7 @@ declare module "factorio:runtime" {
|
|
2651
2655
|
}
|
2652
2656
|
/**
|
2653
2657
|
* Called when a player is removed (deleted) from the game. This is markedly different from a player temporarily {@link OnPlayerLeftGameEvent leaving} the game, and instead behaves like the player never existed in the save file.
|
2654
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2658
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_removed Online documentation}
|
2655
2659
|
*/
|
2656
2660
|
interface OnPlayerRemovedEvent extends EventData {
|
2657
2661
|
/**
|
@@ -2669,7 +2673,7 @@ declare module "factorio:runtime" {
|
|
2669
2673
|
}
|
2670
2674
|
/**
|
2671
2675
|
* Called after the player removes equipment from an equipment grid
|
2672
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2676
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_removed_equipment Online documentation}
|
2673
2677
|
*/
|
2674
2678
|
interface OnPlayerRemovedEquipmentEvent extends EventData {
|
2675
2679
|
readonly player_index: PlayerIndex
|
@@ -2702,7 +2706,7 @@ declare module "factorio:runtime" {
|
|
2702
2706
|
* Called when a player repairs an entity.
|
2703
2707
|
*
|
2704
2708
|
* Event filter: [LuaPlayerRepairedEntityEventFilter](LuaPlayerRepairedEntityEventFilter]
|
2705
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2709
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_repaired_entity Online documentation}
|
2706
2710
|
*/
|
2707
2711
|
interface OnPlayerRepairedEntityEvent extends EventData {
|
2708
2712
|
readonly player_index: PlayerIndex
|
@@ -2718,7 +2722,7 @@ declare module "factorio:runtime" {
|
|
2718
2722
|
}
|
2719
2723
|
/**
|
2720
2724
|
* Called after a player respawns.
|
2721
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2725
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_respawned Online documentation}
|
2722
2726
|
*/
|
2723
2727
|
interface OnPlayerRespawnedEvent extends EventData {
|
2724
2728
|
readonly player_index: PlayerIndex
|
@@ -2737,7 +2741,7 @@ declare module "factorio:runtime" {
|
|
2737
2741
|
}
|
2738
2742
|
/**
|
2739
2743
|
* Called after a player reverse-selects an area with a selection-tool item.
|
2740
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2744
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_reverse_selected_area Online documentation}
|
2741
2745
|
*/
|
2742
2746
|
interface OnPlayerReverseSelectedAreaEvent extends EventData {
|
2743
2747
|
/**
|
@@ -2777,7 +2781,7 @@ declare module "factorio:runtime" {
|
|
2777
2781
|
* Called when the player rotates an entity. This event is only fired when the entity actually changes its orientation -- pressing the rotate key on an entity that can't be rotated won't fire this event.
|
2778
2782
|
*
|
2779
2783
|
* Entities being flipped will not fire this event, even if the flip involves rotating. See {@link OnPlayerFlippedEntityEvent on_player_flipped_entity}.
|
2780
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2784
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_rotated_entity Online documentation}
|
2781
2785
|
*/
|
2782
2786
|
interface OnPlayerRotatedEntityEvent extends EventData {
|
2783
2787
|
/**
|
@@ -2800,7 +2804,7 @@ declare module "factorio:runtime" {
|
|
2800
2804
|
}
|
2801
2805
|
/**
|
2802
2806
|
* Called after a player selects an area with a selection-tool item.
|
2803
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2807
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_selected_area Online documentation}
|
2804
2808
|
*/
|
2805
2809
|
interface OnPlayerSelectedAreaEvent extends EventData {
|
2806
2810
|
/**
|
@@ -2842,7 +2846,7 @@ declare module "factorio:runtime" {
|
|
2842
2846
|
}
|
2843
2847
|
/**
|
2844
2848
|
* Called when a player sets a quickbar slot to anything (new value, or set to empty).
|
2845
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2849
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_set_quick_bar_slot Online documentation}
|
2846
2850
|
*/
|
2847
2851
|
interface OnPlayerSetQuickBarSlotEvent extends EventData {
|
2848
2852
|
readonly player_index: PlayerIndex
|
@@ -2857,7 +2861,7 @@ declare module "factorio:runtime" {
|
|
2857
2861
|
}
|
2858
2862
|
/**
|
2859
2863
|
* Called when a player selects an area with a blueprint.
|
2860
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2864
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_setup_blueprint Online documentation}
|
2861
2865
|
*/
|
2862
2866
|
interface OnPlayerSetupBlueprintEvent extends EventData {
|
2863
2867
|
/**
|
@@ -2880,6 +2884,10 @@ declare module "factorio:runtime" {
|
|
2880
2884
|
* The item stack used to select the area.
|
2881
2885
|
*/
|
2882
2886
|
readonly stack?: LuaItemStack
|
2887
|
+
/**
|
2888
|
+
* The record that is being reassigned.
|
2889
|
+
*/
|
2890
|
+
readonly record?: LuaRecord
|
2883
2891
|
/**
|
2884
2892
|
* The item quality used to select the area.
|
2885
2893
|
*/
|
@@ -2903,7 +2911,7 @@ declare module "factorio:runtime" {
|
|
2903
2911
|
}
|
2904
2912
|
/**
|
2905
2913
|
* Called when a player toggles alt mode, also known as "show entity info".
|
2906
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2914
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_toggled_alt_mode Online documentation}
|
2907
2915
|
*/
|
2908
2916
|
interface OnPlayerToggledAltModeEvent extends EventData {
|
2909
2917
|
readonly player_index: PlayerIndex
|
@@ -2922,7 +2930,7 @@ declare module "factorio:runtime" {
|
|
2922
2930
|
}
|
2923
2931
|
/**
|
2924
2932
|
* Called when a player toggles the map editor on or off.
|
2925
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2933
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_toggled_map_editor Online documentation}
|
2926
2934
|
*/
|
2927
2935
|
interface OnPlayerToggledMapEditorEvent extends EventData {
|
2928
2936
|
readonly player_index: PlayerIndex
|
@@ -2937,7 +2945,7 @@ declare module "factorio:runtime" {
|
|
2937
2945
|
}
|
2938
2946
|
/**
|
2939
2947
|
* Called after a players trash inventory changed in some way.
|
2940
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2948
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_trash_inventory_changed Online documentation}
|
2941
2949
|
*/
|
2942
2950
|
interface OnPlayerTrashInventoryChangedEvent extends EventData {
|
2943
2951
|
readonly player_index: PlayerIndex
|
@@ -2952,7 +2960,7 @@ declare module "factorio:runtime" {
|
|
2952
2960
|
}
|
2953
2961
|
/**
|
2954
2962
|
* Called when a player is un-banned.
|
2955
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2963
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_unbanned Online documentation}
|
2956
2964
|
*/
|
2957
2965
|
interface OnPlayerUnbannedEvent extends EventData {
|
2958
2966
|
/**
|
@@ -2982,7 +2990,7 @@ declare module "factorio:runtime" {
|
|
2982
2990
|
}
|
2983
2991
|
/**
|
2984
2992
|
* Called when a player is unmuted.
|
2985
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2993
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_unmuted Online documentation}
|
2986
2994
|
*/
|
2987
2995
|
interface OnPlayerUnmutedEvent extends EventData {
|
2988
2996
|
/**
|
@@ -3000,7 +3008,7 @@ declare module "factorio:runtime" {
|
|
3000
3008
|
}
|
3001
3009
|
/**
|
3002
3010
|
* Called when a player uses a capsule that results in some game action.
|
3003
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3011
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_used_capsule Online documentation}
|
3004
3012
|
*/
|
3005
3013
|
interface OnPlayerUsedCapsuleEvent extends EventData {
|
3006
3014
|
/**
|
@@ -3030,7 +3038,7 @@ declare module "factorio:runtime" {
|
|
3030
3038
|
}
|
3031
3039
|
/**
|
3032
3040
|
* Called when a player uses spidertron remote to send all selected units to a given position
|
3033
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3041
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_player_used_spidertron_remote Online documentation}
|
3034
3042
|
*/
|
3035
3043
|
interface OnPlayerUsedSpidertronRemoteEvent extends EventData {
|
3036
3044
|
/**
|
@@ -3054,7 +3062,7 @@ declare module "factorio:runtime" {
|
|
3054
3062
|
* Called after an entity dies.
|
3055
3063
|
*
|
3056
3064
|
* Event filter: [LuaPostEntityDiedEventFilter](LuaPostEntityDiedEventFilter]
|
3057
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3065
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_post_entity_died Online documentation}
|
3058
3066
|
*/
|
3059
3067
|
interface OnPostEntityDiedEvent extends EventData {
|
3060
3068
|
/**
|
@@ -3104,7 +3112,7 @@ declare module "factorio:runtime" {
|
|
3104
3112
|
}
|
3105
3113
|
/**
|
3106
3114
|
* Called when players uses an item to build something. Called before {@link OnBuiltEntityEvent on_built_entity}.
|
3107
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3115
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_pre_build Online documentation}
|
3108
3116
|
*/
|
3109
3117
|
interface OnPreBuildEvent extends EventData {
|
3110
3118
|
/**
|
@@ -3150,7 +3158,7 @@ declare module "factorio:runtime" {
|
|
3150
3158
|
}
|
3151
3159
|
/**
|
3152
3160
|
* Called before one or more chunks are deleted using {@link LuaSurface#delete_chunk LuaSurface::delete_chunk}.
|
3153
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3161
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_pre_chunk_deleted Online documentation}
|
3154
3162
|
*/
|
3155
3163
|
interface OnPreChunkDeletedEvent extends EventData {
|
3156
3164
|
readonly surface_index: SurfaceIndex
|
@@ -3169,7 +3177,7 @@ declare module "factorio:runtime" {
|
|
3169
3177
|
}
|
3170
3178
|
/**
|
3171
3179
|
* Called before entity copy-paste is done.
|
3172
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3180
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_pre_entity_settings_pasted Online documentation}
|
3173
3181
|
*/
|
3174
3182
|
interface OnPreEntitySettingsPastedEvent extends EventData {
|
3175
3183
|
readonly player_index: PlayerIndex
|
@@ -3196,7 +3204,7 @@ declare module "factorio:runtime" {
|
|
3196
3204
|
* Also called for item request proxies before they are destroyed as a result of being marked for deconstruction.
|
3197
3205
|
*
|
3198
3206
|
* Event filter: [LuaPreGhostDeconstructedEventFilter](LuaPreGhostDeconstructedEventFilter]
|
3199
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3207
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_pre_ghost_deconstructed Online documentation}
|
3200
3208
|
*/
|
3201
3209
|
interface OnPreGhostDeconstructedEvent extends EventData {
|
3202
3210
|
/**
|
@@ -3217,7 +3225,7 @@ declare module "factorio:runtime" {
|
|
3217
3225
|
* Called before a ghost entity is upgraded.
|
3218
3226
|
*
|
3219
3227
|
* Event filter: [LuaPreGhostUpgradedEventFilter](LuaPreGhostUpgradedEventFilter]
|
3220
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3228
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_pre_ghost_upgraded Online documentation}
|
3221
3229
|
*/
|
3222
3230
|
interface OnPreGhostUpgradedEvent extends EventData {
|
3223
3231
|
/**
|
@@ -3238,7 +3246,7 @@ declare module "factorio:runtime" {
|
|
3238
3246
|
}
|
3239
3247
|
/**
|
3240
3248
|
* Called directly before a permission group is deleted.
|
3241
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3249
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_pre_permission_group_deleted Online documentation}
|
3242
3250
|
*/
|
3243
3251
|
interface OnPrePermissionGroupDeletedEvent extends EventData {
|
3244
3252
|
/**
|
@@ -3260,7 +3268,7 @@ declare module "factorio:runtime" {
|
|
3260
3268
|
}
|
3261
3269
|
/**
|
3262
3270
|
* Called directly before a permission string is imported.
|
3263
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3271
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_pre_permission_string_imported Online documentation}
|
3264
3272
|
*/
|
3265
3273
|
interface OnPrePermissionStringImportedEvent extends EventData {
|
3266
3274
|
/**
|
@@ -3278,7 +3286,7 @@ declare module "factorio:runtime" {
|
|
3278
3286
|
}
|
3279
3287
|
/**
|
3280
3288
|
* Called when a player queues something to be crafted.
|
3281
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3289
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_pre_player_crafted_item Online documentation}
|
3282
3290
|
*/
|
3283
3291
|
interface OnPrePlayerCraftedItemEvent extends EventData {
|
3284
3292
|
/**
|
@@ -3308,7 +3316,7 @@ declare module "factorio:runtime" {
|
|
3308
3316
|
}
|
3309
3317
|
/**
|
3310
3318
|
* Called before a players dies.
|
3311
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3319
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_pre_player_died Online documentation}
|
3312
3320
|
*/
|
3313
3321
|
interface OnPrePlayerDiedEvent extends EventData {
|
3314
3322
|
readonly player_index: PlayerIndex
|
@@ -3324,7 +3332,7 @@ declare module "factorio:runtime" {
|
|
3324
3332
|
}
|
3325
3333
|
/**
|
3326
3334
|
* Called before a player leaves the game.
|
3327
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3335
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_pre_player_left_game Online documentation}
|
3328
3336
|
*/
|
3329
3337
|
interface OnPrePlayerLeftGameEvent extends EventData {
|
3330
3338
|
readonly player_index: PlayerIndex
|
@@ -3342,7 +3350,7 @@ declare module "factorio:runtime" {
|
|
3342
3350
|
* Called when the player completes a mining action, but before the entity is potentially removed from the map. This is called even if the entity does not end up being removed.
|
3343
3351
|
*
|
3344
3352
|
* Event filter: [LuaPrePlayerMinedEntityEventFilter](LuaPrePlayerMinedEntityEventFilter]
|
3345
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3353
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_pre_player_mined_item Online documentation}
|
3346
3354
|
*/
|
3347
3355
|
interface OnPrePlayerMinedItemEvent extends EventData {
|
3348
3356
|
/**
|
@@ -3361,7 +3369,7 @@ declare module "factorio:runtime" {
|
|
3361
3369
|
}
|
3362
3370
|
/**
|
3363
3371
|
* Called before a player is removed (deleted) from the game. This is markedly different from a player temporarily {@link OnPlayerLeftGameEvent leaving} the game, and instead behaves like the player never existed in the save file.
|
3364
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3372
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_pre_player_removed Online documentation}
|
3365
3373
|
*/
|
3366
3374
|
interface OnPrePlayerRemovedEvent extends EventData {
|
3367
3375
|
/**
|
@@ -3379,7 +3387,7 @@ declare module "factorio:runtime" {
|
|
3379
3387
|
}
|
3380
3388
|
/**
|
3381
3389
|
* Called before a player toggles the map editor on or off.
|
3382
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3390
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_pre_player_toggled_map_editor Online documentation}
|
3383
3391
|
*/
|
3384
3392
|
interface OnPrePlayerToggledMapEditorEvent extends EventData {
|
3385
3393
|
readonly player_index: PlayerIndex
|
@@ -3394,7 +3402,7 @@ declare module "factorio:runtime" {
|
|
3394
3402
|
}
|
3395
3403
|
/**
|
3396
3404
|
* Called directly before a robot explodes cliffs.
|
3397
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3405
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_pre_robot_exploded_cliff Online documentation}
|
3398
3406
|
*/
|
3399
3407
|
interface OnPreRobotExplodedCliffEvent extends EventData {
|
3400
3408
|
readonly robot: LuaEntity
|
@@ -3418,7 +3426,7 @@ declare module "factorio:runtime" {
|
|
3418
3426
|
}
|
3419
3427
|
/**
|
3420
3428
|
* Called just before the scenario finishes.
|
3421
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3429
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_pre_scenario_finished Online documentation}
|
3422
3430
|
*/
|
3423
3431
|
interface OnPreScenarioFinishedEvent extends EventData {
|
3424
3432
|
/**
|
@@ -3436,7 +3444,7 @@ declare module "factorio:runtime" {
|
|
3436
3444
|
}
|
3437
3445
|
/**
|
3438
3446
|
* Called just before a script inventory is resized.
|
3439
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3447
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_pre_script_inventory_resized Online documentation}
|
3440
3448
|
*/
|
3441
3449
|
interface OnPreScriptInventoryResizedEvent extends EventData {
|
3442
3450
|
/**
|
@@ -3467,7 +3475,7 @@ declare module "factorio:runtime" {
|
|
3467
3475
|
}
|
3468
3476
|
/**
|
3469
3477
|
* Called just before a surface is cleared (all entities removed and all chunks deleted).
|
3470
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3478
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_pre_surface_cleared Online documentation}
|
3471
3479
|
*/
|
3472
3480
|
interface OnPreSurfaceClearedEvent extends EventData {
|
3473
3481
|
readonly surface_index: SurfaceIndex
|
@@ -3482,7 +3490,7 @@ declare module "factorio:runtime" {
|
|
3482
3490
|
}
|
3483
3491
|
/**
|
3484
3492
|
* Called just before a surface is deleted.
|
3485
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3493
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_pre_surface_deleted Online documentation}
|
3486
3494
|
*/
|
3487
3495
|
interface OnPreSurfaceDeletedEvent extends EventData {
|
3488
3496
|
readonly surface_index: SurfaceIndex
|
@@ -3497,7 +3505,7 @@ declare module "factorio:runtime" {
|
|
3497
3505
|
}
|
3498
3506
|
/**
|
3499
3507
|
* Called when the player triggers "redo".
|
3500
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3508
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_redo_applied Online documentation}
|
3501
3509
|
*/
|
3502
3510
|
interface OnRedoAppliedEvent extends EventData {
|
3503
3511
|
/**
|
@@ -3519,7 +3527,7 @@ declare module "factorio:runtime" {
|
|
3519
3527
|
}
|
3520
3528
|
/**
|
3521
3529
|
* Called when research is cancelled.
|
3522
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3530
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_research_cancelled Online documentation}
|
3523
3531
|
*/
|
3524
3532
|
interface OnResearchCancelledEvent extends EventData {
|
3525
3533
|
/**
|
@@ -3541,7 +3549,7 @@ declare module "factorio:runtime" {
|
|
3541
3549
|
}
|
3542
3550
|
/**
|
3543
3551
|
* Called when a research finishes.
|
3544
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3552
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_research_finished Online documentation}
|
3545
3553
|
*/
|
3546
3554
|
interface OnResearchFinishedEvent extends EventData {
|
3547
3555
|
/**
|
@@ -3563,7 +3571,7 @@ declare module "factorio:runtime" {
|
|
3563
3571
|
}
|
3564
3572
|
/**
|
3565
3573
|
* Called when research is moved forwards or backwards in the research queue.
|
3566
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3574
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_research_moved Online documentation}
|
3567
3575
|
*/
|
3568
3576
|
interface OnResearchMovedEvent extends EventData {
|
3569
3577
|
/**
|
@@ -3581,7 +3589,7 @@ declare module "factorio:runtime" {
|
|
3581
3589
|
}
|
3582
3590
|
/**
|
3583
3591
|
* Called when a research is reversed (unresearched).
|
3584
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3592
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_research_reversed Online documentation}
|
3585
3593
|
*/
|
3586
3594
|
interface OnResearchReversedEvent extends EventData {
|
3587
3595
|
/**
|
@@ -3603,7 +3611,7 @@ declare module "factorio:runtime" {
|
|
3603
3611
|
}
|
3604
3612
|
/**
|
3605
3613
|
* Called when a technology research starts.
|
3606
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3614
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_research_started Online documentation}
|
3607
3615
|
*/
|
3608
3616
|
interface OnResearchStartedEvent extends EventData {
|
3609
3617
|
/**
|
@@ -3622,7 +3630,7 @@ declare module "factorio:runtime" {
|
|
3622
3630
|
}
|
3623
3631
|
/**
|
3624
3632
|
* Called when a resource entity reaches 0 or its minimum yield for infinite resources.
|
3625
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3633
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_resource_depleted Online documentation}
|
3626
3634
|
*/
|
3627
3635
|
interface OnResourceDepletedEvent extends EventData {
|
3628
3636
|
readonly entity: LuaEntity
|
@@ -3639,7 +3647,7 @@ declare module "factorio:runtime" {
|
|
3639
3647
|
* Called when a construction robot builds an entity.
|
3640
3648
|
*
|
3641
3649
|
* Event filter: [LuaRobotBuiltEntityEventFilter](LuaRobotBuiltEntityEventFilter]
|
3642
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3650
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_robot_built_entity Online documentation}
|
3643
3651
|
*/
|
3644
3652
|
interface OnRobotBuiltEntityEvent extends EventData {
|
3645
3653
|
/**
|
@@ -3669,7 +3677,7 @@ declare module "factorio:runtime" {
|
|
3669
3677
|
}
|
3670
3678
|
/**
|
3671
3679
|
* Called after a robot builds tiles.
|
3672
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3680
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_robot_built_tile Online documentation}
|
3673
3681
|
*/
|
3674
3682
|
interface OnRobotBuiltTileEvent extends EventData {
|
3675
3683
|
/**
|
@@ -3711,7 +3719,7 @@ declare module "factorio:runtime" {
|
|
3711
3719
|
}
|
3712
3720
|
/**
|
3713
3721
|
* Called directly after a robot explodes cliffs.
|
3714
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3722
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_robot_exploded_cliff Online documentation}
|
3715
3723
|
*/
|
3716
3724
|
interface OnRobotExplodedCliffEvent extends EventData {
|
3717
3725
|
readonly robot: LuaEntity
|
@@ -3734,7 +3742,7 @@ declare module "factorio:runtime" {
|
|
3734
3742
|
}
|
3735
3743
|
/**
|
3736
3744
|
* Called when a robot mines an entity.
|
3737
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3745
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_robot_mined Online documentation}
|
3738
3746
|
*/
|
3739
3747
|
interface OnRobotMinedEvent extends EventData {
|
3740
3748
|
/**
|
@@ -3762,7 +3770,7 @@ declare module "factorio:runtime" {
|
|
3762
3770
|
* The buffer inventory is special in that it's only valid during this event and has a dynamic size expanding as more items are transferred into it.
|
3763
3771
|
*
|
3764
3772
|
* Event filter: [LuaRobotMinedEntityEventFilter](LuaRobotMinedEntityEventFilter]
|
3765
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3773
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_robot_mined_entity Online documentation}
|
3766
3774
|
*/
|
3767
3775
|
interface OnRobotMinedEntityEvent extends EventData {
|
3768
3776
|
/**
|
@@ -3788,7 +3796,7 @@ declare module "factorio:runtime" {
|
|
3788
3796
|
}
|
3789
3797
|
/**
|
3790
3798
|
* Called after a robot mines tiles.
|
3791
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3799
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_robot_mined_tile Online documentation}
|
3792
3800
|
*/
|
3793
3801
|
interface OnRobotMinedTileEvent extends EventData {
|
3794
3802
|
/**
|
@@ -3816,7 +3824,7 @@ declare module "factorio:runtime" {
|
|
3816
3824
|
* Called before a robot mines an entity.
|
3817
3825
|
*
|
3818
3826
|
* Event filter: [LuaPreRobotMinedEntityEventFilter](LuaPreRobotMinedEntityEventFilter]
|
3819
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3827
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_robot_pre_mined Online documentation}
|
3820
3828
|
*/
|
3821
3829
|
interface OnRobotPreMinedEvent extends EventData {
|
3822
3830
|
/**
|
@@ -3838,7 +3846,7 @@ declare module "factorio:runtime" {
|
|
3838
3846
|
}
|
3839
3847
|
/**
|
3840
3848
|
* Called when a rocket silo is ordered to be launched.
|
3841
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3849
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_rocket_launch_ordered Online documentation}
|
3842
3850
|
*/
|
3843
3851
|
interface OnRocketLaunchOrderedEvent extends EventData {
|
3844
3852
|
readonly rocket: LuaEntity
|
@@ -3858,7 +3866,7 @@ declare module "factorio:runtime" {
|
|
3858
3866
|
}
|
3859
3867
|
/**
|
3860
3868
|
* Called when a rocket finishes ascending. (Triggers listening for finished rocket launch past 2.0 have been moved to 'on_cargo_pod_finished_ascending' as rocket and cargo pod are two separate entities)
|
3861
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3869
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_rocket_launched Online documentation}
|
3862
3870
|
*/
|
3863
3871
|
interface OnRocketLaunchedEvent extends EventData {
|
3864
3872
|
readonly rocket: LuaEntity
|
@@ -3874,7 +3882,7 @@ declare module "factorio:runtime" {
|
|
3874
3882
|
}
|
3875
3883
|
/**
|
3876
3884
|
* Called when a runtime mod setting is changed by a player.
|
3877
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3885
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_runtime_mod_setting_changed Online documentation}
|
3878
3886
|
*/
|
3879
3887
|
interface OnRuntimeModSettingChangedEvent extends EventData {
|
3880
3888
|
/**
|
@@ -3897,7 +3905,7 @@ declare module "factorio:runtime" {
|
|
3897
3905
|
}
|
3898
3906
|
/**
|
3899
3907
|
* Called just after a script inventory is resized.
|
3900
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3908
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_script_inventory_resized Online documentation}
|
3901
3909
|
*/
|
3902
3910
|
interface OnScriptInventoryResizedEvent extends EventData {
|
3903
3911
|
/**
|
@@ -3932,7 +3940,7 @@ declare module "factorio:runtime" {
|
|
3932
3940
|
}
|
3933
3941
|
/**
|
3934
3942
|
* Called when a {@link LuaSurface#request_path LuaSurface::request_path} call completes.
|
3935
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3943
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_script_path_request_finished Online documentation}
|
3936
3944
|
*/
|
3937
3945
|
interface OnScriptPathRequestFinishedEvent extends EventData {
|
3938
3946
|
/**
|
@@ -3958,7 +3966,7 @@ declare module "factorio:runtime" {
|
|
3958
3966
|
}
|
3959
3967
|
/**
|
3960
3968
|
* Called when a script trigger effect is triggered.
|
3961
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3969
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_script_trigger_effect Online documentation}
|
3962
3970
|
*/
|
3963
3971
|
interface OnScriptTriggerEffectEvent extends EventData {
|
3964
3972
|
/**
|
@@ -3990,7 +3998,7 @@ declare module "factorio:runtime" {
|
|
3990
3998
|
* Called when an entity of type `radar` finishes scanning a sector.
|
3991
3999
|
*
|
3992
4000
|
* Event filter: [LuaSectorScannedEventFilter](LuaSectorScannedEventFilter]
|
3993
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4001
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_sector_scanned Online documentation}
|
3994
4002
|
*/
|
3995
4003
|
interface OnSectorScannedEvent extends EventData {
|
3996
4004
|
/**
|
@@ -4016,7 +4024,7 @@ declare module "factorio:runtime" {
|
|
4016
4024
|
}
|
4017
4025
|
/**
|
4018
4026
|
* Called when an individual segment of a SegmentedUnit is created.
|
4019
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4027
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_segment_entity_created Online documentation}
|
4020
4028
|
*/
|
4021
4029
|
interface OnSegmentEntityCreatedEvent extends EventData {
|
4022
4030
|
readonly entity: LuaEntity
|
@@ -4031,7 +4039,7 @@ declare module "factorio:runtime" {
|
|
4031
4039
|
}
|
4032
4040
|
/**
|
4033
4041
|
* Called after the selected entity changes for a given player.
|
4034
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4042
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_selected_entity_changed Online documentation}
|
4035
4043
|
*/
|
4036
4044
|
interface OnSelectedEntityChangedEvent extends EventData {
|
4037
4045
|
/**
|
@@ -4055,7 +4063,7 @@ declare module "factorio:runtime" {
|
|
4055
4063
|
* Called when a space platform builds an entity.
|
4056
4064
|
*
|
4057
4065
|
* Event filter: [LuaPlatformBuiltEntityEventFilter](LuaPlatformBuiltEntityEventFilter]
|
4058
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4066
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_space_platform_built_entity Online documentation}
|
4059
4067
|
*/
|
4060
4068
|
interface OnSpacePlatformBuiltEntityEvent extends EventData {
|
4061
4069
|
/**
|
@@ -4085,7 +4093,7 @@ declare module "factorio:runtime" {
|
|
4085
4093
|
}
|
4086
4094
|
/**
|
4087
4095
|
* Called after a space platform builds tiles.
|
4088
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4096
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_space_platform_built_tile Online documentation}
|
4089
4097
|
*/
|
4090
4098
|
interface OnSpacePlatformBuiltTileEvent extends EventData {
|
4091
4099
|
/**
|
@@ -4127,7 +4135,7 @@ declare module "factorio:runtime" {
|
|
4127
4135
|
}
|
4128
4136
|
/**
|
4129
4137
|
* Called when a space platform changes state
|
4130
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4138
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_space_platform_changed_state Online documentation}
|
4131
4139
|
*/
|
4132
4140
|
interface OnSpacePlatformChangedStateEvent extends EventData {
|
4133
4141
|
readonly platform: LuaSpacePlatform
|
@@ -4149,7 +4157,7 @@ declare module "factorio:runtime" {
|
|
4149
4157
|
* The buffer inventory is special in that it's only valid during this event and has a dynamic size expanding as more items are transferred into it.
|
4150
4158
|
*
|
4151
4159
|
* Event filter: [LuaPlatformMinedEntityEventFilter](LuaPlatformMinedEntityEventFilter]
|
4152
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4160
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_space_platform_mined_entity Online documentation}
|
4153
4161
|
*/
|
4154
4162
|
interface OnSpacePlatformMinedEntityEvent extends EventData {
|
4155
4163
|
/**
|
@@ -4175,7 +4183,7 @@ declare module "factorio:runtime" {
|
|
4175
4183
|
}
|
4176
4184
|
/**
|
4177
4185
|
* Called when a platform mines an entity.
|
4178
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4186
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_space_platform_mined_item Online documentation}
|
4179
4187
|
*/
|
4180
4188
|
interface OnSpacePlatformMinedItemEvent extends EventData {
|
4181
4189
|
/**
|
@@ -4197,7 +4205,7 @@ declare module "factorio:runtime" {
|
|
4197
4205
|
}
|
4198
4206
|
/**
|
4199
4207
|
* Called after a platform mines tiles.
|
4200
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4208
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_space_platform_mined_tile Online documentation}
|
4201
4209
|
*/
|
4202
4210
|
interface OnSpacePlatformMinedTileEvent extends EventData {
|
4203
4211
|
/**
|
@@ -4225,7 +4233,7 @@ declare module "factorio:runtime" {
|
|
4225
4233
|
* Called before a platform mines an entity.
|
4226
4234
|
*
|
4227
4235
|
* Event filter: [LuaPrePlatformMinedEntityEventFilter](LuaPrePlatformMinedEntityEventFilter]
|
4228
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4236
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_space_platform_pre_mined Online documentation}
|
4229
4237
|
*/
|
4230
4238
|
interface OnSpacePlatformPreMinedEvent extends EventData {
|
4231
4239
|
/**
|
@@ -4247,7 +4255,7 @@ declare module "factorio:runtime" {
|
|
4247
4255
|
}
|
4248
4256
|
/**
|
4249
4257
|
* Called when a spider finishes moving to its autopilot position.
|
4250
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4258
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_spider_command_completed Online documentation}
|
4251
4259
|
*/
|
4252
4260
|
interface OnSpiderCommandCompletedEvent extends EventData {
|
4253
4261
|
/**
|
@@ -4265,7 +4273,7 @@ declare module "factorio:runtime" {
|
|
4265
4273
|
}
|
4266
4274
|
/**
|
4267
4275
|
* Called when a translation request generated through {@link LuaPlayer#request_translation LuaPlayer::request_translation} or {@link LuaPlayer#request_translations LuaPlayer::request_translations} has been completed.
|
4268
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4276
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_string_translated Online documentation}
|
4269
4277
|
*/
|
4270
4278
|
interface OnStringTranslatedEvent extends EventData {
|
4271
4279
|
/**
|
@@ -4299,7 +4307,7 @@ declare module "factorio:runtime" {
|
|
4299
4307
|
}
|
4300
4308
|
/**
|
4301
4309
|
* Called just after a surface is cleared (all entities removed and all chunks deleted).
|
4302
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4310
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_surface_cleared Online documentation}
|
4303
4311
|
*/
|
4304
4312
|
interface OnSurfaceClearedEvent extends EventData {
|
4305
4313
|
readonly surface_index: SurfaceIndex
|
@@ -4316,7 +4324,7 @@ declare module "factorio:runtime" {
|
|
4316
4324
|
* Called when a surface is created.
|
4317
4325
|
*
|
4318
4326
|
* This is not called when the default surface is created as it will always exist.
|
4319
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4327
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_surface_created Online documentation}
|
4320
4328
|
*/
|
4321
4329
|
interface OnSurfaceCreatedEvent extends EventData {
|
4322
4330
|
readonly surface_index: SurfaceIndex
|
@@ -4331,7 +4339,7 @@ declare module "factorio:runtime" {
|
|
4331
4339
|
}
|
4332
4340
|
/**
|
4333
4341
|
* Called after a surface is deleted.
|
4334
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4342
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_surface_deleted Online documentation}
|
4335
4343
|
*/
|
4336
4344
|
interface OnSurfaceDeletedEvent extends EventData {
|
4337
4345
|
readonly surface_index: SurfaceIndex
|
@@ -4346,7 +4354,7 @@ declare module "factorio:runtime" {
|
|
4346
4354
|
}
|
4347
4355
|
/**
|
4348
4356
|
* Called after a surface is imported via the map editor.
|
4349
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4357
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_surface_imported Online documentation}
|
4350
4358
|
*/
|
4351
4359
|
interface OnSurfaceImportedEvent extends EventData {
|
4352
4360
|
readonly surface_index: SurfaceIndex
|
@@ -4365,7 +4373,7 @@ declare module "factorio:runtime" {
|
|
4365
4373
|
}
|
4366
4374
|
/**
|
4367
4375
|
* Called when a surface is renamed.
|
4368
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4376
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_surface_renamed Online documentation}
|
4369
4377
|
*/
|
4370
4378
|
interface OnSurfaceRenamedEvent extends EventData {
|
4371
4379
|
readonly surface_index: SurfaceIndex
|
@@ -4382,7 +4390,7 @@ declare module "factorio:runtime" {
|
|
4382
4390
|
}
|
4383
4391
|
/**
|
4384
4392
|
* Called when {@link LuaForce#reset_technology_effects LuaForce::reset_technology_effects} is finished.
|
4385
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4393
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_technology_effects_reset Online documentation}
|
4386
4394
|
*/
|
4387
4395
|
interface OnTechnologyEffectsResetEvent extends EventData {
|
4388
4396
|
readonly force: LuaForce
|
@@ -4397,7 +4405,7 @@ declare module "factorio:runtime" {
|
|
4397
4405
|
}
|
4398
4406
|
/**
|
4399
4407
|
* It is fired once every tick. Since this event is fired every tick, its handler shouldn't include performance heavy code.
|
4400
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4408
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_tick Online documentation}
|
4401
4409
|
*/
|
4402
4410
|
interface OnTickEvent extends EventData {
|
4403
4411
|
/**
|
@@ -4411,7 +4419,7 @@ declare module "factorio:runtime" {
|
|
4411
4419
|
}
|
4412
4420
|
/**
|
4413
4421
|
* Called when a train changes state (started to stopped and vice versa)
|
4414
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4422
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_train_changed_state Online documentation}
|
4415
4423
|
*/
|
4416
4424
|
interface OnTrainChangedStateEvent extends EventData {
|
4417
4425
|
readonly train: LuaTrain
|
@@ -4427,7 +4435,7 @@ declare module "factorio:runtime" {
|
|
4427
4435
|
}
|
4428
4436
|
/**
|
4429
4437
|
* Called when a new train is created either through disconnecting/connecting an existing one or building a new one.
|
4430
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4438
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_train_created Online documentation}
|
4431
4439
|
*/
|
4432
4440
|
interface OnTrainCreatedEvent extends EventData {
|
4433
4441
|
readonly train: LuaTrain
|
@@ -4450,7 +4458,7 @@ declare module "factorio:runtime" {
|
|
4450
4458
|
}
|
4451
4459
|
/**
|
4452
4460
|
* Called when a trains schedule is changed either by the player or through script.
|
4453
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4461
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_train_schedule_changed Online documentation}
|
4454
4462
|
*/
|
4455
4463
|
interface OnTrainScheduleChangedEvent extends EventData {
|
4456
4464
|
readonly train: LuaTrain
|
@@ -4469,7 +4477,7 @@ declare module "factorio:runtime" {
|
|
4469
4477
|
}
|
4470
4478
|
/**
|
4471
4479
|
* Called when an entity with a trigger prototype (such as capsules) create an entity AND that trigger prototype defined `trigger_created_entity=true`.
|
4472
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4480
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_trigger_created_entity Online documentation}
|
4473
4481
|
*/
|
4474
4482
|
interface OnTriggerCreatedEntityEvent extends EventData {
|
4475
4483
|
readonly entity: LuaEntity
|
@@ -4485,7 +4493,7 @@ declare module "factorio:runtime" {
|
|
4485
4493
|
}
|
4486
4494
|
/**
|
4487
4495
|
* Called when an entity with a trigger prototype (such as capsules) fire an artillery projectile AND that trigger prototype defined `trigger_fired_artillery=true`.
|
4488
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4496
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_trigger_fired_artillery Online documentation}
|
4489
4497
|
*/
|
4490
4498
|
interface OnTriggerFiredArtilleryEvent extends EventData {
|
4491
4499
|
readonly entity: LuaEntity
|
@@ -4501,7 +4509,7 @@ declare module "factorio:runtime" {
|
|
4501
4509
|
}
|
4502
4510
|
/**
|
4503
4511
|
* Called when the player triggers "undo".
|
4504
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4512
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_undo_applied Online documentation}
|
4505
4513
|
*/
|
4506
4514
|
interface OnUndoAppliedEvent extends EventData {
|
4507
4515
|
/**
|
@@ -4523,7 +4531,7 @@ declare module "factorio:runtime" {
|
|
4523
4531
|
}
|
4524
4532
|
/**
|
4525
4533
|
* Called when a unit is added to a unit group.
|
4526
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4534
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_unit_added_to_group Online documentation}
|
4527
4535
|
*/
|
4528
4536
|
interface OnUnitAddedToGroupEvent extends EventData {
|
4529
4537
|
readonly unit: LuaEntity
|
@@ -4539,7 +4547,7 @@ declare module "factorio:runtime" {
|
|
4539
4547
|
}
|
4540
4548
|
/**
|
4541
4549
|
* Called when a new unit group is created, before any members are added to it.
|
4542
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4550
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_unit_group_created Online documentation}
|
4543
4551
|
*/
|
4544
4552
|
interface OnUnitGroupCreatedEvent extends EventData {
|
4545
4553
|
readonly group: LuaCommandable
|
@@ -4554,7 +4562,7 @@ declare module "factorio:runtime" {
|
|
4554
4562
|
}
|
4555
4563
|
/**
|
4556
4564
|
* Called when a unit group finishes gathering and starts executing its command.
|
4557
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4565
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_unit_group_finished_gathering Online documentation}
|
4558
4566
|
*/
|
4559
4567
|
interface OnUnitGroupFinishedGatheringEvent extends EventData {
|
4560
4568
|
readonly group: LuaCommandable
|
@@ -4569,7 +4577,7 @@ declare module "factorio:runtime" {
|
|
4569
4577
|
}
|
4570
4578
|
/**
|
4571
4579
|
* Called when a unit is removed from a unit group.
|
4572
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4580
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_unit_removed_from_group Online documentation}
|
4573
4581
|
*/
|
4574
4582
|
interface OnUnitRemovedFromGroupEvent extends EventData {
|
4575
4583
|
readonly unit: LuaEntity
|
@@ -4585,7 +4593,7 @@ declare module "factorio:runtime" {
|
|
4585
4593
|
}
|
4586
4594
|
/**
|
4587
4595
|
* Called when a worker (construction or logistic) robot expires through a lack of energy.
|
4588
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4596
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#on_worker_robot_expired Online documentation}
|
4589
4597
|
*/
|
4590
4598
|
interface OnWorkerRobotExpiredEvent extends EventData {
|
4591
4599
|
readonly robot: LuaEntity
|
@@ -4602,7 +4610,7 @@ declare module "factorio:runtime" {
|
|
4602
4610
|
* A static event mods can use to tell other mods they built something by script. This event is only raised if a mod does so with {@link LuaBootstrap#raise_event LuaBootstrap::raise_event} or {@link LuaBootstrap#raise_script_built LuaBootstrap::raise_script_built}, or when `raise_built` is passed to {@link LuaSurface#create_entity LuaSurface::create_entity}.
|
4603
4611
|
*
|
4604
4612
|
* Event filter: [LuaScriptRaisedBuiltEventFilter](LuaScriptRaisedBuiltEventFilter]
|
4605
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4613
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#script_raised_built Online documentation}
|
4606
4614
|
*/
|
4607
4615
|
interface ScriptRaisedBuiltEvent extends EventData {
|
4608
4616
|
/**
|
@@ -4622,7 +4630,7 @@ declare module "factorio:runtime" {
|
|
4622
4630
|
* A static event mods can use to tell other mods they destroyed something by script. This event is only raised if a mod does so with {@link LuaBootstrap#raise_event LuaBootstrap::raise_event} or {@link LuaBootstrap#raise_script_destroy LuaBootstrap::raise_script_destroy}, or when `raise_destroy` is passed to {@link LuaEntity#destroy LuaEntity::destroy}.
|
4623
4631
|
*
|
4624
4632
|
* Event filter: [LuaScriptRaisedDestroyEventFilter](LuaScriptRaisedDestroyEventFilter]
|
4625
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4633
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#script_raised_destroy Online documentation}
|
4626
4634
|
*/
|
4627
4635
|
interface ScriptRaisedDestroyEvent extends EventData {
|
4628
4636
|
/**
|
@@ -4642,7 +4650,7 @@ declare module "factorio:runtime" {
|
|
4642
4650
|
* A static event mods can use to tell other mods they revived something by script. This event is only raised if a mod does so with {@link LuaBootstrap#raise_event LuaBootstrap::raise_event} or {@link LuaBootstrap#raise_script_revive LuaBootstrap::raise_script_revive}, or when `raise_revive` is passed to {@link LuaEntity#revive LuaEntity::revive}.
|
4643
4651
|
*
|
4644
4652
|
* Event filter: [LuaScriptRaisedReviveEventFilter](LuaScriptRaisedReviveEventFilter]
|
4645
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4653
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#script_raised_revive Online documentation}
|
4646
4654
|
*/
|
4647
4655
|
interface ScriptRaisedReviveEvent extends EventData {
|
4648
4656
|
/**
|
@@ -4664,7 +4672,7 @@ declare module "factorio:runtime" {
|
|
4664
4672
|
}
|
4665
4673
|
/**
|
4666
4674
|
* A static event mods can use to tell other mods they changed tiles on a surface by script. This event is only raised if a mod does so with {@link LuaBootstrap#raise_event LuaBootstrap::raise_event} or {@link LuaBootstrap#raise_script_set_tiles LuaBootstrap::raise_script_set_tiles}, or when `raise_event` is passed to {@link LuaSurface#set_tiles LuaSurface::set_tiles}.
|
4667
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4675
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#script_raised_set_tiles Online documentation}
|
4668
4676
|
*/
|
4669
4677
|
interface ScriptRaisedSetTilesEvent extends EventData {
|
4670
4678
|
/**
|
@@ -4688,7 +4696,7 @@ declare module "factorio:runtime" {
|
|
4688
4696
|
* A static event mods can use to tell other mods they teleported something by script. This event is only raised if a mod does so with {@link LuaBootstrap#raise_event LuaBootstrap::raise_event} or {@link LuaBootstrap#raise_script_teleported LuaBootstrap::raise_script_teleported}, or when `raise_teleported` is passed to {@link LuaControl#teleport LuaControl::teleport}.
|
4689
4697
|
*
|
4690
4698
|
* Event filter: [LuaScriptRaisedTeleportedEventFilter](LuaScriptRaisedTeleportedEventFilter]
|
4691
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4699
|
+
* @see {@link https://lua-api.factorio.com/2.0.34/events.html#script_raised_teleported Online documentation}
|
4692
4700
|
*/
|
4693
4701
|
interface ScriptRaisedTeleportedEvent extends EventData {
|
4694
4702
|
/**
|