typed-factorio 3.13.0 → 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.
@@ -12,21 +12,21 @@ import type { VersionString } from "factorio:common"
12
12
  declare module "factorio:runtime" {
13
13
  /**
14
14
  * `math.huge` represents the maximum possible tick.
15
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/MapTick.html Online documentation}
15
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/MapTick.html Online documentation}
16
16
  */
17
17
  export type MapTick = uint64
18
18
  /**
19
19
  * The percentual increase of the attribute. A value of `0.6` means a 60% increase.
20
20
  *
21
21
  * Quality values are divided by 10 internally, allowing for one more decimal of precision.
22
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ModuleEffectValue.html Online documentation}
22
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ModuleEffectValue.html Online documentation}
23
23
  */
24
24
  export type ModuleEffectValue = float
25
25
  /**
26
26
  * @example
27
27
  * -- These are the effects of the vanilla Speed Module 3
28
28
  * {speed = 0.5, consumption = 0.7, quality = -0.25}
29
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ModuleEffects.html Online documentation}
29
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ModuleEffects.html Online documentation}
30
30
  */
31
31
  export interface ModuleEffects {
32
32
  readonly consumption?: ModuleEffectValue
@@ -50,7 +50,7 @@ declare module "factorio:runtime" {
50
50
  * - `"<="`: "lesser than or equal to"
51
51
  * - `"≠"`: "not equal to"
52
52
  * - `"!="`: "not equal to"
53
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ComparatorString.html Online documentation}
53
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ComparatorString.html Online documentation}
54
54
  */
55
55
  export type ComparatorString = "=" | ">" | "<" | "≥" | ">=" | "≤" | "<=" | "≠" | "!="
56
56
  export type ComparatorStringRead = "=" | ">" | "<" | "≥" | "≤" | "≠"
@@ -81,8 +81,8 @@ declare module "factorio:runtime" {
81
81
  *
82
82
  * The validity of a SpritePath can be verified at runtime using {@link LuaHelpers#is_valid_sprite_path LuaHelpers::is_valid_sprite_path}.
83
83
  *
84
- * {@link https://lua-api.factorio.com/2.0.32/concepts/SpritePath.html > The supported types are:}
85
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/SpritePath.html Online documentation}
84
+ * {@link https://lua-api.factorio.com/2.0.34/concepts/SpritePath.html > The supported types are:}
85
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/SpritePath.html Online documentation}
86
86
  */
87
87
  export type SpritePath = (string & { _?: never }) | `${SpriteType}${"/" | "."}${string}`
88
88
  /**
@@ -93,14 +93,14 @@ declare module "factorio:runtime" {
93
93
  * - {@link FluidID}: Used with fluid production statistics.
94
94
  * - {@link EntityWithQualityID}: Used with electric network, entity build count, and kill count statistics.
95
95
  * - {@link EntityID}: Used with pollution statistics.
96
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/FlowStatisticsID.html Online documentation}
96
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/FlowStatisticsID.html Online documentation}
97
97
  */
98
98
  export type FlowStatisticsID = ItemWithQualityID | FluidID | EntityWithQualityID | EntityID
99
99
  /**
100
100
  * @example
101
101
  * -- Most common collision mask of buildings:
102
102
  * collision_mask = {layers = {item = true, meltable = true, object = true, player = true, water_tile = true, is_object = true, is_lower_object = true}}
103
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/CollisionMask.html Online documentation}
103
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/CollisionMask.html Online documentation}
104
104
  */
105
105
  export interface CollisionMask {
106
106
  /**
@@ -228,7 +228,7 @@ declare module "factorio:runtime" {
228
228
  * - `"check-box"`
229
229
  * - `"switch"`
230
230
  * - `"label"`
231
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/SimulationWidgetType.html Online documentation}
231
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/SimulationWidgetType.html Online documentation}
232
232
  */
233
233
  export type SimulationWidgetType =
234
234
  | "signal-id"
@@ -350,7 +350,7 @@ declare module "factorio:runtime" {
350
350
  * - `"any-goal-accessible"`: The method will return {@link TrainPathFinderOneGoalResult}.
351
351
  * - `"all-goals-accessible"`: The method will return {@link TrainPathAllGoalsResult}.
352
352
  * - `"all-goals-penalties"`: The method will return {@link TrainPathAllGoalsResult} with `penalties`.
353
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/TrainPathRequestType.html Online documentation}
353
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/TrainPathRequestType.html Online documentation}
354
354
  */
355
355
  export type TrainPathRequestType = "path" | "any-goal-accessible" | "all-goals-accessible" | "all-goals-penalties"
356
356
  /**
@@ -359,7 +359,7 @@ declare module "factorio:runtime" {
359
359
  * - {@link RailEndGoal}
360
360
  * - {@link LuaRailEnd}
361
361
  * - {@link LuaEntity}: Only if it points at train-stop that is connected to a rail.
362
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/TrainPathFinderGoal.html Online documentation}
362
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/TrainPathFinderGoal.html Online documentation}
363
363
  */
364
364
  export type TrainPathFinderGoal = TrainStopGoal | RailEndGoal | LuaRailEnd | LuaEntity
365
365
  export interface TrainStopGoal {
@@ -464,7 +464,7 @@ declare module "factorio:runtime" {
464
464
  }
465
465
  /**
466
466
  * A single pipe connection for a given fluidbox.
467
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/PipeConnection.html Online documentation}
467
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/PipeConnection.html Online documentation}
468
468
  */
469
469
  export interface PipeConnection {
470
470
  readonly flow_direction: "input" | "output" | "input-output"
@@ -527,7 +527,7 @@ declare module "factorio:runtime" {
527
527
  * - {@link LuaEntityDiedEventFilter}
528
528
  * - {@link LuaPreRobotMinedEntityEventFilter}
529
529
  * @see EventFilterWrite
530
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/EventFilter.html Online documentation}
530
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/EventFilter.html Online documentation}
531
531
  */
532
532
  export type EventFilter =
533
533
  | LuaPrePlatformMinedEntityEventFilter[]
@@ -557,7 +557,7 @@ declare module "factorio:runtime" {
557
557
  | LuaPreRobotMinedEntityEventFilter[]
558
558
  /**
559
559
  * Write form of {@link EventFilter}, where some properties allow additional values as input compared to the read form.
560
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/EventFilter.html Online documentation}
560
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/EventFilter.html Online documentation}
561
561
  */
562
562
  export type EventFilterWrite =
563
563
  | readonly LuaPrePlatformMinedEntityEventFilter[]
@@ -607,7 +607,8 @@ declare module "factorio:runtime" {
607
607
  * - {@link LuaCommandable}: Target type {@link defines.target_type.commandable commandable}; `useful_id` {@link LuaCommandable#unique_id LuaCommandable::unique_id}
608
608
  * - {@link LuaCustomChartTag}: Target type {@link defines.target_type.custom_chart_tag custom_chart_tag}; `useful_id` {@link LuaCustomChartTag#tag_number LuaCustomChartTag::tag_number}
609
609
  * - {@link LuaGuiElement}: Target type {@link defines.target_type.gui_element gui_element}; `useful_id` {@link LuaGuiElement#index LuaGuiElement::index}
610
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/RegistrationTarget.html Online documentation}
610
+ * - {@link LuaCargoHatch}: Target type {@link defines.target_type.cargo_hatch cargo_hatch}
611
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/RegistrationTarget.html Online documentation}
611
612
  */
612
613
  export type RegistrationTarget =
613
614
  | LuaEntity
@@ -628,6 +629,7 @@ declare module "factorio:runtime" {
628
629
  | LuaCommandable
629
630
  | LuaCustomChartTag
630
631
  | LuaGuiElement
632
+ | LuaCargoHatch
631
633
  /**
632
634
  * Common attributes to all variants of {@link UndoRedoAction}.
633
635
  */
@@ -808,7 +810,7 @@ declare module "factorio:runtime" {
808
810
  * - `"wire-removed"`: {@link WireRemovedUndoRedoAction}
809
811
  * - `"rotated-entity"`: {@link RotatedEntityUndoRedoAction}
810
812
  * - `"copy-entity-settings"`: {@link CopyEntitySettingsUndoRedoAction}
811
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/UndoRedoAction.html Online documentation}
813
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/UndoRedoAction.html Online documentation}
812
814
  */
813
815
  export type UndoRedoAction =
814
816
  | BuiltEntityUndoRedoAction
@@ -840,7 +842,7 @@ declare module "factorio:runtime" {
840
842
  * - `"weapon"`
841
843
  * - `"explosion"`
842
844
  * - `"enemy"`
843
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/SoundType.html Online documentation}
845
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/SoundType.html Online documentation}
844
846
  */
845
847
  export type SoundType =
846
848
  | "game-effect"
@@ -923,7 +925,7 @@ declare module "factorio:runtime" {
923
925
  * - `"controllable-remove"`
924
926
  * - `"entity-ghost"`: Selects entities that are `entity-ghost`s.
925
927
  * - `"tile-ghost"`: Selects entities that are `tile-ghost`s.
926
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/SelectionModeFlags.html Online documentation}
928
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/SelectionModeFlags.html Online documentation}
927
929
  */
928
930
  export interface SelectionModeFlags {
929
931
  /**
@@ -1042,7 +1044,7 @@ declare module "factorio:runtime" {
1042
1044
  * A set of flags. Active flags are in the dictionary as `true`, while inactive flags aren't present at all.
1043
1045
  *
1044
1046
  * By default, none of these flags are set.
1045
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ItemPrototypeFlags.html Online documentation}
1047
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ItemPrototypeFlags.html Online documentation}
1046
1048
  */
1047
1049
  export type ItemPrototypeFlags = {
1048
1050
  readonly [T in ItemPrototypeFlag]?: true
@@ -1063,7 +1065,7 @@ declare module "factorio:runtime" {
1063
1065
  * - `"spawnable"`: Allows the item to be spawned by a quickbar shortcut or custom input.
1064
1066
  * - `"spoil-result"`
1065
1067
  * - `"ignore-spoil-time-modifier"`: Controls whether the spoil time ignores the spoil time modifier in the {@link DifficultySettings}.
1066
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ItemPrototypeFlag.html Online documentation}
1068
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ItemPrototypeFlag.html Online documentation}
1067
1069
  */
1068
1070
  export type ItemPrototypeFlag =
1069
1071
  | "draw-logistic-overlay"
@@ -1083,7 +1085,7 @@ declare module "factorio:runtime" {
1083
1085
  * - `"none"`
1084
1086
  * - `"whitelist"`
1085
1087
  * - `"blacklist"`
1086
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/PrototypeFilterMode.html Online documentation}
1088
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/PrototypeFilterMode.html Online documentation}
1087
1089
  */
1088
1090
  export type PrototypeFilterMode = "none" | "whitelist" | "blacklist"
1089
1091
  export interface PipeConnectionDefinition {
@@ -1108,7 +1110,7 @@ declare module "factorio:runtime" {
1108
1110
  * The name of a {@link LuaCollisionLayerPrototype}.
1109
1111
  * @example
1110
1112
  * "is_lower_object"
1111
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/CollisionLayerID.html Online documentation}
1113
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/CollisionLayerID.html Online documentation}
1112
1114
  */
1113
1115
  export type CollisionLayerID = string
1114
1116
  export interface ItemIDFilter {
@@ -1158,7 +1160,7 @@ declare module "factorio:runtime" {
1158
1160
  * - {@link SpaceLocationPrototypeFilter}
1159
1161
  * - {@link FluidPrototypeFilter}
1160
1162
  * @see PrototypeFilterWrite
1161
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/PrototypeFilter.html Online documentation}
1163
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/PrototypeFilter.html Online documentation}
1162
1164
  */
1163
1165
  export type PrototypeFilter =
1164
1166
  | ModSettingPrototypeFilter[]
@@ -1175,7 +1177,7 @@ declare module "factorio:runtime" {
1175
1177
  | FluidPrototypeFilter[]
1176
1178
  /**
1177
1179
  * Write form of {@link PrototypeFilter}, where some properties allow additional values as input compared to the read form.
1178
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/PrototypeFilter.html Online documentation}
1180
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/PrototypeFilter.html Online documentation}
1179
1181
  */
1180
1182
  export type PrototypeFilterWrite =
1181
1183
  | readonly ModSettingPrototypeFilter[]
@@ -1192,7 +1194,7 @@ declare module "factorio:runtime" {
1192
1194
  | readonly FluidPrototypeFilterWrite[]
1193
1195
  /**
1194
1196
  * @see DisplayPanelMessageDefinitionWrite
1195
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/DisplayPanelMessageDefinition.html Online documentation}
1197
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/DisplayPanelMessageDefinition.html Online documentation}
1196
1198
  */
1197
1199
  export interface DisplayPanelMessageDefinition {
1198
1200
  /**
@@ -1210,7 +1212,7 @@ declare module "factorio:runtime" {
1210
1212
  }
1211
1213
  /**
1212
1214
  * Write form of {@link DisplayPanelMessageDefinition}, where some properties allow additional values as input compared to the read form.
1213
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/DisplayPanelMessageDefinition.html Online documentation}
1215
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/DisplayPanelMessageDefinition.html Online documentation}
1214
1216
  */
1215
1217
  export interface DisplayPanelMessageDefinitionWrite {
1216
1218
  /**
@@ -1236,7 +1238,7 @@ declare module "factorio:runtime" {
1236
1238
  * - `"space-location"`
1237
1239
  * - `"asteroid-chunk"`
1238
1240
  * - `"quality"`
1239
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/SignalIDType.html Online documentation}
1241
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/SignalIDType.html Online documentation}
1240
1242
  */
1241
1243
  export type SignalIDType =
1242
1244
  | "item"
@@ -1249,7 +1251,7 @@ declare module "factorio:runtime" {
1249
1251
  | "quality"
1250
1252
  /**
1251
1253
  * @see SignalIDWrite
1252
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/SignalID.html Online documentation}
1254
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/SignalID.html Online documentation}
1253
1255
  */
1254
1256
  export interface SignalID {
1255
1257
  /**
@@ -1267,7 +1269,7 @@ declare module "factorio:runtime" {
1267
1269
  }
1268
1270
  /**
1269
1271
  * Write form of {@link SignalID}, where some properties allow additional values as input compared to the read form.
1270
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/SignalID.html Online documentation}
1272
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/SignalID.html Online documentation}
1271
1273
  */
1272
1274
  export interface SignalIDWrite {
1273
1275
  /**
@@ -1473,7 +1475,7 @@ declare module "factorio:runtime" {
1473
1475
  * - `"play-next-track"`
1474
1476
  * - `"play-previous-track"`
1475
1477
  * - `"pause-resume-music"`
1476
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LinkedGameControl.html Online documentation}
1478
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/LinkedGameControl.html Online documentation}
1477
1479
  */
1478
1480
  export type LinkedGameControl =
1479
1481
  | "move-up"
@@ -1724,7 +1726,7 @@ declare module "factorio:runtime" {
1724
1726
  * - `"create-ghost-on-entity-death"`
1725
1727
  * - `"belt-stack-size-bonus"`
1726
1728
  * - `"vehicle-logistics"`
1727
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ModifierType.html Online documentation}
1729
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ModifierType.html Online documentation}
1728
1730
  */
1729
1731
  export type ModifierType =
1730
1732
  | "inserter-stack-size-bonus"
@@ -1843,7 +1845,7 @@ declare module "factorio:runtime" {
1843
1845
  * - `"capture-spawner"`: {@link CaptureSpawnerResearchTrigger}
1844
1846
  * - `"build-entity"`: {@link BuildEntityResearchTrigger}
1845
1847
  * - `"send-item-to-orbit"`: {@link SendItemToOrbitResearchTrigger}
1846
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ResearchTrigger.html Online documentation}
1848
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ResearchTrigger.html Online documentation}
1847
1849
  */
1848
1850
  export type ResearchTrigger =
1849
1851
  | CraftItemResearchTrigger
@@ -1857,7 +1859,7 @@ declare module "factorio:runtime" {
1857
1859
  * A set of flags. Active flags are in the dictionary as `true`, while inactive flags aren't present at all.
1858
1860
  *
1859
1861
  * By default, none of these flags are set.
1860
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/EntityPrototypeFlags.html Online documentation}
1862
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/EntityPrototypeFlags.html Online documentation}
1861
1863
  */
1862
1864
  export type EntityPrototypeFlags = {
1863
1865
  readonly [T in EntityPrototypeFlag]?: true
@@ -1892,7 +1894,7 @@ declare module "factorio:runtime" {
1892
1894
  * - `"building-direction-16-way"`
1893
1895
  * - `"snap-to-rail-support-spot"`
1894
1896
  * - `"not-in-made-in"`: Prevents the entity from being shown in the "made in" list in recipe tooltips.
1895
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/EntityPrototypeFlag.html Online documentation}
1897
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/EntityPrototypeFlag.html Online documentation}
1896
1898
  */
1897
1899
  export type EntityPrototypeFlag =
1898
1900
  | "not-rotatable"
@@ -1962,7 +1964,7 @@ declare module "factorio:runtime" {
1962
1964
  * - `"local"`: The sound can be heard within the audible range around the speaker.
1963
1965
  * - `"surface"`: The sound can be heard anywhere on the speaker's surface.
1964
1966
  * - `"global"`: The sound can be heard everywhere.
1965
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ProgrammableSpeakerPlaybackMode.html Online documentation}
1967
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ProgrammableSpeakerPlaybackMode.html Online documentation}
1966
1968
  */
1967
1969
  export type ProgrammableSpeakerPlaybackMode = "local" | "surface" | "global"
1968
1970
  /**
@@ -1987,7 +1989,7 @@ declare module "factorio:runtime" {
1987
1989
  * - `"none-to-south"`
1988
1990
  * - `"south-to-none"`
1989
1991
  * - `"none-to-north"`
1990
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/CliffOrientation.html Online documentation}
1992
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/CliffOrientation.html Online documentation}
1991
1993
  */
1992
1994
  export type CliffOrientation =
1993
1995
  | "west-to-east"
@@ -2013,7 +2015,7 @@ declare module "factorio:runtime" {
2013
2015
  /**
2014
2016
  * Defines an item type that a blueprint entity will request.
2015
2017
  * @see BlueprintInsertPlanWrite
2016
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BlueprintInsertPlan.html Online documentation}
2018
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/BlueprintInsertPlan.html Online documentation}
2017
2019
  */
2018
2020
  export interface BlueprintInsertPlan {
2019
2021
  /**
@@ -2027,7 +2029,7 @@ declare module "factorio:runtime" {
2027
2029
  }
2028
2030
  /**
2029
2031
  * Write form of {@link BlueprintInsertPlan}, where some properties allow additional values as input compared to the read form.
2030
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BlueprintInsertPlan.html Online documentation}
2032
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/BlueprintInsertPlan.html Online documentation}
2031
2033
  */
2032
2034
  export interface BlueprintInsertPlanWrite {
2033
2035
  /**
@@ -2055,7 +2057,7 @@ declare module "factorio:runtime" {
2055
2057
  }
2056
2058
  /**
2057
2059
  * A single offer on a market entity.
2058
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/Offer.html Online documentation}
2060
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/Offer.html Online documentation}
2059
2061
  */
2060
2062
  export interface Offer {
2061
2063
  /**
@@ -2070,7 +2072,7 @@ declare module "factorio:runtime" {
2070
2072
  /**
2071
2073
  * An item filter may be specified in two ways, either as a string which is an item prototype name or as a table.
2072
2074
  * @see ItemFilterWrite
2073
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ItemFilter.html Online documentation}
2075
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ItemFilter.html Online documentation}
2074
2076
  */
2075
2077
  export type ItemFilter =
2076
2078
  | {
@@ -2090,7 +2092,7 @@ declare module "factorio:runtime" {
2090
2092
  | string
2091
2093
  /**
2092
2094
  * Write form of {@link ItemFilter}, where some properties allow additional values as input compared to the read form.
2093
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ItemFilter.html Online documentation}
2095
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ItemFilter.html Online documentation}
2094
2096
  */
2095
2097
  export type ItemFilterWrite =
2096
2098
  | {
@@ -2110,7 +2112,7 @@ declare module "factorio:runtime" {
2110
2112
  | string
2111
2113
  /**
2112
2114
  * @see ScheduleRecordWrite
2113
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ScheduleRecord.html Online documentation}
2115
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ScheduleRecord.html Online documentation}
2114
2116
  */
2115
2117
  export interface ScheduleRecord {
2116
2118
  /**
@@ -2133,7 +2135,7 @@ declare module "factorio:runtime" {
2133
2135
  }
2134
2136
  /**
2135
2137
  * Write form of {@link ScheduleRecord}, where some properties allow additional values as input compared to the read form.
2136
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ScheduleRecord.html Online documentation}
2138
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ScheduleRecord.html Online documentation}
2137
2139
  */
2138
2140
  export interface ScheduleRecordWrite {
2139
2141
  /**
@@ -2219,7 +2221,7 @@ declare module "factorio:runtime" {
2219
2221
  * - `"position"`: {@link PositionGuiArrowSpecification}
2220
2222
  * - `"crafting_queue"`: {@link CraftingQueueGuiArrowSpecification}
2221
2223
  * - `"item_stack"`: {@link ItemStackGuiArrowSpecification}
2222
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GuiArrowSpecification.html Online documentation}
2224
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/GuiArrowSpecification.html Online documentation}
2223
2225
  */
2224
2226
  export type GuiArrowSpecification =
2225
2227
  | EntityGuiArrowSpecification
@@ -2232,7 +2234,7 @@ declare module "factorio:runtime" {
2232
2234
  *
2233
2235
  * If this is specified as a three-element array then the array items are x, y and z, in that order.
2234
2236
  * @see Vector3DArray
2235
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/Vector3D.html Online documentation}
2237
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/Vector3D.html Online documentation}
2236
2238
  */
2237
2239
  export interface Vector3D {
2238
2240
  readonly x: float
@@ -2242,7 +2244,7 @@ declare module "factorio:runtime" {
2242
2244
  /**
2243
2245
  * Array form of {@link Vector3D}.
2244
2246
  * @see Vector3D
2245
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/Vector3D.html Online documentation}
2247
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/Vector3D.html Online documentation}
2246
2248
  */
2247
2249
  export type Vector3DArray = readonly [float, float, float]
2248
2250
  export interface ItemWithQualityCounts {
@@ -2275,7 +2277,7 @@ declare module "factorio:runtime" {
2275
2277
  }
2276
2278
  /**
2277
2279
  * @see TrainScheduleWrite
2278
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/TrainSchedule.html Online documentation}
2280
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/TrainSchedule.html Online documentation}
2279
2281
  */
2280
2282
  export interface TrainSchedule {
2281
2283
  /**
@@ -2286,7 +2288,7 @@ declare module "factorio:runtime" {
2286
2288
  }
2287
2289
  /**
2288
2290
  * Write form of {@link TrainSchedule}, where some properties allow additional values as input compared to the read form.
2289
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/TrainSchedule.html Online documentation}
2291
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/TrainSchedule.html Online documentation}
2290
2292
  */
2291
2293
  export interface TrainScheduleWrite {
2292
2294
  /**
@@ -2297,7 +2299,7 @@ declare module "factorio:runtime" {
2297
2299
  }
2298
2300
  /**
2299
2301
  * @see PlatformScheduleWrite
2300
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/PlatformSchedule.html Online documentation}
2302
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/PlatformSchedule.html Online documentation}
2301
2303
  */
2302
2304
  export interface PlatformSchedule {
2303
2305
  /**
@@ -2308,7 +2310,7 @@ declare module "factorio:runtime" {
2308
2310
  }
2309
2311
  /**
2310
2312
  * Write form of {@link PlatformSchedule}, where some properties allow additional values as input compared to the read form.
2311
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/PlatformSchedule.html Online documentation}
2313
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/PlatformSchedule.html Online documentation}
2312
2314
  */
2313
2315
  export interface PlatformScheduleWrite {
2314
2316
  /**
@@ -2325,7 +2327,7 @@ declare module "factorio:runtime" {
2325
2327
  }
2326
2328
  /**
2327
2329
  * A recipe prototype with optional quality specification.
2328
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/RecipeIDAndQualityIDPair.html Online documentation}
2330
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/RecipeIDAndQualityIDPair.html Online documentation}
2329
2331
  */
2330
2332
  export interface RecipeIDAndQualityIDPair {
2331
2333
  /**
@@ -2374,7 +2376,7 @@ declare module "factorio:runtime" {
2374
2376
  * - `string`: Name of the force, same as {@link LuaForce#name LuaForce::name}.
2375
2377
  * - {@link uint8}: Index of the force, same as {@link LuaForce#index LuaForce::index}.
2376
2378
  * - {@link LuaForce}: A reference to {@link LuaForce} may be passed directly.
2377
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ForceID.html Online documentation}
2379
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ForceID.html Online documentation}
2378
2380
  */
2379
2381
  export type ForceID = string | uint8 | LuaForce
2380
2382
  /**
@@ -2384,7 +2386,7 @@ declare module "factorio:runtime" {
2384
2386
  * - `string`: The fluid name.
2385
2387
  * - {@link LuaFluidPrototype}: The fluid prototype.
2386
2388
  * - {@link Fluid}: The fluid.
2387
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/FluidID.html Online documentation}
2389
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/FluidID.html Online documentation}
2388
2390
  */
2389
2391
  export type FluidID = string | LuaFluidPrototype | Fluid
2390
2392
  /**
@@ -2395,12 +2397,12 @@ declare module "factorio:runtime" {
2395
2397
  * - {@link LuaEntityPrototype}: The entity prototype. Normal quality will be used.
2396
2398
  * - `string`: The prototype name. Normal quality will be used.
2397
2399
  * - {@link EntityIDAndQualityIDPair}: A table of entity prototype and quality.
2398
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/EntityWithQualityID.html Online documentation}
2400
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/EntityWithQualityID.html Online documentation}
2399
2401
  */
2400
2402
  export type EntityWithQualityID = LuaEntity | LuaEntityPrototype | string | EntityIDAndQualityIDPair
2401
2403
  /**
2402
2404
  * An entity prototype with optional quality specification.
2403
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/EntityIDAndQualityIDPair.html Online documentation}
2405
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/EntityIDAndQualityIDPair.html Online documentation}
2404
2406
  */
2405
2407
  export interface EntityIDAndQualityIDPair {
2406
2408
  /**
@@ -2420,13 +2422,13 @@ declare module "factorio:runtime" {
2420
2422
  * - {@link LuaItemPrototype}: The item prototype. Normal quality will be used.
2421
2423
  * - `string`: The prototype name. Normal quality will be used.
2422
2424
  * - {@link ItemIDAndQualityIDPair}: A table of entity prototype and quality.
2423
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ItemWithQualityID.html Online documentation}
2425
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ItemWithQualityID.html Online documentation}
2424
2426
  */
2425
2427
  export type ItemWithQualityID = LuaItemStack | LuaItemPrototype | string | ItemIDAndQualityIDPairWrite
2426
2428
  /**
2427
2429
  * An item prototype with optional quality specification.
2428
2430
  * @see ItemIDAndQualityIDPairWrite
2429
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ItemIDAndQualityIDPair.html Online documentation}
2431
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ItemIDAndQualityIDPair.html Online documentation}
2430
2432
  */
2431
2433
  export interface ItemIDAndQualityIDPair {
2432
2434
  /**
@@ -2440,7 +2442,7 @@ declare module "factorio:runtime" {
2440
2442
  }
2441
2443
  /**
2442
2444
  * Write form of {@link ItemIDAndQualityIDPair}, where some properties allow additional values as input compared to the read form.
2443
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ItemIDAndQualityIDPair.html Online documentation}
2445
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ItemIDAndQualityIDPair.html Online documentation}
2444
2446
  */
2445
2447
  export interface ItemIDAndQualityIDPairWrite {
2446
2448
  /**
@@ -2460,7 +2462,7 @@ declare module "factorio:runtime" {
2460
2462
  * - {@link LuaItemStack}: Non empty item stack.
2461
2463
  * - {@link LuaItem}: The item.
2462
2464
  * - `string`: The prototype name.
2463
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ItemID.html Online documentation}
2465
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ItemID.html Online documentation}
2464
2466
  */
2465
2467
  export type ItemID = LuaItemPrototype | LuaItemStack | LuaItem | string
2466
2468
  /**
@@ -2470,7 +2472,7 @@ declare module "factorio:runtime" {
2470
2472
  * - {@link LuaEntityPrototype}: The entity prototype.
2471
2473
  * - {@link LuaEntity}: The entity.
2472
2474
  * - `string`: The prototype name.
2473
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/EntityID.html Online documentation}
2475
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/EntityID.html Online documentation}
2474
2476
  */
2475
2477
  export type EntityID = LuaEntityPrototype | LuaEntity | string
2476
2478
  /**
@@ -2480,7 +2482,7 @@ declare module "factorio:runtime" {
2480
2482
  * - {@link LuaTechnologyPrototype}: The technology prototype.
2481
2483
  * - {@link LuaTechnology}: Instance of the technology.
2482
2484
  * - `string`: The prototype name.
2483
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/TechnologyID.html Online documentation}
2485
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/TechnologyID.html Online documentation}
2484
2486
  */
2485
2487
  export type TechnologyID = LuaTechnologyPrototype | LuaTechnology | string
2486
2488
  /**
@@ -2489,7 +2491,7 @@ declare module "factorio:runtime" {
2489
2491
  * ## Union members
2490
2492
  * - {@link LuaParticlePrototype}: The particle prototype.
2491
2493
  * - `string`: The prototype name.
2492
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ParticleID.html Online documentation}
2494
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ParticleID.html Online documentation}
2493
2495
  */
2494
2496
  export type ParticleID = LuaParticlePrototype | string
2495
2497
  /**
@@ -2498,7 +2500,7 @@ declare module "factorio:runtime" {
2498
2500
  * ## Union members
2499
2501
  * - {@link LuaDamagePrototype}: The damage type prototype.
2500
2502
  * - `string`: The prototype name.
2501
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/DamageTypeID.html Online documentation}
2503
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/DamageTypeID.html Online documentation}
2502
2504
  */
2503
2505
  export type DamageTypeID = LuaDamagePrototype | string
2504
2506
  /**
@@ -2507,7 +2509,7 @@ declare module "factorio:runtime" {
2507
2509
  * ## Union members
2508
2510
  * - {@link LuaTrivialSmokePrototype}: The trivial smoke prototype.
2509
2511
  * - `string`: The prototype name.
2510
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/TrivialSmokeID.html Online documentation}
2512
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/TrivialSmokeID.html Online documentation}
2511
2513
  */
2512
2514
  export type TrivialSmokeID = LuaTrivialSmokePrototype | string
2513
2515
  /**
@@ -2519,7 +2521,7 @@ declare module "factorio:runtime" {
2519
2521
  * - `"left"`
2520
2522
  * - `"right"`
2521
2523
  * - `"center"`
2522
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/TextAlign.html Online documentation}
2524
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/TextAlign.html Online documentation}
2523
2525
  */
2524
2526
  export type TextAlign = "left" | "right" | "center"
2525
2527
  /**
@@ -2532,7 +2534,7 @@ declare module "factorio:runtime" {
2532
2534
  * - `"middle"`
2533
2535
  * - `"baseline"`
2534
2536
  * - `"bottom"`
2535
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/VerticalTextAlign.html Online documentation}
2537
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/VerticalTextAlign.html Online documentation}
2536
2538
  */
2537
2539
  export type VerticalTextAlign = "top" | "middle" | "baseline" | "bottom"
2538
2540
  /**
@@ -2541,7 +2543,7 @@ declare module "factorio:runtime" {
2541
2543
  * ## Union members
2542
2544
  * - {@link LuaQualityPrototype}: The quality prototype.
2543
2545
  * - `string`: The prototype name.
2544
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/QualityID.html Online documentation}
2546
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/QualityID.html Online documentation}
2545
2547
  */
2546
2548
  export type QualityID = LuaQualityPrototype | string
2547
2549
  /**
@@ -2551,7 +2553,7 @@ declare module "factorio:runtime" {
2551
2553
  * - {@link LuaRecipePrototype}: By recipe prototype.
2552
2554
  * - {@link LuaRecipe}: By instance of recipe.
2553
2555
  * - `string`: By name of the recipe prototype.
2554
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/RecipeID.html Online documentation}
2556
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/RecipeID.html Online documentation}
2555
2557
  */
2556
2558
  export type RecipeID = LuaRecipePrototype | LuaRecipe | string
2557
2559
  /**
@@ -2561,7 +2563,7 @@ declare module "factorio:runtime" {
2561
2563
  * - {@link LuaTilePrototype}: By tile prototype.
2562
2564
  * - {@link LuaTile}: By instance of tile.
2563
2565
  * - `string`: By name of the tile prototype.
2564
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/TileID.html Online documentation}
2566
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/TileID.html Online documentation}
2565
2567
  */
2566
2568
  export type TileID = LuaTilePrototype | LuaTile | string
2567
2569
  export interface Fluid {
@@ -2585,7 +2587,7 @@ declare module "factorio:runtime" {
2585
2587
  * - {@link LuaEquipmentPrototype}: The equipment prototype.
2586
2588
  * - {@link LuaEquipment}: The equipment.
2587
2589
  * - `string`: The prototype name.
2588
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/EquipmentID.html Online documentation}
2590
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/EquipmentID.html Online documentation}
2589
2591
  */
2590
2592
  export type EquipmentID = LuaEquipmentPrototype | LuaEquipment | string
2591
2593
  /**
@@ -2596,12 +2598,12 @@ declare module "factorio:runtime" {
2596
2598
  * - {@link LuaEquipment}: The equipment. Both prototype and quality of the provided equipment will be used.
2597
2599
  * - `string`: The prototype name. Normal quality will be used.
2598
2600
  * - {@link EquipmentIDAndQualityIDPair}: A table of equipment prototype and quality.
2599
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/EquipmentWithQualityID.html Online documentation}
2601
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/EquipmentWithQualityID.html Online documentation}
2600
2602
  */
2601
2603
  export type EquipmentWithQualityID = LuaEquipmentPrototype | LuaEquipment | string | EquipmentIDAndQualityIDPair
2602
2604
  /**
2603
2605
  * An equipment prototype with optional quality specification.
2604
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/EquipmentIDAndQualityIDPair.html Online documentation}
2606
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/EquipmentIDAndQualityIDPair.html Online documentation}
2605
2607
  */
2606
2608
  export interface EquipmentIDAndQualityIDPair {
2607
2609
  /**
@@ -2622,7 +2624,7 @@ declare module "factorio:runtime" {
2622
2624
  * @example
2623
2625
  * -- Shorthand
2624
2626
  * {{-2, -3}, {5, 8}}
2625
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BoundingBox.html Online documentation}
2627
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/BoundingBox.html Online documentation}
2626
2628
  */
2627
2629
  export interface BoundingBox {
2628
2630
  readonly left_top: MapPosition
@@ -2632,7 +2634,7 @@ declare module "factorio:runtime" {
2632
2634
  /**
2633
2635
  * Array form of {@link BoundingBox}.
2634
2636
  * @see BoundingBox
2635
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BoundingBox.html Online documentation}
2637
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/BoundingBox.html Online documentation}
2636
2638
  */
2637
2639
  export type BoundingBoxArray = readonly [MapPosition | MapPositionArray, MapPosition | MapPositionArray]
2638
2640
  export interface BoundingBoxWrite {
@@ -2645,7 +2647,7 @@ declare module "factorio:runtime" {
2645
2647
  *
2646
2648
  * ## Union members
2647
2649
  * - {@link LuaSpacePlatform}
2648
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/SpacePlatformIdentification.html Online documentation}
2650
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/SpacePlatformIdentification.html Online documentation}
2649
2651
  */
2650
2652
  export type SpacePlatformIdentification = LuaSpacePlatform
2651
2653
  /**
@@ -2655,12 +2657,12 @@ declare module "factorio:runtime" {
2655
2657
  * - {@link LuaForce}[]: Array of many forces.
2656
2658
  * - {@link LuaForce}: A single force.
2657
2659
  * @see ForceSetWrite
2658
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ForceSet.html Online documentation}
2660
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ForceSet.html Online documentation}
2659
2661
  */
2660
2662
  export type ForceSet = LuaForce[] | LuaForce
2661
2663
  /**
2662
2664
  * Write form of {@link ForceSet}, where some properties allow additional values as input compared to the read form.
2663
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ForceSet.html Online documentation}
2665
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ForceSet.html Online documentation}
2664
2666
  */
2665
2667
  export type ForceSetWrite = readonly ForceID[] | ForceID
2666
2668
  /**
@@ -2669,7 +2671,7 @@ declare module "factorio:runtime" {
2669
2671
  * ## Union members
2670
2672
  * - {@link LuaDecorativePrototype}: The decorative prototype.
2671
2673
  * - `string`: The prototype name.
2672
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/DecorativeID.html Online documentation}
2674
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/DecorativeID.html Online documentation}
2673
2675
  */
2674
2676
  export type DecorativeID = LuaDecorativePrototype | string
2675
2677
  /**
@@ -2678,7 +2680,7 @@ declare module "factorio:runtime" {
2678
2680
  * ## Union members
2679
2681
  * - {@link LuaAsteroidChunkPrototype}: The asteroid chunk prototype.
2680
2682
  * - `string`: The prototype name.
2681
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/AsteroidChunkID.html Online documentation}
2683
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/AsteroidChunkID.html Online documentation}
2682
2684
  */
2683
2685
  export type AsteroidChunkID = LuaAsteroidChunkPrototype | string
2684
2686
  /**
@@ -2687,13 +2689,13 @@ declare module "factorio:runtime" {
2687
2689
  * ## Union members
2688
2690
  * - {@link LuaSpaceLocationPrototype}: The space location prototype.
2689
2691
  * - `string`: The prototype name.
2690
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/SpaceLocationID.html Online documentation}
2692
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/SpaceLocationID.html Online documentation}
2691
2693
  */
2692
2694
  export type SpaceLocationID = LuaSpaceLocationPrototype | string
2693
2695
  /**
2694
2696
  * A signal filter may be specified in two ways, either as a string which is a virtual signal name or item prototype name or as a table.
2695
2697
  * @see SignalFilterWrite
2696
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/SignalFilter.html Online documentation}
2698
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/SignalFilter.html Online documentation}
2697
2699
  */
2698
2700
  export type SignalFilter =
2699
2701
  | {
@@ -2717,7 +2719,7 @@ declare module "factorio:runtime" {
2717
2719
  | string
2718
2720
  /**
2719
2721
  * Write form of {@link SignalFilter}, where some properties allow additional values as input compared to the read form.
2720
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/SignalFilter.html Online documentation}
2722
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/SignalFilter.html Online documentation}
2721
2723
  */
2722
2724
  export type SignalFilterWrite =
2723
2725
  | {
@@ -2741,7 +2743,7 @@ declare module "factorio:runtime" {
2741
2743
  | string
2742
2744
  /**
2743
2745
  * @see LogisticFilterWrite
2744
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LogisticFilter.html Online documentation}
2746
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/LogisticFilter.html Online documentation}
2745
2747
  */
2746
2748
  export interface LogisticFilter {
2747
2749
  /**
@@ -2767,7 +2769,7 @@ declare module "factorio:runtime" {
2767
2769
  }
2768
2770
  /**
2769
2771
  * Write form of {@link LogisticFilter}, where some properties allow additional values as input compared to the read form.
2770
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LogisticFilter.html Online documentation}
2772
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/LogisticFilter.html Online documentation}
2771
2773
  */
2772
2774
  export interface LogisticFilterWrite {
2773
2775
  /**
@@ -2823,23 +2825,23 @@ declare module "factorio:runtime" {
2823
2825
  * ## Union members
2824
2826
  * - {@link LuaSurfacePropertyPrototype}: The surface property prototype.
2825
2827
  * - `string`: The prototype name.
2826
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/SurfacePropertyID.html Online documentation}
2828
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/SurfacePropertyID.html Online documentation}
2827
2829
  */
2828
2830
  export type SurfacePropertyID = LuaSurfacePropertyPrototype | string
2829
2831
  /**
2830
2832
  * When writing it is possible to give LuaEntity or MapPosition directly. However, reading always returns the full ScriptRenderTargetTable.
2831
2833
  * @see ScriptRenderTargetWrite
2832
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ScriptRenderTarget.html Online documentation}
2834
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ScriptRenderTarget.html Online documentation}
2833
2835
  */
2834
2836
  export type ScriptRenderTarget = LuaEntity | MapPosition | ScriptRenderTargetTable
2835
2837
  /**
2836
2838
  * Write form of {@link ScriptRenderTarget}, where some properties allow additional values as input compared to the read form.
2837
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ScriptRenderTarget.html Online documentation}
2839
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ScriptRenderTarget.html Online documentation}
2838
2840
  */
2839
2841
  export type ScriptRenderTargetWrite = LuaEntity | (MapPosition | MapPositionArray) | ScriptRenderTargetTableWrite
2840
2842
  /**
2841
2843
  * @see ScriptRenderTargetTableWrite
2842
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ScriptRenderTargetTable.html Online documentation}
2844
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ScriptRenderTargetTable.html Online documentation}
2843
2845
  */
2844
2846
  export interface ScriptRenderTargetTable {
2845
2847
  readonly entity?: LuaEntity
@@ -2854,7 +2856,7 @@ declare module "factorio:runtime" {
2854
2856
  }
2855
2857
  /**
2856
2858
  * Write form of {@link ScriptRenderTargetTable}, where some properties allow additional values as input compared to the read form.
2857
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ScriptRenderTargetTable.html Online documentation}
2859
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ScriptRenderTargetTable.html Online documentation}
2858
2860
  */
2859
2861
  export interface ScriptRenderTargetTableWrite {
2860
2862
  readonly entity?: LuaEntity
@@ -2869,7 +2871,7 @@ declare module "factorio:runtime" {
2869
2871
  }
2870
2872
  /**
2871
2873
  * An item filter may be specified in two ways, either as a string which is a quality prototype name or as a table.
2872
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/QualityCondition.html Online documentation}
2874
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/QualityCondition.html Online documentation}
2873
2875
  */
2874
2876
  export type QualityCondition =
2875
2877
  | {
@@ -2883,6 +2885,75 @@ declare module "factorio:runtime" {
2883
2885
  readonly comparator?: ComparatorString
2884
2886
  }
2885
2887
  | string
2888
+ /**
2889
+ * The destination of a cargo pod.
2890
+ * @see CargoDestinationWrite
2891
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/CargoDestination.html Online documentation}
2892
+ */
2893
+ export interface CargoDestination {
2894
+ /**
2895
+ * The type of destination.
2896
+ */
2897
+ readonly type: defines.cargo_destination
2898
+ /**
2899
+ * Only used if `type` is `defines.cargo_destination.station`. Must be entity of type `cargo-landing-pad` or `space-platform-hub`.
2900
+ */
2901
+ readonly station?: LuaEntity
2902
+ /**
2903
+ * Only used if `type` is `defines.cargo_destination.station`. Must be connected to the station and not reserved.
2904
+ */
2905
+ readonly hatch?: LuaCargoHatch
2906
+ /**
2907
+ * Only used if `type` is `defines.cargo_destination.station` or `defines.cargo_destination.surface`. If true, items with {@link import("factorio:prototype").ItemPrototype#rocket_launch_products ItemPrototype::rocket_launch_products} defined will be transformed into their products before starting descent.
2908
+ */
2909
+ readonly transform_launch_products?: boolean
2910
+ /**
2911
+ * Only used if `type` is `defines.cargo_destination.surface`.
2912
+ */
2913
+ readonly surface?: SurfaceIdentification
2914
+ /**
2915
+ * Only used if `type` is `defines.cargo_destination.surface`. Determines the position on the surface to land near. If not provided, cargo pod will switch destination type from surface to station before starting descent if there is a station available, and will land around {0, 0} if there is no station available.
2916
+ */
2917
+ readonly position?: MapPosition
2918
+ /**
2919
+ * Only used if `type` is `defines.cargo_destination.space_platform`. Only used for sending space platform starter packs to a platform that is waiting for a starter pack.
2920
+ */
2921
+ readonly space_platform?: SpacePlatformIdentification
2922
+ }
2923
+ /**
2924
+ * Write form of {@link CargoDestination}, where some properties allow additional values as input compared to the read form.
2925
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/CargoDestination.html Online documentation}
2926
+ */
2927
+ export interface CargoDestinationWrite {
2928
+ /**
2929
+ * The type of destination.
2930
+ */
2931
+ readonly type: defines.cargo_destination
2932
+ /**
2933
+ * Only used if `type` is `defines.cargo_destination.station`. Must be entity of type `cargo-landing-pad` or `space-platform-hub`.
2934
+ */
2935
+ readonly station?: LuaEntity
2936
+ /**
2937
+ * Only used if `type` is `defines.cargo_destination.station`. Must be connected to the station and not reserved.
2938
+ */
2939
+ readonly hatch?: LuaCargoHatch
2940
+ /**
2941
+ * Only used if `type` is `defines.cargo_destination.station` or `defines.cargo_destination.surface`. If true, items with {@link import("factorio:prototype").ItemPrototype#rocket_launch_products ItemPrototype::rocket_launch_products} defined will be transformed into their products before starting descent.
2942
+ */
2943
+ readonly transform_launch_products?: boolean
2944
+ /**
2945
+ * Only used if `type` is `defines.cargo_destination.surface`.
2946
+ */
2947
+ readonly surface?: SurfaceIdentification
2948
+ /**
2949
+ * Only used if `type` is `defines.cargo_destination.surface`. Determines the position on the surface to land near. If not provided, cargo pod will switch destination type from surface to station before starting descent if there is a station available, and will land around {0, 0} if there is no station available.
2950
+ */
2951
+ readonly position?: MapPosition | MapPositionArray
2952
+ /**
2953
+ * Only used if `type` is `defines.cargo_destination.space_platform`. Only used for sending space platform starter packs to a platform that is waiting for a starter pack.
2954
+ */
2955
+ readonly space_platform?: SpacePlatformIdentification
2956
+ }
2886
2957
  /**
2887
2958
  * Event name may be specified in one of four ways.
2888
2959
  *
@@ -2891,7 +2962,7 @@ declare module "factorio:runtime" {
2891
2962
  * - {@link LuaCustomInputPrototype}: Custom input prototype.
2892
2963
  * - {@link defines.events}: Event identifier.
2893
2964
  * - `string`: Name of the event.
2894
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaEventType.html Online documentation}
2965
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/LuaEventType.html Online documentation}
2895
2966
  */
2896
2967
  export type LuaEventType = LuaCustomEventPrototype | LuaCustomInputPrototype | defines.events | string | EventId<any>
2897
2968
  /**
@@ -2899,13 +2970,13 @@ declare module "factorio:runtime" {
2899
2970
  * - `"center-to-center"`
2900
2971
  * - `"bounding-box-to-bounding-box"`
2901
2972
  * - `"center-to-bounding-box"`
2902
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/RangeMode.html Online documentation}
2973
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/RangeMode.html Online documentation}
2903
2974
  */
2904
2975
  export type RangeMode = "center-to-center" | "bounding-box-to-bounding-box" | "center-to-bounding-box"
2905
2976
  /**
2906
2977
  * The representation of an entity inside of a blueprint. It has at least these fields, but can contain additional ones depending on the kind of entity.
2907
2978
  * @see BlueprintEntityWrite
2908
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BlueprintEntity.html Online documentation}
2979
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/BlueprintEntity.html Online documentation}
2909
2980
  */
2910
2981
  export interface BlueprintEntity {
2911
2982
  /**
@@ -3119,7 +3190,7 @@ declare module "factorio:runtime" {
3119
3190
  }
3120
3191
  /**
3121
3192
  * Write form of {@link BlueprintEntity}, where some properties allow additional values as input compared to the read form.
3122
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BlueprintEntity.html Online documentation}
3193
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/BlueprintEntity.html Online documentation}
3123
3194
  */
3124
3195
  export interface BlueprintEntityWrite {
3125
3196
  /**
@@ -3340,7 +3411,7 @@ declare module "factorio:runtime" {
3340
3411
  }
3341
3412
  /**
3342
3413
  * @see BlueprintEquipmentWrite
3343
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BlueprintEquipment.html Online documentation}
3414
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/BlueprintEquipment.html Online documentation}
3344
3415
  */
3345
3416
  export interface BlueprintEquipment {
3346
3417
  readonly equipment: ItemIDAndQualityIDPair
@@ -3348,7 +3419,7 @@ declare module "factorio:runtime" {
3348
3419
  }
3349
3420
  /**
3350
3421
  * Write form of {@link BlueprintEquipment}, where some properties allow additional values as input compared to the read form.
3351
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BlueprintEquipment.html Online documentation}
3422
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/BlueprintEquipment.html Online documentation}
3352
3423
  */
3353
3424
  export interface BlueprintEquipmentWrite {
3354
3425
  readonly equipment: ItemIDAndQualityIDPairWrite
@@ -3356,7 +3427,7 @@ declare module "factorio:runtime" {
3356
3427
  }
3357
3428
  /**
3358
3429
  * @see BlueprintInventoryWrite
3359
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BlueprintInventory.html Online documentation}
3430
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/BlueprintInventory.html Online documentation}
3360
3431
  */
3361
3432
  export interface BlueprintInventory {
3362
3433
  readonly filters?: BlueprintLogisticFilter[]
@@ -3367,7 +3438,7 @@ declare module "factorio:runtime" {
3367
3438
  }
3368
3439
  /**
3369
3440
  * Write form of {@link BlueprintInventory}, where some properties allow additional values as input compared to the read form.
3370
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BlueprintInventory.html Online documentation}
3441
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/BlueprintInventory.html Online documentation}
3371
3442
  */
3372
3443
  export interface BlueprintInventoryWrite {
3373
3444
  readonly filters?: readonly BlueprintLogisticFilterWrite[]
@@ -3388,7 +3459,7 @@ declare module "factorio:runtime" {
3388
3459
  }
3389
3460
  /**
3390
3461
  * @see BlueprintControlBehaviorWrite
3391
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BlueprintControlBehavior.html Online documentation}
3462
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/BlueprintControlBehavior.html Online documentation}
3392
3463
  */
3393
3464
  export interface BlueprintControlBehavior {
3394
3465
  /**
@@ -3641,7 +3712,7 @@ declare module "factorio:runtime" {
3641
3712
  }
3642
3713
  /**
3643
3714
  * Write form of {@link BlueprintControlBehavior}, where some properties allow additional values as input compared to the read form.
3644
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BlueprintControlBehavior.html Online documentation}
3715
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/BlueprintControlBehavior.html Online documentation}
3645
3716
  */
3646
3717
  export interface BlueprintControlBehaviorWrite {
3647
3718
  /**
@@ -3922,7 +3993,7 @@ declare module "factorio:runtime" {
3922
3993
  * "2500 * (L - 3)"
3923
3994
  * @example
3924
3995
  * "(4e5 * (abs(speed) + 10.5)) / weight"
3925
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/MathExpression.html Online documentation}
3996
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/MathExpression.html Online documentation}
3926
3997
  */
3927
3998
  export type MathExpression = string
3928
3999
  /**
@@ -3944,7 +4015,7 @@ declare module "factorio:runtime" {
3944
4015
  * -- What a custom recipe would look like that had a probability of 0.5 to return a
3945
4016
  * -- minimum amount of 1 and a maximum amount of 5
3946
4017
  * {{type="item", name="custom-item", probability=0.5, amount_min=1, amount_max=5}}
3947
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/Product.html Online documentation}
4018
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/Product.html Online documentation}
3948
4019
  */
3949
4020
  export type Product = ItemProduct | FluidProduct | ResearchProgressProduct
3950
4021
  /**
@@ -3955,7 +4026,7 @@ declare module "factorio:runtime" {
3955
4026
  * -- What a custom recipe would look like that had a probability of 0.5 to return a
3956
4027
  * -- minimum amount of 1 and a maximum amount of 5
3957
4028
  * {{type="item", name="custom-item", probability=0.5, amount_min=1, amount_max=5}}
3958
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ItemProduct.html Online documentation}
4029
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ItemProduct.html Online documentation}
3959
4030
  */
3960
4031
  export interface ItemProduct {
3961
4032
  readonly type: "item"
@@ -3999,7 +4070,7 @@ declare module "factorio:runtime" {
3999
4070
  * {{type="fluid", name="heavy-oil", amount=1},
4000
4071
  * {type="fluid", name="light-oil", amount=4.5},
4001
4072
  * {type="fluid", name="petroleum-gas", amount=5.5}}
4002
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/FluidProduct.html Online documentation}
4073
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/FluidProduct.html Online documentation}
4003
4074
  */
4004
4075
  export interface FluidProduct {
4005
4076
  readonly type: "fluid"
@@ -4047,7 +4118,7 @@ declare module "factorio:runtime" {
4047
4118
  }
4048
4119
  /**
4049
4120
  * @see LogisticSectionsWrite
4050
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LogisticSections.html Online documentation}
4121
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/LogisticSections.html Online documentation}
4051
4122
  */
4052
4123
  export interface LogisticSections {
4053
4124
  readonly sections?: LogisticSection[]
@@ -4058,7 +4129,7 @@ declare module "factorio:runtime" {
4058
4129
  }
4059
4130
  /**
4060
4131
  * Write form of {@link LogisticSections}, where some properties allow additional values as input compared to the read form.
4061
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LogisticSections.html Online documentation}
4132
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/LogisticSections.html Online documentation}
4062
4133
  */
4063
4134
  export interface LogisticSectionsWrite {
4064
4135
  readonly sections?: readonly LogisticSectionWrite[]
@@ -4094,7 +4165,7 @@ declare module "factorio:runtime" {
4094
4165
  }
4095
4166
  /**
4096
4167
  * @see LogisticSectionWrite
4097
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LogisticSection.html Online documentation}
4168
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/LogisticSection.html Online documentation}
4098
4169
  */
4099
4170
  export interface LogisticSection {
4100
4171
  readonly index: uint8
@@ -4111,7 +4182,7 @@ declare module "factorio:runtime" {
4111
4182
  }
4112
4183
  /**
4113
4184
  * Write form of {@link LogisticSection}, where some properties allow additional values as input compared to the read form.
4114
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LogisticSection.html Online documentation}
4185
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/LogisticSection.html Online documentation}
4115
4186
  */
4116
4187
  export interface LogisticSectionWrite {
4117
4188
  readonly index: uint8
@@ -4128,7 +4199,7 @@ declare module "factorio:runtime" {
4128
4199
  }
4129
4200
  /**
4130
4201
  * @see BlueprintLogisticFilterWrite
4131
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BlueprintLogisticFilter.html Online documentation}
4202
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/BlueprintLogisticFilter.html Online documentation}
4132
4203
  */
4133
4204
  export interface BlueprintLogisticFilter {
4134
4205
  readonly index: LogisticFilterIndex
@@ -4158,7 +4229,7 @@ declare module "factorio:runtime" {
4158
4229
  }
4159
4230
  /**
4160
4231
  * Write form of {@link BlueprintLogisticFilter}, where some properties allow additional values as input compared to the read form.
4161
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BlueprintLogisticFilter.html Online documentation}
4232
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/BlueprintLogisticFilter.html Online documentation}
4162
4233
  */
4163
4234
  export interface BlueprintLogisticFilterWrite {
4164
4235
  readonly index: LogisticFilterIndex
@@ -4188,7 +4259,7 @@ declare module "factorio:runtime" {
4188
4259
  }
4189
4260
  /**
4190
4261
  * Specifies how probability and richness are calculated when placing something on the map.
4191
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/AutoplaceSpecification.html Online documentation}
4262
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/AutoplaceSpecification.html Online documentation}
4192
4263
  */
4193
4264
  export interface AutoplaceSpecification {
4194
4265
  /**
@@ -4205,7 +4276,7 @@ declare module "factorio:runtime" {
4205
4276
  }
4206
4277
  /**
4207
4278
  * @see CliffPlacementSettingsWrite
4208
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/CliffPlacementSettings.html Online documentation}
4279
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/CliffPlacementSettings.html Online documentation}
4209
4280
  */
4210
4281
  export interface CliffPlacementSettings {
4211
4282
  /**
@@ -4235,7 +4306,7 @@ declare module "factorio:runtime" {
4235
4306
  }
4236
4307
  /**
4237
4308
  * Write form of {@link CliffPlacementSettings}, where some properties allow additional values as input compared to the read form.
4238
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/CliffPlacementSettings.html Online documentation}
4309
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/CliffPlacementSettings.html Online documentation}
4239
4310
  */
4240
4311
  export interface CliffPlacementSettingsWrite {
4241
4312
  /**
@@ -4265,7 +4336,7 @@ declare module "factorio:runtime" {
4265
4336
  }
4266
4337
  /**
4267
4338
  * @see AutoplaceSettingsWrite
4268
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/AutoplaceSettings.html Online documentation}
4339
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/AutoplaceSettings.html Online documentation}
4269
4340
  */
4270
4341
  export interface AutoplaceSettings {
4271
4342
  /**
@@ -4279,7 +4350,7 @@ declare module "factorio:runtime" {
4279
4350
  }
4280
4351
  /**
4281
4352
  * Write form of {@link AutoplaceSettings}, where some properties allow additional values as input compared to the read form.
4282
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/AutoplaceSettings.html Online documentation}
4353
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/AutoplaceSettings.html Online documentation}
4283
4354
  */
4284
4355
  export interface AutoplaceSettingsWrite {
4285
4356
  /**
@@ -4314,7 +4385,7 @@ declare module "factorio:runtime" {
4314
4385
  * surface.map_gen_settings = mgs
4315
4386
  * -- This does not require a NamedNoiseExpression to be defined, since literal numbers (and strings naming literal
4316
4387
  * -- numbers, e.g. `"123"`) are understood to stand for constant value expressions.
4317
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/MapGenSettings.html Online documentation}
4388
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/MapGenSettings.html Online documentation}
4318
4389
  */
4319
4390
  export interface MapGenSettings {
4320
4391
  /**
@@ -4369,7 +4440,7 @@ declare module "factorio:runtime" {
4369
4440
  }
4370
4441
  /**
4371
4442
  * Write form of {@link MapGenSettings}, where some properties allow additional values as input compared to the read form.
4372
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/MapGenSettings.html Online documentation}
4443
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/MapGenSettings.html Online documentation}
4373
4444
  */
4374
4445
  export interface MapGenSettingsWrite {
4375
4446
  /**
@@ -4428,7 +4499,7 @@ declare module "factorio:runtime" {
4428
4499
  }
4429
4500
  /**
4430
4501
  * These values are for the time frame of one second (60 ticks).
4431
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/PollutionMapSettings.html Online documentation}
4502
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/PollutionMapSettings.html Online documentation}
4432
4503
  */
4433
4504
  export interface PollutionMapSettings {
4434
4505
  /**
@@ -4482,7 +4553,7 @@ declare module "factorio:runtime" {
4482
4553
  }
4483
4554
  /**
4484
4555
  * These values represent a percentual increase in evolution. This means a value of `0.1` would increase evolution by 10%.
4485
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/EnemyEvolutionMapSettings.html Online documentation}
4556
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/EnemyEvolutionMapSettings.html Online documentation}
4486
4557
  */
4487
4558
  export interface EnemyEvolutionMapSettings {
4488
4559
  /**
@@ -4520,7 +4591,7 @@ declare module "factorio:runtime" {
4520
4591
  * * neighbouring_base_chunk_coefficient^distance(chunk, neighbour)
4521
4592
  * score(chunk) = 1 / (1 + player + base)
4522
4593
  * ```
4523
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/EnemyExpansionMapSettings.html Online documentation}
4594
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/EnemyExpansionMapSettings.html Online documentation}
4524
4595
  */
4525
4596
  export interface EnemyExpansionMapSettings {
4526
4597
  /**
@@ -4779,17 +4850,17 @@ declare module "factorio:runtime" {
4779
4850
  }
4780
4851
  /**
4781
4852
  * Technology difficulty settings. Updating any of the attributes will immediately take effect in the game engine.
4782
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/DifficultySettings.html Online documentation}
4853
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/DifficultySettings.html Online documentation}
4783
4854
  */
4784
4855
  export interface DifficultySettings {
4785
4856
  /**
4786
4857
  * A value in range [0.001, 1000].
4787
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/DifficultySettings.technology_price_multiplier.html Online documentation}
4858
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/DifficultySettings.technology_price_multiplier.html Online documentation}
4788
4859
  */
4789
4860
  technology_price_multiplier: double
4790
4861
  /**
4791
4862
  * A value in range [0.01, 100].
4792
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/DifficultySettings.spoil_time_modifier.html Online documentation}
4863
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/DifficultySettings.spoil_time_modifier.html Online documentation}
4793
4864
  */
4794
4865
  spoil_time_modifier: double
4795
4866
  }
@@ -4805,7 +4876,7 @@ declare module "factorio:runtime" {
4805
4876
  }
4806
4877
  /**
4807
4878
  * A standard table containing all {@link MapSettings} attributes plus an additional table that contains all {@link DifficultySettings} properties.
4808
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/MapAndDifficultySettings.html Online documentation}
4879
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/MapAndDifficultySettings.html Online documentation}
4809
4880
  */
4810
4881
  export interface MapAndDifficultySettings {
4811
4882
  readonly pollution: PollutionMapSettings
@@ -4826,7 +4897,7 @@ declare module "factorio:runtime" {
4826
4897
  * @example
4827
4898
  * -- Increase the number of short paths the pathfinder can cache.
4828
4899
  * game.map_settings.path_finder.short_cache_size = 15
4829
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/MapSettings.html Online documentation}
4900
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/MapSettings.html Online documentation}
4830
4901
  */
4831
4902
  export interface MapSettings {
4832
4903
  pollution: PollutionMapSettings
@@ -4838,13 +4909,13 @@ declare module "factorio:runtime" {
4838
4909
  asteroids: AsteroidMapSettings
4839
4910
  /**
4840
4911
  * If a behavior fails this many times, the enemy (or enemy group) is destroyed. This solves biters getting stuck within their own base.
4841
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/MapSettings.max_failed_behavior_count.html Online documentation}
4912
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/MapSettings.max_failed_behavior_count.html Online documentation}
4842
4913
  */
4843
4914
  max_failed_behavior_count: uint
4844
4915
  }
4845
4916
  /**
4846
4917
  * @see BlueprintScheduleRecordWrite
4847
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BlueprintScheduleRecord.html Online documentation}
4918
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/BlueprintScheduleRecord.html Online documentation}
4848
4919
  */
4849
4920
  export interface BlueprintScheduleRecord {
4850
4921
  /**
@@ -4861,7 +4932,7 @@ declare module "factorio:runtime" {
4861
4932
  }
4862
4933
  /**
4863
4934
  * Write form of {@link BlueprintScheduleRecord}, where some properties allow additional values as input compared to the read form.
4864
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BlueprintScheduleRecord.html Online documentation}
4935
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/BlueprintScheduleRecord.html Online documentation}
4865
4936
  */
4866
4937
  export interface BlueprintScheduleRecordWrite {
4867
4938
  /**
@@ -4878,7 +4949,7 @@ declare module "factorio:runtime" {
4878
4949
  }
4879
4950
  /**
4880
4951
  * @see BlueprintScheduleInterruptWrite
4881
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BlueprintScheduleInterrupt.html Online documentation}
4952
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/BlueprintScheduleInterrupt.html Online documentation}
4882
4953
  */
4883
4954
  export interface BlueprintScheduleInterrupt {
4884
4955
  readonly name?: string
@@ -4888,7 +4959,7 @@ declare module "factorio:runtime" {
4888
4959
  }
4889
4960
  /**
4890
4961
  * Write form of {@link BlueprintScheduleInterrupt}, where some properties allow additional values as input compared to the read form.
4891
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BlueprintScheduleInterrupt.html Online documentation}
4962
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/BlueprintScheduleInterrupt.html Online documentation}
4892
4963
  */
4893
4964
  export interface BlueprintScheduleInterruptWrite {
4894
4965
  readonly name?: string
@@ -4898,7 +4969,7 @@ declare module "factorio:runtime" {
4898
4969
  }
4899
4970
  /**
4900
4971
  * @see BlueprintScheduleWrite
4901
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BlueprintSchedule.html Online documentation}
4972
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/BlueprintSchedule.html Online documentation}
4902
4973
  */
4903
4974
  export interface BlueprintSchedule {
4904
4975
  readonly records?: BlueprintScheduleRecord[]
@@ -4907,7 +4978,7 @@ declare module "factorio:runtime" {
4907
4978
  }
4908
4979
  /**
4909
4980
  * Write form of {@link BlueprintSchedule}, where some properties allow additional values as input compared to the read form.
4910
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BlueprintSchedule.html Online documentation}
4981
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/BlueprintSchedule.html Online documentation}
4911
4982
  */
4912
4983
  export interface BlueprintScheduleWrite {
4913
4984
  readonly records?: readonly BlueprintScheduleRecordWrite[]
@@ -4916,7 +4987,7 @@ declare module "factorio:runtime" {
4916
4987
  }
4917
4988
  /**
4918
4989
  * @see WaitConditionWrite
4919
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/WaitCondition.html Online documentation}
4990
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/WaitCondition.html Online documentation}
4920
4991
  */
4921
4992
  export interface WaitCondition {
4922
4993
  readonly type: WaitConditionType
@@ -4947,7 +5018,7 @@ declare module "factorio:runtime" {
4947
5018
  }
4948
5019
  /**
4949
5020
  * Write form of {@link WaitCondition}, where some properties allow additional values as input compared to the read form.
4950
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/WaitCondition.html Online documentation}
5021
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/WaitCondition.html Online documentation}
4951
5022
  */
4952
5023
  export interface WaitConditionWrite {
4953
5024
  readonly type: WaitConditionType
@@ -5006,7 +5077,7 @@ declare module "factorio:runtime" {
5006
5077
  * - `"at_station"`
5007
5078
  * - `"not_at_station"`
5008
5079
  * - `"damage_taken"`
5009
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/WaitConditionType.html Online documentation}
5080
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/WaitConditionType.html Online documentation}
5010
5081
  */
5011
5082
  export type WaitConditionType =
5012
5083
  | "time"
@@ -5048,7 +5119,7 @@ declare module "factorio:runtime" {
5048
5119
  * - `"blueprint-snap-rectangle"`: Green by default.
5049
5120
  * - `"spidertron-remote-selected"`
5050
5121
  * - `"spidertron-remote-to-be-selected"`
5051
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/CursorBoxRenderType.html Online documentation}
5122
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/CursorBoxRenderType.html Online documentation}
5052
5123
  */
5053
5124
  export type CursorBoxRenderType =
5054
5125
  | "entity"
@@ -5064,7 +5135,7 @@ declare module "factorio:runtime" {
5064
5135
  | "spidertron-remote-to-be-selected"
5065
5136
  /**
5066
5137
  * What is shown in the map view. If a field is not given, that setting will not be changed.
5067
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/MapViewSettings.html Online documentation}
5138
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/MapViewSettings.html Online documentation}
5068
5139
  */
5069
5140
  export interface MapViewSettings {
5070
5141
  readonly "show-logistic-network"?: boolean
@@ -5157,7 +5228,7 @@ declare module "factorio:runtime" {
5157
5228
  * - `"collision-selection-box"`: 189
5158
5229
  * - `"arrow"`: 190
5159
5230
  * - `"cursor"`: 226
5160
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/RenderLayer.html Online documentation}
5231
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/RenderLayer.html Online documentation}
5161
5232
  */
5162
5233
  export type RenderLayer =
5163
5234
  | `${bigint}`
@@ -5267,7 +5338,7 @@ declare module "factorio:runtime" {
5267
5338
  * - `"entity-with-quality"`
5268
5339
  * - `"recipe-with-quality"`
5269
5340
  * - `"equipment-with-quality"`
5270
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ElemType.html Online documentation}
5341
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ElemType.html Online documentation}
5271
5342
  */
5272
5343
  export type ElemType =
5273
5344
  | "achievement"
@@ -5294,7 +5365,7 @@ declare module "factorio:runtime" {
5294
5365
  * - `"left"`
5295
5366
  * - `"right"`
5296
5367
  * - `"none"`
5297
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/SwitchState.html Online documentation}
5368
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/SwitchState.html Online documentation}
5298
5369
  */
5299
5370
  export type SwitchState = "left" | "right" | "none"
5300
5371
  export interface ElemID {
@@ -5335,7 +5406,7 @@ declare module "factorio:runtime" {
5335
5406
  * - `"destroy-decoratives"`
5336
5407
  * - `"camera-effect"`
5337
5408
  * - `"activate-impact"`
5338
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/TriggerEffectItemType.html Online documentation}
5409
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/TriggerEffectItemType.html Online documentation}
5339
5410
  */
5340
5411
  export type TriggerEffectItemType =
5341
5412
  | "damage"
@@ -5372,7 +5443,7 @@ declare module "factorio:runtime" {
5372
5443
  }
5373
5444
  /**
5374
5445
  * A set of trigger target masks.
5375
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/TriggerTargetMask.html Online documentation}
5446
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/TriggerTargetMask.html Online documentation}
5376
5447
  */
5377
5448
  export type TriggerTargetMask = Record<string, true>
5378
5449
  export interface TriggerItem {
@@ -5439,7 +5510,7 @@ declare module "factorio:runtime" {
5439
5510
  * -- If 'entity-description.furnace' exists, it is concatenated with "\n" and returned. Otherwise, if 'item-description.furnace'
5440
5511
  * -- exists, it is returned as-is. Otherwise, "optional fallback" is returned. If this value wasn't specified, the
5441
5512
  * -- translation result would be "Unknown key: 'item-description.furnace'".
5442
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LocalisedString.html Online documentation}
5513
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/LocalisedString.html Online documentation}
5443
5514
  */
5444
5515
  export type LocalisedString = string | number | boolean | LuaObject | nil | [string, ...LocalisedString[]]
5445
5516
  export interface DisplayResolution {
@@ -5450,7 +5521,7 @@ declare module "factorio:runtime" {
5450
5521
  * The smooth orientation. It is a {@link float} in the range `[0, 1)` that covers a full circle, starting at the top and going clockwise. This means a value of `0` indicates "north", a value of `0.5` indicates "south".
5451
5522
  *
5452
5523
  * For example then, a value of `0.625` would indicate "south-west", and a value of `0.875` would indicate "north-west".
5453
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/RealOrientation.html Online documentation}
5524
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/RealOrientation.html Online documentation}
5454
5525
  */
5455
5526
  export type RealOrientation = float
5456
5527
  /**
@@ -5465,7 +5536,7 @@ declare module "factorio:runtime" {
5465
5536
  * @example
5466
5537
  * -- Shorthand
5467
5538
  * {1.625, 2.375}
5468
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/MapPosition.html Online documentation}
5539
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/MapPosition.html Online documentation}
5469
5540
  */
5470
5541
  export interface MapPosition {
5471
5542
  readonly x: double
@@ -5474,13 +5545,13 @@ declare module "factorio:runtime" {
5474
5545
  /**
5475
5546
  * Array form of {@link MapPosition}.
5476
5547
  * @see MapPosition
5477
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/MapPosition.html Online documentation}
5548
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/MapPosition.html Online documentation}
5478
5549
  */
5479
5550
  export type MapPositionArray = readonly [double, double]
5480
5551
  /**
5481
5552
  * Coordinates of a chunk in a {@link LuaSurface} where each integer `x`/`y` represents a different chunk. This uses the same format as {@link MapPosition}, meaning it can be specified either with or without explicit keys. A {@link MapPosition} can be translated to a ChunkPosition by dividing the `x`/`y` values by 32.
5482
5553
  * @see ChunkPositionArray
5483
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ChunkPosition.html Online documentation}
5554
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ChunkPosition.html Online documentation}
5484
5555
  */
5485
5556
  export interface ChunkPosition {
5486
5557
  readonly x: int
@@ -5489,13 +5560,13 @@ declare module "factorio:runtime" {
5489
5560
  /**
5490
5561
  * Array form of {@link ChunkPosition}.
5491
5562
  * @see ChunkPosition
5492
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ChunkPosition.html Online documentation}
5563
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ChunkPosition.html Online documentation}
5493
5564
  */
5494
5565
  export type ChunkPositionArray = readonly [int, int]
5495
5566
  /**
5496
5567
  * Coordinates of a tile on a {@link LuaSurface} where each integer `x`/`y` represents a different tile. This uses the same format as {@link MapPosition}, except it rounds any non-integer `x`/`y` down to whole numbers. It can be specified either with or without explicit keys.
5497
5568
  * @see TilePositionArray
5498
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/TilePosition.html Online documentation}
5569
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/TilePosition.html Online documentation}
5499
5570
  */
5500
5571
  export interface TilePosition {
5501
5572
  readonly x: int
@@ -5504,7 +5575,7 @@ declare module "factorio:runtime" {
5504
5575
  /**
5505
5576
  * Array form of {@link TilePosition}.
5506
5577
  * @see TilePosition
5507
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/TilePosition.html Online documentation}
5578
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/TilePosition.html Online documentation}
5508
5579
  */
5509
5580
  export type TilePositionArray = readonly [int, int]
5510
5581
  /**
@@ -5517,7 +5588,7 @@ declare module "factorio:runtime" {
5517
5588
  * @example
5518
5589
  * -- Shorthand
5519
5590
  * {1, 2}
5520
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/EquipmentPosition.html Online documentation}
5591
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/EquipmentPosition.html Online documentation}
5521
5592
  */
5522
5593
  export interface EquipmentPosition {
5523
5594
  readonly x: int
@@ -5526,13 +5597,13 @@ declare module "factorio:runtime" {
5526
5597
  /**
5527
5598
  * Array form of {@link EquipmentPosition}.
5528
5599
  * @see EquipmentPosition
5529
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/EquipmentPosition.html Online documentation}
5600
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/EquipmentPosition.html Online documentation}
5530
5601
  */
5531
5602
  export type EquipmentPositionArray = readonly [int, int]
5532
5603
  /**
5533
5604
  * Screen coordinates of a GUI element in a {@link LuaGui}. This uses the same format as {@link TilePosition}, meaning it can be specified either with or without explicit keys.
5534
5605
  * @see GuiLocationArray
5535
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GuiLocation.html Online documentation}
5606
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/GuiLocation.html Online documentation}
5536
5607
  */
5537
5608
  export interface GuiLocation {
5538
5609
  readonly x: int
@@ -5541,12 +5612,12 @@ declare module "factorio:runtime" {
5541
5612
  /**
5542
5613
  * Array form of {@link GuiLocation}.
5543
5614
  * @see GuiLocation
5544
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GuiLocation.html Online documentation}
5615
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/GuiLocation.html Online documentation}
5545
5616
  */
5546
5617
  export type GuiLocationArray = readonly [int, int]
5547
5618
  /**
5548
5619
  * A {@link ChunkPosition} with an added bounding box for the area of the chunk.
5549
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ChunkPositionAndArea.html Online documentation}
5620
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ChunkPositionAndArea.html Online documentation}
5550
5621
  */
5551
5622
  export interface ChunkPositionAndArea {
5552
5623
  readonly x: int
@@ -5555,7 +5626,7 @@ declare module "factorio:runtime" {
5555
5626
  }
5556
5627
  /**
5557
5628
  * A table used to define a manual shape for a piece of equipment.
5558
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/EquipmentPoint.html Online documentation}
5629
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/EquipmentPoint.html Online documentation}
5559
5630
  */
5560
5631
  export interface EquipmentPoint {
5561
5632
  readonly x: uint
@@ -5591,7 +5662,7 @@ declare module "factorio:runtime" {
5591
5662
  * Note that the API returns tags as a simple table, meaning any modifications to it will not propagate back to the game. Thus, to modify a set of tags, the whole table needs to be written back to the respective property.
5592
5663
  * @example
5593
5664
  * {a = 1, b = true, c = "three", d = {e = "f"}}
5594
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/Tags.html Online documentation}
5665
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/Tags.html Online documentation}
5595
5666
  */
5596
5667
  export type Tags = Record<string, AnyBasic>
5597
5668
  export interface SurfaceCondition {
@@ -5625,13 +5696,13 @@ declare module "factorio:runtime" {
5625
5696
  * A vector is a two-element array or dictionary containing the `x` and `y` components. The game will always provide the array format. Positive x goes east, positive y goes south.
5626
5697
  * @example
5627
5698
  * right = {1.0, 0.0}
5628
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/Vector.html Online documentation}
5699
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/Vector.html Online documentation}
5629
5700
  */
5630
5701
  export type Vector = MapPositionArray
5631
5702
  /**
5632
5703
  * An area defined using the map editor.
5633
5704
  * @see ScriptAreaWrite
5634
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ScriptArea.html Online documentation}
5705
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ScriptArea.html Online documentation}
5635
5706
  */
5636
5707
  export interface ScriptArea {
5637
5708
  readonly area: BoundingBox
@@ -5641,7 +5712,7 @@ declare module "factorio:runtime" {
5641
5712
  }
5642
5713
  /**
5643
5714
  * Write form of {@link ScriptArea}, where some properties allow additional values as input compared to the read form.
5644
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ScriptArea.html Online documentation}
5715
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ScriptArea.html Online documentation}
5645
5716
  */
5646
5717
  export interface ScriptAreaWrite {
5647
5718
  readonly area: BoundingBoxWrite | BoundingBoxArray
@@ -5652,7 +5723,7 @@ declare module "factorio:runtime" {
5652
5723
  /**
5653
5724
  * A position defined using the map editor.
5654
5725
  * @see ScriptPositionWrite
5655
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ScriptPosition.html Online documentation}
5726
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ScriptPosition.html Online documentation}
5656
5727
  */
5657
5728
  export interface ScriptPosition {
5658
5729
  readonly position: MapPosition
@@ -5662,7 +5733,7 @@ declare module "factorio:runtime" {
5662
5733
  }
5663
5734
  /**
5664
5735
  * Write form of {@link ScriptPosition}, where some properties allow additional values as input compared to the read form.
5665
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ScriptPosition.html Online documentation}
5736
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ScriptPosition.html Online documentation}
5666
5737
  */
5667
5738
  export interface ScriptPositionWrite {
5668
5739
  readonly position: MapPosition | MapPositionArray
@@ -5680,7 +5751,7 @@ declare module "factorio:runtime" {
5680
5751
  * red2 = {r = 0.5, a = 0.5} -- Same color as red1
5681
5752
  * black = {} -- All channels omitted: black
5682
5753
  * red1_short = {0.5, 0, 0, 0.5} -- Same color as red1 in short-hand notation
5683
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/Color.html Online documentation}
5754
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/Color.html Online documentation}
5684
5755
  */
5685
5756
  export interface Color {
5686
5757
  readonly r?: float
@@ -5691,13 +5762,13 @@ declare module "factorio:runtime" {
5691
5762
  /**
5692
5763
  * Array form of {@link Color}.
5693
5764
  * @see Color
5694
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/Color.html Online documentation}
5765
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/Color.html Online documentation}
5695
5766
  */
5696
5767
  export type ColorArray = readonly [r: double, g: double, b: double, a?: double]
5697
5768
  /**
5698
5769
  * Same as {@link Color}, but red, green, blue and alpha values can be any floating point number, without any special handling of the range [1, 255].
5699
5770
  * @see ColorModifierArray
5700
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ColorModifier.html Online documentation}
5771
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ColorModifier.html Online documentation}
5701
5772
  */
5702
5773
  export interface ColorModifier {
5703
5774
  readonly r?: float
@@ -5708,7 +5779,7 @@ declare module "factorio:runtime" {
5708
5779
  /**
5709
5780
  * Array form of {@link ColorModifier}.
5710
5781
  * @see ColorModifier
5711
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ColorModifier.html Online documentation}
5782
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ColorModifier.html Online documentation}
5712
5783
  */
5713
5784
  export type ColorModifierArray = readonly [r: double, g: double, b: double, a?: double]
5714
5785
  export interface CraftingQueueItem {
@@ -5851,7 +5922,7 @@ declare module "factorio:runtime" {
5851
5922
  }
5852
5923
  /**
5853
5924
  * @see AsteroidChunkWrite
5854
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/AsteroidChunk.html Online documentation}
5925
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/AsteroidChunk.html Online documentation}
5855
5926
  */
5856
5927
  export interface AsteroidChunk {
5857
5928
  /**
@@ -5863,7 +5934,7 @@ declare module "factorio:runtime" {
5863
5934
  }
5864
5935
  /**
5865
5936
  * Write form of {@link AsteroidChunk}, where some properties allow additional values as input compared to the read form.
5866
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/AsteroidChunk.html Online documentation}
5937
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/AsteroidChunk.html Online documentation}
5867
5938
  */
5868
5939
  export interface AsteroidChunkWrite {
5869
5940
  /**
@@ -5885,7 +5956,7 @@ declare module "factorio:runtime" {
5885
5956
  }
5886
5957
  /**
5887
5958
  * Either `icon`, `text`, or both must be provided.
5888
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ChartTagSpec.html Online documentation}
5959
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ChartTagSpec.html Online documentation}
5889
5960
  */
5890
5961
  export interface ChartTagSpec {
5891
5962
  readonly position: MapPosition | MapPositionArray
@@ -5895,93 +5966,93 @@ declare module "factorio:runtime" {
5895
5966
  }
5896
5967
  /**
5897
5968
  * Parameters that affect the look and control of the game. Updating any of the member attributes here will immediately take effect in the game engine.
5898
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GameViewSettings.html Online documentation}
5969
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/GameViewSettings.html Online documentation}
5899
5970
  */
5900
5971
  export interface GameViewSettings {
5901
5972
  /**
5902
5973
  * Show the controller GUI elements. This includes the toolbar, the selected tool slot, the armour slot, and the gun and ammunition slots.
5903
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GameViewSettings.show_controller_gui.html Online documentation}
5974
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/GameViewSettings.show_controller_gui.html Online documentation}
5904
5975
  */
5905
5976
  show_controller_gui: boolean
5906
5977
  /**
5907
5978
  * Show the chart in the upper right-hand corner of the screen.
5908
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GameViewSettings.show_minimap.html Online documentation}
5979
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/GameViewSettings.show_minimap.html Online documentation}
5909
5980
  */
5910
5981
  show_minimap: boolean
5911
5982
  /**
5912
5983
  * Show research progress and name in the upper right-hand corner of the screen.
5913
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GameViewSettings.show_research_info.html Online documentation}
5984
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/GameViewSettings.show_research_info.html Online documentation}
5914
5985
  */
5915
5986
  show_research_info: boolean
5916
5987
  /**
5917
5988
  * Show overlay icons on entities. Also known as "alt-mode".
5918
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GameViewSettings.show_entity_info.html Online documentation}
5989
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/GameViewSettings.show_entity_info.html Online documentation}
5919
5990
  */
5920
5991
  show_entity_info: boolean
5921
5992
  /**
5922
5993
  * Show the flashing alert icons next to the player's toolbar.
5923
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GameViewSettings.show_alert_gui.html Online documentation}
5994
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/GameViewSettings.show_alert_gui.html Online documentation}
5924
5995
  */
5925
5996
  show_alert_gui: boolean
5926
5997
  /**
5927
5998
  * When `true` (the default), mousing over an entity will select it. Otherwise, moving the mouse won't update entity selection.
5928
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GameViewSettings.update_entity_selection.html Online documentation}
5999
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/GameViewSettings.update_entity_selection.html Online documentation}
5929
6000
  */
5930
6001
  update_entity_selection: boolean
5931
6002
  /**
5932
6003
  * When `true` (`false` is default), the rails will always show the rail block visualisation.
5933
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GameViewSettings.show_rail_block_visualisation.html Online documentation}
6004
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/GameViewSettings.show_rail_block_visualisation.html Online documentation}
5934
6005
  */
5935
6006
  show_rail_block_visualisation: boolean
5936
6007
  /**
5937
6008
  * Shows or hides the buttons row.
5938
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GameViewSettings.show_side_menu.html Online documentation}
6009
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/GameViewSettings.show_side_menu.html Online documentation}
5939
6010
  */
5940
6011
  show_side_menu: boolean
5941
6012
  /**
5942
6013
  * Shows or hides the view options when map is opened.
5943
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GameViewSettings.show_map_view_options.html Online documentation}
6014
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/GameViewSettings.show_map_view_options.html Online documentation}
5944
6015
  */
5945
6016
  show_map_view_options: boolean
5946
6017
  /**
5947
6018
  * Shows or hides the tooltip that is displayed when selecting an entity.
5948
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GameViewSettings.show_entity_tooltip.html Online documentation}
6019
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/GameViewSettings.show_entity_tooltip.html Online documentation}
5949
6020
  */
5950
6021
  show_entity_tooltip: boolean
5951
6022
  /**
5952
6023
  * Shows or hides quickbar of shortcuts.
5953
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GameViewSettings.show_quickbar.html Online documentation}
6024
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/GameViewSettings.show_quickbar.html Online documentation}
5954
6025
  */
5955
6026
  show_quickbar: boolean
5956
6027
  /**
5957
6028
  * Shows or hides the shortcut bar.
5958
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GameViewSettings.show_shortcut_bar.html Online documentation}
6029
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/GameViewSettings.show_shortcut_bar.html Online documentation}
5959
6030
  */
5960
6031
  show_shortcut_bar: boolean
5961
6032
  /**
5962
6033
  * Shows or hides the crafting queue.
5963
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GameViewSettings.show_crafting_queue.html Online documentation}
6034
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/GameViewSettings.show_crafting_queue.html Online documentation}
5964
6035
  */
5965
6036
  show_crafting_queue: boolean
5966
6037
  /**
5967
6038
  * Shows or hides the tool window with the weapons and armor.
5968
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GameViewSettings.show_tool_bar.html Online documentation}
6039
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/GameViewSettings.show_tool_bar.html Online documentation}
5969
6040
  */
5970
6041
  show_tool_bar: boolean
5971
6042
  /**
5972
6043
  * Shows or hides the mouse and keyboard/controller button hints in the bottom left corner if they are enabled in the interface settings.
5973
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GameViewSettings.show_hotkey_suggestions.html Online documentation}
6044
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/GameViewSettings.show_hotkey_suggestions.html Online documentation}
5974
6045
  */
5975
6046
  show_hotkey_suggestions: boolean
5976
6047
  /**
5977
6048
  * Shows or hides the surface list while in Remote View.
5978
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GameViewSettings.show_surface_list.html Online documentation}
6049
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/GameViewSettings.show_surface_list.html Online documentation}
5979
6050
  */
5980
6051
  show_surface_list: boolean
5981
6052
  }
5982
6053
  /**
5983
6054
  * The data that can be extracted from a map exchange string, as a plain table.
5984
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/MapExchangeStringData.html Online documentation}
6055
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/MapExchangeStringData.html Online documentation}
5985
6056
  */
5986
6057
  export interface MapExchangeStringData {
5987
6058
  readonly map_settings: MapAndDifficultySettings
@@ -5989,7 +6060,7 @@ declare module "factorio:runtime" {
5989
6060
  }
5990
6061
  /**
5991
6062
  * @see BlueprintSignalIconWrite
5992
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BlueprintSignalIcon.html Online documentation}
6063
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/BlueprintSignalIcon.html Online documentation}
5993
6064
  */
5994
6065
  export interface BlueprintSignalIcon {
5995
6066
  /**
@@ -6003,7 +6074,7 @@ declare module "factorio:runtime" {
6003
6074
  }
6004
6075
  /**
6005
6076
  * Write form of {@link BlueprintSignalIcon}, where some properties allow additional values as input compared to the read form.
6006
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BlueprintSignalIcon.html Online documentation}
6077
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/BlueprintSignalIcon.html Online documentation}
6007
6078
  */
6008
6079
  export interface BlueprintSignalIconWrite {
6009
6080
  /**
@@ -6032,12 +6103,12 @@ declare module "factorio:runtime" {
6032
6103
  * - `target_entity_number`
6033
6104
  *
6034
6105
  * - `target_wire_connector_id`
6035
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/BlueprintWire.html Online documentation}
6106
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/BlueprintWire.html Online documentation}
6036
6107
  */
6037
6108
  export type BlueprintWire = readonly [uint, defines.wire_connector_id, uint, defines.wire_connector_id]
6038
6109
  /**
6039
6110
  * @see TileWrite
6040
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/Tile.html Online documentation}
6111
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/Tile.html Online documentation}
6041
6112
  */
6042
6113
  export interface Tile {
6043
6114
  /**
@@ -6051,7 +6122,7 @@ declare module "factorio:runtime" {
6051
6122
  }
6052
6123
  /**
6053
6124
  * Write form of {@link Tile}, where some properties allow additional values as input compared to the read form.
6054
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/Tile.html Online documentation}
6125
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/Tile.html Online documentation}
6055
6126
  */
6056
6127
  export interface TileWrite {
6057
6128
  /**
@@ -6106,7 +6177,7 @@ declare module "factorio:runtime" {
6106
6177
  *
6107
6178
  * Other attributes may be specified depending on `type`:
6108
6179
  * - `"fluid"`: {@link FluidIngredient}
6109
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/Ingredient.html Online documentation}
6180
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/Ingredient.html Online documentation}
6110
6181
  */
6111
6182
  export type Ingredient = FluidIngredient | OtherIngredient
6112
6183
  export interface Loot {
@@ -6272,7 +6343,7 @@ declare module "factorio:runtime" {
6272
6343
  * - `"unlock-recipe"`: {@link UnlockRecipeTechnologyModifier}
6273
6344
  * - `"nothing"`: {@link NothingTechnologyModifier}
6274
6345
  * - Other types: {@link OtherTechnologyModifier}
6275
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/TechnologyModifier.html Online documentation}
6346
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/TechnologyModifier.html Online documentation}
6276
6347
  */
6277
6348
  export type TechnologyModifier =
6278
6349
  | GunSpeedTechnologyModifier
@@ -6284,7 +6355,7 @@ declare module "factorio:runtime" {
6284
6355
  | OtherTechnologyModifier
6285
6356
  /**
6286
6357
  * A fragment of a functional program used to generate coherent noise, probably for purposes related to terrain generation. These can only be meaningfully written/modified during the data load phase. More detailed information is found on the {@link import("factorio:prototype").NamedNoiseExpression prototype docs}.
6287
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/NoiseExpression.html Online documentation}
6358
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/NoiseExpression.html Online documentation}
6288
6359
  */
6289
6360
  export interface NoiseExpression {
6290
6361
  /**
@@ -6337,7 +6408,7 @@ declare module "factorio:runtime" {
6337
6408
  * - `"very-high"`: equivalent to `2`.
6338
6409
  * - `"very-big"`: equivalent to `2`.
6339
6410
  * - `"very-good"`: equivalent to `2`.
6340
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/MapGenSize.html Online documentation}
6411
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/MapGenSize.html Online documentation}
6341
6412
  */
6342
6413
  export type MapGenSize =
6343
6414
  | float
@@ -6359,7 +6430,7 @@ declare module "factorio:runtime" {
6359
6430
  | "very-good"
6360
6431
  /**
6361
6432
  * @see AutoplaceControlWrite
6362
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/AutoplaceControl.html Online documentation}
6433
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/AutoplaceControl.html Online documentation}
6363
6434
  */
6364
6435
  export interface AutoplaceControl {
6365
6436
  /**
@@ -6377,7 +6448,7 @@ declare module "factorio:runtime" {
6377
6448
  }
6378
6449
  /**
6379
6450
  * Write form of {@link AutoplaceControl}, where some properties allow additional values as input compared to the read form.
6380
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/AutoplaceControl.html Online documentation}
6451
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/AutoplaceControl.html Online documentation}
6381
6452
  */
6382
6453
  export interface AutoplaceControlWrite {
6383
6454
  /**
@@ -6396,10 +6467,10 @@ declare module "factorio:runtime" {
6396
6467
  /**
6397
6468
  * All other MapGenSettings feed into named noise expressions, and therefore placement can be overridden by including the name of a property in this dictionary. The probability and richness functions for placing specific tiles, entities, and decoratives can be overridden by including an entry named `{tile|entity|decorative}:(prototype name):{probability|richness}`.
6398
6469
  *
6399
- * {@link https://lua-api.factorio.com/2.0.32/concepts/PropertyExpressionNames.html > Values either name a NamedNoiseExpression or can be literal numbers, stored as strings (e.g. `5`). All other controls can be overridden by a property expression names. Notable properties:}
6470
+ * {@link https://lua-api.factorio.com/2.0.34/concepts/PropertyExpressionNames.html > Values either name a NamedNoiseExpression or can be literal numbers, stored as strings (e.g. `5`). All other controls can be overridden by a property expression names. Notable properties:}
6400
6471
  *
6401
- * {@link https://lua-api.factorio.com/2.0.32/concepts/PropertyExpressionNames.html > Climate controls ('Moisture' and 'Terrain type' at the bottom of the Terrain tab in the map generator GUI) don't have their own dedicated structures in MapGenSettings. Instead, their values are stored as property expression overrides with long names:}
6402
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/PropertyExpressionNames.html Online documentation}
6472
+ * {@link https://lua-api.factorio.com/2.0.34/concepts/PropertyExpressionNames.html > Climate controls ('Moisture' and 'Terrain type' at the bottom of the Terrain tab in the map generator GUI) don't have their own dedicated structures in MapGenSettings. Instead, their values are stored as property expression overrides with long names:}
6473
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/PropertyExpressionNames.html Online documentation}
6403
6474
  */
6404
6475
  export type PropertyExpressionNames = Record<string, string>
6405
6476
  export interface AdvancedMapGenSettings {
@@ -6422,7 +6493,7 @@ declare module "factorio:runtime" {
6422
6493
  }
6423
6494
  /**
6424
6495
  * An actual signal transmitted by the network.
6425
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/Signal.html Online documentation}
6496
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/Signal.html Online documentation}
6426
6497
  */
6427
6498
  export interface Signal {
6428
6499
  /**
@@ -6436,7 +6507,7 @@ declare module "factorio:runtime" {
6436
6507
  }
6437
6508
  /**
6438
6509
  * @see UpgradeMapperSourceWrite
6439
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/UpgradeMapperSource.html Online documentation}
6510
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/UpgradeMapperSource.html Online documentation}
6440
6511
  */
6441
6512
  export interface UpgradeMapperSource {
6442
6513
  readonly type: "item" | "entity"
@@ -6455,7 +6526,7 @@ declare module "factorio:runtime" {
6455
6526
  }
6456
6527
  /**
6457
6528
  * Write form of {@link UpgradeMapperSource}, where some properties allow additional values as input compared to the read form.
6458
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/UpgradeMapperSource.html Online documentation}
6529
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/UpgradeMapperSource.html Online documentation}
6459
6530
  */
6460
6531
  export interface UpgradeMapperSourceWrite {
6461
6532
  readonly type: "item" | "entity"
@@ -6492,7 +6563,7 @@ declare module "factorio:runtime" {
6492
6563
  }
6493
6564
  /**
6494
6565
  * A single filter used by an infinity-filters instance.
6495
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/InfinityInventoryFilter.html Online documentation}
6566
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/InfinityInventoryFilter.html Online documentation}
6496
6567
  */
6497
6568
  export interface InfinityInventoryFilter {
6498
6569
  /**
@@ -6514,7 +6585,7 @@ declare module "factorio:runtime" {
6514
6585
  }
6515
6586
  /**
6516
6587
  * A single filter used by an infinity-pipe type entity.
6517
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/InfinityPipeFilter.html Online documentation}
6588
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/InfinityPipeFilter.html Online documentation}
6518
6589
  */
6519
6590
  export interface InfinityPipeFilter {
6520
6591
  /**
@@ -6568,7 +6639,7 @@ declare module "factorio:runtime" {
6568
6639
  }
6569
6640
  /**
6570
6641
  * The settings used by a heat-interface type entity.
6571
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/HeatSetting.html Online documentation}
6642
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/HeatSetting.html Online documentation}
6572
6643
  */
6573
6644
  export interface HeatSetting {
6574
6645
  /**
@@ -6586,7 +6657,7 @@ declare module "factorio:runtime" {
6586
6657
  }
6587
6658
  /**
6588
6659
  * @see ArithmeticCombinatorParametersWrite
6589
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ArithmeticCombinatorParameters.html Online documentation}
6660
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ArithmeticCombinatorParameters.html Online documentation}
6590
6661
  */
6591
6662
  export interface ArithmeticCombinatorParameters {
6592
6663
  /**
@@ -6616,7 +6687,7 @@ declare module "factorio:runtime" {
6616
6687
  }
6617
6688
  /**
6618
6689
  * Write form of {@link ArithmeticCombinatorParameters}, where some properties allow additional values as input compared to the read form.
6619
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ArithmeticCombinatorParameters.html Online documentation}
6690
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ArithmeticCombinatorParameters.html Online documentation}
6620
6691
  */
6621
6692
  export interface ArithmeticCombinatorParametersWrite {
6622
6693
  /**
@@ -6646,7 +6717,7 @@ declare module "factorio:runtime" {
6646
6717
  }
6647
6718
  /**
6648
6719
  * @see SelectorCombinatorParametersWrite
6649
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/SelectorCombinatorParameters.html Online documentation}
6720
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/SelectorCombinatorParameters.html Online documentation}
6650
6721
  */
6651
6722
  export interface SelectorCombinatorParameters {
6652
6723
  /**
@@ -6672,7 +6743,7 @@ declare module "factorio:runtime" {
6672
6743
  }
6673
6744
  /**
6674
6745
  * Write form of {@link SelectorCombinatorParameters}, where some properties allow additional values as input compared to the read form.
6675
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/SelectorCombinatorParameters.html Online documentation}
6746
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/SelectorCombinatorParameters.html Online documentation}
6676
6747
  */
6677
6748
  export interface SelectorCombinatorParametersWrite {
6678
6749
  /**
@@ -6714,7 +6785,7 @@ declare module "factorio:runtime" {
6714
6785
  }
6715
6786
  /**
6716
6787
  * @see CircuitConditionWrite
6717
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/CircuitCondition.html Online documentation}
6788
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/CircuitCondition.html Online documentation}
6718
6789
  */
6719
6790
  export interface CircuitCondition {
6720
6791
  /**
@@ -6736,7 +6807,7 @@ declare module "factorio:runtime" {
6736
6807
  }
6737
6808
  /**
6738
6809
  * Write form of {@link CircuitCondition}, where some properties allow additional values as input compared to the read form.
6739
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/CircuitCondition.html Online documentation}
6810
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/CircuitCondition.html Online documentation}
6740
6811
  */
6741
6812
  export interface CircuitConditionWrite {
6742
6813
  /**
@@ -6758,7 +6829,7 @@ declare module "factorio:runtime" {
6758
6829
  }
6759
6830
  /**
6760
6831
  * @see CircuitConditionDefinitionWrite
6761
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/CircuitConditionDefinition.html Online documentation}
6832
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/CircuitConditionDefinition.html Online documentation}
6762
6833
  */
6763
6834
  export interface CircuitConditionDefinition {
6764
6835
  /**
@@ -6772,7 +6843,7 @@ declare module "factorio:runtime" {
6772
6843
  }
6773
6844
  /**
6774
6845
  * Write form of {@link CircuitConditionDefinition}, where some properties allow additional values as input compared to the read form.
6775
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/CircuitConditionDefinition.html Online documentation}
6846
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/CircuitConditionDefinition.html Online documentation}
6776
6847
  */
6777
6848
  export interface CircuitConditionDefinitionWrite {
6778
6849
  /**
@@ -7047,7 +7118,7 @@ declare module "factorio:runtime" {
7047
7118
  * - {@link defines.command.stop}: {@link StopCommand}
7048
7119
  * - {@link defines.command.flee}: {@link FleeCommand}
7049
7120
  * - {@link defines.command.build_base}: {@link BuildBaseCommand}
7050
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/Command.html Online documentation}
7121
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/Command.html Online documentation}
7051
7122
  */
7052
7123
  export type Command =
7053
7124
  | AttackCommand
@@ -7061,7 +7132,7 @@ declare module "factorio:runtime" {
7061
7132
  | BuildBaseCommand
7062
7133
  /**
7063
7134
  * Write form of {@link Command}, where some properties allow additional values as input compared to the read form.
7064
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/Command.html Online documentation}
7135
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/Command.html Online documentation}
7065
7136
  */
7066
7137
  export type CommandWrite =
7067
7138
  | AttackCommand
@@ -7146,7 +7217,7 @@ declare module "factorio:runtime" {
7146
7217
  * These are both full stacks of iron plates (for iron-plate, a full stack is 100 plates)
7147
7218
  * "iron-plate"
7148
7219
  * {name="iron-plate", count=100}
7149
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/SimpleItemStack.html Online documentation}
7220
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/SimpleItemStack.html Online documentation}
7150
7221
  */
7151
7222
  export type SimpleItemStack = string | ItemStackDefinition
7152
7223
  /**
@@ -7156,7 +7227,7 @@ declare module "factorio:runtime" {
7156
7227
  * - SurfaceIndex: It will be the index of the surface. `nauvis` has index `1`, the first surface-created surface will have index `2` and so on.
7157
7228
  * - `string`: It will be the surface name. E.g. `"nauvis"`.
7158
7229
  * - {@link LuaSurface}: A reference to {@link LuaSurface} may be passed directly.
7159
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/SurfaceIdentification.html Online documentation}
7230
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/SurfaceIdentification.html Online documentation}
7160
7231
  */
7161
7232
  export type SurfaceIdentification = SurfaceIndex | string | LuaSurface
7162
7233
  /**
@@ -7166,7 +7237,7 @@ declare module "factorio:runtime" {
7166
7237
  * - PlayerIndex: The player index.
7167
7238
  * - `string`: The player name.
7168
7239
  * - {@link LuaPlayer}: A reference to {@link LuaPlayer} may be passed directly.
7169
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/PlayerIdentification.html Online documentation}
7240
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/PlayerIdentification.html Online documentation}
7170
7241
  */
7171
7242
  export type PlayerIdentification = PlayerIndex | string | LuaPlayer
7172
7243
  /**
@@ -7175,7 +7246,7 @@ declare module "factorio:runtime" {
7175
7246
  * ## Union members
7176
7247
  * - {@link SimpleItemStack}
7177
7248
  * - {@link LuaItemStack}
7178
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ItemStackIdentification.html Online documentation}
7249
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ItemStackIdentification.html Online documentation}
7179
7250
  */
7180
7251
  export type ItemStackIdentification = SimpleItemStack | LuaItemStack
7181
7252
  /**
@@ -7185,7 +7256,7 @@ declare module "factorio:runtime" {
7185
7256
  * - `"entity"`: Fires at an entity.
7186
7257
  * - `"position"`: Fires directly at a position.
7187
7258
  * - `"direction"`: Fires in a direction.
7188
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/TargetType.html Online documentation}
7259
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/TargetType.html Online documentation}
7189
7260
  */
7190
7261
  export type TargetType = "entity" | "position" | "direction"
7191
7262
  export interface BeamTarget {
@@ -7222,8 +7293,8 @@ declare module "factorio:runtime" {
7222
7293
  *
7223
7294
  * The validity of a SoundPath can be verified at runtime using {@link LuaHelpers#is_valid_sound_path LuaHelpers::is_valid_sound_path}.
7224
7295
  *
7225
- * {@link https://lua-api.factorio.com/2.0.32/concepts/SoundPath.html > The utility and ambient types each contain general use sound prototypes defined by the game itself.}
7226
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/SoundPath.html Online documentation}
7296
+ * {@link https://lua-api.factorio.com/2.0.34/concepts/SoundPath.html > The utility and ambient types each contain general use sound prototypes defined by the game itself.}
7297
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/SoundPath.html Online documentation}
7227
7298
  */
7228
7299
  export type SoundPath = (string & { _?: never }) | `${SoundCategory}/${string}`
7229
7300
  export interface CircularParticleCreationSpecification {
@@ -7355,7 +7426,7 @@ declare module "factorio:runtime" {
7355
7426
  * Other attributes may be specified depending on `type`:
7356
7427
  * - `"projectile"`: {@link ProjectileAttackParameters}
7357
7428
  * - `"stream"`: {@link StreamAttackParameters}
7358
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/AttackParameters.html Online documentation}
7429
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/AttackParameters.html Online documentation}
7359
7430
  */
7360
7431
  export type AttackParameters = ProjectileAttackParameters | StreamAttackParameters | OtherAttackParameters
7361
7432
  export interface GunShift4Way {
@@ -7421,7 +7492,7 @@ declare module "factorio:runtime" {
7421
7492
  * - `"use-on-self"`: {@link UseOnSelfCapsuleAction}
7422
7493
  * - `"artillery-remote"`: {@link ArtilleryRemoteCapsuleAction}
7423
7494
  * - `"destroy-cliffs"`: {@link DestroyCliffsCapsuleAction}
7424
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/CapsuleAction.html Online documentation}
7495
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/CapsuleAction.html Online documentation}
7425
7496
  */
7426
7497
  export type CapsuleAction =
7427
7498
  | ThrowCapsuleAction
@@ -7461,12 +7532,12 @@ declare module "factorio:runtime" {
7461
7532
  }
7462
7533
  /**
7463
7534
  * Any basic type (string, number, boolean) or table.
7464
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/AnyBasic.html Online documentation}
7535
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/AnyBasic.html Online documentation}
7465
7536
  */
7466
7537
  export type AnyBasic = string | boolean | number | table
7467
7538
  /**
7468
7539
  * Any basic type (string, number, boolean), table, or LuaObject.
7469
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/Any.html Online documentation}
7540
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/Any.html Online documentation}
7470
7541
  */
7471
7542
  export type Any = string | boolean | number | table | LuaObject
7472
7543
  export interface ProgrammableSpeakerParameters {
@@ -7476,7 +7547,7 @@ declare module "factorio:runtime" {
7476
7547
  }
7477
7548
  /**
7478
7549
  * @see ProgrammableSpeakerAlertParametersWrite
7479
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ProgrammableSpeakerAlertParameters.html Online documentation}
7550
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ProgrammableSpeakerAlertParameters.html Online documentation}
7480
7551
  */
7481
7552
  export interface ProgrammableSpeakerAlertParameters {
7482
7553
  readonly show_alert: boolean
@@ -7486,7 +7557,7 @@ declare module "factorio:runtime" {
7486
7557
  }
7487
7558
  /**
7488
7559
  * Write form of {@link ProgrammableSpeakerAlertParameters}, where some properties allow additional values as input compared to the read form.
7489
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ProgrammableSpeakerAlertParameters.html Online documentation}
7560
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ProgrammableSpeakerAlertParameters.html Online documentation}
7490
7561
  */
7491
7562
  export interface ProgrammableSpeakerAlertParametersWrite {
7492
7563
  readonly show_alert: boolean
@@ -7518,7 +7589,7 @@ declare module "factorio:runtime" {
7518
7589
  * - `"top-right"`
7519
7590
  * - `"right"`: The same as `"middle-right"`
7520
7591
  * - `"bottom-right"`
7521
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/Alignment.html Online documentation}
7592
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/Alignment.html Online documentation}
7522
7593
  */
7523
7594
  export type Alignment =
7524
7595
  | "top-left"
@@ -7551,8 +7622,8 @@ declare module "factorio:runtime" {
7551
7622
  _customEventIdBrand: any
7552
7623
  }
7553
7624
  /**
7554
- * Information about the event that has been raised. The table can also contain other fields depending on the type of event. See {@linkplain https://lua-api.factorio.com/2.0.32/events.html the list of Factorio events} for more information on these.
7555
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/EventData.html Online documentation}
7625
+ * Information about the event that has been raised. The table can also contain other fields depending on the type of event. See {@linkplain https://lua-api.factorio.com/2.0.34/events.html the list of Factorio events} for more information on these.
7626
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/EventData.html Online documentation}
7556
7627
  */
7557
7628
  export interface EventData {
7558
7629
  /**
@@ -7661,7 +7732,7 @@ declare module "factorio:runtime" {
7661
7732
  * - `"button-7"`
7662
7733
  * - `"button-8"`
7663
7734
  * - `"button-9"`
7664
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/MouseButtonFlags.html Online documentation}
7735
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/MouseButtonFlags.html Online documentation}
7665
7736
  */
7666
7737
  export interface MouseButtonFlags {
7667
7738
  readonly left?: true
@@ -7684,7 +7755,7 @@ declare module "factorio:runtime" {
7684
7755
  * - `"not-friend"`: Forces which are not friends pass.
7685
7756
  * - `"same"`: The same force pass.
7686
7757
  * - `"not-same"`: The non-same forces pass.
7687
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ForceCondition.html Online documentation}
7758
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ForceCondition.html Online documentation}
7688
7759
  */
7689
7760
  export type ForceCondition = "all" | "enemy" | "ally" | "friend" | "not-friend" | "same" | "not-same"
7690
7761
  export interface ItemStackLocation {
@@ -7722,7 +7793,7 @@ declare module "factorio:runtime" {
7722
7793
  * - `"tabbed-pane"`: A collection of `tab`s and their contents. Relevant event: {@link OnGuiSelectedTabChangedEvent on_gui_selected_tab_changed}
7723
7794
  * - `"tab"`: A tab for use in a `tabbed-pane`.
7724
7795
  * - `"switch"`: A switch with three possible states. Can have labels attached to either side. Relevant event: {@link OnGuiSwitchStateChangedEvent on_gui_switch_state_changed}
7725
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GuiElementType.html Online documentation}
7796
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/GuiElementType.html Online documentation}
7726
7797
  */
7727
7798
  export type GuiElementType =
7728
7799
  | "button"
@@ -7762,7 +7833,7 @@ declare module "factorio:runtime" {
7762
7833
  * - `"position"`
7763
7834
  * - `"crafting_queue"`
7764
7835
  * - `"item_stack"`: Will point to a given item stack in an inventory.
7765
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GuiArrowType.html Online documentation}
7836
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/GuiArrowType.html Online documentation}
7766
7837
  */
7767
7838
  export type GuiArrowType =
7768
7839
  | "nowhere"
@@ -7779,7 +7850,7 @@ declare module "factorio:runtime" {
7779
7850
  * ## Union members
7780
7851
  * - `"horizontal"`
7781
7852
  * - `"vertical"`
7782
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/GuiDirection.html Online documentation}
7853
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/GuiDirection.html Online documentation}
7783
7854
  */
7784
7855
  export type GuiDirection = "horizontal" | "vertical"
7785
7856
  /**
@@ -7791,7 +7862,7 @@ declare module "factorio:runtime" {
7791
7862
  * - `"always"`
7792
7863
  * - `"auto"`
7793
7864
  * - `"auto-and-reserve-space"`
7794
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ScrollPolicy.html Online documentation}
7865
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ScrollPolicy.html Online documentation}
7795
7866
  */
7796
7867
  export type ScrollPolicy = "never" | "dont-show-but-allow-scrolling" | "always" | "auto" | "auto-and-reserve-space"
7797
7868
  export interface RailLocation {
@@ -7808,71 +7879,71 @@ declare module "factorio:runtime" {
7808
7879
  }
7809
7880
  /**
7810
7881
  * A floating-point number. This is a single-precision floating point number. Whilst Lua only uses double-precision numbers, when a function takes a float, the game engine will immediately convert the double-precision number to single-precision.
7811
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/float.html Online documentation}
7882
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/float.html Online documentation}
7812
7883
  */
7813
7884
  export type float = number
7814
7885
  /**
7815
7886
  * A double-precision floating-point number. This is the same data type as all Lua numbers use.
7816
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/double.html Online documentation}
7887
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/double.html Online documentation}
7817
7888
  */
7818
7889
  export type double = number
7819
7890
  /**
7820
7891
  * 32-bit signed integer. Possible values are `-2 147 483 648` to `2 147 483 647`.
7821
7892
  *
7822
7893
  * Since Lua 5.2 only uses doubles, any API that asks for `int` will floor the given double.
7823
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/int.html Online documentation}
7894
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/int.html Online documentation}
7824
7895
  */
7825
7896
  export type int = number
7826
7897
  /**
7827
7898
  * 8-bit signed integer. Possible values are `-128` to `127`.
7828
7899
  *
7829
7900
  * Since Lua 5.2 only uses doubles, any API that asks for `int8` will floor the given double.
7830
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/int8.html Online documentation}
7901
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/int8.html Online documentation}
7831
7902
  */
7832
7903
  export type int8 = number
7833
7904
  /**
7834
7905
  * 32-bit unsigned integer. Possible values are `0` to `4 294 967 295`.
7835
7906
  *
7836
7907
  * Since Lua 5.2 only uses doubles, any API that asks for `uint` will floor the given double.
7837
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/uint.html Online documentation}
7908
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/uint.html Online documentation}
7838
7909
  */
7839
7910
  export type uint = number
7840
7911
  /**
7841
7912
  * 8-bit unsigned integer. Possible values are `0` to `255`.
7842
7913
  *
7843
7914
  * Since Lua 5.2 only uses doubles, any API that asks for `uint8` will floor the given double.
7844
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/uint8.html Online documentation}
7915
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/uint8.html Online documentation}
7845
7916
  */
7846
7917
  export type uint8 = number
7847
7918
  /**
7848
7919
  * 16-bit unsigned integer. Possible values are `0` to `65 535`.
7849
7920
  *
7850
7921
  * Since Lua 5.2 only uses doubles, any API that asks for `uint16` will floor the given double.
7851
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/uint16.html Online documentation}
7922
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/uint16.html Online documentation}
7852
7923
  */
7853
7924
  export type uint16 = number
7854
7925
  /**
7855
7926
  * 64-bit unsigned integer. Possible values are `0` to `18 446 744 073 709 551 615`.
7856
7927
  *
7857
7928
  * Since Lua 5.2 only uses doubles, any API that asks for `uint64` will floor the given double.
7858
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/uint64.html Online documentation}
7929
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/uint64.html Online documentation}
7859
7930
  */
7860
7931
  export type uint64 = number
7861
7932
  /**
7862
7933
  * Nil is the type of the value `nil`, whose main property is to be different from any other value. It usually represents the absence of a useful value.
7863
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/nil.html Online documentation}
7934
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/nil.html Online documentation}
7864
7935
  */
7865
7936
  export type nil = undefined
7866
7937
  /**
7867
7938
  * Tables are enclosed in curly brackets, like this `{}`.
7868
7939
  *
7869
7940
  * Throughout the API docs, the terms "array" and "dictionary" are used. These are fundamentally just {@linkplain http://www.lua.org/pil/2.5.html Lua tables}, but have a limitation on which kind of table keys can be used. An array is a table that uses continuous integer keys starting at `1`, while a dictionary can use numeric or string keys in any order or combination.
7870
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/table.html Online documentation}
7941
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/table.html Online documentation}
7871
7942
  */
7872
7943
  export type table = object
7873
7944
  /**
7874
- * Any LuaObject listed on the {@linkplain https://lua-api.factorio.com/2.0.32/classes.html Classes} page.
7875
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaObject.html Online documentation}
7945
+ * Any LuaObject listed on the {@linkplain https://lua-api.factorio.com/2.0.34/classes.html Classes} page.
7946
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/LuaObject.html Online documentation}
7876
7947
  */
7877
7948
  export interface LuaObject {
7878
7949
  readonly object_name: string
@@ -7931,7 +8002,7 @@ declare module "factorio:runtime" {
7931
8002
  * - `"type"`: {@link TypeModSettingPrototypeFilter}
7932
8003
  * - `"mod"`: {@link ModModSettingPrototypeFilter}
7933
8004
  * - `"setting-type"`: {@link SettingTypeModSettingPrototypeFilter}
7934
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ModSettingPrototypeFilter.html Online documentation}
8005
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ModSettingPrototypeFilter.html Online documentation}
7935
8006
  */
7936
8007
  export type ModSettingPrototypeFilter =
7937
8008
  | TypeModSettingPrototypeFilter
@@ -8076,7 +8147,7 @@ declare module "factorio:runtime" {
8076
8147
  * - `"vehicle-friction-modifier"`: {@link VehicleFrictionModifierTilePrototypeFilter}
8077
8148
  * - `"decorative-removal-probability"`: {@link DecorativeRemovalProbabilityTilePrototypeFilter}
8078
8149
  * - `"absorptions-per-second"`: {@link AbsorptionsPerSecondTilePrototypeFilter}
8079
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/TilePrototypeFilter.html Online documentation}
8150
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/TilePrototypeFilter.html Online documentation}
8080
8151
  */
8081
8152
  export type TilePrototypeFilter =
8082
8153
  | CollisionMaskTilePrototypeFilter
@@ -8087,7 +8158,7 @@ declare module "factorio:runtime" {
8087
8158
  | OtherTilePrototypeFilter
8088
8159
  /**
8089
8160
  * Write form of {@link TilePrototypeFilter}, where some properties allow additional values as input compared to the read form.
8090
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/TilePrototypeFilter.html Online documentation}
8161
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/TilePrototypeFilter.html Online documentation}
8091
8162
  */
8092
8163
  export type TilePrototypeFilterWrite =
8093
8164
  | CollisionMaskTilePrototypeFilter
@@ -8138,7 +8209,7 @@ declare module "factorio:runtime" {
8138
8209
  *
8139
8210
  * Other attributes may be specified depending on `filter`:
8140
8211
  * - `"collision-mask"`: {@link CollisionMaskDecorativePrototypeFilter}
8141
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/DecorativePrototypeFilter.html Online documentation}
8212
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/DecorativePrototypeFilter.html Online documentation}
8142
8213
  */
8143
8214
  export type DecorativePrototypeFilter = CollisionMaskDecorativePrototypeFilter | OtherDecorativePrototypeFilter
8144
8215
  /**
@@ -8392,7 +8463,7 @@ declare module "factorio:runtime" {
8392
8463
  * - `"emissions-multiplier"`: {@link EmissionsMultiplierRecipePrototypeFilter}
8393
8464
  * - `"request-paste-multiplier"`: {@link RequestPasteMultiplierRecipePrototypeFilter}
8394
8465
  * - `"overload-multiplier"`: {@link OverloadMultiplierRecipePrototypeFilter}
8395
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/RecipePrototypeFilter.html Online documentation}
8466
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/RecipePrototypeFilter.html Online documentation}
8396
8467
  */
8397
8468
  export type RecipePrototypeFilter =
8398
8469
  | HasIngredientItemRecipePrototypeFilter
@@ -8408,7 +8479,7 @@ declare module "factorio:runtime" {
8408
8479
  | OtherRecipePrototypeFilter
8409
8480
  /**
8410
8481
  * Write form of {@link RecipePrototypeFilter}, where some properties allow additional values as input compared to the read form.
8411
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/RecipePrototypeFilter.html Online documentation}
8482
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/RecipePrototypeFilter.html Online documentation}
8412
8483
  */
8413
8484
  export type RecipePrototypeFilterWrite =
8414
8485
  | HasIngredientItemRecipePrototypeFilterWrite
@@ -8460,7 +8531,7 @@ declare module "factorio:runtime" {
8460
8531
  *
8461
8532
  * Other attributes may be specified depending on `filter`:
8462
8533
  * - `"type"`: {@link TypeAchievementPrototypeFilter}
8463
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/AchievementPrototypeFilter.html Online documentation}
8534
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/AchievementPrototypeFilter.html Online documentation}
8464
8535
  */
8465
8536
  export type AchievementPrototypeFilter = TypeAchievementPrototypeFilter | OtherAchievementPrototypeFilter
8466
8537
  /**
@@ -8583,7 +8654,7 @@ declare module "factorio:runtime" {
8583
8654
  * - `"level"`: {@link LevelTechnologyPrototypeFilter}
8584
8655
  * - `"max-level"`: {@link MaxLevelTechnologyPrototypeFilter}
8585
8656
  * - `"time"`: {@link TimeTechnologyPrototypeFilter}
8586
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/TechnologyPrototypeFilter.html Online documentation}
8657
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/TechnologyPrototypeFilter.html Online documentation}
8587
8658
  */
8588
8659
  export type TechnologyPrototypeFilter =
8589
8660
  | ResearchUnitIngredientTechnologyPrototypeFilter
@@ -8594,7 +8665,7 @@ declare module "factorio:runtime" {
8594
8665
  | OtherTechnologyPrototypeFilter
8595
8666
  /**
8596
8667
  * Write form of {@link TechnologyPrototypeFilter}, where some properties allow additional values as input compared to the read form.
8597
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/TechnologyPrototypeFilter.html Online documentation}
8668
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/TechnologyPrototypeFilter.html Online documentation}
8598
8669
  */
8599
8670
  export type TechnologyPrototypeFilterWrite =
8600
8671
  | ResearchUnitIngredientTechnologyPrototypeFilter
@@ -8911,7 +8982,7 @@ declare module "factorio:runtime" {
8911
8982
  * - `"fuel-acceleration-multiplier"`: {@link FuelAccelerationMultiplierItemPrototypeFilter}
8912
8983
  * - `"fuel-top-speed-multiplier"`: {@link FuelTopSpeedMultiplierItemPrototypeFilter}
8913
8984
  * - `"fuel-emissions-multiplier"`: {@link FuelEmissionsMultiplierItemPrototypeFilter}
8914
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ItemPrototypeFilter.html Online documentation}
8985
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ItemPrototypeFilter.html Online documentation}
8915
8986
  */
8916
8987
  export type ItemPrototypeFilter =
8917
8988
  | PlaceResultItemPrototypeFilter
@@ -8931,7 +9002,7 @@ declare module "factorio:runtime" {
8931
9002
  | OtherItemPrototypeFilter
8932
9003
  /**
8933
9004
  * Write form of {@link ItemPrototypeFilter}, where some properties allow additional values as input compared to the read form.
8934
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/ItemPrototypeFilter.html Online documentation}
9005
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/ItemPrototypeFilter.html Online documentation}
8935
9006
  */
8936
9007
  export type ItemPrototypeFilterWrite =
8937
9008
  | PlaceResultItemPrototypeFilterWrite
@@ -8987,7 +9058,7 @@ declare module "factorio:runtime" {
8987
9058
  *
8988
9059
  * Other attributes may be specified depending on `filter`:
8989
9060
  * - `"type"`: {@link TypeEquipmentPrototypeFilter}
8990
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/EquipmentPrototypeFilter.html Online documentation}
9061
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/EquipmentPrototypeFilter.html Online documentation}
8991
9062
  */
8992
9063
  export type EquipmentPrototypeFilter = TypeEquipmentPrototypeFilter | OtherEquipmentPrototypeFilter
8993
9064
  /**
@@ -9218,7 +9289,7 @@ declare module "factorio:runtime" {
9218
9289
  * - `"selection-priority"`: {@link SelectionPriorityEntityPrototypeFilter}
9219
9290
  * - `"emissions-per-second"`: {@link EmissionsPerSecondEntityPrototypeFilter}
9220
9291
  * - `"crafting-category"`: {@link CraftingCategoryEntityPrototypeFilter}
9221
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/EntityPrototypeFilter.html Online documentation}
9292
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/EntityPrototypeFilter.html Online documentation}
9222
9293
  */
9223
9294
  export type EntityPrototypeFilter =
9224
9295
  | NameEntityPrototypeFilter
@@ -9232,7 +9303,7 @@ declare module "factorio:runtime" {
9232
9303
  | OtherEntityPrototypeFilter
9233
9304
  /**
9234
9305
  * Write form of {@link EntityPrototypeFilter}, where some properties allow additional values as input compared to the read form.
9235
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/EntityPrototypeFilter.html Online documentation}
9306
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/EntityPrototypeFilter.html Online documentation}
9236
9307
  */
9237
9308
  export type EntityPrototypeFilterWrite =
9238
9309
  | NameEntityPrototypeFilter
@@ -9302,7 +9373,7 @@ declare module "factorio:runtime" {
9302
9373
  * Other attributes may be specified depending on `filter`:
9303
9374
  * - `"type"`: {@link TypeSpaceLocationPrototypeFilter}
9304
9375
  * - `"solar-power-in-space"`: {@link SolarPowerInSpaceSpaceLocationPrototypeFilter}
9305
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/SpaceLocationPrototypeFilter.html Online documentation}
9376
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/SpaceLocationPrototypeFilter.html Online documentation}
9306
9377
  */
9307
9378
  export type SpaceLocationPrototypeFilter =
9308
9379
  | TypeSpaceLocationPrototypeFilter
@@ -9310,7 +9381,7 @@ declare module "factorio:runtime" {
9310
9381
  | OtherSpaceLocationPrototypeFilter
9311
9382
  /**
9312
9383
  * Write form of {@link SpaceLocationPrototypeFilter}, where some properties allow additional values as input compared to the read form.
9313
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/SpaceLocationPrototypeFilter.html Online documentation}
9384
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/SpaceLocationPrototypeFilter.html Online documentation}
9314
9385
  */
9315
9386
  export type SpaceLocationPrototypeFilterWrite =
9316
9387
  | TypeSpaceLocationPrototypeFilter
@@ -9498,7 +9569,7 @@ declare module "factorio:runtime" {
9498
9569
  * - `"fuel-value"`: {@link FuelValueFluidPrototypeFilter}
9499
9570
  * - `"emissions-multiplier"`: {@link EmissionsMultiplierFluidPrototypeFilter}
9500
9571
  * - `"gas-temperature"`: {@link GasTemperatureFluidPrototypeFilter}
9501
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/FluidPrototypeFilter.html Online documentation}
9572
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/FluidPrototypeFilter.html Online documentation}
9502
9573
  */
9503
9574
  export type FluidPrototypeFilter =
9504
9575
  | NameFluidPrototypeFilter
@@ -9512,7 +9583,7 @@ declare module "factorio:runtime" {
9512
9583
  | OtherFluidPrototypeFilter
9513
9584
  /**
9514
9585
  * Write form of {@link FluidPrototypeFilter}, where some properties allow additional values as input compared to the read form.
9515
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/FluidPrototypeFilter.html Online documentation}
9586
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/FluidPrototypeFilter.html Online documentation}
9516
9587
  */
9517
9588
  export type FluidPrototypeFilterWrite =
9518
9589
  | NameFluidPrototypeFilter
@@ -9621,7 +9692,7 @@ declare module "factorio:runtime" {
9621
9692
  * - `"name"`: {@link NamePrePlatformMinedEntityEventFilter}
9622
9693
  * - `"ghost_type"`: {@link GhostTypePrePlatformMinedEntityEventFilter}
9623
9694
  * - `"ghost_name"`: {@link GhostNamePrePlatformMinedEntityEventFilter}
9624
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaPrePlatformMinedEntityEventFilter.html Online documentation}
9695
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/LuaPrePlatformMinedEntityEventFilter.html Online documentation}
9625
9696
  */
9626
9697
  export type LuaPrePlatformMinedEntityEventFilter =
9627
9698
  | TypePrePlatformMinedEntityEventFilter
@@ -9726,7 +9797,7 @@ declare module "factorio:runtime" {
9726
9797
  * - `"name"`: {@link NameRobotMinedEntityEventFilter}
9727
9798
  * - `"ghost_type"`: {@link GhostTypeRobotMinedEntityEventFilter}
9728
9799
  * - `"ghost_name"`: {@link GhostNameRobotMinedEntityEventFilter}
9729
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaRobotMinedEntityEventFilter.html Online documentation}
9800
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/LuaRobotMinedEntityEventFilter.html Online documentation}
9730
9801
  */
9731
9802
  export type LuaRobotMinedEntityEventFilter =
9732
9803
  | TypeRobotMinedEntityEventFilter
@@ -9831,7 +9902,7 @@ declare module "factorio:runtime" {
9831
9902
  * - `"name"`: {@link NameEntityMarkedForUpgradeEventFilter}
9832
9903
  * - `"ghost_type"`: {@link GhostTypeEntityMarkedForUpgradeEventFilter}
9833
9904
  * - `"ghost_name"`: {@link GhostNameEntityMarkedForUpgradeEventFilter}
9834
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaEntityMarkedForUpgradeEventFilter.html Online documentation}
9905
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/LuaEntityMarkedForUpgradeEventFilter.html Online documentation}
9835
9906
  */
9836
9907
  export type LuaEntityMarkedForUpgradeEventFilter =
9837
9908
  | TypeEntityMarkedForUpgradeEventFilter
@@ -9936,7 +10007,7 @@ declare module "factorio:runtime" {
9936
10007
  * - `"name"`: {@link NamePreGhostUpgradedEventFilter}
9937
10008
  * - `"ghost_type"`: {@link GhostTypePreGhostUpgradedEventFilter}
9938
10009
  * - `"ghost_name"`: {@link GhostNamePreGhostUpgradedEventFilter}
9939
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaPreGhostUpgradedEventFilter.html Online documentation}
10010
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/LuaPreGhostUpgradedEventFilter.html Online documentation}
9940
10011
  */
9941
10012
  export type LuaPreGhostUpgradedEventFilter =
9942
10013
  | TypePreGhostUpgradedEventFilter
@@ -10041,7 +10112,7 @@ declare module "factorio:runtime" {
10041
10112
  * - `"name"`: {@link NamePlatformMinedEntityEventFilter}
10042
10113
  * - `"ghost_type"`: {@link GhostTypePlatformMinedEntityEventFilter}
10043
10114
  * - `"ghost_name"`: {@link GhostNamePlatformMinedEntityEventFilter}
10044
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaPlatformMinedEntityEventFilter.html Online documentation}
10115
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/LuaPlatformMinedEntityEventFilter.html Online documentation}
10045
10116
  */
10046
10117
  export type LuaPlatformMinedEntityEventFilter =
10047
10118
  | TypePlatformMinedEntityEventFilter
@@ -10146,7 +10217,7 @@ declare module "factorio:runtime" {
10146
10217
  * - `"name"`: {@link NameScriptRaisedDestroyEventFilter}
10147
10218
  * - `"ghost_type"`: {@link GhostTypeScriptRaisedDestroyEventFilter}
10148
10219
  * - `"ghost_name"`: {@link GhostNameScriptRaisedDestroyEventFilter}
10149
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaScriptRaisedDestroyEventFilter.html Online documentation}
10220
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/LuaScriptRaisedDestroyEventFilter.html Online documentation}
10150
10221
  */
10151
10222
  export type LuaScriptRaisedDestroyEventFilter =
10152
10223
  | TypeScriptRaisedDestroyEventFilter
@@ -10263,7 +10334,7 @@ declare module "factorio:runtime" {
10263
10334
  * - `"ghost_type"`: {@link GhostTypePlayerBuiltEntityEventFilter}
10264
10335
  * - `"ghost_name"`: {@link GhostNamePlayerBuiltEntityEventFilter}
10265
10336
  * - `"force"`: {@link ForcePlayerBuiltEntityEventFilter}
10266
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaPlayerBuiltEntityEventFilter.html Online documentation}
10337
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/LuaPlayerBuiltEntityEventFilter.html Online documentation}
10267
10338
  */
10268
10339
  export type LuaPlayerBuiltEntityEventFilter =
10269
10340
  | TypePlayerBuiltEntityEventFilter
@@ -10381,7 +10452,7 @@ declare module "factorio:runtime" {
10381
10452
  * - `"ghost_type"`: {@link GhostTypePlatformBuiltEntityEventFilter}
10382
10453
  * - `"ghost_name"`: {@link GhostNamePlatformBuiltEntityEventFilter}
10383
10454
  * - `"force"`: {@link ForcePlatformBuiltEntityEventFilter}
10384
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaPlatformBuiltEntityEventFilter.html Online documentation}
10455
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/LuaPlatformBuiltEntityEventFilter.html Online documentation}
10385
10456
  */
10386
10457
  export type LuaPlatformBuiltEntityEventFilter =
10387
10458
  | TypePlatformBuiltEntityEventFilter
@@ -10487,7 +10558,7 @@ declare module "factorio:runtime" {
10487
10558
  * - `"name"`: {@link NamePreGhostDeconstructedEventFilter}
10488
10559
  * - `"ghost_type"`: {@link GhostTypePreGhostDeconstructedEventFilter}
10489
10560
  * - `"ghost_name"`: {@link GhostNamePreGhostDeconstructedEventFilter}
10490
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaPreGhostDeconstructedEventFilter.html Online documentation}
10561
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/LuaPreGhostDeconstructedEventFilter.html Online documentation}
10491
10562
  */
10492
10563
  export type LuaPreGhostDeconstructedEventFilter =
10493
10564
  | TypePreGhostDeconstructedEventFilter
@@ -10592,7 +10663,7 @@ declare module "factorio:runtime" {
10592
10663
  * - `"name"`: {@link NameEntityClonedEventFilter}
10593
10664
  * - `"ghost_type"`: {@link GhostTypeEntityClonedEventFilter}
10594
10665
  * - `"ghost_name"`: {@link GhostNameEntityClonedEventFilter}
10595
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaEntityClonedEventFilter.html Online documentation}
10666
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/LuaEntityClonedEventFilter.html Online documentation}
10596
10667
  */
10597
10668
  export type LuaEntityClonedEventFilter =
10598
10669
  | TypeEntityClonedEventFilter
@@ -10697,7 +10768,7 @@ declare module "factorio:runtime" {
10697
10768
  * - `"name"`: {@link NameScriptRaisedTeleportedEventFilter}
10698
10769
  * - `"ghost_type"`: {@link GhostTypeScriptRaisedTeleportedEventFilter}
10699
10770
  * - `"ghost_name"`: {@link GhostNameScriptRaisedTeleportedEventFilter}
10700
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaScriptRaisedTeleportedEventFilter.html Online documentation}
10771
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/LuaScriptRaisedTeleportedEventFilter.html Online documentation}
10701
10772
  */
10702
10773
  export type LuaScriptRaisedTeleportedEventFilter =
10703
10774
  | TypeScriptRaisedTeleportedEventFilter
@@ -10804,7 +10875,7 @@ declare module "factorio:runtime" {
10804
10875
  * - `"name"`: {@link NameEntityDeconstructionCancelledEventFilter}
10805
10876
  * - `"ghost_type"`: {@link GhostTypeEntityDeconstructionCancelledEventFilter}
10806
10877
  * - `"ghost_name"`: {@link GhostNameEntityDeconstructionCancelledEventFilter}
10807
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaEntityDeconstructionCancelledEventFilter.html Online documentation}
10878
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/LuaEntityDeconstructionCancelledEventFilter.html Online documentation}
10808
10879
  */
10809
10880
  export type LuaEntityDeconstructionCancelledEventFilter =
10810
10881
  | TypeEntityDeconstructionCancelledEventFilter
@@ -10921,7 +10992,7 @@ declare module "factorio:runtime" {
10921
10992
  * - `"ghost_type"`: {@link GhostTypeRobotBuiltEntityEventFilter}
10922
10993
  * - `"ghost_name"`: {@link GhostNameRobotBuiltEntityEventFilter}
10923
10994
  * - `"force"`: {@link ForceRobotBuiltEntityEventFilter}
10924
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaRobotBuiltEntityEventFilter.html Online documentation}
10995
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/LuaRobotBuiltEntityEventFilter.html Online documentation}
10925
10996
  */
10926
10997
  export type LuaRobotBuiltEntityEventFilter =
10927
10998
  | TypeRobotBuiltEntityEventFilter
@@ -11027,7 +11098,7 @@ declare module "factorio:runtime" {
11027
11098
  * - `"name"`: {@link NameScriptRaisedBuiltEventFilter}
11028
11099
  * - `"ghost_type"`: {@link GhostTypeScriptRaisedBuiltEventFilter}
11029
11100
  * - `"ghost_name"`: {@link GhostNameScriptRaisedBuiltEventFilter}
11030
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaScriptRaisedBuiltEventFilter.html Online documentation}
11101
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/LuaScriptRaisedBuiltEventFilter.html Online documentation}
11031
11102
  */
11032
11103
  export type LuaScriptRaisedBuiltEventFilter =
11033
11104
  | TypeScriptRaisedBuiltEventFilter
@@ -11132,7 +11203,7 @@ declare module "factorio:runtime" {
11132
11203
  * - `"name"`: {@link NamePrePlayerMinedEntityEventFilter}
11133
11204
  * - `"ghost_type"`: {@link GhostTypePrePlayerMinedEntityEventFilter}
11134
11205
  * - `"ghost_name"`: {@link GhostNamePrePlayerMinedEntityEventFilter}
11135
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaPrePlayerMinedEntityEventFilter.html Online documentation}
11206
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/LuaPrePlayerMinedEntityEventFilter.html Online documentation}
11136
11207
  */
11137
11208
  export type LuaPrePlayerMinedEntityEventFilter =
11138
11209
  | TypePrePlayerMinedEntityEventFilter
@@ -11237,7 +11308,7 @@ declare module "factorio:runtime" {
11237
11308
  * - `"name"`: {@link NamePlayerRepairedEntityEventFilter}
11238
11309
  * - `"ghost_type"`: {@link GhostTypePlayerRepairedEntityEventFilter}
11239
11310
  * - `"ghost_name"`: {@link GhostNamePlayerRepairedEntityEventFilter}
11240
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaPlayerRepairedEntityEventFilter.html Online documentation}
11311
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/LuaPlayerRepairedEntityEventFilter.html Online documentation}
11241
11312
  */
11242
11313
  export type LuaPlayerRepairedEntityEventFilter =
11243
11314
  | TypePlayerRepairedEntityEventFilter
@@ -11342,7 +11413,7 @@ declare module "factorio:runtime" {
11342
11413
  * - `"name"`: {@link NameUpgradeCancelledEventFilter}
11343
11414
  * - `"ghost_type"`: {@link GhostTypeUpgradeCancelledEventFilter}
11344
11415
  * - `"ghost_name"`: {@link GhostNameUpgradeCancelledEventFilter}
11345
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaUpgradeCancelledEventFilter.html Online documentation}
11416
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/LuaUpgradeCancelledEventFilter.html Online documentation}
11346
11417
  */
11347
11418
  export type LuaUpgradeCancelledEventFilter =
11348
11419
  | TypeUpgradeCancelledEventFilter
@@ -11447,7 +11518,7 @@ declare module "factorio:runtime" {
11447
11518
  * - `"name"`: {@link NameSectorScannedEventFilter}
11448
11519
  * - `"ghost_type"`: {@link GhostTypeSectorScannedEventFilter}
11449
11520
  * - `"ghost_name"`: {@link GhostNameSectorScannedEventFilter}
11450
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaSectorScannedEventFilter.html Online documentation}
11521
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/LuaSectorScannedEventFilter.html Online documentation}
11451
11522
  */
11452
11523
  export type LuaSectorScannedEventFilter =
11453
11524
  | TypeSectorScannedEventFilter
@@ -11493,7 +11564,7 @@ declare module "factorio:runtime" {
11493
11564
  *
11494
11565
  * Other attributes may be specified depending on `filter`:
11495
11566
  * - `"type"`: {@link TypePostEntityDiedEventFilter}
11496
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaPostEntityDiedEventFilter.html Online documentation}
11567
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/LuaPostEntityDiedEventFilter.html Online documentation}
11497
11568
  */
11498
11569
  export type LuaPostEntityDiedEventFilter = TypePostEntityDiedEventFilter | OtherPostEntityDiedEventFilter
11499
11570
  /**
@@ -11595,7 +11666,7 @@ declare module "factorio:runtime" {
11595
11666
  * - `"name"`: {@link NameEntityMarkedForDeconstructionEventFilter}
11596
11667
  * - `"ghost_type"`: {@link GhostTypeEntityMarkedForDeconstructionEventFilter}
11597
11668
  * - `"ghost_name"`: {@link GhostNameEntityMarkedForDeconstructionEventFilter}
11598
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaEntityMarkedForDeconstructionEventFilter.html Online documentation}
11669
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/LuaEntityMarkedForDeconstructionEventFilter.html Online documentation}
11599
11670
  */
11600
11671
  export type LuaEntityMarkedForDeconstructionEventFilter =
11601
11672
  | TypeEntityMarkedForDeconstructionEventFilter
@@ -11700,7 +11771,7 @@ declare module "factorio:runtime" {
11700
11771
  * - `"name"`: {@link NamePlayerMinedEntityEventFilter}
11701
11772
  * - `"ghost_type"`: {@link GhostTypePlayerMinedEntityEventFilter}
11702
11773
  * - `"ghost_name"`: {@link GhostNamePlayerMinedEntityEventFilter}
11703
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaPlayerMinedEntityEventFilter.html Online documentation}
11774
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/LuaPlayerMinedEntityEventFilter.html Online documentation}
11704
11775
  */
11705
11776
  export type LuaPlayerMinedEntityEventFilter =
11706
11777
  | TypePlayerMinedEntityEventFilter
@@ -11880,7 +11951,7 @@ declare module "factorio:runtime" {
11880
11951
  * - `"final-damage-amount"`: {@link FinalDamageAmountEntityDamagedEventFilter}
11881
11952
  * - `"damage-type"`: {@link DamageTypeEntityDamagedEventFilter}
11882
11953
  * - `"final-health"`: {@link FinalHealthEntityDamagedEventFilter}
11883
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaEntityDamagedEventFilter.html Online documentation}
11954
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/LuaEntityDamagedEventFilter.html Online documentation}
11884
11955
  */
11885
11956
  export type LuaEntityDamagedEventFilter =
11886
11957
  | TypeEntityDamagedEventFilter
@@ -11894,7 +11965,7 @@ declare module "factorio:runtime" {
11894
11965
  | OtherEntityDamagedEventFilter
11895
11966
  /**
11896
11967
  * Write form of {@link LuaEntityDamagedEventFilter}, where some properties allow additional values as input compared to the read form.
11897
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaEntityDamagedEventFilter.html Online documentation}
11968
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/LuaEntityDamagedEventFilter.html Online documentation}
11898
11969
  */
11899
11970
  export type LuaEntityDamagedEventFilterWrite =
11900
11971
  | TypeEntityDamagedEventFilter
@@ -12003,7 +12074,7 @@ declare module "factorio:runtime" {
12003
12074
  * - `"name"`: {@link NameScriptRaisedReviveEventFilter}
12004
12075
  * - `"ghost_type"`: {@link GhostTypeScriptRaisedReviveEventFilter}
12005
12076
  * - `"ghost_name"`: {@link GhostNameScriptRaisedReviveEventFilter}
12006
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaScriptRaisedReviveEventFilter.html Online documentation}
12077
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/LuaScriptRaisedReviveEventFilter.html Online documentation}
12007
12078
  */
12008
12079
  export type LuaScriptRaisedReviveEventFilter =
12009
12080
  | TypeScriptRaisedReviveEventFilter
@@ -12108,7 +12179,7 @@ declare module "factorio:runtime" {
12108
12179
  * - `"name"`: {@link NameEntityDiedEventFilter}
12109
12180
  * - `"ghost_type"`: {@link GhostTypeEntityDiedEventFilter}
12110
12181
  * - `"ghost_name"`: {@link GhostNameEntityDiedEventFilter}
12111
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaEntityDiedEventFilter.html Online documentation}
12182
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/LuaEntityDiedEventFilter.html Online documentation}
12112
12183
  */
12113
12184
  export type LuaEntityDiedEventFilter =
12114
12185
  | TypeEntityDiedEventFilter
@@ -12213,7 +12284,7 @@ declare module "factorio:runtime" {
12213
12284
  * - `"name"`: {@link NamePreRobotMinedEntityEventFilter}
12214
12285
  * - `"ghost_type"`: {@link GhostTypePreRobotMinedEntityEventFilter}
12215
12286
  * - `"ghost_name"`: {@link GhostNamePreRobotMinedEntityEventFilter}
12216
- * @see {@link https://lua-api.factorio.com/2.0.32/concepts/LuaPreRobotMinedEntityEventFilter.html Online documentation}
12287
+ * @see {@link https://lua-api.factorio.com/2.0.34/concepts/LuaPreRobotMinedEntityEventFilter.html Online documentation}
12217
12288
  */
12218
12289
  export type LuaPreRobotMinedEntityEventFilter =
12219
12290
  | TypePreRobotMinedEntityEventFilter