typed-factorio 3.16.0 → 3.17.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.39/concepts/MapTick.html Online documentation}
15
+ * @see {@link https://lua-api.factorio.com/2.0.41/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.39/concepts/ModuleEffectValue.html Online documentation}
22
+ * @see {@link https://lua-api.factorio.com/2.0.41/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.39/concepts/ModuleEffects.html Online documentation}
29
+ * @see {@link https://lua-api.factorio.com/2.0.41/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.39/concepts/ComparatorString.html Online documentation}
53
+ * @see {@link https://lua-api.factorio.com/2.0.41/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.39/concepts/SpritePath.html > The supported types are:}
85
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/SpritePath.html Online documentation}
84
+ * {@link https://lua-api.factorio.com/2.0.41/concepts/SpritePath.html > The supported types are:}
85
+ * @see {@link https://lua-api.factorio.com/2.0.41/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.39/concepts/FlowStatisticsID.html Online documentation}
96
+ * @see {@link https://lua-api.factorio.com/2.0.41/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.39/concepts/CollisionMask.html Online documentation}
103
+ * @see {@link https://lua-api.factorio.com/2.0.41/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.39/concepts/SimulationWidgetType.html Online documentation}
231
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/SimulationWidgetType.html Online documentation}
232
232
  */
233
233
  export type SimulationWidgetType =
234
234
  | "signal-id"
@@ -354,7 +354,7 @@ declare module "factorio:runtime" {
354
354
  * - `"any-goal-accessible"`: The method will return {@link TrainPathFinderOneGoalResult}.
355
355
  * - `"all-goals-accessible"`: The method will return {@link TrainPathAllGoalsResult}.
356
356
  * - `"all-goals-penalties"`: The method will return {@link TrainPathAllGoalsResult} with `penalties`.
357
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/TrainPathRequestType.html Online documentation}
357
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/TrainPathRequestType.html Online documentation}
358
358
  */
359
359
  export type TrainPathRequestType = "path" | "any-goal-accessible" | "all-goals-accessible" | "all-goals-penalties"
360
360
  /**
@@ -363,7 +363,7 @@ declare module "factorio:runtime" {
363
363
  * - {@link RailEndGoal}
364
364
  * - {@link LuaRailEnd}
365
365
  * - {@link LuaEntity}: Only if it points at train-stop that is connected to a rail.
366
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/TrainPathFinderGoal.html Online documentation}
366
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/TrainPathFinderGoal.html Online documentation}
367
367
  */
368
368
  export type TrainPathFinderGoal = TrainStopGoal | RailEndGoal | LuaRailEnd | LuaEntity
369
369
  export interface TrainStopGoal {
@@ -486,7 +486,7 @@ declare module "factorio:runtime" {
486
486
  }
487
487
  /**
488
488
  * A single pipe connection for a given fluidbox.
489
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/PipeConnection.html Online documentation}
489
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/PipeConnection.html Online documentation}
490
490
  */
491
491
  export interface PipeConnection {
492
492
  readonly flow_direction: "input" | "output" | "input-output"
@@ -549,7 +549,7 @@ declare module "factorio:runtime" {
549
549
  * - {@link LuaEntityDiedEventFilter}
550
550
  * - {@link LuaPreRobotMinedEntityEventFilter}
551
551
  * @see EventFilterWrite
552
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/EventFilter.html Online documentation}
552
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/EventFilter.html Online documentation}
553
553
  */
554
554
  export type EventFilter =
555
555
  | LuaPrePlatformMinedEntityEventFilter[]
@@ -579,7 +579,7 @@ declare module "factorio:runtime" {
579
579
  | LuaPreRobotMinedEntityEventFilter[]
580
580
  /**
581
581
  * Write form of {@link EventFilter}, where some properties allow additional values as input compared to the read form.
582
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/EventFilter.html Online documentation}
582
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/EventFilter.html Online documentation}
583
583
  */
584
584
  export type EventFilterWrite =
585
585
  | readonly LuaPrePlatformMinedEntityEventFilter[]
@@ -631,7 +631,7 @@ declare module "factorio:runtime" {
631
631
  * - {@link LuaGuiElement}: Target type {@link defines.target_type.gui_element gui_element}; `useful_id` {@link LuaGuiElement#index LuaGuiElement::index}
632
632
  * - {@link LuaCargoHatch}: Target type {@link defines.target_type.cargo_hatch cargo_hatch}
633
633
  * - {@link LuaSchedule}: Target type {@link defines.target_type.schedule schedule}
634
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/RegistrationTarget.html Online documentation}
634
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/RegistrationTarget.html Online documentation}
635
635
  */
636
636
  export type RegistrationTarget =
637
637
  | LuaEntity
@@ -834,7 +834,7 @@ declare module "factorio:runtime" {
834
834
  * - `"wire-removed"`: {@link WireRemovedUndoRedoAction}
835
835
  * - `"rotated-entity"`: {@link RotatedEntityUndoRedoAction}
836
836
  * - `"copy-entity-settings"`: {@link CopyEntitySettingsUndoRedoAction}
837
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/UndoRedoAction.html Online documentation}
837
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/UndoRedoAction.html Online documentation}
838
838
  */
839
839
  export type UndoRedoAction =
840
840
  | BuiltEntityUndoRedoAction
@@ -866,7 +866,7 @@ declare module "factorio:runtime" {
866
866
  * - `"weapon"`
867
867
  * - `"explosion"`
868
868
  * - `"enemy"`
869
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/SoundType.html Online documentation}
869
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/SoundType.html Online documentation}
870
870
  */
871
871
  export type SoundType =
872
872
  | "game-effect"
@@ -949,7 +949,7 @@ declare module "factorio:runtime" {
949
949
  * - `"controllable-remove"`
950
950
  * - `"entity-ghost"`: Selects entities that are `entity-ghost`s.
951
951
  * - `"tile-ghost"`: Selects entities that are `tile-ghost`s.
952
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/SelectionModeFlags.html Online documentation}
952
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/SelectionModeFlags.html Online documentation}
953
953
  */
954
954
  export interface SelectionModeFlags {
955
955
  /**
@@ -1068,7 +1068,7 @@ declare module "factorio:runtime" {
1068
1068
  * A set of flags. Active flags are in the dictionary as `true`, while inactive flags aren't present at all.
1069
1069
  *
1070
1070
  * By default, none of these flags are set.
1071
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/ItemPrototypeFlags.html Online documentation}
1071
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ItemPrototypeFlags.html Online documentation}
1072
1072
  */
1073
1073
  export type ItemPrototypeFlags = {
1074
1074
  readonly [T in ItemPrototypeFlag]?: true
@@ -1089,7 +1089,7 @@ declare module "factorio:runtime" {
1089
1089
  * - `"spawnable"`: Allows the item to be spawned by a quickbar shortcut or custom input.
1090
1090
  * - `"spoil-result"`
1091
1091
  * - `"ignore-spoil-time-modifier"`: Controls whether the spoil time ignores the spoil time modifier in the {@link DifficultySettings}.
1092
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/ItemPrototypeFlag.html Online documentation}
1092
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ItemPrototypeFlag.html Online documentation}
1093
1093
  */
1094
1094
  export type ItemPrototypeFlag =
1095
1095
  | "draw-logistic-overlay"
@@ -1109,7 +1109,7 @@ declare module "factorio:runtime" {
1109
1109
  * - `"none"`
1110
1110
  * - `"whitelist"`
1111
1111
  * - `"blacklist"`
1112
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/PrototypeFilterMode.html Online documentation}
1112
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/PrototypeFilterMode.html Online documentation}
1113
1113
  */
1114
1114
  export type PrototypeFilterMode = "none" | "whitelist" | "blacklist"
1115
1115
  export interface PipeConnectionDefinition {
@@ -1134,7 +1134,7 @@ declare module "factorio:runtime" {
1134
1134
  * The name of a {@link LuaCollisionLayerPrototype}.
1135
1135
  * @example
1136
1136
  * "is_lower_object"
1137
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/CollisionLayerID.html Online documentation}
1137
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/CollisionLayerID.html Online documentation}
1138
1138
  */
1139
1139
  export type CollisionLayerID = string
1140
1140
  export interface ItemIDFilter {
@@ -1184,7 +1184,7 @@ declare module "factorio:runtime" {
1184
1184
  * - {@link SpaceLocationPrototypeFilter}
1185
1185
  * - {@link FluidPrototypeFilter}
1186
1186
  * @see PrototypeFilterWrite
1187
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/PrototypeFilter.html Online documentation}
1187
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/PrototypeFilter.html Online documentation}
1188
1188
  */
1189
1189
  export type PrototypeFilter =
1190
1190
  | ModSettingPrototypeFilter[]
@@ -1201,7 +1201,7 @@ declare module "factorio:runtime" {
1201
1201
  | FluidPrototypeFilter[]
1202
1202
  /**
1203
1203
  * Write form of {@link PrototypeFilter}, where some properties allow additional values as input compared to the read form.
1204
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/PrototypeFilter.html Online documentation}
1204
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/PrototypeFilter.html Online documentation}
1205
1205
  */
1206
1206
  export type PrototypeFilterWrite =
1207
1207
  | readonly ModSettingPrototypeFilter[]
@@ -1218,7 +1218,7 @@ declare module "factorio:runtime" {
1218
1218
  | readonly FluidPrototypeFilterWrite[]
1219
1219
  /**
1220
1220
  * @see DisplayPanelMessageDefinitionWrite
1221
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/DisplayPanelMessageDefinition.html Online documentation}
1221
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/DisplayPanelMessageDefinition.html Online documentation}
1222
1222
  */
1223
1223
  export interface DisplayPanelMessageDefinition {
1224
1224
  /**
@@ -1236,7 +1236,7 @@ declare module "factorio:runtime" {
1236
1236
  }
1237
1237
  /**
1238
1238
  * Write form of {@link DisplayPanelMessageDefinition}, where some properties allow additional values as input compared to the read form.
1239
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/DisplayPanelMessageDefinition.html Online documentation}
1239
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/DisplayPanelMessageDefinition.html Online documentation}
1240
1240
  */
1241
1241
  export interface DisplayPanelMessageDefinitionWrite {
1242
1242
  /**
@@ -1262,7 +1262,7 @@ declare module "factorio:runtime" {
1262
1262
  * - `"space-location"`
1263
1263
  * - `"asteroid-chunk"`
1264
1264
  * - `"quality"`
1265
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/SignalIDType.html Online documentation}
1265
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/SignalIDType.html Online documentation}
1266
1266
  */
1267
1267
  export type SignalIDType =
1268
1268
  | "item"
@@ -1275,7 +1275,7 @@ declare module "factorio:runtime" {
1275
1275
  | "quality"
1276
1276
  /**
1277
1277
  * @see SignalIDWrite
1278
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/SignalID.html Online documentation}
1278
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/SignalID.html Online documentation}
1279
1279
  */
1280
1280
  export interface SignalID {
1281
1281
  /**
@@ -1293,7 +1293,7 @@ declare module "factorio:runtime" {
1293
1293
  }
1294
1294
  /**
1295
1295
  * Write form of {@link SignalID}, where some properties allow additional values as input compared to the read form.
1296
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/SignalID.html Online documentation}
1296
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/SignalID.html Online documentation}
1297
1297
  */
1298
1298
  export interface SignalIDWrite {
1299
1299
  /**
@@ -1499,7 +1499,7 @@ declare module "factorio:runtime" {
1499
1499
  * - `"play-next-track"`
1500
1500
  * - `"play-previous-track"`
1501
1501
  * - `"pause-resume-music"`
1502
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/LinkedGameControl.html Online documentation}
1502
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LinkedGameControl.html Online documentation}
1503
1503
  */
1504
1504
  export type LinkedGameControl =
1505
1505
  | "move-up"
@@ -1750,7 +1750,7 @@ declare module "factorio:runtime" {
1750
1750
  * - `"create-ghost-on-entity-death"`
1751
1751
  * - `"belt-stack-size-bonus"`
1752
1752
  * - `"vehicle-logistics"`
1753
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/ModifierType.html Online documentation}
1753
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ModifierType.html Online documentation}
1754
1754
  */
1755
1755
  export type ModifierType =
1756
1756
  | "inserter-stack-size-bonus"
@@ -1869,7 +1869,7 @@ declare module "factorio:runtime" {
1869
1869
  * - `"capture-spawner"`: {@link CaptureSpawnerResearchTrigger}
1870
1870
  * - `"build-entity"`: {@link BuildEntityResearchTrigger}
1871
1871
  * - `"send-item-to-orbit"`: {@link SendItemToOrbitResearchTrigger}
1872
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/ResearchTrigger.html Online documentation}
1872
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ResearchTrigger.html Online documentation}
1873
1873
  */
1874
1874
  export type ResearchTrigger =
1875
1875
  | CraftItemResearchTrigger
@@ -1883,7 +1883,7 @@ declare module "factorio:runtime" {
1883
1883
  * A set of flags. Active flags are in the dictionary as `true`, while inactive flags aren't present at all.
1884
1884
  *
1885
1885
  * By default, none of these flags are set.
1886
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/EntityPrototypeFlags.html Online documentation}
1886
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/EntityPrototypeFlags.html Online documentation}
1887
1887
  */
1888
1888
  export type EntityPrototypeFlags = {
1889
1889
  readonly [T in EntityPrototypeFlag]?: true
@@ -1918,7 +1918,7 @@ declare module "factorio:runtime" {
1918
1918
  * - `"building-direction-16-way"`
1919
1919
  * - `"snap-to-rail-support-spot"`
1920
1920
  * - `"not-in-made-in"`: Prevents the entity from being shown in the "made in" list in recipe tooltips.
1921
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/EntityPrototypeFlag.html Online documentation}
1921
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/EntityPrototypeFlag.html Online documentation}
1922
1922
  */
1923
1923
  export type EntityPrototypeFlag =
1924
1924
  | "not-rotatable"
@@ -1988,7 +1988,7 @@ declare module "factorio:runtime" {
1988
1988
  * - `"local"`: The sound can be heard within the audible range around the speaker.
1989
1989
  * - `"surface"`: The sound can be heard anywhere on the speaker's surface.
1990
1990
  * - `"global"`: The sound can be heard everywhere.
1991
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/ProgrammableSpeakerPlaybackMode.html Online documentation}
1991
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ProgrammableSpeakerPlaybackMode.html Online documentation}
1992
1992
  */
1993
1993
  export type ProgrammableSpeakerPlaybackMode = "local" | "surface" | "global"
1994
1994
  /**
@@ -2013,7 +2013,7 @@ declare module "factorio:runtime" {
2013
2013
  * - `"none-to-south"`
2014
2014
  * - `"south-to-none"`
2015
2015
  * - `"none-to-north"`
2016
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/CliffOrientation.html Online documentation}
2016
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/CliffOrientation.html Online documentation}
2017
2017
  */
2018
2018
  export type CliffOrientation =
2019
2019
  | "west-to-east"
@@ -2039,7 +2039,7 @@ declare module "factorio:runtime" {
2039
2039
  /**
2040
2040
  * Defines an item type that a blueprint entity will request.
2041
2041
  * @see BlueprintInsertPlanWrite
2042
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/BlueprintInsertPlan.html Online documentation}
2042
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BlueprintInsertPlan.html Online documentation}
2043
2043
  */
2044
2044
  export interface BlueprintInsertPlan {
2045
2045
  /**
@@ -2053,7 +2053,7 @@ declare module "factorio:runtime" {
2053
2053
  }
2054
2054
  /**
2055
2055
  * Write form of {@link BlueprintInsertPlan}, where some properties allow additional values as input compared to the read form.
2056
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/BlueprintInsertPlan.html Online documentation}
2056
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BlueprintInsertPlan.html Online documentation}
2057
2057
  */
2058
2058
  export interface BlueprintInsertPlanWrite {
2059
2059
  /**
@@ -2081,7 +2081,7 @@ declare module "factorio:runtime" {
2081
2081
  }
2082
2082
  /**
2083
2083
  * A single offer on a market entity.
2084
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/Offer.html Online documentation}
2084
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/Offer.html Online documentation}
2085
2085
  */
2086
2086
  export interface Offer {
2087
2087
  /**
@@ -2096,7 +2096,7 @@ declare module "factorio:runtime" {
2096
2096
  /**
2097
2097
  * An item filter may be specified in two ways, either as a string which is an item prototype name or as a table.
2098
2098
  * @see ItemFilterWrite
2099
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/ItemFilter.html Online documentation}
2099
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ItemFilter.html Online documentation}
2100
2100
  */
2101
2101
  export type ItemFilter =
2102
2102
  | {
@@ -2116,7 +2116,7 @@ declare module "factorio:runtime" {
2116
2116
  | string
2117
2117
  /**
2118
2118
  * Write form of {@link ItemFilter}, where some properties allow additional values as input compared to the read form.
2119
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/ItemFilter.html Online documentation}
2119
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ItemFilter.html Online documentation}
2120
2120
  */
2121
2121
  export type ItemFilterWrite =
2122
2122
  | {
@@ -2199,7 +2199,7 @@ declare module "factorio:runtime" {
2199
2199
  * - `"position"`: {@link PositionGuiArrowSpecification}
2200
2200
  * - `"crafting_queue"`: {@link CraftingQueueGuiArrowSpecification}
2201
2201
  * - `"item_stack"`: {@link ItemStackGuiArrowSpecification}
2202
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/GuiArrowSpecification.html Online documentation}
2202
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GuiArrowSpecification.html Online documentation}
2203
2203
  */
2204
2204
  export type GuiArrowSpecification =
2205
2205
  | EntityGuiArrowSpecification
@@ -2212,7 +2212,7 @@ declare module "factorio:runtime" {
2212
2212
  *
2213
2213
  * If this is specified as a three-element array then the array items are x, y and z, in that order.
2214
2214
  * @see Vector3DArray
2215
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/Vector3D.html Online documentation}
2215
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/Vector3D.html Online documentation}
2216
2216
  */
2217
2217
  export interface Vector3D {
2218
2218
  readonly x: float
@@ -2222,7 +2222,7 @@ declare module "factorio:runtime" {
2222
2222
  /**
2223
2223
  * Array form of {@link Vector3D}.
2224
2224
  * @see Vector3D
2225
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/Vector3D.html Online documentation}
2225
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/Vector3D.html Online documentation}
2226
2226
  */
2227
2227
  export type Vector3DArray = readonly [float, float, float]
2228
2228
  export interface ItemWithQualityCounts {
@@ -2255,7 +2255,7 @@ declare module "factorio:runtime" {
2255
2255
  }
2256
2256
  /**
2257
2257
  * @see TrainScheduleWrite
2258
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/TrainSchedule.html Online documentation}
2258
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/TrainSchedule.html Online documentation}
2259
2259
  */
2260
2260
  export interface TrainSchedule {
2261
2261
  /**
@@ -2266,7 +2266,7 @@ declare module "factorio:runtime" {
2266
2266
  }
2267
2267
  /**
2268
2268
  * Write form of {@link TrainSchedule}, where some properties allow additional values as input compared to the read form.
2269
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/TrainSchedule.html Online documentation}
2269
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/TrainSchedule.html Online documentation}
2270
2270
  */
2271
2271
  export interface TrainScheduleWrite {
2272
2272
  /**
@@ -2277,7 +2277,7 @@ declare module "factorio:runtime" {
2277
2277
  }
2278
2278
  /**
2279
2279
  * @see PlatformScheduleWrite
2280
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/PlatformSchedule.html Online documentation}
2280
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/PlatformSchedule.html Online documentation}
2281
2281
  */
2282
2282
  export interface PlatformSchedule {
2283
2283
  /**
@@ -2288,7 +2288,7 @@ declare module "factorio:runtime" {
2288
2288
  }
2289
2289
  /**
2290
2290
  * Write form of {@link PlatformSchedule}, where some properties allow additional values as input compared to the read form.
2291
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/PlatformSchedule.html Online documentation}
2291
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/PlatformSchedule.html Online documentation}
2292
2292
  */
2293
2293
  export interface PlatformScheduleWrite {
2294
2294
  /**
@@ -2305,7 +2305,7 @@ declare module "factorio:runtime" {
2305
2305
  }
2306
2306
  /**
2307
2307
  * A recipe prototype with optional quality specification.
2308
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/RecipeIDAndQualityIDPair.html Online documentation}
2308
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/RecipeIDAndQualityIDPair.html Online documentation}
2309
2309
  */
2310
2310
  export interface RecipeIDAndQualityIDPair {
2311
2311
  /**
@@ -2354,7 +2354,7 @@ declare module "factorio:runtime" {
2354
2354
  * - `string`: Name of the force, same as {@link LuaForce#name LuaForce::name}.
2355
2355
  * - {@link uint8}: Index of the force, same as {@link LuaForce#index LuaForce::index}.
2356
2356
  * - {@link LuaForce}: A reference to {@link LuaForce} may be passed directly.
2357
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/ForceID.html Online documentation}
2357
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ForceID.html Online documentation}
2358
2358
  */
2359
2359
  export type ForceID = string | uint8 | LuaForce
2360
2360
  /**
@@ -2364,7 +2364,7 @@ declare module "factorio:runtime" {
2364
2364
  * - `string`: The fluid name.
2365
2365
  * - {@link LuaFluidPrototype}: The fluid prototype.
2366
2366
  * - {@link Fluid}: The fluid.
2367
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/FluidID.html Online documentation}
2367
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/FluidID.html Online documentation}
2368
2368
  */
2369
2369
  export type FluidID = string | LuaFluidPrototype | Fluid
2370
2370
  /**
@@ -2375,12 +2375,12 @@ declare module "factorio:runtime" {
2375
2375
  * - {@link LuaEntityPrototype}: The entity prototype. Normal quality will be used.
2376
2376
  * - `string`: The prototype name. Normal quality will be used.
2377
2377
  * - {@link EntityIDAndQualityIDPair}: A table of entity prototype and quality.
2378
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/EntityWithQualityID.html Online documentation}
2378
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/EntityWithQualityID.html Online documentation}
2379
2379
  */
2380
2380
  export type EntityWithQualityID = LuaEntity | LuaEntityPrototype | string | EntityIDAndQualityIDPair
2381
2381
  /**
2382
2382
  * An entity prototype with optional quality specification.
2383
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/EntityIDAndQualityIDPair.html Online documentation}
2383
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/EntityIDAndQualityIDPair.html Online documentation}
2384
2384
  */
2385
2385
  export interface EntityIDAndQualityIDPair {
2386
2386
  /**
@@ -2400,13 +2400,13 @@ declare module "factorio:runtime" {
2400
2400
  * - {@link LuaItemPrototype}: The item prototype. Normal quality will be used.
2401
2401
  * - `string`: The prototype name. Normal quality will be used.
2402
2402
  * - {@link ItemIDAndQualityIDPair}: A table of entity prototype and quality.
2403
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/ItemWithQualityID.html Online documentation}
2403
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ItemWithQualityID.html Online documentation}
2404
2404
  */
2405
2405
  export type ItemWithQualityID = LuaItemStack | LuaItemPrototype | string | ItemIDAndQualityIDPairWrite
2406
2406
  /**
2407
2407
  * An item prototype with optional quality specification.
2408
2408
  * @see ItemIDAndQualityIDPairWrite
2409
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/ItemIDAndQualityIDPair.html Online documentation}
2409
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ItemIDAndQualityIDPair.html Online documentation}
2410
2410
  */
2411
2411
  export interface ItemIDAndQualityIDPair {
2412
2412
  /**
@@ -2420,7 +2420,7 @@ declare module "factorio:runtime" {
2420
2420
  }
2421
2421
  /**
2422
2422
  * Write form of {@link ItemIDAndQualityIDPair}, where some properties allow additional values as input compared to the read form.
2423
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/ItemIDAndQualityIDPair.html Online documentation}
2423
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ItemIDAndQualityIDPair.html Online documentation}
2424
2424
  */
2425
2425
  export interface ItemIDAndQualityIDPairWrite {
2426
2426
  /**
@@ -2440,7 +2440,7 @@ declare module "factorio:runtime" {
2440
2440
  * - {@link LuaItemStack}: Non empty item stack.
2441
2441
  * - {@link LuaItem}: The item.
2442
2442
  * - `string`: The prototype name.
2443
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/ItemID.html Online documentation}
2443
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ItemID.html Online documentation}
2444
2444
  */
2445
2445
  export type ItemID = LuaItemPrototype | LuaItemStack | LuaItem | string
2446
2446
  /**
@@ -2450,7 +2450,7 @@ declare module "factorio:runtime" {
2450
2450
  * - {@link LuaEntityPrototype}: The entity prototype.
2451
2451
  * - {@link LuaEntity}: The entity.
2452
2452
  * - `string`: The prototype name.
2453
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/EntityID.html Online documentation}
2453
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/EntityID.html Online documentation}
2454
2454
  */
2455
2455
  export type EntityID = LuaEntityPrototype | LuaEntity | string
2456
2456
  /**
@@ -2460,7 +2460,7 @@ declare module "factorio:runtime" {
2460
2460
  * - {@link LuaTechnologyPrototype}: The technology prototype.
2461
2461
  * - {@link LuaTechnology}: Instance of the technology.
2462
2462
  * - `string`: The prototype name.
2463
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/TechnologyID.html Online documentation}
2463
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/TechnologyID.html Online documentation}
2464
2464
  */
2465
2465
  export type TechnologyID = LuaTechnologyPrototype | LuaTechnology | string
2466
2466
  /**
@@ -2469,7 +2469,7 @@ declare module "factorio:runtime" {
2469
2469
  * ## Union members
2470
2470
  * - {@link LuaParticlePrototype}: The particle prototype.
2471
2471
  * - `string`: The prototype name.
2472
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/ParticleID.html Online documentation}
2472
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ParticleID.html Online documentation}
2473
2473
  */
2474
2474
  export type ParticleID = LuaParticlePrototype | string
2475
2475
  /**
@@ -2478,7 +2478,7 @@ declare module "factorio:runtime" {
2478
2478
  * ## Union members
2479
2479
  * - {@link LuaDamagePrototype}: The damage type prototype.
2480
2480
  * - `string`: The prototype name.
2481
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/DamageTypeID.html Online documentation}
2481
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/DamageTypeID.html Online documentation}
2482
2482
  */
2483
2483
  export type DamageTypeID = LuaDamagePrototype | string
2484
2484
  /**
@@ -2487,7 +2487,7 @@ declare module "factorio:runtime" {
2487
2487
  * ## Union members
2488
2488
  * - {@link LuaTrivialSmokePrototype}: The trivial smoke prototype.
2489
2489
  * - `string`: The prototype name.
2490
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/TrivialSmokeID.html Online documentation}
2490
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/TrivialSmokeID.html Online documentation}
2491
2491
  */
2492
2492
  export type TrivialSmokeID = LuaTrivialSmokePrototype | string
2493
2493
  /**
@@ -2499,7 +2499,7 @@ declare module "factorio:runtime" {
2499
2499
  * - `"left"`
2500
2500
  * - `"right"`
2501
2501
  * - `"center"`
2502
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/TextAlign.html Online documentation}
2502
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/TextAlign.html Online documentation}
2503
2503
  */
2504
2504
  export type TextAlign = "left" | "right" | "center"
2505
2505
  /**
@@ -2512,7 +2512,7 @@ declare module "factorio:runtime" {
2512
2512
  * - `"middle"`
2513
2513
  * - `"baseline"`
2514
2514
  * - `"bottom"`
2515
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/VerticalTextAlign.html Online documentation}
2515
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/VerticalTextAlign.html Online documentation}
2516
2516
  */
2517
2517
  export type VerticalTextAlign = "top" | "middle" | "baseline" | "bottom"
2518
2518
  /**
@@ -2521,7 +2521,7 @@ declare module "factorio:runtime" {
2521
2521
  * ## Union members
2522
2522
  * - {@link LuaQualityPrototype}: The quality prototype.
2523
2523
  * - `string`: The prototype name.
2524
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/QualityID.html Online documentation}
2524
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/QualityID.html Online documentation}
2525
2525
  */
2526
2526
  export type QualityID = LuaQualityPrototype | string
2527
2527
  /**
@@ -2531,7 +2531,7 @@ declare module "factorio:runtime" {
2531
2531
  * - {@link LuaRecipePrototype}: By recipe prototype.
2532
2532
  * - {@link LuaRecipe}: By instance of recipe.
2533
2533
  * - `string`: By name of the recipe prototype.
2534
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/RecipeID.html Online documentation}
2534
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/RecipeID.html Online documentation}
2535
2535
  */
2536
2536
  export type RecipeID = LuaRecipePrototype | LuaRecipe | string
2537
2537
  /**
@@ -2541,7 +2541,7 @@ declare module "factorio:runtime" {
2541
2541
  * - {@link LuaTilePrototype}: By tile prototype.
2542
2542
  * - {@link LuaTile}: By instance of tile.
2543
2543
  * - `string`: By name of the tile prototype.
2544
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/TileID.html Online documentation}
2544
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/TileID.html Online documentation}
2545
2545
  */
2546
2546
  export type TileID = LuaTilePrototype | LuaTile | string
2547
2547
  export interface Fluid {
@@ -2565,7 +2565,7 @@ declare module "factorio:runtime" {
2565
2565
  * - {@link LuaEquipmentPrototype}: The equipment prototype.
2566
2566
  * - {@link LuaEquipment}: The equipment.
2567
2567
  * - `string`: The prototype name.
2568
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/EquipmentID.html Online documentation}
2568
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/EquipmentID.html Online documentation}
2569
2569
  */
2570
2570
  export type EquipmentID = LuaEquipmentPrototype | LuaEquipment | string
2571
2571
  /**
@@ -2576,12 +2576,12 @@ declare module "factorio:runtime" {
2576
2576
  * - {@link LuaEquipment}: The equipment. Both prototype and quality of the provided equipment will be used.
2577
2577
  * - `string`: The prototype name. Normal quality will be used.
2578
2578
  * - {@link EquipmentIDAndQualityIDPair}: A table of equipment prototype and quality.
2579
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/EquipmentWithQualityID.html Online documentation}
2579
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/EquipmentWithQualityID.html Online documentation}
2580
2580
  */
2581
2581
  export type EquipmentWithQualityID = LuaEquipmentPrototype | LuaEquipment | string | EquipmentIDAndQualityIDPair
2582
2582
  /**
2583
2583
  * An equipment prototype with optional quality specification.
2584
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/EquipmentIDAndQualityIDPair.html Online documentation}
2584
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/EquipmentIDAndQualityIDPair.html Online documentation}
2585
2585
  */
2586
2586
  export interface EquipmentIDAndQualityIDPair {
2587
2587
  /**
@@ -2602,7 +2602,7 @@ declare module "factorio:runtime" {
2602
2602
  * @example
2603
2603
  * -- Shorthand
2604
2604
  * {{-2, -3}, {5, 8}}
2605
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/BoundingBox.html Online documentation}
2605
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BoundingBox.html Online documentation}
2606
2606
  */
2607
2607
  export interface BoundingBox {
2608
2608
  readonly left_top: MapPosition
@@ -2612,7 +2612,7 @@ declare module "factorio:runtime" {
2612
2612
  /**
2613
2613
  * Array form of {@link BoundingBox}.
2614
2614
  * @see BoundingBox
2615
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/BoundingBox.html Online documentation}
2615
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BoundingBox.html Online documentation}
2616
2616
  */
2617
2617
  export type BoundingBoxArray = readonly [MapPosition | MapPositionArray, MapPosition | MapPositionArray]
2618
2618
  export interface BoundingBoxWrite {
@@ -2625,7 +2625,7 @@ declare module "factorio:runtime" {
2625
2625
  *
2626
2626
  * ## Union members
2627
2627
  * - {@link LuaSpacePlatform}
2628
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/SpacePlatformIdentification.html Online documentation}
2628
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/SpacePlatformIdentification.html Online documentation}
2629
2629
  */
2630
2630
  export type SpacePlatformIdentification = LuaSpacePlatform
2631
2631
  /**
@@ -2635,12 +2635,12 @@ declare module "factorio:runtime" {
2635
2635
  * - {@link LuaForce}[]: Array of many forces.
2636
2636
  * - {@link LuaForce}: A single force.
2637
2637
  * @see ForceSetWrite
2638
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/ForceSet.html Online documentation}
2638
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ForceSet.html Online documentation}
2639
2639
  */
2640
2640
  export type ForceSet = LuaForce[] | LuaForce
2641
2641
  /**
2642
2642
  * Write form of {@link ForceSet}, where some properties allow additional values as input compared to the read form.
2643
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/ForceSet.html Online documentation}
2643
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ForceSet.html Online documentation}
2644
2644
  */
2645
2645
  export type ForceSetWrite = readonly ForceID[] | ForceID
2646
2646
  /**
@@ -2649,7 +2649,7 @@ declare module "factorio:runtime" {
2649
2649
  * ## Union members
2650
2650
  * - {@link LuaDecorativePrototype}: The decorative prototype.
2651
2651
  * - `string`: The prototype name.
2652
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/DecorativeID.html Online documentation}
2652
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/DecorativeID.html Online documentation}
2653
2653
  */
2654
2654
  export type DecorativeID = LuaDecorativePrototype | string
2655
2655
  /**
@@ -2658,7 +2658,7 @@ declare module "factorio:runtime" {
2658
2658
  * ## Union members
2659
2659
  * - {@link LuaAsteroidChunkPrototype}: The asteroid chunk prototype.
2660
2660
  * - `string`: The prototype name.
2661
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/AsteroidChunkID.html Online documentation}
2661
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/AsteroidChunkID.html Online documentation}
2662
2662
  */
2663
2663
  export type AsteroidChunkID = LuaAsteroidChunkPrototype | string
2664
2664
  /**
@@ -2667,13 +2667,13 @@ declare module "factorio:runtime" {
2667
2667
  * ## Union members
2668
2668
  * - {@link LuaSpaceLocationPrototype}: The space location prototype.
2669
2669
  * - `string`: The prototype name.
2670
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/SpaceLocationID.html Online documentation}
2670
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/SpaceLocationID.html Online documentation}
2671
2671
  */
2672
2672
  export type SpaceLocationID = LuaSpaceLocationPrototype | string
2673
2673
  /**
2674
2674
  * 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.
2675
2675
  * @see SignalFilterWrite
2676
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/SignalFilter.html Online documentation}
2676
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/SignalFilter.html Online documentation}
2677
2677
  */
2678
2678
  export type SignalFilter =
2679
2679
  | {
@@ -2697,7 +2697,7 @@ declare module "factorio:runtime" {
2697
2697
  | string
2698
2698
  /**
2699
2699
  * Write form of {@link SignalFilter}, where some properties allow additional values as input compared to the read form.
2700
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/SignalFilter.html Online documentation}
2700
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/SignalFilter.html Online documentation}
2701
2701
  */
2702
2702
  export type SignalFilterWrite =
2703
2703
  | {
@@ -2721,7 +2721,7 @@ declare module "factorio:runtime" {
2721
2721
  | string
2722
2722
  /**
2723
2723
  * @see LogisticFilterWrite
2724
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/LogisticFilter.html Online documentation}
2724
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LogisticFilter.html Online documentation}
2725
2725
  */
2726
2726
  export interface LogisticFilter {
2727
2727
  /**
@@ -2747,7 +2747,7 @@ declare module "factorio:runtime" {
2747
2747
  }
2748
2748
  /**
2749
2749
  * Write form of {@link LogisticFilter}, where some properties allow additional values as input compared to the read form.
2750
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/LogisticFilter.html Online documentation}
2750
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LogisticFilter.html Online documentation}
2751
2751
  */
2752
2752
  export interface LogisticFilterWrite {
2753
2753
  /**
@@ -2803,23 +2803,23 @@ declare module "factorio:runtime" {
2803
2803
  * ## Union members
2804
2804
  * - {@link LuaSurfacePropertyPrototype}: The surface property prototype.
2805
2805
  * - `string`: The prototype name.
2806
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/SurfacePropertyID.html Online documentation}
2806
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/SurfacePropertyID.html Online documentation}
2807
2807
  */
2808
2808
  export type SurfacePropertyID = LuaSurfacePropertyPrototype | string
2809
2809
  /**
2810
2810
  * When writing it is possible to give LuaEntity or MapPosition directly. However, reading always returns the full ScriptRenderTargetTable.
2811
2811
  * @see ScriptRenderTargetWrite
2812
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/ScriptRenderTarget.html Online documentation}
2812
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ScriptRenderTarget.html Online documentation}
2813
2813
  */
2814
2814
  export type ScriptRenderTarget = LuaEntity | MapPosition | ScriptRenderTargetTable
2815
2815
  /**
2816
2816
  * Write form of {@link ScriptRenderTarget}, where some properties allow additional values as input compared to the read form.
2817
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/ScriptRenderTarget.html Online documentation}
2817
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ScriptRenderTarget.html Online documentation}
2818
2818
  */
2819
2819
  export type ScriptRenderTargetWrite = LuaEntity | (MapPosition | MapPositionArray) | ScriptRenderTargetTableWrite
2820
2820
  /**
2821
2821
  * @see ScriptRenderTargetTableWrite
2822
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/ScriptRenderTargetTable.html Online documentation}
2822
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ScriptRenderTargetTable.html Online documentation}
2823
2823
  */
2824
2824
  export interface ScriptRenderTargetTable {
2825
2825
  readonly entity?: LuaEntity
@@ -2834,7 +2834,7 @@ declare module "factorio:runtime" {
2834
2834
  }
2835
2835
  /**
2836
2836
  * Write form of {@link ScriptRenderTargetTable}, where some properties allow additional values as input compared to the read form.
2837
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/ScriptRenderTargetTable.html Online documentation}
2837
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ScriptRenderTargetTable.html Online documentation}
2838
2838
  */
2839
2839
  export interface ScriptRenderTargetTableWrite {
2840
2840
  readonly entity?: LuaEntity
@@ -2849,7 +2849,7 @@ declare module "factorio:runtime" {
2849
2849
  }
2850
2850
  /**
2851
2851
  * An item filter may be specified in two ways, either as a string which is a quality prototype name or as a table.
2852
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/QualityCondition.html Online documentation}
2852
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/QualityCondition.html Online documentation}
2853
2853
  */
2854
2854
  export type QualityCondition =
2855
2855
  | {
@@ -2866,7 +2866,7 @@ declare module "factorio:runtime" {
2866
2866
  /**
2867
2867
  * The destination of a cargo pod.
2868
2868
  * @see CargoDestinationWrite
2869
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/CargoDestination.html Online documentation}
2869
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/CargoDestination.html Online documentation}
2870
2870
  */
2871
2871
  export interface CargoDestination {
2872
2872
  /**
@@ -2904,7 +2904,7 @@ declare module "factorio:runtime" {
2904
2904
  }
2905
2905
  /**
2906
2906
  * Write form of {@link CargoDestination}, where some properties allow additional values as input compared to the read form.
2907
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/CargoDestination.html Online documentation}
2907
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/CargoDestination.html Online documentation}
2908
2908
  */
2909
2909
  export interface CargoDestinationWrite {
2910
2910
  /**
@@ -2958,7 +2958,7 @@ declare module "factorio:runtime" {
2958
2958
  * - {@link LuaCustomInputPrototype}: Custom input prototype.
2959
2959
  * - {@link defines.events}: Event identifier.
2960
2960
  * - `string`: Name of the event.
2961
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaEventType.html Online documentation}
2961
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaEventType.html Online documentation}
2962
2962
  */
2963
2963
  export type LuaEventType = LuaCustomEventPrototype | LuaCustomInputPrototype | defines.events | string | EventId<any>
2964
2964
  /**
@@ -2966,13 +2966,13 @@ declare module "factorio:runtime" {
2966
2966
  * - `"center-to-center"`
2967
2967
  * - `"bounding-box-to-bounding-box"`
2968
2968
  * - `"center-to-bounding-box"`
2969
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/RangeMode.html Online documentation}
2969
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/RangeMode.html Online documentation}
2970
2970
  */
2971
2971
  export type RangeMode = "center-to-center" | "bounding-box-to-bounding-box" | "center-to-bounding-box"
2972
2972
  /**
2973
2973
  * 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.
2974
2974
  * @see BlueprintEntityWrite
2975
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/BlueprintEntity.html Online documentation}
2975
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BlueprintEntity.html Online documentation}
2976
2976
  */
2977
2977
  export interface BlueprintEntity {
2978
2978
  /**
@@ -3186,7 +3186,7 @@ declare module "factorio:runtime" {
3186
3186
  }
3187
3187
  /**
3188
3188
  * Write form of {@link BlueprintEntity}, where some properties allow additional values as input compared to the read form.
3189
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/BlueprintEntity.html Online documentation}
3189
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BlueprintEntity.html Online documentation}
3190
3190
  */
3191
3191
  export interface BlueprintEntityWrite {
3192
3192
  /**
@@ -3407,7 +3407,7 @@ declare module "factorio:runtime" {
3407
3407
  }
3408
3408
  /**
3409
3409
  * @see BlueprintEquipmentWrite
3410
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/BlueprintEquipment.html Online documentation}
3410
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BlueprintEquipment.html Online documentation}
3411
3411
  */
3412
3412
  export interface BlueprintEquipment {
3413
3413
  readonly equipment: ItemIDAndQualityIDPair
@@ -3415,7 +3415,7 @@ declare module "factorio:runtime" {
3415
3415
  }
3416
3416
  /**
3417
3417
  * Write form of {@link BlueprintEquipment}, where some properties allow additional values as input compared to the read form.
3418
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/BlueprintEquipment.html Online documentation}
3418
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BlueprintEquipment.html Online documentation}
3419
3419
  */
3420
3420
  export interface BlueprintEquipmentWrite {
3421
3421
  readonly equipment: ItemIDAndQualityIDPairWrite
@@ -3423,7 +3423,7 @@ declare module "factorio:runtime" {
3423
3423
  }
3424
3424
  /**
3425
3425
  * @see BlueprintInventoryWrite
3426
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/BlueprintInventory.html Online documentation}
3426
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BlueprintInventory.html Online documentation}
3427
3427
  */
3428
3428
  export interface BlueprintInventory {
3429
3429
  readonly filters?: BlueprintLogisticFilter[]
@@ -3434,7 +3434,7 @@ declare module "factorio:runtime" {
3434
3434
  }
3435
3435
  /**
3436
3436
  * Write form of {@link BlueprintInventory}, where some properties allow additional values as input compared to the read form.
3437
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/BlueprintInventory.html Online documentation}
3437
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BlueprintInventory.html Online documentation}
3438
3438
  */
3439
3439
  export interface BlueprintInventoryWrite {
3440
3440
  readonly filters?: readonly BlueprintLogisticFilterWrite[]
@@ -3455,7 +3455,7 @@ declare module "factorio:runtime" {
3455
3455
  }
3456
3456
  /**
3457
3457
  * @see BlueprintControlBehaviorWrite
3458
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/BlueprintControlBehavior.html Online documentation}
3458
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BlueprintControlBehavior.html Online documentation}
3459
3459
  */
3460
3460
  export interface BlueprintControlBehavior {
3461
3461
  /**
@@ -3708,7 +3708,7 @@ declare module "factorio:runtime" {
3708
3708
  }
3709
3709
  /**
3710
3710
  * Write form of {@link BlueprintControlBehavior}, where some properties allow additional values as input compared to the read form.
3711
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/BlueprintControlBehavior.html Online documentation}
3711
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BlueprintControlBehavior.html Online documentation}
3712
3712
  */
3713
3713
  export interface BlueprintControlBehaviorWrite {
3714
3714
  /**
@@ -3989,7 +3989,7 @@ declare module "factorio:runtime" {
3989
3989
  * "2500 * (L - 3)"
3990
3990
  * @example
3991
3991
  * "(4e5 * (abs(speed) + 10.5)) / weight"
3992
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/MathExpression.html Online documentation}
3992
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/MathExpression.html Online documentation}
3993
3993
  */
3994
3994
  export type MathExpression = string
3995
3995
  /**
@@ -4011,7 +4011,7 @@ declare module "factorio:runtime" {
4011
4011
  * -- What a custom recipe would look like that had a probability of 0.5 to return a
4012
4012
  * -- minimum amount of 1 and a maximum amount of 5
4013
4013
  * {{type="item", name="custom-item", probability=0.5, amount_min=1, amount_max=5}}
4014
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/Product.html Online documentation}
4014
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/Product.html Online documentation}
4015
4015
  */
4016
4016
  export type Product = ItemProduct | FluidProduct | ResearchProgressProduct
4017
4017
  /**
@@ -4022,7 +4022,7 @@ declare module "factorio:runtime" {
4022
4022
  * -- What a custom recipe would look like that had a probability of 0.5 to return a
4023
4023
  * -- minimum amount of 1 and a maximum amount of 5
4024
4024
  * {{type="item", name="custom-item", probability=0.5, amount_min=1, amount_max=5}}
4025
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/ItemProduct.html Online documentation}
4025
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ItemProduct.html Online documentation}
4026
4026
  */
4027
4027
  export interface ItemProduct {
4028
4028
  readonly type: "item"
@@ -4066,7 +4066,7 @@ declare module "factorio:runtime" {
4066
4066
  * {{type="fluid", name="heavy-oil", amount=1},
4067
4067
  * {type="fluid", name="light-oil", amount=4.5},
4068
4068
  * {type="fluid", name="petroleum-gas", amount=5.5}}
4069
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/FluidProduct.html Online documentation}
4069
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/FluidProduct.html Online documentation}
4070
4070
  */
4071
4071
  export interface FluidProduct {
4072
4072
  readonly type: "fluid"
@@ -4114,7 +4114,7 @@ declare module "factorio:runtime" {
4114
4114
  }
4115
4115
  /**
4116
4116
  * @see LogisticSectionsWrite
4117
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/LogisticSections.html Online documentation}
4117
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LogisticSections.html Online documentation}
4118
4118
  */
4119
4119
  export interface LogisticSections {
4120
4120
  readonly sections?: LogisticSection[]
@@ -4125,7 +4125,7 @@ declare module "factorio:runtime" {
4125
4125
  }
4126
4126
  /**
4127
4127
  * Write form of {@link LogisticSections}, where some properties allow additional values as input compared to the read form.
4128
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/LogisticSections.html Online documentation}
4128
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LogisticSections.html Online documentation}
4129
4129
  */
4130
4130
  export interface LogisticSectionsWrite {
4131
4131
  readonly sections?: readonly LogisticSectionWrite[]
@@ -4161,7 +4161,7 @@ declare module "factorio:runtime" {
4161
4161
  }
4162
4162
  /**
4163
4163
  * @see LogisticSectionWrite
4164
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/LogisticSection.html Online documentation}
4164
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LogisticSection.html Online documentation}
4165
4165
  */
4166
4166
  export interface LogisticSection {
4167
4167
  readonly index: uint8
@@ -4178,7 +4178,7 @@ declare module "factorio:runtime" {
4178
4178
  }
4179
4179
  /**
4180
4180
  * Write form of {@link LogisticSection}, where some properties allow additional values as input compared to the read form.
4181
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/LogisticSection.html Online documentation}
4181
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LogisticSection.html Online documentation}
4182
4182
  */
4183
4183
  export interface LogisticSectionWrite {
4184
4184
  readonly index: uint8
@@ -4195,7 +4195,7 @@ declare module "factorio:runtime" {
4195
4195
  }
4196
4196
  /**
4197
4197
  * @see BlueprintLogisticFilterWrite
4198
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/BlueprintLogisticFilter.html Online documentation}
4198
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BlueprintLogisticFilter.html Online documentation}
4199
4199
  */
4200
4200
  export interface BlueprintLogisticFilter {
4201
4201
  readonly index: LogisticFilterIndex
@@ -4225,7 +4225,7 @@ declare module "factorio:runtime" {
4225
4225
  }
4226
4226
  /**
4227
4227
  * Write form of {@link BlueprintLogisticFilter}, where some properties allow additional values as input compared to the read form.
4228
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/BlueprintLogisticFilter.html Online documentation}
4228
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BlueprintLogisticFilter.html Online documentation}
4229
4229
  */
4230
4230
  export interface BlueprintLogisticFilterWrite {
4231
4231
  readonly index: LogisticFilterIndex
@@ -4255,7 +4255,7 @@ declare module "factorio:runtime" {
4255
4255
  }
4256
4256
  /**
4257
4257
  * Specifies how probability and richness are calculated when placing something on the map.
4258
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/AutoplaceSpecification.html Online documentation}
4258
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/AutoplaceSpecification.html Online documentation}
4259
4259
  */
4260
4260
  export interface AutoplaceSpecification {
4261
4261
  /**
@@ -4272,7 +4272,7 @@ declare module "factorio:runtime" {
4272
4272
  }
4273
4273
  /**
4274
4274
  * @see CliffPlacementSettingsWrite
4275
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/CliffPlacementSettings.html Online documentation}
4275
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/CliffPlacementSettings.html Online documentation}
4276
4276
  */
4277
4277
  export interface CliffPlacementSettings {
4278
4278
  /**
@@ -4302,7 +4302,7 @@ declare module "factorio:runtime" {
4302
4302
  }
4303
4303
  /**
4304
4304
  * Write form of {@link CliffPlacementSettings}, where some properties allow additional values as input compared to the read form.
4305
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/CliffPlacementSettings.html Online documentation}
4305
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/CliffPlacementSettings.html Online documentation}
4306
4306
  */
4307
4307
  export interface CliffPlacementSettingsWrite {
4308
4308
  /**
@@ -4332,7 +4332,7 @@ declare module "factorio:runtime" {
4332
4332
  }
4333
4333
  /**
4334
4334
  * @see AutoplaceSettingsWrite
4335
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/AutoplaceSettings.html Online documentation}
4335
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/AutoplaceSettings.html Online documentation}
4336
4336
  */
4337
4337
  export interface AutoplaceSettings {
4338
4338
  /**
@@ -4346,7 +4346,7 @@ declare module "factorio:runtime" {
4346
4346
  }
4347
4347
  /**
4348
4348
  * Write form of {@link AutoplaceSettings}, where some properties allow additional values as input compared to the read form.
4349
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/AutoplaceSettings.html Online documentation}
4349
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/AutoplaceSettings.html Online documentation}
4350
4350
  */
4351
4351
  export interface AutoplaceSettingsWrite {
4352
4352
  /**
@@ -4381,7 +4381,7 @@ declare module "factorio:runtime" {
4381
4381
  * surface.map_gen_settings = mgs
4382
4382
  * -- This does not require a NamedNoiseExpression to be defined, since literal numbers (and strings naming literal
4383
4383
  * -- numbers, e.g. `"123"`) are understood to stand for constant value expressions.
4384
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/MapGenSettings.html Online documentation}
4384
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/MapGenSettings.html Online documentation}
4385
4385
  */
4386
4386
  export interface MapGenSettings {
4387
4387
  /**
@@ -4436,7 +4436,7 @@ declare module "factorio:runtime" {
4436
4436
  }
4437
4437
  /**
4438
4438
  * Write form of {@link MapGenSettings}, where some properties allow additional values as input compared to the read form.
4439
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/MapGenSettings.html Online documentation}
4439
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/MapGenSettings.html Online documentation}
4440
4440
  */
4441
4441
  export interface MapGenSettingsWrite {
4442
4442
  /**
@@ -4495,7 +4495,7 @@ declare module "factorio:runtime" {
4495
4495
  }
4496
4496
  /**
4497
4497
  * These values are for the time frame of one second (60 ticks).
4498
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/PollutionMapSettings.html Online documentation}
4498
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/PollutionMapSettings.html Online documentation}
4499
4499
  */
4500
4500
  export interface PollutionMapSettings {
4501
4501
  /**
@@ -4549,7 +4549,7 @@ declare module "factorio:runtime" {
4549
4549
  }
4550
4550
  /**
4551
4551
  * These values represent a percentual increase in evolution. This means a value of `0.1` would increase evolution by 10%.
4552
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/EnemyEvolutionMapSettings.html Online documentation}
4552
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/EnemyEvolutionMapSettings.html Online documentation}
4553
4553
  */
4554
4554
  export interface EnemyEvolutionMapSettings {
4555
4555
  /**
@@ -4587,7 +4587,7 @@ declare module "factorio:runtime" {
4587
4587
  * * neighbouring_base_chunk_coefficient^distance(chunk, neighbour)
4588
4588
  * score(chunk) = 1 / (1 + player + base)
4589
4589
  * ```
4590
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/EnemyExpansionMapSettings.html Online documentation}
4590
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/EnemyExpansionMapSettings.html Online documentation}
4591
4591
  */
4592
4592
  export interface EnemyExpansionMapSettings {
4593
4593
  /**
@@ -4846,17 +4846,17 @@ declare module "factorio:runtime" {
4846
4846
  }
4847
4847
  /**
4848
4848
  * Technology difficulty settings. Updating any of the attributes will immediately take effect in the game engine.
4849
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/DifficultySettings.html Online documentation}
4849
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/DifficultySettings.html Online documentation}
4850
4850
  */
4851
4851
  export interface DifficultySettings {
4852
4852
  /**
4853
4853
  * A value in range [0.001, 1000].
4854
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/DifficultySettings.technology_price_multiplier.html Online documentation}
4854
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/DifficultySettings.technology_price_multiplier.html Online documentation}
4855
4855
  */
4856
4856
  technology_price_multiplier: double
4857
4857
  /**
4858
4858
  * A value in range [0.01, 100].
4859
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/DifficultySettings.spoil_time_modifier.html Online documentation}
4859
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/DifficultySettings.spoil_time_modifier.html Online documentation}
4860
4860
  */
4861
4861
  spoil_time_modifier: double
4862
4862
  }
@@ -4872,7 +4872,7 @@ declare module "factorio:runtime" {
4872
4872
  }
4873
4873
  /**
4874
4874
  * A standard table containing all {@link MapSettings} attributes plus an additional table that contains all {@link DifficultySettings} properties.
4875
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/MapAndDifficultySettings.html Online documentation}
4875
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/MapAndDifficultySettings.html Online documentation}
4876
4876
  */
4877
4877
  export interface MapAndDifficultySettings {
4878
4878
  readonly pollution: PollutionMapSettings
@@ -4893,7 +4893,7 @@ declare module "factorio:runtime" {
4893
4893
  * @example
4894
4894
  * -- Increase the number of short paths the pathfinder can cache.
4895
4895
  * game.map_settings.path_finder.short_cache_size = 15
4896
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/MapSettings.html Online documentation}
4896
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/MapSettings.html Online documentation}
4897
4897
  */
4898
4898
  export interface MapSettings {
4899
4899
  pollution: PollutionMapSettings
@@ -4905,13 +4905,13 @@ declare module "factorio:runtime" {
4905
4905
  asteroids: AsteroidMapSettings
4906
4906
  /**
4907
4907
  * If a behavior fails this many times, the enemy (or enemy group) is destroyed. This solves biters getting stuck within their own base.
4908
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/MapSettings.max_failed_behavior_count.html Online documentation}
4908
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/MapSettings.max_failed_behavior_count.html Online documentation}
4909
4909
  */
4910
4910
  max_failed_behavior_count: uint
4911
4911
  }
4912
4912
  /**
4913
4913
  * @see BlueprintScheduleRecordWrite
4914
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/BlueprintScheduleRecord.html Online documentation}
4914
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BlueprintScheduleRecord.html Online documentation}
4915
4915
  */
4916
4916
  export interface BlueprintScheduleRecord {
4917
4917
  /**
@@ -4925,7 +4925,7 @@ declare module "factorio:runtime" {
4925
4925
  }
4926
4926
  /**
4927
4927
  * Write form of {@link BlueprintScheduleRecord}, where some properties allow additional values as input compared to the read form.
4928
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/BlueprintScheduleRecord.html Online documentation}
4928
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BlueprintScheduleRecord.html Online documentation}
4929
4929
  */
4930
4930
  export interface BlueprintScheduleRecordWrite {
4931
4931
  /**
@@ -4939,7 +4939,7 @@ declare module "factorio:runtime" {
4939
4939
  }
4940
4940
  /**
4941
4941
  * @see ScheduleRecordWrite
4942
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/ScheduleRecord.html Online documentation}
4942
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ScheduleRecord.html Online documentation}
4943
4943
  */
4944
4944
  export interface ScheduleRecord {
4945
4945
  /**
@@ -4958,7 +4958,7 @@ declare module "factorio:runtime" {
4958
4958
  }
4959
4959
  /**
4960
4960
  * Write form of {@link ScheduleRecord}, where some properties allow additional values as input compared to the read form.
4961
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/ScheduleRecord.html Online documentation}
4961
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ScheduleRecord.html Online documentation}
4962
4962
  */
4963
4963
  export interface ScheduleRecordWrite {
4964
4964
  /**
@@ -4977,7 +4977,7 @@ declare module "factorio:runtime" {
4977
4977
  }
4978
4978
  /**
4979
4979
  * @see BlueprintScheduleInterruptWrite
4980
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/BlueprintScheduleInterrupt.html Online documentation}
4980
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BlueprintScheduleInterrupt.html Online documentation}
4981
4981
  */
4982
4982
  export interface BlueprintScheduleInterrupt {
4983
4983
  readonly name?: string
@@ -4987,7 +4987,7 @@ declare module "factorio:runtime" {
4987
4987
  }
4988
4988
  /**
4989
4989
  * Write form of {@link BlueprintScheduleInterrupt}, where some properties allow additional values as input compared to the read form.
4990
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/BlueprintScheduleInterrupt.html Online documentation}
4990
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BlueprintScheduleInterrupt.html Online documentation}
4991
4991
  */
4992
4992
  export interface BlueprintScheduleInterruptWrite {
4993
4993
  readonly name?: string
@@ -4997,7 +4997,7 @@ declare module "factorio:runtime" {
4997
4997
  }
4998
4998
  /**
4999
4999
  * @see ScheduleInterruptWrite
5000
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/ScheduleInterrupt.html Online documentation}
5000
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ScheduleInterrupt.html Online documentation}
5001
5001
  */
5002
5002
  export interface ScheduleInterrupt {
5003
5003
  readonly name?: string
@@ -5007,7 +5007,7 @@ declare module "factorio:runtime" {
5007
5007
  }
5008
5008
  /**
5009
5009
  * Write form of {@link ScheduleInterrupt}, where some properties allow additional values as input compared to the read form.
5010
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/ScheduleInterrupt.html Online documentation}
5010
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ScheduleInterrupt.html Online documentation}
5011
5011
  */
5012
5012
  export interface ScheduleInterruptWrite {
5013
5013
  readonly name?: string
@@ -5017,7 +5017,7 @@ declare module "factorio:runtime" {
5017
5017
  }
5018
5018
  /**
5019
5019
  * @see BlueprintScheduleWrite
5020
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/BlueprintSchedule.html Online documentation}
5020
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BlueprintSchedule.html Online documentation}
5021
5021
  */
5022
5022
  export interface BlueprintSchedule {
5023
5023
  readonly records?: BlueprintScheduleRecord[]
@@ -5026,7 +5026,7 @@ declare module "factorio:runtime" {
5026
5026
  }
5027
5027
  /**
5028
5028
  * Write form of {@link BlueprintSchedule}, where some properties allow additional values as input compared to the read form.
5029
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/BlueprintSchedule.html Online documentation}
5029
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BlueprintSchedule.html Online documentation}
5030
5030
  */
5031
5031
  export interface BlueprintScheduleWrite {
5032
5032
  readonly records?: readonly BlueprintScheduleRecordWrite[]
@@ -5035,7 +5035,7 @@ declare module "factorio:runtime" {
5035
5035
  }
5036
5036
  /**
5037
5037
  * @see WaitConditionWrite
5038
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/WaitCondition.html Online documentation}
5038
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/WaitCondition.html Online documentation}
5039
5039
  */
5040
5040
  export interface WaitCondition {
5041
5041
  readonly type: WaitConditionType
@@ -5066,7 +5066,7 @@ declare module "factorio:runtime" {
5066
5066
  }
5067
5067
  /**
5068
5068
  * Write form of {@link WaitCondition}, where some properties allow additional values as input compared to the read form.
5069
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/WaitCondition.html Online documentation}
5069
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/WaitCondition.html Online documentation}
5070
5070
  */
5071
5071
  export interface WaitConditionWrite {
5072
5072
  readonly type: WaitConditionType
@@ -5125,7 +5125,7 @@ declare module "factorio:runtime" {
5125
5125
  * - `"at_station"`
5126
5126
  * - `"not_at_station"`
5127
5127
  * - `"damage_taken"`
5128
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/WaitConditionType.html Online documentation}
5128
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/WaitConditionType.html Online documentation}
5129
5129
  */
5130
5130
  export type WaitConditionType =
5131
5131
  | "time"
@@ -5167,7 +5167,7 @@ declare module "factorio:runtime" {
5167
5167
  * - `"blueprint-snap-rectangle"`: Green by default.
5168
5168
  * - `"spidertron-remote-selected"`
5169
5169
  * - `"spidertron-remote-to-be-selected"`
5170
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/CursorBoxRenderType.html Online documentation}
5170
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/CursorBoxRenderType.html Online documentation}
5171
5171
  */
5172
5172
  export type CursorBoxRenderType =
5173
5173
  | "entity"
@@ -5183,7 +5183,7 @@ declare module "factorio:runtime" {
5183
5183
  | "spidertron-remote-to-be-selected"
5184
5184
  /**
5185
5185
  * What is shown in the map view. If a field is not given, that setting will not be changed.
5186
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/MapViewSettings.html Online documentation}
5186
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/MapViewSettings.html Online documentation}
5187
5187
  */
5188
5188
  export interface MapViewSettings {
5189
5189
  readonly "show-logistic-network"?: boolean
@@ -5276,7 +5276,7 @@ declare module "factorio:runtime" {
5276
5276
  * - `"collision-selection-box"`: 189
5277
5277
  * - `"arrow"`: 190
5278
5278
  * - `"cursor"`: 226
5279
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/RenderLayer.html Online documentation}
5279
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/RenderLayer.html Online documentation}
5280
5280
  */
5281
5281
  export type RenderLayer =
5282
5282
  | `${bigint}`
@@ -5386,7 +5386,7 @@ declare module "factorio:runtime" {
5386
5386
  * - `"entity-with-quality"`
5387
5387
  * - `"recipe-with-quality"`
5388
5388
  * - `"equipment-with-quality"`
5389
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/ElemType.html Online documentation}
5389
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ElemType.html Online documentation}
5390
5390
  */
5391
5391
  export type ElemType =
5392
5392
  | "achievement"
@@ -5413,7 +5413,7 @@ declare module "factorio:runtime" {
5413
5413
  * - `"left"`
5414
5414
  * - `"right"`
5415
5415
  * - `"none"`
5416
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/SwitchState.html Online documentation}
5416
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/SwitchState.html Online documentation}
5417
5417
  */
5418
5418
  export type SwitchState = "left" | "right" | "none"
5419
5419
  export interface ElemID {
@@ -5454,7 +5454,7 @@ declare module "factorio:runtime" {
5454
5454
  * - `"destroy-decoratives"`
5455
5455
  * - `"camera-effect"`
5456
5456
  * - `"activate-impact"`
5457
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/TriggerEffectItemType.html Online documentation}
5457
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/TriggerEffectItemType.html Online documentation}
5458
5458
  */
5459
5459
  export type TriggerEffectItemType =
5460
5460
  | "damage"
@@ -5491,7 +5491,7 @@ declare module "factorio:runtime" {
5491
5491
  }
5492
5492
  /**
5493
5493
  * A set of trigger target masks.
5494
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/TriggerTargetMask.html Online documentation}
5494
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/TriggerTargetMask.html Online documentation}
5495
5495
  */
5496
5496
  export type TriggerTargetMask = Record<string, true>
5497
5497
  export interface TriggerItem {
@@ -5558,7 +5558,7 @@ declare module "factorio:runtime" {
5558
5558
  * -- If 'entity-description.furnace' exists, it is concatenated with "\n" and returned. Otherwise, if 'item-description.furnace'
5559
5559
  * -- exists, it is returned as-is. Otherwise, "optional fallback" is returned. If this value wasn't specified, the
5560
5560
  * -- translation result would be "Unknown key: 'item-description.furnace'".
5561
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/LocalisedString.html Online documentation}
5561
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LocalisedString.html Online documentation}
5562
5562
  */
5563
5563
  export type LocalisedString = string | number | boolean | LuaObject | nil | [string, ...LocalisedString[]]
5564
5564
  export interface DisplayResolution {
@@ -5569,7 +5569,7 @@ declare module "factorio:runtime" {
5569
5569
  * 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".
5570
5570
  *
5571
5571
  * For example then, a value of `0.625` would indicate "south-west", and a value of `0.875` would indicate "north-west".
5572
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/RealOrientation.html Online documentation}
5572
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/RealOrientation.html Online documentation}
5573
5573
  */
5574
5574
  export type RealOrientation = float
5575
5575
  /**
@@ -5584,7 +5584,7 @@ declare module "factorio:runtime" {
5584
5584
  * @example
5585
5585
  * -- Shorthand
5586
5586
  * {1.625, 2.375}
5587
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/MapPosition.html Online documentation}
5587
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/MapPosition.html Online documentation}
5588
5588
  */
5589
5589
  export interface MapPosition {
5590
5590
  readonly x: double
@@ -5593,13 +5593,13 @@ declare module "factorio:runtime" {
5593
5593
  /**
5594
5594
  * Array form of {@link MapPosition}.
5595
5595
  * @see MapPosition
5596
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/MapPosition.html Online documentation}
5596
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/MapPosition.html Online documentation}
5597
5597
  */
5598
5598
  export type MapPositionArray = readonly [double, double]
5599
5599
  /**
5600
5600
  * 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.
5601
5601
  * @see ChunkPositionArray
5602
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/ChunkPosition.html Online documentation}
5602
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ChunkPosition.html Online documentation}
5603
5603
  */
5604
5604
  export interface ChunkPosition {
5605
5605
  readonly x: int
@@ -5608,13 +5608,13 @@ declare module "factorio:runtime" {
5608
5608
  /**
5609
5609
  * Array form of {@link ChunkPosition}.
5610
5610
  * @see ChunkPosition
5611
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/ChunkPosition.html Online documentation}
5611
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ChunkPosition.html Online documentation}
5612
5612
  */
5613
5613
  export type ChunkPositionArray = readonly [int, int]
5614
5614
  /**
5615
5615
  * 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.
5616
5616
  * @see TilePositionArray
5617
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/TilePosition.html Online documentation}
5617
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/TilePosition.html Online documentation}
5618
5618
  */
5619
5619
  export interface TilePosition {
5620
5620
  readonly x: int
@@ -5623,7 +5623,7 @@ declare module "factorio:runtime" {
5623
5623
  /**
5624
5624
  * Array form of {@link TilePosition}.
5625
5625
  * @see TilePosition
5626
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/TilePosition.html Online documentation}
5626
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/TilePosition.html Online documentation}
5627
5627
  */
5628
5628
  export type TilePositionArray = readonly [int, int]
5629
5629
  /**
@@ -5636,7 +5636,7 @@ declare module "factorio:runtime" {
5636
5636
  * @example
5637
5637
  * -- Shorthand
5638
5638
  * {1, 2}
5639
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/EquipmentPosition.html Online documentation}
5639
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/EquipmentPosition.html Online documentation}
5640
5640
  */
5641
5641
  export interface EquipmentPosition {
5642
5642
  readonly x: int
@@ -5645,13 +5645,13 @@ declare module "factorio:runtime" {
5645
5645
  /**
5646
5646
  * Array form of {@link EquipmentPosition}.
5647
5647
  * @see EquipmentPosition
5648
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/EquipmentPosition.html Online documentation}
5648
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/EquipmentPosition.html Online documentation}
5649
5649
  */
5650
5650
  export type EquipmentPositionArray = readonly [int, int]
5651
5651
  /**
5652
5652
  * 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.
5653
5653
  * @see GuiLocationArray
5654
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/GuiLocation.html Online documentation}
5654
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GuiLocation.html Online documentation}
5655
5655
  */
5656
5656
  export interface GuiLocation {
5657
5657
  readonly x: int
@@ -5660,12 +5660,12 @@ declare module "factorio:runtime" {
5660
5660
  /**
5661
5661
  * Array form of {@link GuiLocation}.
5662
5662
  * @see GuiLocation
5663
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/GuiLocation.html Online documentation}
5663
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GuiLocation.html Online documentation}
5664
5664
  */
5665
5665
  export type GuiLocationArray = readonly [int, int]
5666
5666
  /**
5667
5667
  * A {@link ChunkPosition} with an added bounding box for the area of the chunk.
5668
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/ChunkPositionAndArea.html Online documentation}
5668
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ChunkPositionAndArea.html Online documentation}
5669
5669
  */
5670
5670
  export interface ChunkPositionAndArea {
5671
5671
  readonly x: int
@@ -5674,7 +5674,7 @@ declare module "factorio:runtime" {
5674
5674
  }
5675
5675
  /**
5676
5676
  * A table used to define a manual shape for a piece of equipment.
5677
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/EquipmentPoint.html Online documentation}
5677
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/EquipmentPoint.html Online documentation}
5678
5678
  */
5679
5679
  export interface EquipmentPoint {
5680
5680
  readonly x: uint
@@ -5710,7 +5710,7 @@ declare module "factorio:runtime" {
5710
5710
  * 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.
5711
5711
  * @example
5712
5712
  * {a = 1, b = true, c = "three", d = {e = "f"}}
5713
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/Tags.html Online documentation}
5713
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/Tags.html Online documentation}
5714
5714
  */
5715
5715
  export type Tags = Record<string, AnyBasic>
5716
5716
  export interface SurfaceCondition {
@@ -5744,13 +5744,13 @@ declare module "factorio:runtime" {
5744
5744
  * 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.
5745
5745
  * @example
5746
5746
  * right = {1.0, 0.0}
5747
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/Vector.html Online documentation}
5747
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/Vector.html Online documentation}
5748
5748
  */
5749
5749
  export type Vector = MapPositionArray
5750
5750
  /**
5751
5751
  * An area defined using the map editor.
5752
5752
  * @see ScriptAreaWrite
5753
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/ScriptArea.html Online documentation}
5753
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ScriptArea.html Online documentation}
5754
5754
  */
5755
5755
  export interface ScriptArea {
5756
5756
  readonly area: BoundingBox
@@ -5760,7 +5760,7 @@ declare module "factorio:runtime" {
5760
5760
  }
5761
5761
  /**
5762
5762
  * Write form of {@link ScriptArea}, where some properties allow additional values as input compared to the read form.
5763
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/ScriptArea.html Online documentation}
5763
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ScriptArea.html Online documentation}
5764
5764
  */
5765
5765
  export interface ScriptAreaWrite {
5766
5766
  readonly area: BoundingBoxWrite | BoundingBoxArray
@@ -5771,7 +5771,7 @@ declare module "factorio:runtime" {
5771
5771
  /**
5772
5772
  * A position defined using the map editor.
5773
5773
  * @see ScriptPositionWrite
5774
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/ScriptPosition.html Online documentation}
5774
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ScriptPosition.html Online documentation}
5775
5775
  */
5776
5776
  export interface ScriptPosition {
5777
5777
  readonly position: MapPosition
@@ -5781,7 +5781,7 @@ declare module "factorio:runtime" {
5781
5781
  }
5782
5782
  /**
5783
5783
  * Write form of {@link ScriptPosition}, where some properties allow additional values as input compared to the read form.
5784
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/ScriptPosition.html Online documentation}
5784
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ScriptPosition.html Online documentation}
5785
5785
  */
5786
5786
  export interface ScriptPositionWrite {
5787
5787
  readonly position: MapPosition | MapPositionArray
@@ -5799,7 +5799,7 @@ declare module "factorio:runtime" {
5799
5799
  * red2 = {r = 0.5, a = 0.5} -- Same color as red1
5800
5800
  * black = {} -- All channels omitted: black
5801
5801
  * red1_short = {0.5, 0, 0, 0.5} -- Same color as red1 in short-hand notation
5802
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/Color.html Online documentation}
5802
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/Color.html Online documentation}
5803
5803
  */
5804
5804
  export interface Color {
5805
5805
  readonly r?: float
@@ -5810,13 +5810,13 @@ declare module "factorio:runtime" {
5810
5810
  /**
5811
5811
  * Array form of {@link Color}.
5812
5812
  * @see Color
5813
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/Color.html Online documentation}
5813
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/Color.html Online documentation}
5814
5814
  */
5815
5815
  export type ColorArray = readonly [r: double, g: double, b: double, a?: double]
5816
5816
  /**
5817
5817
  * 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].
5818
5818
  * @see ColorModifierArray
5819
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/ColorModifier.html Online documentation}
5819
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ColorModifier.html Online documentation}
5820
5820
  */
5821
5821
  export interface ColorModifier {
5822
5822
  readonly r?: float
@@ -5827,7 +5827,7 @@ declare module "factorio:runtime" {
5827
5827
  /**
5828
5828
  * Array form of {@link ColorModifier}.
5829
5829
  * @see ColorModifier
5830
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/ColorModifier.html Online documentation}
5830
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ColorModifier.html Online documentation}
5831
5831
  */
5832
5832
  export type ColorModifierArray = readonly [r: double, g: double, b: double, a?: double]
5833
5833
  export interface CraftingQueueItem {
@@ -5970,7 +5970,7 @@ declare module "factorio:runtime" {
5970
5970
  }
5971
5971
  /**
5972
5972
  * @see AsteroidChunkWrite
5973
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/AsteroidChunk.html Online documentation}
5973
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/AsteroidChunk.html Online documentation}
5974
5974
  */
5975
5975
  export interface AsteroidChunk {
5976
5976
  /**
@@ -5982,7 +5982,7 @@ declare module "factorio:runtime" {
5982
5982
  }
5983
5983
  /**
5984
5984
  * Write form of {@link AsteroidChunk}, where some properties allow additional values as input compared to the read form.
5985
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/AsteroidChunk.html Online documentation}
5985
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/AsteroidChunk.html Online documentation}
5986
5986
  */
5987
5987
  export interface AsteroidChunkWrite {
5988
5988
  /**
@@ -6004,7 +6004,7 @@ declare module "factorio:runtime" {
6004
6004
  }
6005
6005
  /**
6006
6006
  * Either `icon`, `text`, or both must be provided.
6007
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/ChartTagSpec.html Online documentation}
6007
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ChartTagSpec.html Online documentation}
6008
6008
  */
6009
6009
  export interface ChartTagSpec {
6010
6010
  readonly position: MapPosition | MapPositionArray
@@ -6014,93 +6014,93 @@ declare module "factorio:runtime" {
6014
6014
  }
6015
6015
  /**
6016
6016
  * 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.
6017
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/GameViewSettings.html Online documentation}
6017
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GameViewSettings.html Online documentation}
6018
6018
  */
6019
6019
  export interface GameViewSettings {
6020
6020
  /**
6021
6021
  * Show the controller GUI elements. This includes the toolbar, the selected tool slot, the armour slot, and the gun and ammunition slots.
6022
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/GameViewSettings.show_controller_gui.html Online documentation}
6022
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GameViewSettings.show_controller_gui.html Online documentation}
6023
6023
  */
6024
6024
  show_controller_gui: boolean
6025
6025
  /**
6026
6026
  * Show the chart in the upper right-hand corner of the screen.
6027
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/GameViewSettings.show_minimap.html Online documentation}
6027
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GameViewSettings.show_minimap.html Online documentation}
6028
6028
  */
6029
6029
  show_minimap: boolean
6030
6030
  /**
6031
6031
  * Show research progress and name in the upper right-hand corner of the screen.
6032
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/GameViewSettings.show_research_info.html Online documentation}
6032
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GameViewSettings.show_research_info.html Online documentation}
6033
6033
  */
6034
6034
  show_research_info: boolean
6035
6035
  /**
6036
6036
  * Show overlay icons on entities. Also known as "alt-mode".
6037
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/GameViewSettings.show_entity_info.html Online documentation}
6037
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GameViewSettings.show_entity_info.html Online documentation}
6038
6038
  */
6039
6039
  show_entity_info: boolean
6040
6040
  /**
6041
6041
  * Show the flashing alert icons next to the player's toolbar.
6042
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/GameViewSettings.show_alert_gui.html Online documentation}
6042
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GameViewSettings.show_alert_gui.html Online documentation}
6043
6043
  */
6044
6044
  show_alert_gui: boolean
6045
6045
  /**
6046
6046
  * When `true` (the default), mousing over an entity will select it. Otherwise, moving the mouse won't update entity selection.
6047
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/GameViewSettings.update_entity_selection.html Online documentation}
6047
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GameViewSettings.update_entity_selection.html Online documentation}
6048
6048
  */
6049
6049
  update_entity_selection: boolean
6050
6050
  /**
6051
6051
  * When `true` (`false` is default), the rails will always show the rail block visualisation.
6052
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/GameViewSettings.show_rail_block_visualisation.html Online documentation}
6052
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GameViewSettings.show_rail_block_visualisation.html Online documentation}
6053
6053
  */
6054
6054
  show_rail_block_visualisation: boolean
6055
6055
  /**
6056
6056
  * Shows or hides the buttons row.
6057
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/GameViewSettings.show_side_menu.html Online documentation}
6057
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GameViewSettings.show_side_menu.html Online documentation}
6058
6058
  */
6059
6059
  show_side_menu: boolean
6060
6060
  /**
6061
6061
  * Shows or hides the view options when map is opened.
6062
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/GameViewSettings.show_map_view_options.html Online documentation}
6062
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GameViewSettings.show_map_view_options.html Online documentation}
6063
6063
  */
6064
6064
  show_map_view_options: boolean
6065
6065
  /**
6066
6066
  * Shows or hides the tooltip that is displayed when selecting an entity.
6067
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/GameViewSettings.show_entity_tooltip.html Online documentation}
6067
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GameViewSettings.show_entity_tooltip.html Online documentation}
6068
6068
  */
6069
6069
  show_entity_tooltip: boolean
6070
6070
  /**
6071
6071
  * Shows or hides quickbar of shortcuts.
6072
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/GameViewSettings.show_quickbar.html Online documentation}
6072
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GameViewSettings.show_quickbar.html Online documentation}
6073
6073
  */
6074
6074
  show_quickbar: boolean
6075
6075
  /**
6076
6076
  * Shows or hides the shortcut bar.
6077
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/GameViewSettings.show_shortcut_bar.html Online documentation}
6077
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GameViewSettings.show_shortcut_bar.html Online documentation}
6078
6078
  */
6079
6079
  show_shortcut_bar: boolean
6080
6080
  /**
6081
6081
  * Shows or hides the crafting queue.
6082
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/GameViewSettings.show_crafting_queue.html Online documentation}
6082
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GameViewSettings.show_crafting_queue.html Online documentation}
6083
6083
  */
6084
6084
  show_crafting_queue: boolean
6085
6085
  /**
6086
6086
  * Shows or hides the tool window with the weapons and armor.
6087
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/GameViewSettings.show_tool_bar.html Online documentation}
6087
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GameViewSettings.show_tool_bar.html Online documentation}
6088
6088
  */
6089
6089
  show_tool_bar: boolean
6090
6090
  /**
6091
6091
  * Shows or hides the mouse and keyboard/controller button hints in the bottom left corner if they are enabled in the interface settings.
6092
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/GameViewSettings.show_hotkey_suggestions.html Online documentation}
6092
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GameViewSettings.show_hotkey_suggestions.html Online documentation}
6093
6093
  */
6094
6094
  show_hotkey_suggestions: boolean
6095
6095
  /**
6096
6096
  * Shows or hides the surface list while in Remote View.
6097
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/GameViewSettings.show_surface_list.html Online documentation}
6097
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GameViewSettings.show_surface_list.html Online documentation}
6098
6098
  */
6099
6099
  show_surface_list: boolean
6100
6100
  }
6101
6101
  /**
6102
6102
  * The data that can be extracted from a map exchange string, as a plain table.
6103
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/MapExchangeStringData.html Online documentation}
6103
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/MapExchangeStringData.html Online documentation}
6104
6104
  */
6105
6105
  export interface MapExchangeStringData {
6106
6106
  readonly map_settings: MapAndDifficultySettings
@@ -6108,7 +6108,7 @@ declare module "factorio:runtime" {
6108
6108
  }
6109
6109
  /**
6110
6110
  * @see BlueprintSignalIconWrite
6111
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/BlueprintSignalIcon.html Online documentation}
6111
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BlueprintSignalIcon.html Online documentation}
6112
6112
  */
6113
6113
  export interface BlueprintSignalIcon {
6114
6114
  /**
@@ -6122,7 +6122,7 @@ declare module "factorio:runtime" {
6122
6122
  }
6123
6123
  /**
6124
6124
  * Write form of {@link BlueprintSignalIcon}, where some properties allow additional values as input compared to the read form.
6125
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/BlueprintSignalIcon.html Online documentation}
6125
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BlueprintSignalIcon.html Online documentation}
6126
6126
  */
6127
6127
  export interface BlueprintSignalIconWrite {
6128
6128
  /**
@@ -6151,12 +6151,12 @@ declare module "factorio:runtime" {
6151
6151
  * - `target_entity_number`
6152
6152
  *
6153
6153
  * - `target_wire_connector_id`
6154
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/BlueprintWire.html Online documentation}
6154
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BlueprintWire.html Online documentation}
6155
6155
  */
6156
6156
  export type BlueprintWire = readonly [uint, defines.wire_connector_id, uint, defines.wire_connector_id]
6157
6157
  /**
6158
6158
  * @see TileWrite
6159
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/Tile.html Online documentation}
6159
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/Tile.html Online documentation}
6160
6160
  */
6161
6161
  export interface Tile {
6162
6162
  /**
@@ -6170,7 +6170,7 @@ declare module "factorio:runtime" {
6170
6170
  }
6171
6171
  /**
6172
6172
  * Write form of {@link Tile}, where some properties allow additional values as input compared to the read form.
6173
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/Tile.html Online documentation}
6173
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/Tile.html Online documentation}
6174
6174
  */
6175
6175
  export interface TileWrite {
6176
6176
  /**
@@ -6225,7 +6225,7 @@ declare module "factorio:runtime" {
6225
6225
  *
6226
6226
  * Other attributes may be specified depending on `type`:
6227
6227
  * - `"fluid"`: {@link FluidIngredient}
6228
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/Ingredient.html Online documentation}
6228
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/Ingredient.html Online documentation}
6229
6229
  */
6230
6230
  export type Ingredient = FluidIngredient | OtherIngredient
6231
6231
  export interface Loot {
@@ -6391,7 +6391,7 @@ declare module "factorio:runtime" {
6391
6391
  * - `"unlock-recipe"`: {@link UnlockRecipeTechnologyModifier}
6392
6392
  * - `"nothing"`: {@link NothingTechnologyModifier}
6393
6393
  * - Other types: {@link OtherTechnologyModifier}
6394
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/TechnologyModifier.html Online documentation}
6394
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/TechnologyModifier.html Online documentation}
6395
6395
  */
6396
6396
  export type TechnologyModifier =
6397
6397
  | GunSpeedTechnologyModifier
@@ -6403,7 +6403,7 @@ declare module "factorio:runtime" {
6403
6403
  | OtherTechnologyModifier
6404
6404
  /**
6405
6405
  * 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}.
6406
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/NoiseExpression.html Online documentation}
6406
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/NoiseExpression.html Online documentation}
6407
6407
  */
6408
6408
  export interface NoiseExpression {
6409
6409
  /**
@@ -6456,7 +6456,7 @@ declare module "factorio:runtime" {
6456
6456
  * - `"very-high"`: equivalent to `2`.
6457
6457
  * - `"very-big"`: equivalent to `2`.
6458
6458
  * - `"very-good"`: equivalent to `2`.
6459
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/MapGenSize.html Online documentation}
6459
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/MapGenSize.html Online documentation}
6460
6460
  */
6461
6461
  export type MapGenSize =
6462
6462
  | float
@@ -6478,7 +6478,7 @@ declare module "factorio:runtime" {
6478
6478
  | "very-good"
6479
6479
  /**
6480
6480
  * @see AutoplaceControlWrite
6481
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/AutoplaceControl.html Online documentation}
6481
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/AutoplaceControl.html Online documentation}
6482
6482
  */
6483
6483
  export interface AutoplaceControl {
6484
6484
  /**
@@ -6496,7 +6496,7 @@ declare module "factorio:runtime" {
6496
6496
  }
6497
6497
  /**
6498
6498
  * Write form of {@link AutoplaceControl}, where some properties allow additional values as input compared to the read form.
6499
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/AutoplaceControl.html Online documentation}
6499
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/AutoplaceControl.html Online documentation}
6500
6500
  */
6501
6501
  export interface AutoplaceControlWrite {
6502
6502
  /**
@@ -6515,10 +6515,10 @@ declare module "factorio:runtime" {
6515
6515
  /**
6516
6516
  * 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}`.
6517
6517
  *
6518
- * {@link https://lua-api.factorio.com/2.0.39/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:}
6518
+ * {@link https://lua-api.factorio.com/2.0.41/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:}
6519
6519
  *
6520
- * {@link https://lua-api.factorio.com/2.0.39/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:}
6521
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/PropertyExpressionNames.html Online documentation}
6520
+ * {@link https://lua-api.factorio.com/2.0.41/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:}
6521
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/PropertyExpressionNames.html Online documentation}
6522
6522
  */
6523
6523
  export type PropertyExpressionNames = Record<string, string>
6524
6524
  export interface AdvancedMapGenSettings {
@@ -6541,7 +6541,7 @@ declare module "factorio:runtime" {
6541
6541
  }
6542
6542
  /**
6543
6543
  * An actual signal transmitted by the network.
6544
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/Signal.html Online documentation}
6544
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/Signal.html Online documentation}
6545
6545
  */
6546
6546
  export interface Signal {
6547
6547
  /**
@@ -6555,7 +6555,7 @@ declare module "factorio:runtime" {
6555
6555
  }
6556
6556
  /**
6557
6557
  * @see UpgradeMapperSourceWrite
6558
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/UpgradeMapperSource.html Online documentation}
6558
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/UpgradeMapperSource.html Online documentation}
6559
6559
  */
6560
6560
  export interface UpgradeMapperSource {
6561
6561
  readonly type: "item" | "entity"
@@ -6574,7 +6574,7 @@ declare module "factorio:runtime" {
6574
6574
  }
6575
6575
  /**
6576
6576
  * Write form of {@link UpgradeMapperSource}, where some properties allow additional values as input compared to the read form.
6577
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/UpgradeMapperSource.html Online documentation}
6577
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/UpgradeMapperSource.html Online documentation}
6578
6578
  */
6579
6579
  export interface UpgradeMapperSourceWrite {
6580
6580
  readonly type: "item" | "entity"
@@ -6611,7 +6611,7 @@ declare module "factorio:runtime" {
6611
6611
  }
6612
6612
  /**
6613
6613
  * A single filter used by an infinity-filters instance.
6614
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/InfinityInventoryFilter.html Online documentation}
6614
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/InfinityInventoryFilter.html Online documentation}
6615
6615
  */
6616
6616
  export interface InfinityInventoryFilter {
6617
6617
  /**
@@ -6633,7 +6633,7 @@ declare module "factorio:runtime" {
6633
6633
  }
6634
6634
  /**
6635
6635
  * A single filter used by an infinity-pipe type entity.
6636
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/InfinityPipeFilter.html Online documentation}
6636
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/InfinityPipeFilter.html Online documentation}
6637
6637
  */
6638
6638
  export interface InfinityPipeFilter {
6639
6639
  /**
@@ -6687,7 +6687,7 @@ declare module "factorio:runtime" {
6687
6687
  }
6688
6688
  /**
6689
6689
  * The settings used by a heat-interface type entity.
6690
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/HeatSetting.html Online documentation}
6690
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/HeatSetting.html Online documentation}
6691
6691
  */
6692
6692
  export interface HeatSetting {
6693
6693
  /**
@@ -6705,7 +6705,7 @@ declare module "factorio:runtime" {
6705
6705
  }
6706
6706
  /**
6707
6707
  * @see ArithmeticCombinatorParametersWrite
6708
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/ArithmeticCombinatorParameters.html Online documentation}
6708
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ArithmeticCombinatorParameters.html Online documentation}
6709
6709
  */
6710
6710
  export interface ArithmeticCombinatorParameters {
6711
6711
  /**
@@ -6735,7 +6735,7 @@ declare module "factorio:runtime" {
6735
6735
  }
6736
6736
  /**
6737
6737
  * Write form of {@link ArithmeticCombinatorParameters}, where some properties allow additional values as input compared to the read form.
6738
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/ArithmeticCombinatorParameters.html Online documentation}
6738
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ArithmeticCombinatorParameters.html Online documentation}
6739
6739
  */
6740
6740
  export interface ArithmeticCombinatorParametersWrite {
6741
6741
  /**
@@ -6765,7 +6765,7 @@ declare module "factorio:runtime" {
6765
6765
  }
6766
6766
  /**
6767
6767
  * @see SelectorCombinatorParametersWrite
6768
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/SelectorCombinatorParameters.html Online documentation}
6768
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/SelectorCombinatorParameters.html Online documentation}
6769
6769
  */
6770
6770
  export interface SelectorCombinatorParameters {
6771
6771
  /**
@@ -6791,7 +6791,7 @@ declare module "factorio:runtime" {
6791
6791
  }
6792
6792
  /**
6793
6793
  * Write form of {@link SelectorCombinatorParameters}, where some properties allow additional values as input compared to the read form.
6794
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/SelectorCombinatorParameters.html Online documentation}
6794
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/SelectorCombinatorParameters.html Online documentation}
6795
6795
  */
6796
6796
  export interface SelectorCombinatorParametersWrite {
6797
6797
  /**
@@ -6833,7 +6833,7 @@ declare module "factorio:runtime" {
6833
6833
  }
6834
6834
  /**
6835
6835
  * @see CircuitConditionWrite
6836
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/CircuitCondition.html Online documentation}
6836
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/CircuitCondition.html Online documentation}
6837
6837
  */
6838
6838
  export interface CircuitCondition {
6839
6839
  /**
@@ -6855,7 +6855,7 @@ declare module "factorio:runtime" {
6855
6855
  }
6856
6856
  /**
6857
6857
  * Write form of {@link CircuitCondition}, where some properties allow additional values as input compared to the read form.
6858
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/CircuitCondition.html Online documentation}
6858
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/CircuitCondition.html Online documentation}
6859
6859
  */
6860
6860
  export interface CircuitConditionWrite {
6861
6861
  /**
@@ -6877,7 +6877,7 @@ declare module "factorio:runtime" {
6877
6877
  }
6878
6878
  /**
6879
6879
  * @see CircuitConditionDefinitionWrite
6880
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/CircuitConditionDefinition.html Online documentation}
6880
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/CircuitConditionDefinition.html Online documentation}
6881
6881
  */
6882
6882
  export interface CircuitConditionDefinition {
6883
6883
  /**
@@ -6891,7 +6891,7 @@ declare module "factorio:runtime" {
6891
6891
  }
6892
6892
  /**
6893
6893
  * Write form of {@link CircuitConditionDefinition}, where some properties allow additional values as input compared to the read form.
6894
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/CircuitConditionDefinition.html Online documentation}
6894
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/CircuitConditionDefinition.html Online documentation}
6895
6895
  */
6896
6896
  export interface CircuitConditionDefinitionWrite {
6897
6897
  /**
@@ -7166,7 +7166,7 @@ declare module "factorio:runtime" {
7166
7166
  * - {@link defines.command.stop}: {@link StopCommand}
7167
7167
  * - {@link defines.command.flee}: {@link FleeCommand}
7168
7168
  * - {@link defines.command.build_base}: {@link BuildBaseCommand}
7169
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/Command.html Online documentation}
7169
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/Command.html Online documentation}
7170
7170
  */
7171
7171
  export type Command =
7172
7172
  | AttackCommand
@@ -7180,7 +7180,7 @@ declare module "factorio:runtime" {
7180
7180
  | BuildBaseCommand
7181
7181
  /**
7182
7182
  * Write form of {@link Command}, where some properties allow additional values as input compared to the read form.
7183
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/Command.html Online documentation}
7183
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/Command.html Online documentation}
7184
7184
  */
7185
7185
  export type CommandWrite =
7186
7186
  | AttackCommand
@@ -7265,7 +7265,7 @@ declare module "factorio:runtime" {
7265
7265
  * These are both full stacks of iron plates (for iron-plate, a full stack is 100 plates)
7266
7266
  * "iron-plate"
7267
7267
  * {name="iron-plate", count=100}
7268
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/SimpleItemStack.html Online documentation}
7268
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/SimpleItemStack.html Online documentation}
7269
7269
  */
7270
7270
  export type SimpleItemStack = string | ItemStackDefinition
7271
7271
  /**
@@ -7275,7 +7275,7 @@ declare module "factorio:runtime" {
7275
7275
  * - 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.
7276
7276
  * - `string`: It will be the surface name. E.g. `"nauvis"`.
7277
7277
  * - {@link LuaSurface}: A reference to {@link LuaSurface} may be passed directly.
7278
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/SurfaceIdentification.html Online documentation}
7278
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/SurfaceIdentification.html Online documentation}
7279
7279
  */
7280
7280
  export type SurfaceIdentification = SurfaceIndex | string | LuaSurface
7281
7281
  /**
@@ -7285,7 +7285,7 @@ declare module "factorio:runtime" {
7285
7285
  * - PlayerIndex: The player index.
7286
7286
  * - `string`: The player name.
7287
7287
  * - {@link LuaPlayer}: A reference to {@link LuaPlayer} may be passed directly.
7288
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/PlayerIdentification.html Online documentation}
7288
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/PlayerIdentification.html Online documentation}
7289
7289
  */
7290
7290
  export type PlayerIdentification = PlayerIndex | string | LuaPlayer
7291
7291
  /**
@@ -7294,7 +7294,7 @@ declare module "factorio:runtime" {
7294
7294
  * ## Union members
7295
7295
  * - {@link SimpleItemStack}
7296
7296
  * - {@link LuaItemStack}
7297
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/ItemStackIdentification.html Online documentation}
7297
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ItemStackIdentification.html Online documentation}
7298
7298
  */
7299
7299
  export type ItemStackIdentification = SimpleItemStack | LuaItemStack
7300
7300
  /**
@@ -7304,7 +7304,7 @@ declare module "factorio:runtime" {
7304
7304
  * - `"entity"`: Fires at an entity.
7305
7305
  * - `"position"`: Fires directly at a position.
7306
7306
  * - `"direction"`: Fires in a direction.
7307
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/TargetType.html Online documentation}
7307
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/TargetType.html Online documentation}
7308
7308
  */
7309
7309
  export type TargetType = "entity" | "position" | "direction"
7310
7310
  export interface BeamTarget {
@@ -7341,8 +7341,8 @@ declare module "factorio:runtime" {
7341
7341
  *
7342
7342
  * The validity of a SoundPath can be verified at runtime using {@link LuaHelpers#is_valid_sound_path LuaHelpers::is_valid_sound_path}.
7343
7343
  *
7344
- * {@link https://lua-api.factorio.com/2.0.39/concepts/SoundPath.html > The utility and ambient types each contain general use sound prototypes defined by the game itself.}
7345
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/SoundPath.html Online documentation}
7344
+ * {@link https://lua-api.factorio.com/2.0.41/concepts/SoundPath.html > The utility and ambient types each contain general use sound prototypes defined by the game itself.}
7345
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/SoundPath.html Online documentation}
7346
7346
  */
7347
7347
  export type SoundPath = (string & { _?: never }) | `${SoundCategory}/${string}`
7348
7348
  export interface CircularParticleCreationSpecification {
@@ -7474,7 +7474,7 @@ declare module "factorio:runtime" {
7474
7474
  * Other attributes may be specified depending on `type`:
7475
7475
  * - `"projectile"`: {@link ProjectileAttackParameters}
7476
7476
  * - `"stream"`: {@link StreamAttackParameters}
7477
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/AttackParameters.html Online documentation}
7477
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/AttackParameters.html Online documentation}
7478
7478
  */
7479
7479
  export type AttackParameters = ProjectileAttackParameters | StreamAttackParameters | OtherAttackParameters
7480
7480
  export interface GunShift4Way {
@@ -7540,7 +7540,7 @@ declare module "factorio:runtime" {
7540
7540
  * - `"use-on-self"`: {@link UseOnSelfCapsuleAction}
7541
7541
  * - `"artillery-remote"`: {@link ArtilleryRemoteCapsuleAction}
7542
7542
  * - `"destroy-cliffs"`: {@link DestroyCliffsCapsuleAction}
7543
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/CapsuleAction.html Online documentation}
7543
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/CapsuleAction.html Online documentation}
7544
7544
  */
7545
7545
  export type CapsuleAction =
7546
7546
  | ThrowCapsuleAction
@@ -7580,12 +7580,12 @@ declare module "factorio:runtime" {
7580
7580
  }
7581
7581
  /**
7582
7582
  * Any basic type (string, number, boolean) or table.
7583
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/AnyBasic.html Online documentation}
7583
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/AnyBasic.html Online documentation}
7584
7584
  */
7585
7585
  export type AnyBasic = string | boolean | number | table
7586
7586
  /**
7587
7587
  * Any basic type (string, number, boolean), table, or LuaObject.
7588
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/Any.html Online documentation}
7588
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/Any.html Online documentation}
7589
7589
  */
7590
7590
  export type Any = string | boolean | number | table | LuaObject
7591
7591
  export interface ProgrammableSpeakerParameters {
@@ -7595,7 +7595,7 @@ declare module "factorio:runtime" {
7595
7595
  }
7596
7596
  /**
7597
7597
  * @see ProgrammableSpeakerAlertParametersWrite
7598
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/ProgrammableSpeakerAlertParameters.html Online documentation}
7598
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ProgrammableSpeakerAlertParameters.html Online documentation}
7599
7599
  */
7600
7600
  export interface ProgrammableSpeakerAlertParameters {
7601
7601
  readonly show_alert: boolean
@@ -7605,7 +7605,7 @@ declare module "factorio:runtime" {
7605
7605
  }
7606
7606
  /**
7607
7607
  * Write form of {@link ProgrammableSpeakerAlertParameters}, where some properties allow additional values as input compared to the read form.
7608
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/ProgrammableSpeakerAlertParameters.html Online documentation}
7608
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ProgrammableSpeakerAlertParameters.html Online documentation}
7609
7609
  */
7610
7610
  export interface ProgrammableSpeakerAlertParametersWrite {
7611
7611
  readonly show_alert: boolean
@@ -7637,7 +7637,7 @@ declare module "factorio:runtime" {
7637
7637
  * - `"top-right"`
7638
7638
  * - `"right"`: The same as `"middle-right"`
7639
7639
  * - `"bottom-right"`
7640
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/Alignment.html Online documentation}
7640
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/Alignment.html Online documentation}
7641
7641
  */
7642
7642
  export type Alignment =
7643
7643
  | "top-left"
@@ -7670,8 +7670,8 @@ declare module "factorio:runtime" {
7670
7670
  _customEventIdBrand: any
7671
7671
  }
7672
7672
  /**
7673
- * 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.39/events.html the list of Factorio events} for more information on these.
7674
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/EventData.html Online documentation}
7673
+ * 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.41/events.html the list of Factorio events} for more information on these.
7674
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/EventData.html Online documentation}
7675
7675
  */
7676
7676
  export interface EventData {
7677
7677
  /**
@@ -7780,7 +7780,7 @@ declare module "factorio:runtime" {
7780
7780
  * - `"button-7"`
7781
7781
  * - `"button-8"`
7782
7782
  * - `"button-9"`
7783
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/MouseButtonFlags.html Online documentation}
7783
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/MouseButtonFlags.html Online documentation}
7784
7784
  */
7785
7785
  export interface MouseButtonFlags {
7786
7786
  readonly left?: true
@@ -7803,7 +7803,7 @@ declare module "factorio:runtime" {
7803
7803
  * - `"not-friend"`: Forces which are not friends pass.
7804
7804
  * - `"same"`: The same force pass.
7805
7805
  * - `"not-same"`: The non-same forces pass.
7806
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/ForceCondition.html Online documentation}
7806
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ForceCondition.html Online documentation}
7807
7807
  */
7808
7808
  export type ForceCondition = "all" | "enemy" | "ally" | "friend" | "not-friend" | "same" | "not-same"
7809
7809
  export interface ItemStackLocation {
@@ -7841,7 +7841,7 @@ declare module "factorio:runtime" {
7841
7841
  * - `"tabbed-pane"`: A collection of `tab`s and their contents. Relevant event: {@link OnGuiSelectedTabChangedEvent on_gui_selected_tab_changed}
7842
7842
  * - `"tab"`: A tab for use in a `tabbed-pane`.
7843
7843
  * - `"switch"`: A switch with three possible states. Can have labels attached to either side. Relevant event: {@link OnGuiSwitchStateChangedEvent on_gui_switch_state_changed}
7844
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/GuiElementType.html Online documentation}
7844
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GuiElementType.html Online documentation}
7845
7845
  */
7846
7846
  export type GuiElementType =
7847
7847
  | "button"
@@ -7881,7 +7881,7 @@ declare module "factorio:runtime" {
7881
7881
  * - `"position"`
7882
7882
  * - `"crafting_queue"`
7883
7883
  * - `"item_stack"`: Will point to a given item stack in an inventory.
7884
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/GuiArrowType.html Online documentation}
7884
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GuiArrowType.html Online documentation}
7885
7885
  */
7886
7886
  export type GuiArrowType =
7887
7887
  | "nowhere"
@@ -7898,7 +7898,7 @@ declare module "factorio:runtime" {
7898
7898
  * ## Union members
7899
7899
  * - `"horizontal"`
7900
7900
  * - `"vertical"`
7901
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/GuiDirection.html Online documentation}
7901
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GuiDirection.html Online documentation}
7902
7902
  */
7903
7903
  export type GuiDirection = "horizontal" | "vertical"
7904
7904
  /**
@@ -7910,7 +7910,7 @@ declare module "factorio:runtime" {
7910
7910
  * - `"always"`
7911
7911
  * - `"auto"`
7912
7912
  * - `"auto-and-reserve-space"`
7913
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/ScrollPolicy.html Online documentation}
7913
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ScrollPolicy.html Online documentation}
7914
7914
  */
7915
7915
  export type ScrollPolicy = "never" | "dont-show-but-allow-scrolling" | "always" | "auto" | "auto-and-reserve-space"
7916
7916
  export interface RailLocation {
@@ -7927,71 +7927,71 @@ declare module "factorio:runtime" {
7927
7927
  }
7928
7928
  /**
7929
7929
  * 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.
7930
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/float.html Online documentation}
7930
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/float.html Online documentation}
7931
7931
  */
7932
7932
  export type float = number
7933
7933
  /**
7934
7934
  * A double-precision floating-point number. This is the same data type as all Lua numbers use.
7935
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/double.html Online documentation}
7935
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/double.html Online documentation}
7936
7936
  */
7937
7937
  export type double = number
7938
7938
  /**
7939
7939
  * 32-bit signed integer. Possible values are `-2 147 483 648` to `2 147 483 647`.
7940
7940
  *
7941
7941
  * Since Lua 5.2 only uses doubles, any API that asks for `int` will floor the given double.
7942
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/int.html Online documentation}
7942
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/int.html Online documentation}
7943
7943
  */
7944
7944
  export type int = number
7945
7945
  /**
7946
7946
  * 8-bit signed integer. Possible values are `-128` to `127`.
7947
7947
  *
7948
7948
  * Since Lua 5.2 only uses doubles, any API that asks for `int8` will floor the given double.
7949
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/int8.html Online documentation}
7949
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/int8.html Online documentation}
7950
7950
  */
7951
7951
  export type int8 = number
7952
7952
  /**
7953
7953
  * 32-bit unsigned integer. Possible values are `0` to `4 294 967 295`.
7954
7954
  *
7955
7955
  * Since Lua 5.2 only uses doubles, any API that asks for `uint` will floor the given double.
7956
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/uint.html Online documentation}
7956
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/uint.html Online documentation}
7957
7957
  */
7958
7958
  export type uint = number
7959
7959
  /**
7960
7960
  * 8-bit unsigned integer. Possible values are `0` to `255`.
7961
7961
  *
7962
7962
  * Since Lua 5.2 only uses doubles, any API that asks for `uint8` will floor the given double.
7963
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/uint8.html Online documentation}
7963
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/uint8.html Online documentation}
7964
7964
  */
7965
7965
  export type uint8 = number
7966
7966
  /**
7967
7967
  * 16-bit unsigned integer. Possible values are `0` to `65 535`.
7968
7968
  *
7969
7969
  * Since Lua 5.2 only uses doubles, any API that asks for `uint16` will floor the given double.
7970
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/uint16.html Online documentation}
7970
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/uint16.html Online documentation}
7971
7971
  */
7972
7972
  export type uint16 = number
7973
7973
  /**
7974
7974
  * 64-bit unsigned integer. Possible values are `0` to `18 446 744 073 709 551 615`.
7975
7975
  *
7976
7976
  * Since Lua 5.2 only uses doubles, any API that asks for `uint64` will floor the given double.
7977
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/uint64.html Online documentation}
7977
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/uint64.html Online documentation}
7978
7978
  */
7979
7979
  export type uint64 = number
7980
7980
  /**
7981
7981
  * 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.
7982
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/nil.html Online documentation}
7982
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/nil.html Online documentation}
7983
7983
  */
7984
7984
  export type nil = undefined
7985
7985
  /**
7986
7986
  * Tables are enclosed in curly brackets, like this `{}`.
7987
7987
  *
7988
7988
  * 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.
7989
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/table.html Online documentation}
7989
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/table.html Online documentation}
7990
7990
  */
7991
7991
  export type table = object
7992
7992
  /**
7993
- * Any LuaObject listed on the {@linkplain https://lua-api.factorio.com/2.0.39/classes.html Classes} page.
7994
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaObject.html Online documentation}
7993
+ * Any LuaObject listed on the {@linkplain https://lua-api.factorio.com/2.0.41/classes.html Classes} page.
7994
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaObject.html Online documentation}
7995
7995
  */
7996
7996
  export interface LuaObject {
7997
7997
  readonly object_name: string
@@ -8050,7 +8050,7 @@ declare module "factorio:runtime" {
8050
8050
  * - `"type"`: {@link TypeModSettingPrototypeFilter}
8051
8051
  * - `"mod"`: {@link ModModSettingPrototypeFilter}
8052
8052
  * - `"setting-type"`: {@link SettingTypeModSettingPrototypeFilter}
8053
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/ModSettingPrototypeFilter.html Online documentation}
8053
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ModSettingPrototypeFilter.html Online documentation}
8054
8054
  */
8055
8055
  export type ModSettingPrototypeFilter =
8056
8056
  | TypeModSettingPrototypeFilter
@@ -8195,7 +8195,7 @@ declare module "factorio:runtime" {
8195
8195
  * - `"vehicle-friction-modifier"`: {@link VehicleFrictionModifierTilePrototypeFilter}
8196
8196
  * - `"decorative-removal-probability"`: {@link DecorativeRemovalProbabilityTilePrototypeFilter}
8197
8197
  * - `"absorptions-per-second"`: {@link AbsorptionsPerSecondTilePrototypeFilter}
8198
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/TilePrototypeFilter.html Online documentation}
8198
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/TilePrototypeFilter.html Online documentation}
8199
8199
  */
8200
8200
  export type TilePrototypeFilter =
8201
8201
  | CollisionMaskTilePrototypeFilter
@@ -8206,7 +8206,7 @@ declare module "factorio:runtime" {
8206
8206
  | OtherTilePrototypeFilter
8207
8207
  /**
8208
8208
  * Write form of {@link TilePrototypeFilter}, where some properties allow additional values as input compared to the read form.
8209
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/TilePrototypeFilter.html Online documentation}
8209
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/TilePrototypeFilter.html Online documentation}
8210
8210
  */
8211
8211
  export type TilePrototypeFilterWrite =
8212
8212
  | CollisionMaskTilePrototypeFilter
@@ -8257,7 +8257,7 @@ declare module "factorio:runtime" {
8257
8257
  *
8258
8258
  * Other attributes may be specified depending on `filter`:
8259
8259
  * - `"collision-mask"`: {@link CollisionMaskDecorativePrototypeFilter}
8260
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/DecorativePrototypeFilter.html Online documentation}
8260
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/DecorativePrototypeFilter.html Online documentation}
8261
8261
  */
8262
8262
  export type DecorativePrototypeFilter = CollisionMaskDecorativePrototypeFilter | OtherDecorativePrototypeFilter
8263
8263
  /**
@@ -8511,7 +8511,7 @@ declare module "factorio:runtime" {
8511
8511
  * - `"emissions-multiplier"`: {@link EmissionsMultiplierRecipePrototypeFilter}
8512
8512
  * - `"request-paste-multiplier"`: {@link RequestPasteMultiplierRecipePrototypeFilter}
8513
8513
  * - `"overload-multiplier"`: {@link OverloadMultiplierRecipePrototypeFilter}
8514
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/RecipePrototypeFilter.html Online documentation}
8514
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/RecipePrototypeFilter.html Online documentation}
8515
8515
  */
8516
8516
  export type RecipePrototypeFilter =
8517
8517
  | HasIngredientItemRecipePrototypeFilter
@@ -8527,7 +8527,7 @@ declare module "factorio:runtime" {
8527
8527
  | OtherRecipePrototypeFilter
8528
8528
  /**
8529
8529
  * Write form of {@link RecipePrototypeFilter}, where some properties allow additional values as input compared to the read form.
8530
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/RecipePrototypeFilter.html Online documentation}
8530
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/RecipePrototypeFilter.html Online documentation}
8531
8531
  */
8532
8532
  export type RecipePrototypeFilterWrite =
8533
8533
  | HasIngredientItemRecipePrototypeFilterWrite
@@ -8579,7 +8579,7 @@ declare module "factorio:runtime" {
8579
8579
  *
8580
8580
  * Other attributes may be specified depending on `filter`:
8581
8581
  * - `"type"`: {@link TypeAchievementPrototypeFilter}
8582
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/AchievementPrototypeFilter.html Online documentation}
8582
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/AchievementPrototypeFilter.html Online documentation}
8583
8583
  */
8584
8584
  export type AchievementPrototypeFilter = TypeAchievementPrototypeFilter | OtherAchievementPrototypeFilter
8585
8585
  /**
@@ -8702,7 +8702,7 @@ declare module "factorio:runtime" {
8702
8702
  * - `"level"`: {@link LevelTechnologyPrototypeFilter}
8703
8703
  * - `"max-level"`: {@link MaxLevelTechnologyPrototypeFilter}
8704
8704
  * - `"time"`: {@link TimeTechnologyPrototypeFilter}
8705
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/TechnologyPrototypeFilter.html Online documentation}
8705
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/TechnologyPrototypeFilter.html Online documentation}
8706
8706
  */
8707
8707
  export type TechnologyPrototypeFilter =
8708
8708
  | ResearchUnitIngredientTechnologyPrototypeFilter
@@ -8713,7 +8713,7 @@ declare module "factorio:runtime" {
8713
8713
  | OtherTechnologyPrototypeFilter
8714
8714
  /**
8715
8715
  * Write form of {@link TechnologyPrototypeFilter}, where some properties allow additional values as input compared to the read form.
8716
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/TechnologyPrototypeFilter.html Online documentation}
8716
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/TechnologyPrototypeFilter.html Online documentation}
8717
8717
  */
8718
8718
  export type TechnologyPrototypeFilterWrite =
8719
8719
  | ResearchUnitIngredientTechnologyPrototypeFilter
@@ -9030,7 +9030,7 @@ declare module "factorio:runtime" {
9030
9030
  * - `"fuel-acceleration-multiplier"`: {@link FuelAccelerationMultiplierItemPrototypeFilter}
9031
9031
  * - `"fuel-top-speed-multiplier"`: {@link FuelTopSpeedMultiplierItemPrototypeFilter}
9032
9032
  * - `"fuel-emissions-multiplier"`: {@link FuelEmissionsMultiplierItemPrototypeFilter}
9033
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/ItemPrototypeFilter.html Online documentation}
9033
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ItemPrototypeFilter.html Online documentation}
9034
9034
  */
9035
9035
  export type ItemPrototypeFilter =
9036
9036
  | PlaceResultItemPrototypeFilter
@@ -9050,7 +9050,7 @@ declare module "factorio:runtime" {
9050
9050
  | OtherItemPrototypeFilter
9051
9051
  /**
9052
9052
  * Write form of {@link ItemPrototypeFilter}, where some properties allow additional values as input compared to the read form.
9053
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/ItemPrototypeFilter.html Online documentation}
9053
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ItemPrototypeFilter.html Online documentation}
9054
9054
  */
9055
9055
  export type ItemPrototypeFilterWrite =
9056
9056
  | PlaceResultItemPrototypeFilterWrite
@@ -9106,7 +9106,7 @@ declare module "factorio:runtime" {
9106
9106
  *
9107
9107
  * Other attributes may be specified depending on `filter`:
9108
9108
  * - `"type"`: {@link TypeEquipmentPrototypeFilter}
9109
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/EquipmentPrototypeFilter.html Online documentation}
9109
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/EquipmentPrototypeFilter.html Online documentation}
9110
9110
  */
9111
9111
  export type EquipmentPrototypeFilter = TypeEquipmentPrototypeFilter | OtherEquipmentPrototypeFilter
9112
9112
  /**
@@ -9337,7 +9337,7 @@ declare module "factorio:runtime" {
9337
9337
  * - `"selection-priority"`: {@link SelectionPriorityEntityPrototypeFilter}
9338
9338
  * - `"emissions-per-second"`: {@link EmissionsPerSecondEntityPrototypeFilter}
9339
9339
  * - `"crafting-category"`: {@link CraftingCategoryEntityPrototypeFilter}
9340
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/EntityPrototypeFilter.html Online documentation}
9340
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/EntityPrototypeFilter.html Online documentation}
9341
9341
  */
9342
9342
  export type EntityPrototypeFilter =
9343
9343
  | NameEntityPrototypeFilter
@@ -9351,7 +9351,7 @@ declare module "factorio:runtime" {
9351
9351
  | OtherEntityPrototypeFilter
9352
9352
  /**
9353
9353
  * Write form of {@link EntityPrototypeFilter}, where some properties allow additional values as input compared to the read form.
9354
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/EntityPrototypeFilter.html Online documentation}
9354
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/EntityPrototypeFilter.html Online documentation}
9355
9355
  */
9356
9356
  export type EntityPrototypeFilterWrite =
9357
9357
  | NameEntityPrototypeFilter
@@ -9421,7 +9421,7 @@ declare module "factorio:runtime" {
9421
9421
  * Other attributes may be specified depending on `filter`:
9422
9422
  * - `"type"`: {@link TypeSpaceLocationPrototypeFilter}
9423
9423
  * - `"solar-power-in-space"`: {@link SolarPowerInSpaceSpaceLocationPrototypeFilter}
9424
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/SpaceLocationPrototypeFilter.html Online documentation}
9424
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/SpaceLocationPrototypeFilter.html Online documentation}
9425
9425
  */
9426
9426
  export type SpaceLocationPrototypeFilter =
9427
9427
  | TypeSpaceLocationPrototypeFilter
@@ -9429,7 +9429,7 @@ declare module "factorio:runtime" {
9429
9429
  | OtherSpaceLocationPrototypeFilter
9430
9430
  /**
9431
9431
  * Write form of {@link SpaceLocationPrototypeFilter}, where some properties allow additional values as input compared to the read form.
9432
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/SpaceLocationPrototypeFilter.html Online documentation}
9432
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/SpaceLocationPrototypeFilter.html Online documentation}
9433
9433
  */
9434
9434
  export type SpaceLocationPrototypeFilterWrite =
9435
9435
  | TypeSpaceLocationPrototypeFilter
@@ -9617,7 +9617,7 @@ declare module "factorio:runtime" {
9617
9617
  * - `"fuel-value"`: {@link FuelValueFluidPrototypeFilter}
9618
9618
  * - `"emissions-multiplier"`: {@link EmissionsMultiplierFluidPrototypeFilter}
9619
9619
  * - `"gas-temperature"`: {@link GasTemperatureFluidPrototypeFilter}
9620
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/FluidPrototypeFilter.html Online documentation}
9620
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/FluidPrototypeFilter.html Online documentation}
9621
9621
  */
9622
9622
  export type FluidPrototypeFilter =
9623
9623
  | NameFluidPrototypeFilter
@@ -9631,7 +9631,7 @@ declare module "factorio:runtime" {
9631
9631
  | OtherFluidPrototypeFilter
9632
9632
  /**
9633
9633
  * Write form of {@link FluidPrototypeFilter}, where some properties allow additional values as input compared to the read form.
9634
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/FluidPrototypeFilter.html Online documentation}
9634
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/FluidPrototypeFilter.html Online documentation}
9635
9635
  */
9636
9636
  export type FluidPrototypeFilterWrite =
9637
9637
  | NameFluidPrototypeFilter
@@ -9740,7 +9740,7 @@ declare module "factorio:runtime" {
9740
9740
  * - `"name"`: {@link NamePrePlatformMinedEntityEventFilter}
9741
9741
  * - `"ghost_type"`: {@link GhostTypePrePlatformMinedEntityEventFilter}
9742
9742
  * - `"ghost_name"`: {@link GhostNamePrePlatformMinedEntityEventFilter}
9743
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaPrePlatformMinedEntityEventFilter.html Online documentation}
9743
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaPrePlatformMinedEntityEventFilter.html Online documentation}
9744
9744
  */
9745
9745
  export type LuaPrePlatformMinedEntityEventFilter =
9746
9746
  | TypePrePlatformMinedEntityEventFilter
@@ -9845,7 +9845,7 @@ declare module "factorio:runtime" {
9845
9845
  * - `"name"`: {@link NameRobotMinedEntityEventFilter}
9846
9846
  * - `"ghost_type"`: {@link GhostTypeRobotMinedEntityEventFilter}
9847
9847
  * - `"ghost_name"`: {@link GhostNameRobotMinedEntityEventFilter}
9848
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaRobotMinedEntityEventFilter.html Online documentation}
9848
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaRobotMinedEntityEventFilter.html Online documentation}
9849
9849
  */
9850
9850
  export type LuaRobotMinedEntityEventFilter =
9851
9851
  | TypeRobotMinedEntityEventFilter
@@ -9950,7 +9950,7 @@ declare module "factorio:runtime" {
9950
9950
  * - `"name"`: {@link NameEntityMarkedForUpgradeEventFilter}
9951
9951
  * - `"ghost_type"`: {@link GhostTypeEntityMarkedForUpgradeEventFilter}
9952
9952
  * - `"ghost_name"`: {@link GhostNameEntityMarkedForUpgradeEventFilter}
9953
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaEntityMarkedForUpgradeEventFilter.html Online documentation}
9953
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaEntityMarkedForUpgradeEventFilter.html Online documentation}
9954
9954
  */
9955
9955
  export type LuaEntityMarkedForUpgradeEventFilter =
9956
9956
  | TypeEntityMarkedForUpgradeEventFilter
@@ -10055,7 +10055,7 @@ declare module "factorio:runtime" {
10055
10055
  * - `"name"`: {@link NamePreGhostUpgradedEventFilter}
10056
10056
  * - `"ghost_type"`: {@link GhostTypePreGhostUpgradedEventFilter}
10057
10057
  * - `"ghost_name"`: {@link GhostNamePreGhostUpgradedEventFilter}
10058
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaPreGhostUpgradedEventFilter.html Online documentation}
10058
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaPreGhostUpgradedEventFilter.html Online documentation}
10059
10059
  */
10060
10060
  export type LuaPreGhostUpgradedEventFilter =
10061
10061
  | TypePreGhostUpgradedEventFilter
@@ -10160,7 +10160,7 @@ declare module "factorio:runtime" {
10160
10160
  * - `"name"`: {@link NamePlatformMinedEntityEventFilter}
10161
10161
  * - `"ghost_type"`: {@link GhostTypePlatformMinedEntityEventFilter}
10162
10162
  * - `"ghost_name"`: {@link GhostNamePlatformMinedEntityEventFilter}
10163
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaPlatformMinedEntityEventFilter.html Online documentation}
10163
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaPlatformMinedEntityEventFilter.html Online documentation}
10164
10164
  */
10165
10165
  export type LuaPlatformMinedEntityEventFilter =
10166
10166
  | TypePlatformMinedEntityEventFilter
@@ -10265,7 +10265,7 @@ declare module "factorio:runtime" {
10265
10265
  * - `"name"`: {@link NameScriptRaisedDestroyEventFilter}
10266
10266
  * - `"ghost_type"`: {@link GhostTypeScriptRaisedDestroyEventFilter}
10267
10267
  * - `"ghost_name"`: {@link GhostNameScriptRaisedDestroyEventFilter}
10268
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaScriptRaisedDestroyEventFilter.html Online documentation}
10268
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaScriptRaisedDestroyEventFilter.html Online documentation}
10269
10269
  */
10270
10270
  export type LuaScriptRaisedDestroyEventFilter =
10271
10271
  | TypeScriptRaisedDestroyEventFilter
@@ -10382,7 +10382,7 @@ declare module "factorio:runtime" {
10382
10382
  * - `"ghost_type"`: {@link GhostTypePlayerBuiltEntityEventFilter}
10383
10383
  * - `"ghost_name"`: {@link GhostNamePlayerBuiltEntityEventFilter}
10384
10384
  * - `"force"`: {@link ForcePlayerBuiltEntityEventFilter}
10385
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaPlayerBuiltEntityEventFilter.html Online documentation}
10385
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaPlayerBuiltEntityEventFilter.html Online documentation}
10386
10386
  */
10387
10387
  export type LuaPlayerBuiltEntityEventFilter =
10388
10388
  | TypePlayerBuiltEntityEventFilter
@@ -10500,7 +10500,7 @@ declare module "factorio:runtime" {
10500
10500
  * - `"ghost_type"`: {@link GhostTypePlatformBuiltEntityEventFilter}
10501
10501
  * - `"ghost_name"`: {@link GhostNamePlatformBuiltEntityEventFilter}
10502
10502
  * - `"force"`: {@link ForcePlatformBuiltEntityEventFilter}
10503
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaPlatformBuiltEntityEventFilter.html Online documentation}
10503
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaPlatformBuiltEntityEventFilter.html Online documentation}
10504
10504
  */
10505
10505
  export type LuaPlatformBuiltEntityEventFilter =
10506
10506
  | TypePlatformBuiltEntityEventFilter
@@ -10606,7 +10606,7 @@ declare module "factorio:runtime" {
10606
10606
  * - `"name"`: {@link NamePreGhostDeconstructedEventFilter}
10607
10607
  * - `"ghost_type"`: {@link GhostTypePreGhostDeconstructedEventFilter}
10608
10608
  * - `"ghost_name"`: {@link GhostNamePreGhostDeconstructedEventFilter}
10609
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaPreGhostDeconstructedEventFilter.html Online documentation}
10609
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaPreGhostDeconstructedEventFilter.html Online documentation}
10610
10610
  */
10611
10611
  export type LuaPreGhostDeconstructedEventFilter =
10612
10612
  | TypePreGhostDeconstructedEventFilter
@@ -10711,7 +10711,7 @@ declare module "factorio:runtime" {
10711
10711
  * - `"name"`: {@link NameEntityClonedEventFilter}
10712
10712
  * - `"ghost_type"`: {@link GhostTypeEntityClonedEventFilter}
10713
10713
  * - `"ghost_name"`: {@link GhostNameEntityClonedEventFilter}
10714
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaEntityClonedEventFilter.html Online documentation}
10714
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaEntityClonedEventFilter.html Online documentation}
10715
10715
  */
10716
10716
  export type LuaEntityClonedEventFilter =
10717
10717
  | TypeEntityClonedEventFilter
@@ -10816,7 +10816,7 @@ declare module "factorio:runtime" {
10816
10816
  * - `"name"`: {@link NameScriptRaisedTeleportedEventFilter}
10817
10817
  * - `"ghost_type"`: {@link GhostTypeScriptRaisedTeleportedEventFilter}
10818
10818
  * - `"ghost_name"`: {@link GhostNameScriptRaisedTeleportedEventFilter}
10819
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaScriptRaisedTeleportedEventFilter.html Online documentation}
10819
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaScriptRaisedTeleportedEventFilter.html Online documentation}
10820
10820
  */
10821
10821
  export type LuaScriptRaisedTeleportedEventFilter =
10822
10822
  | TypeScriptRaisedTeleportedEventFilter
@@ -10923,7 +10923,7 @@ declare module "factorio:runtime" {
10923
10923
  * - `"name"`: {@link NameEntityDeconstructionCancelledEventFilter}
10924
10924
  * - `"ghost_type"`: {@link GhostTypeEntityDeconstructionCancelledEventFilter}
10925
10925
  * - `"ghost_name"`: {@link GhostNameEntityDeconstructionCancelledEventFilter}
10926
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaEntityDeconstructionCancelledEventFilter.html Online documentation}
10926
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaEntityDeconstructionCancelledEventFilter.html Online documentation}
10927
10927
  */
10928
10928
  export type LuaEntityDeconstructionCancelledEventFilter =
10929
10929
  | TypeEntityDeconstructionCancelledEventFilter
@@ -11040,7 +11040,7 @@ declare module "factorio:runtime" {
11040
11040
  * - `"ghost_type"`: {@link GhostTypeRobotBuiltEntityEventFilter}
11041
11041
  * - `"ghost_name"`: {@link GhostNameRobotBuiltEntityEventFilter}
11042
11042
  * - `"force"`: {@link ForceRobotBuiltEntityEventFilter}
11043
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaRobotBuiltEntityEventFilter.html Online documentation}
11043
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaRobotBuiltEntityEventFilter.html Online documentation}
11044
11044
  */
11045
11045
  export type LuaRobotBuiltEntityEventFilter =
11046
11046
  | TypeRobotBuiltEntityEventFilter
@@ -11146,7 +11146,7 @@ declare module "factorio:runtime" {
11146
11146
  * - `"name"`: {@link NameScriptRaisedBuiltEventFilter}
11147
11147
  * - `"ghost_type"`: {@link GhostTypeScriptRaisedBuiltEventFilter}
11148
11148
  * - `"ghost_name"`: {@link GhostNameScriptRaisedBuiltEventFilter}
11149
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaScriptRaisedBuiltEventFilter.html Online documentation}
11149
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaScriptRaisedBuiltEventFilter.html Online documentation}
11150
11150
  */
11151
11151
  export type LuaScriptRaisedBuiltEventFilter =
11152
11152
  | TypeScriptRaisedBuiltEventFilter
@@ -11251,7 +11251,7 @@ declare module "factorio:runtime" {
11251
11251
  * - `"name"`: {@link NamePrePlayerMinedEntityEventFilter}
11252
11252
  * - `"ghost_type"`: {@link GhostTypePrePlayerMinedEntityEventFilter}
11253
11253
  * - `"ghost_name"`: {@link GhostNamePrePlayerMinedEntityEventFilter}
11254
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaPrePlayerMinedEntityEventFilter.html Online documentation}
11254
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaPrePlayerMinedEntityEventFilter.html Online documentation}
11255
11255
  */
11256
11256
  export type LuaPrePlayerMinedEntityEventFilter =
11257
11257
  | TypePrePlayerMinedEntityEventFilter
@@ -11356,7 +11356,7 @@ declare module "factorio:runtime" {
11356
11356
  * - `"name"`: {@link NamePlayerRepairedEntityEventFilter}
11357
11357
  * - `"ghost_type"`: {@link GhostTypePlayerRepairedEntityEventFilter}
11358
11358
  * - `"ghost_name"`: {@link GhostNamePlayerRepairedEntityEventFilter}
11359
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaPlayerRepairedEntityEventFilter.html Online documentation}
11359
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaPlayerRepairedEntityEventFilter.html Online documentation}
11360
11360
  */
11361
11361
  export type LuaPlayerRepairedEntityEventFilter =
11362
11362
  | TypePlayerRepairedEntityEventFilter
@@ -11461,7 +11461,7 @@ declare module "factorio:runtime" {
11461
11461
  * - `"name"`: {@link NameUpgradeCancelledEventFilter}
11462
11462
  * - `"ghost_type"`: {@link GhostTypeUpgradeCancelledEventFilter}
11463
11463
  * - `"ghost_name"`: {@link GhostNameUpgradeCancelledEventFilter}
11464
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaUpgradeCancelledEventFilter.html Online documentation}
11464
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaUpgradeCancelledEventFilter.html Online documentation}
11465
11465
  */
11466
11466
  export type LuaUpgradeCancelledEventFilter =
11467
11467
  | TypeUpgradeCancelledEventFilter
@@ -11566,7 +11566,7 @@ declare module "factorio:runtime" {
11566
11566
  * - `"name"`: {@link NameSectorScannedEventFilter}
11567
11567
  * - `"ghost_type"`: {@link GhostTypeSectorScannedEventFilter}
11568
11568
  * - `"ghost_name"`: {@link GhostNameSectorScannedEventFilter}
11569
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaSectorScannedEventFilter.html Online documentation}
11569
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaSectorScannedEventFilter.html Online documentation}
11570
11570
  */
11571
11571
  export type LuaSectorScannedEventFilter =
11572
11572
  | TypeSectorScannedEventFilter
@@ -11612,7 +11612,7 @@ declare module "factorio:runtime" {
11612
11612
  *
11613
11613
  * Other attributes may be specified depending on `filter`:
11614
11614
  * - `"type"`: {@link TypePostEntityDiedEventFilter}
11615
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaPostEntityDiedEventFilter.html Online documentation}
11615
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaPostEntityDiedEventFilter.html Online documentation}
11616
11616
  */
11617
11617
  export type LuaPostEntityDiedEventFilter = TypePostEntityDiedEventFilter | OtherPostEntityDiedEventFilter
11618
11618
  /**
@@ -11714,7 +11714,7 @@ declare module "factorio:runtime" {
11714
11714
  * - `"name"`: {@link NameEntityMarkedForDeconstructionEventFilter}
11715
11715
  * - `"ghost_type"`: {@link GhostTypeEntityMarkedForDeconstructionEventFilter}
11716
11716
  * - `"ghost_name"`: {@link GhostNameEntityMarkedForDeconstructionEventFilter}
11717
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaEntityMarkedForDeconstructionEventFilter.html Online documentation}
11717
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaEntityMarkedForDeconstructionEventFilter.html Online documentation}
11718
11718
  */
11719
11719
  export type LuaEntityMarkedForDeconstructionEventFilter =
11720
11720
  | TypeEntityMarkedForDeconstructionEventFilter
@@ -11819,7 +11819,7 @@ declare module "factorio:runtime" {
11819
11819
  * - `"name"`: {@link NamePlayerMinedEntityEventFilter}
11820
11820
  * - `"ghost_type"`: {@link GhostTypePlayerMinedEntityEventFilter}
11821
11821
  * - `"ghost_name"`: {@link GhostNamePlayerMinedEntityEventFilter}
11822
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaPlayerMinedEntityEventFilter.html Online documentation}
11822
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaPlayerMinedEntityEventFilter.html Online documentation}
11823
11823
  */
11824
11824
  export type LuaPlayerMinedEntityEventFilter =
11825
11825
  | TypePlayerMinedEntityEventFilter
@@ -11999,7 +11999,7 @@ declare module "factorio:runtime" {
11999
11999
  * - `"final-damage-amount"`: {@link FinalDamageAmountEntityDamagedEventFilter}
12000
12000
  * - `"damage-type"`: {@link DamageTypeEntityDamagedEventFilter}
12001
12001
  * - `"final-health"`: {@link FinalHealthEntityDamagedEventFilter}
12002
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaEntityDamagedEventFilter.html Online documentation}
12002
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaEntityDamagedEventFilter.html Online documentation}
12003
12003
  */
12004
12004
  export type LuaEntityDamagedEventFilter =
12005
12005
  | TypeEntityDamagedEventFilter
@@ -12013,7 +12013,7 @@ declare module "factorio:runtime" {
12013
12013
  | OtherEntityDamagedEventFilter
12014
12014
  /**
12015
12015
  * Write form of {@link LuaEntityDamagedEventFilter}, where some properties allow additional values as input compared to the read form.
12016
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaEntityDamagedEventFilter.html Online documentation}
12016
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaEntityDamagedEventFilter.html Online documentation}
12017
12017
  */
12018
12018
  export type LuaEntityDamagedEventFilterWrite =
12019
12019
  | TypeEntityDamagedEventFilter
@@ -12122,7 +12122,7 @@ declare module "factorio:runtime" {
12122
12122
  * - `"name"`: {@link NameScriptRaisedReviveEventFilter}
12123
12123
  * - `"ghost_type"`: {@link GhostTypeScriptRaisedReviveEventFilter}
12124
12124
  * - `"ghost_name"`: {@link GhostNameScriptRaisedReviveEventFilter}
12125
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaScriptRaisedReviveEventFilter.html Online documentation}
12125
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaScriptRaisedReviveEventFilter.html Online documentation}
12126
12126
  */
12127
12127
  export type LuaScriptRaisedReviveEventFilter =
12128
12128
  | TypeScriptRaisedReviveEventFilter
@@ -12227,7 +12227,7 @@ declare module "factorio:runtime" {
12227
12227
  * - `"name"`: {@link NameEntityDiedEventFilter}
12228
12228
  * - `"ghost_type"`: {@link GhostTypeEntityDiedEventFilter}
12229
12229
  * - `"ghost_name"`: {@link GhostNameEntityDiedEventFilter}
12230
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaEntityDiedEventFilter.html Online documentation}
12230
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaEntityDiedEventFilter.html Online documentation}
12231
12231
  */
12232
12232
  export type LuaEntityDiedEventFilter =
12233
12233
  | TypeEntityDiedEventFilter
@@ -12332,7 +12332,7 @@ declare module "factorio:runtime" {
12332
12332
  * - `"name"`: {@link NamePreRobotMinedEntityEventFilter}
12333
12333
  * - `"ghost_type"`: {@link GhostTypePreRobotMinedEntityEventFilter}
12334
12334
  * - `"ghost_name"`: {@link GhostNamePreRobotMinedEntityEventFilter}
12335
- * @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaPreRobotMinedEntityEventFilter.html Online documentation}
12335
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaPreRobotMinedEntityEventFilter.html Online documentation}
12336
12336
  */
12337
12337
  export type LuaPreRobotMinedEntityEventFilter =
12338
12338
  | TypePreRobotMinedEntityEventFilter