typed-factorio 3.11.0 → 3.12.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.29/concepts/MapTick.html Online documentation}
15
+ * @see {@link https://lua-api.factorio.com/2.0.31/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.29/concepts/ModuleEffectValue.html Online documentation}
22
+ * @see {@link https://lua-api.factorio.com/2.0.31/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.29/concepts/ModuleEffects.html Online documentation}
29
+ * @see {@link https://lua-api.factorio.com/2.0.31/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.29/concepts/ComparatorString.html Online documentation}
53
+ * @see {@link https://lua-api.factorio.com/2.0.31/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.29/concepts/SpritePath.html > The supported types are:}
85
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/SpritePath.html Online documentation}
84
+ * {@link https://lua-api.factorio.com/2.0.31/concepts/SpritePath.html > The supported types are:}
85
+ * @see {@link https://lua-api.factorio.com/2.0.31/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.29/concepts/FlowStatisticsID.html Online documentation}
96
+ * @see {@link https://lua-api.factorio.com/2.0.31/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.29/concepts/CollisionMask.html Online documentation}
103
+ * @see {@link https://lua-api.factorio.com/2.0.31/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.29/concepts/SimulationWidgetType.html Online documentation}
231
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/SimulationWidgetType.html Online documentation}
232
232
  */
233
233
  export type SimulationWidgetType =
234
234
  | "signal-id"
@@ -350,7 +350,7 @@ declare module "factorio:runtime" {
350
350
  * - `"any-goal-accessible"`: The method will return {@link TrainPathFinderOneGoalResult}.
351
351
  * - `"all-goals-accessible"`: The method will return {@link TrainPathAllGoalsResult}.
352
352
  * - `"all-goals-penalties"`: The method will return {@link TrainPathAllGoalsResult} with `penalties`.
353
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/TrainPathRequestType.html Online documentation}
353
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/TrainPathRequestType.html Online documentation}
354
354
  */
355
355
  export type TrainPathRequestType = "path" | "any-goal-accessible" | "all-goals-accessible" | "all-goals-penalties"
356
356
  /**
@@ -359,7 +359,7 @@ declare module "factorio:runtime" {
359
359
  * - {@link RailEndGoal}
360
360
  * - {@link LuaRailEnd}
361
361
  * - {@link LuaEntity}: Only if it points at train-stop that is connected to a rail.
362
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/TrainPathFinderGoal.html Online documentation}
362
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/TrainPathFinderGoal.html Online documentation}
363
363
  */
364
364
  export type TrainPathFinderGoal = TrainStopGoal | RailEndGoal | LuaRailEnd | LuaEntity
365
365
  export interface TrainStopGoal {
@@ -464,7 +464,7 @@ declare module "factorio:runtime" {
464
464
  }
465
465
  /**
466
466
  * A single pipe connection for a given fluidbox.
467
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/PipeConnection.html Online documentation}
467
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/PipeConnection.html Online documentation}
468
468
  */
469
469
  export interface PipeConnection {
470
470
  readonly flow_direction: "input" | "output" | "input-output"
@@ -527,7 +527,7 @@ declare module "factorio:runtime" {
527
527
  * - {@link LuaEntityDiedEventFilter}
528
528
  * - {@link LuaPreRobotMinedEntityEventFilter}
529
529
  * @see EventFilterWrite
530
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/EventFilter.html Online documentation}
530
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/EventFilter.html Online documentation}
531
531
  */
532
532
  export type EventFilter =
533
533
  | LuaPrePlatformMinedEntityEventFilter[]
@@ -557,7 +557,7 @@ declare module "factorio:runtime" {
557
557
  | LuaPreRobotMinedEntityEventFilter[]
558
558
  /**
559
559
  * Write form of {@link EventFilter}, where some properties allow additional values as input compared to the read form.
560
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/EventFilter.html Online documentation}
560
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/EventFilter.html Online documentation}
561
561
  */
562
562
  export type EventFilterWrite =
563
563
  | readonly LuaPrePlatformMinedEntityEventFilter[]
@@ -595,11 +595,11 @@ declare module "factorio:runtime" {
595
595
  * - {@link LuaItem}: Target type {@link defines.target_type.item item}; `useful_id` {@link LuaItemCommon#item_number LuaItemCommon::item_number}
596
596
  * - {@link LuaLogisticCell}: Target type {@link defines.target_type.logistic_cell logistic_cell}
597
597
  * - {@link LuaLogisticNetwork}: Target type {@link defines.target_type.logistic_network logistic_network}; `useful_id` {@link LuaLogisticNetwork#network_id LuaLogisticNetwork::network_id}
598
- * - {@link LuaLogisticSection}: Target type {@link defines.target_type.logistic_section logistic_section};
598
+ * - {@link LuaLogisticSection}: Target type {@link defines.target_type.logistic_section logistic_section}
599
599
  * - {@link LuaPermissionGroup}: Target type {@link defines.target_type.permission_group permission_group}; `useful_id` {@link LuaPermissionGroup#group_id LuaPermissionGroup::group_id}
600
600
  * - {@link LuaPlanet}: Target type {@link defines.target_type.planet planet}
601
601
  * - {@link LuaPlayer}: Target type {@link defines.target_type.player player}; `useful_id` {@link LuaPlayer#index LuaPlayer::index}
602
- * - {@link LuaRailPath}: Target type {@link defines.target_type.rail_path rail_path};
602
+ * - {@link LuaRailPath}: Target type {@link defines.target_type.rail_path rail_path}
603
603
  * - {@link LuaRenderObject}: Target type {@link defines.target_type.render_object render_object}; `useful_id` {@link LuaRenderObject#id LuaRenderObject::id}
604
604
  * - {@link LuaSpacePlatform}: Target type {@link defines.target_type.space_platform space_platform}; `useful_id` {@link LuaSpacePlatform#index LuaSpacePlatform::index}
605
605
  * - {@link LuaSurface}: Target type {@link defines.target_type.surface surface}; `useful_id` {@link LuaSurface#index LuaSurface::index}
@@ -607,7 +607,7 @@ declare module "factorio:runtime" {
607
607
  * - {@link LuaCommandable}: Target type {@link defines.target_type.commandable commandable}; `useful_id` {@link LuaCommandable#unique_id LuaCommandable::unique_id}
608
608
  * - {@link LuaCustomChartTag}: Target type {@link defines.target_type.custom_chart_tag custom_chart_tag}; `useful_id` {@link LuaCustomChartTag#tag_number LuaCustomChartTag::tag_number}
609
609
  * - {@link LuaGuiElement}: Target type {@link defines.target_type.gui_element gui_element}; `useful_id` {@link LuaGuiElement#index LuaGuiElement::index}
610
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/RegistrationTarget.html Online documentation}
610
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/RegistrationTarget.html Online documentation}
611
611
  */
612
612
  export type RegistrationTarget =
613
613
  | LuaEntity
@@ -808,7 +808,7 @@ declare module "factorio:runtime" {
808
808
  * - `"wire-removed"`: {@link WireRemovedUndoRedoAction}
809
809
  * - `"rotated-entity"`: {@link RotatedEntityUndoRedoAction}
810
810
  * - `"copy-entity-settings"`: {@link CopyEntitySettingsUndoRedoAction}
811
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/UndoRedoAction.html Online documentation}
811
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/UndoRedoAction.html Online documentation}
812
812
  */
813
813
  export type UndoRedoAction =
814
814
  | BuiltEntityUndoRedoAction
@@ -840,7 +840,7 @@ declare module "factorio:runtime" {
840
840
  * - `"weapon"`
841
841
  * - `"explosion"`
842
842
  * - `"enemy"`
843
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/SoundType.html Online documentation}
843
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/SoundType.html Online documentation}
844
844
  */
845
845
  export type SoundType =
846
846
  | "game-effect"
@@ -923,7 +923,7 @@ declare module "factorio:runtime" {
923
923
  * - `"controllable-remove"`
924
924
  * - `"entity-ghost"`: Selects entities that are `entity-ghost`s.
925
925
  * - `"tile-ghost"`: Selects entities that are `tile-ghost`s.
926
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/SelectionModeFlags.html Online documentation}
926
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/SelectionModeFlags.html Online documentation}
927
927
  */
928
928
  export interface SelectionModeFlags {
929
929
  /**
@@ -1042,7 +1042,7 @@ declare module "factorio:runtime" {
1042
1042
  * A set of flags. Active flags are in the dictionary as `true`, while inactive flags aren't present at all.
1043
1043
  *
1044
1044
  * By default, none of these flags are set.
1045
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ItemPrototypeFlags.html Online documentation}
1045
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ItemPrototypeFlags.html Online documentation}
1046
1046
  */
1047
1047
  export type ItemPrototypeFlags = {
1048
1048
  readonly [T in ItemPrototypeFlag]?: true
@@ -1063,7 +1063,7 @@ declare module "factorio:runtime" {
1063
1063
  * - `"spawnable"`: Allows the item to be spawned by a quickbar shortcut or custom input.
1064
1064
  * - `"spoil-result"`
1065
1065
  * - `"ignore-spoil-time-modifier"`: Controls whether the spoil time ignores the spoil time modifier in the {@link DifficultySettings}.
1066
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ItemPrototypeFlag.html Online documentation}
1066
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ItemPrototypeFlag.html Online documentation}
1067
1067
  */
1068
1068
  export type ItemPrototypeFlag =
1069
1069
  | "draw-logistic-overlay"
@@ -1083,7 +1083,7 @@ declare module "factorio:runtime" {
1083
1083
  * - `"none"`
1084
1084
  * - `"whitelist"`
1085
1085
  * - `"blacklist"`
1086
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/PrototypeFilterMode.html Online documentation}
1086
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/PrototypeFilterMode.html Online documentation}
1087
1087
  */
1088
1088
  export type PrototypeFilterMode = "none" | "whitelist" | "blacklist"
1089
1089
  export interface PipeConnectionDefinition {
@@ -1107,7 +1107,7 @@ declare module "factorio:runtime" {
1107
1107
  * The name of a {@link LuaCollisionLayerPrototype}.
1108
1108
  * @example
1109
1109
  * "is_lower_object"
1110
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/CollisionLayerID.html Online documentation}
1110
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/CollisionLayerID.html Online documentation}
1111
1111
  */
1112
1112
  export type CollisionLayerID = string
1113
1113
  export interface ItemIDFilter {
@@ -1157,7 +1157,7 @@ declare module "factorio:runtime" {
1157
1157
  * - {@link SpaceLocationPrototypeFilter}
1158
1158
  * - {@link FluidPrototypeFilter}
1159
1159
  * @see PrototypeFilterWrite
1160
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/PrototypeFilter.html Online documentation}
1160
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/PrototypeFilter.html Online documentation}
1161
1161
  */
1162
1162
  export type PrototypeFilter =
1163
1163
  | ModSettingPrototypeFilter[]
@@ -1174,7 +1174,7 @@ declare module "factorio:runtime" {
1174
1174
  | FluidPrototypeFilter[]
1175
1175
  /**
1176
1176
  * Write form of {@link PrototypeFilter}, where some properties allow additional values as input compared to the read form.
1177
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/PrototypeFilter.html Online documentation}
1177
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/PrototypeFilter.html Online documentation}
1178
1178
  */
1179
1179
  export type PrototypeFilterWrite =
1180
1180
  | readonly ModSettingPrototypeFilter[]
@@ -1191,7 +1191,7 @@ declare module "factorio:runtime" {
1191
1191
  | readonly FluidPrototypeFilterWrite[]
1192
1192
  /**
1193
1193
  * @see DisplayPanelMessageDefinitionWrite
1194
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/DisplayPanelMessageDefinition.html Online documentation}
1194
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/DisplayPanelMessageDefinition.html Online documentation}
1195
1195
  */
1196
1196
  export interface DisplayPanelMessageDefinition {
1197
1197
  /**
@@ -1209,7 +1209,7 @@ declare module "factorio:runtime" {
1209
1209
  }
1210
1210
  /**
1211
1211
  * Write form of {@link DisplayPanelMessageDefinition}, where some properties allow additional values as input compared to the read form.
1212
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/DisplayPanelMessageDefinition.html Online documentation}
1212
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/DisplayPanelMessageDefinition.html Online documentation}
1213
1213
  */
1214
1214
  export interface DisplayPanelMessageDefinitionWrite {
1215
1215
  /**
@@ -1235,7 +1235,7 @@ declare module "factorio:runtime" {
1235
1235
  * - `"space-location"`
1236
1236
  * - `"asteroid-chunk"`
1237
1237
  * - `"quality"`
1238
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/SignalIDType.html Online documentation}
1238
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/SignalIDType.html Online documentation}
1239
1239
  */
1240
1240
  export type SignalIDType =
1241
1241
  | "item"
@@ -1248,7 +1248,7 @@ declare module "factorio:runtime" {
1248
1248
  | "quality"
1249
1249
  /**
1250
1250
  * @see SignalIDWrite
1251
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/SignalID.html Online documentation}
1251
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/SignalID.html Online documentation}
1252
1252
  */
1253
1253
  export interface SignalID {
1254
1254
  /**
@@ -1266,7 +1266,7 @@ declare module "factorio:runtime" {
1266
1266
  }
1267
1267
  /**
1268
1268
  * Write form of {@link SignalID}, where some properties allow additional values as input compared to the read form.
1269
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/SignalID.html Online documentation}
1269
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/SignalID.html Online documentation}
1270
1270
  */
1271
1271
  export interface SignalIDWrite {
1272
1272
  /**
@@ -1472,7 +1472,7 @@ declare module "factorio:runtime" {
1472
1472
  * - `"play-next-track"`
1473
1473
  * - `"play-previous-track"`
1474
1474
  * - `"pause-resume-music"`
1475
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LinkedGameControl.html Online documentation}
1475
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LinkedGameControl.html Online documentation}
1476
1476
  */
1477
1477
  export type LinkedGameControl =
1478
1478
  | "move-up"
@@ -1723,7 +1723,7 @@ declare module "factorio:runtime" {
1723
1723
  * - `"create-ghost-on-entity-death"`
1724
1724
  * - `"belt-stack-size-bonus"`
1725
1725
  * - `"vehicle-logistics"`
1726
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ModifierType.html Online documentation}
1726
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ModifierType.html Online documentation}
1727
1727
  */
1728
1728
  export type ModifierType =
1729
1729
  | "inserter-stack-size-bonus"
@@ -1842,7 +1842,7 @@ declare module "factorio:runtime" {
1842
1842
  * - `"capture-spawner"`: {@link CaptureSpawnerResearchTrigger}
1843
1843
  * - `"build-entity"`: {@link BuildEntityResearchTrigger}
1844
1844
  * - `"send-item-to-orbit"`: {@link SendItemToOrbitResearchTrigger}
1845
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ResearchTrigger.html Online documentation}
1845
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ResearchTrigger.html Online documentation}
1846
1846
  */
1847
1847
  export type ResearchTrigger =
1848
1848
  | CraftItemResearchTrigger
@@ -1856,7 +1856,7 @@ declare module "factorio:runtime" {
1856
1856
  * A set of flags. Active flags are in the dictionary as `true`, while inactive flags aren't present at all.
1857
1857
  *
1858
1858
  * By default, none of these flags are set.
1859
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/EntityPrototypeFlags.html Online documentation}
1859
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/EntityPrototypeFlags.html Online documentation}
1860
1860
  */
1861
1861
  export type EntityPrototypeFlags = {
1862
1862
  readonly [T in EntityPrototypeFlag]?: true
@@ -1891,7 +1891,7 @@ declare module "factorio:runtime" {
1891
1891
  * - `"building-direction-16-way"`
1892
1892
  * - `"snap-to-rail-support-spot"`
1893
1893
  * - `"not-in-made-in"`: Prevents the entity from being shown in the "made in" list in recipe tooltips.
1894
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/EntityPrototypeFlag.html Online documentation}
1894
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/EntityPrototypeFlag.html Online documentation}
1895
1895
  */
1896
1896
  export type EntityPrototypeFlag =
1897
1897
  | "not-rotatable"
@@ -1961,7 +1961,7 @@ declare module "factorio:runtime" {
1961
1961
  * - `"local"`: The sound can be heard within the audible range around the speaker.
1962
1962
  * - `"surface"`: The sound can be heard anywhere on the speaker's surface.
1963
1963
  * - `"global"`: The sound can be heard everywhere.
1964
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ProgrammableSpeakerPlaybackMode.html Online documentation}
1964
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ProgrammableSpeakerPlaybackMode.html Online documentation}
1965
1965
  */
1966
1966
  export type ProgrammableSpeakerPlaybackMode = "local" | "surface" | "global"
1967
1967
  /**
@@ -1986,7 +1986,7 @@ declare module "factorio:runtime" {
1986
1986
  * - `"none-to-south"`
1987
1987
  * - `"south-to-none"`
1988
1988
  * - `"none-to-north"`
1989
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/CliffOrientation.html Online documentation}
1989
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/CliffOrientation.html Online documentation}
1990
1990
  */
1991
1991
  export type CliffOrientation =
1992
1992
  | "west-to-east"
@@ -2012,7 +2012,7 @@ declare module "factorio:runtime" {
2012
2012
  /**
2013
2013
  * Defines an item type that a blueprint entity will request.
2014
2014
  * @see BlueprintInsertPlanWrite
2015
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/BlueprintInsertPlan.html Online documentation}
2015
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BlueprintInsertPlan.html Online documentation}
2016
2016
  */
2017
2017
  export interface BlueprintInsertPlan {
2018
2018
  /**
@@ -2026,7 +2026,7 @@ declare module "factorio:runtime" {
2026
2026
  }
2027
2027
  /**
2028
2028
  * Write form of {@link BlueprintInsertPlan}, where some properties allow additional values as input compared to the read form.
2029
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/BlueprintInsertPlan.html Online documentation}
2029
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BlueprintInsertPlan.html Online documentation}
2030
2030
  */
2031
2031
  export interface BlueprintInsertPlanWrite {
2032
2032
  /**
@@ -2054,7 +2054,7 @@ declare module "factorio:runtime" {
2054
2054
  }
2055
2055
  /**
2056
2056
  * A single offer on a market entity.
2057
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/Offer.html Online documentation}
2057
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/Offer.html Online documentation}
2058
2058
  */
2059
2059
  export interface Offer {
2060
2060
  /**
@@ -2069,7 +2069,7 @@ declare module "factorio:runtime" {
2069
2069
  /**
2070
2070
  * An item filter may be specified in two ways, either as a string which is an item prototype name or as a table.
2071
2071
  * @see ItemFilterWrite
2072
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ItemFilter.html Online documentation}
2072
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ItemFilter.html Online documentation}
2073
2073
  */
2074
2074
  export type ItemFilter =
2075
2075
  | {
@@ -2089,7 +2089,7 @@ declare module "factorio:runtime" {
2089
2089
  | string
2090
2090
  /**
2091
2091
  * Write form of {@link ItemFilter}, where some properties allow additional values as input compared to the read form.
2092
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ItemFilter.html Online documentation}
2092
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ItemFilter.html Online documentation}
2093
2093
  */
2094
2094
  export type ItemFilterWrite =
2095
2095
  | {
@@ -2109,7 +2109,7 @@ declare module "factorio:runtime" {
2109
2109
  | string
2110
2110
  /**
2111
2111
  * @see ScheduleRecordWrite
2112
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ScheduleRecord.html Online documentation}
2112
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ScheduleRecord.html Online documentation}
2113
2113
  */
2114
2114
  export interface ScheduleRecord {
2115
2115
  /**
@@ -2132,7 +2132,7 @@ declare module "factorio:runtime" {
2132
2132
  }
2133
2133
  /**
2134
2134
  * Write form of {@link ScheduleRecord}, where some properties allow additional values as input compared to the read form.
2135
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ScheduleRecord.html Online documentation}
2135
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ScheduleRecord.html Online documentation}
2136
2136
  */
2137
2137
  export interface ScheduleRecordWrite {
2138
2138
  /**
@@ -2218,7 +2218,7 @@ declare module "factorio:runtime" {
2218
2218
  * - `"position"`: {@link PositionGuiArrowSpecification}
2219
2219
  * - `"crafting_queue"`: {@link CraftingQueueGuiArrowSpecification}
2220
2220
  * - `"item_stack"`: {@link ItemStackGuiArrowSpecification}
2221
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/GuiArrowSpecification.html Online documentation}
2221
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GuiArrowSpecification.html Online documentation}
2222
2222
  */
2223
2223
  export type GuiArrowSpecification =
2224
2224
  | EntityGuiArrowSpecification
@@ -2231,7 +2231,7 @@ declare module "factorio:runtime" {
2231
2231
  *
2232
2232
  * If this is specified as a three-element array then the array items are x, y and z, in that order.
2233
2233
  * @see Vector3DArray
2234
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/Vector3D.html Online documentation}
2234
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/Vector3D.html Online documentation}
2235
2235
  */
2236
2236
  export interface Vector3D {
2237
2237
  readonly x: float
@@ -2241,7 +2241,7 @@ declare module "factorio:runtime" {
2241
2241
  /**
2242
2242
  * Array form of {@link Vector3D}.
2243
2243
  * @see Vector3D
2244
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/Vector3D.html Online documentation}
2244
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/Vector3D.html Online documentation}
2245
2245
  */
2246
2246
  export type Vector3DArray = readonly [float, float, float]
2247
2247
  export interface ItemWithQualityCounts {
@@ -2274,7 +2274,7 @@ declare module "factorio:runtime" {
2274
2274
  }
2275
2275
  /**
2276
2276
  * @see TrainScheduleWrite
2277
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/TrainSchedule.html Online documentation}
2277
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/TrainSchedule.html Online documentation}
2278
2278
  */
2279
2279
  export interface TrainSchedule {
2280
2280
  /**
@@ -2285,7 +2285,7 @@ declare module "factorio:runtime" {
2285
2285
  }
2286
2286
  /**
2287
2287
  * Write form of {@link TrainSchedule}, where some properties allow additional values as input compared to the read form.
2288
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/TrainSchedule.html Online documentation}
2288
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/TrainSchedule.html Online documentation}
2289
2289
  */
2290
2290
  export interface TrainScheduleWrite {
2291
2291
  /**
@@ -2296,7 +2296,7 @@ declare module "factorio:runtime" {
2296
2296
  }
2297
2297
  /**
2298
2298
  * @see PlatformScheduleWrite
2299
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/PlatformSchedule.html Online documentation}
2299
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/PlatformSchedule.html Online documentation}
2300
2300
  */
2301
2301
  export interface PlatformSchedule {
2302
2302
  /**
@@ -2307,7 +2307,7 @@ declare module "factorio:runtime" {
2307
2307
  }
2308
2308
  /**
2309
2309
  * Write form of {@link PlatformSchedule}, where some properties allow additional values as input compared to the read form.
2310
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/PlatformSchedule.html Online documentation}
2310
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/PlatformSchedule.html Online documentation}
2311
2311
  */
2312
2312
  export interface PlatformScheduleWrite {
2313
2313
  /**
@@ -2324,7 +2324,7 @@ declare module "factorio:runtime" {
2324
2324
  }
2325
2325
  /**
2326
2326
  * A recipe prototype with optional quality specification.
2327
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/RecipeIDAndQualityIDPair.html Online documentation}
2327
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/RecipeIDAndQualityIDPair.html Online documentation}
2328
2328
  */
2329
2329
  export interface RecipeIDAndQualityIDPair {
2330
2330
  /**
@@ -2373,7 +2373,7 @@ declare module "factorio:runtime" {
2373
2373
  * - `string`: Name of the force, same as {@link LuaForce#name LuaForce::name}.
2374
2374
  * - {@link uint8}: Index of the force, same as {@link LuaForce#index LuaForce::index}.
2375
2375
  * - {@link LuaForce}: A reference to {@link LuaForce} may be passed directly.
2376
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ForceID.html Online documentation}
2376
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ForceID.html Online documentation}
2377
2377
  */
2378
2378
  export type ForceID = string | uint8 | LuaForce
2379
2379
  /**
@@ -2383,7 +2383,7 @@ declare module "factorio:runtime" {
2383
2383
  * - `string`: The fluid name.
2384
2384
  * - {@link LuaFluidPrototype}: The fluid prototype.
2385
2385
  * - {@link Fluid}: The fluid.
2386
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/FluidID.html Online documentation}
2386
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/FluidID.html Online documentation}
2387
2387
  */
2388
2388
  export type FluidID = string | LuaFluidPrototype | Fluid
2389
2389
  /**
@@ -2394,12 +2394,12 @@ declare module "factorio:runtime" {
2394
2394
  * - {@link LuaEntityPrototype}: The entity prototype. Normal quality will be used.
2395
2395
  * - `string`: The prototype name. Normal quality will be used.
2396
2396
  * - {@link EntityIDAndQualityIDPair}: A table of entity prototype and quality.
2397
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/EntityWithQualityID.html Online documentation}
2397
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/EntityWithQualityID.html Online documentation}
2398
2398
  */
2399
2399
  export type EntityWithQualityID = LuaEntity | LuaEntityPrototype | string | EntityIDAndQualityIDPair
2400
2400
  /**
2401
2401
  * An entity prototype with optional quality specification.
2402
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/EntityIDAndQualityIDPair.html Online documentation}
2402
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/EntityIDAndQualityIDPair.html Online documentation}
2403
2403
  */
2404
2404
  export interface EntityIDAndQualityIDPair {
2405
2405
  /**
@@ -2419,13 +2419,13 @@ declare module "factorio:runtime" {
2419
2419
  * - {@link LuaItemPrototype}: The item prototype. Normal quality will be used.
2420
2420
  * - `string`: The prototype name. Normal quality will be used.
2421
2421
  * - {@link ItemIDAndQualityIDPair}: A table of entity prototype and quality.
2422
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ItemWithQualityID.html Online documentation}
2422
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ItemWithQualityID.html Online documentation}
2423
2423
  */
2424
2424
  export type ItemWithQualityID = LuaItemStack | LuaItemPrototype | string | ItemIDAndQualityIDPairWrite
2425
2425
  /**
2426
2426
  * An item prototype with optional quality specification.
2427
2427
  * @see ItemIDAndQualityIDPairWrite
2428
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ItemIDAndQualityIDPair.html Online documentation}
2428
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ItemIDAndQualityIDPair.html Online documentation}
2429
2429
  */
2430
2430
  export interface ItemIDAndQualityIDPair {
2431
2431
  /**
@@ -2439,7 +2439,7 @@ declare module "factorio:runtime" {
2439
2439
  }
2440
2440
  /**
2441
2441
  * Write form of {@link ItemIDAndQualityIDPair}, where some properties allow additional values as input compared to the read form.
2442
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ItemIDAndQualityIDPair.html Online documentation}
2442
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ItemIDAndQualityIDPair.html Online documentation}
2443
2443
  */
2444
2444
  export interface ItemIDAndQualityIDPairWrite {
2445
2445
  /**
@@ -2459,7 +2459,7 @@ declare module "factorio:runtime" {
2459
2459
  * - {@link LuaItemStack}: Non empty item stack.
2460
2460
  * - {@link LuaItem}: The item.
2461
2461
  * - `string`: The prototype name.
2462
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ItemID.html Online documentation}
2462
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ItemID.html Online documentation}
2463
2463
  */
2464
2464
  export type ItemID = LuaItemPrototype | LuaItemStack | LuaItem | string
2465
2465
  /**
@@ -2469,7 +2469,7 @@ declare module "factorio:runtime" {
2469
2469
  * - {@link LuaEntityPrototype}: The entity prototype.
2470
2470
  * - {@link LuaEntity}: The entity.
2471
2471
  * - `string`: The prototype name.
2472
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/EntityID.html Online documentation}
2472
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/EntityID.html Online documentation}
2473
2473
  */
2474
2474
  export type EntityID = LuaEntityPrototype | LuaEntity | string
2475
2475
  /**
@@ -2479,7 +2479,7 @@ declare module "factorio:runtime" {
2479
2479
  * - {@link LuaTechnologyPrototype}: The technology prototype.
2480
2480
  * - {@link LuaTechnology}: Instance of the technology.
2481
2481
  * - `string`: The prototype name.
2482
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/TechnologyID.html Online documentation}
2482
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/TechnologyID.html Online documentation}
2483
2483
  */
2484
2484
  export type TechnologyID = LuaTechnologyPrototype | LuaTechnology | string
2485
2485
  /**
@@ -2488,7 +2488,7 @@ declare module "factorio:runtime" {
2488
2488
  * ## Union members
2489
2489
  * - {@link LuaParticlePrototype}: The particle prototype.
2490
2490
  * - `string`: The prototype name.
2491
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ParticleID.html Online documentation}
2491
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ParticleID.html Online documentation}
2492
2492
  */
2493
2493
  export type ParticleID = LuaParticlePrototype | string
2494
2494
  /**
@@ -2497,7 +2497,7 @@ declare module "factorio:runtime" {
2497
2497
  * ## Union members
2498
2498
  * - {@link LuaDamagePrototype}: The damage type prototype.
2499
2499
  * - `string`: The prototype name.
2500
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/DamageTypeID.html Online documentation}
2500
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/DamageTypeID.html Online documentation}
2501
2501
  */
2502
2502
  export type DamageTypeID = LuaDamagePrototype | string
2503
2503
  /**
@@ -2506,7 +2506,7 @@ declare module "factorio:runtime" {
2506
2506
  * ## Union members
2507
2507
  * - {@link LuaTrivialSmokePrototype}: The trivial smoke prototype.
2508
2508
  * - `string`: The prototype name.
2509
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/TrivialSmokeID.html Online documentation}
2509
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/TrivialSmokeID.html Online documentation}
2510
2510
  */
2511
2511
  export type TrivialSmokeID = LuaTrivialSmokePrototype | string
2512
2512
  /**
@@ -2518,7 +2518,7 @@ declare module "factorio:runtime" {
2518
2518
  * - `"left"`
2519
2519
  * - `"right"`
2520
2520
  * - `"center"`
2521
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/TextAlign.html Online documentation}
2521
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/TextAlign.html Online documentation}
2522
2522
  */
2523
2523
  export type TextAlign = "left" | "right" | "center"
2524
2524
  /**
@@ -2531,7 +2531,7 @@ declare module "factorio:runtime" {
2531
2531
  * - `"middle"`
2532
2532
  * - `"baseline"`
2533
2533
  * - `"bottom"`
2534
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/VerticalTextAlign.html Online documentation}
2534
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/VerticalTextAlign.html Online documentation}
2535
2535
  */
2536
2536
  export type VerticalTextAlign = "top" | "middle" | "baseline" | "bottom"
2537
2537
  /**
@@ -2540,7 +2540,7 @@ declare module "factorio:runtime" {
2540
2540
  * ## Union members
2541
2541
  * - {@link LuaQualityPrototype}: The quality prototype.
2542
2542
  * - `string`: The prototype name.
2543
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/QualityID.html Online documentation}
2543
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/QualityID.html Online documentation}
2544
2544
  */
2545
2545
  export type QualityID = LuaQualityPrototype | string
2546
2546
  /**
@@ -2550,7 +2550,7 @@ declare module "factorio:runtime" {
2550
2550
  * - {@link LuaRecipePrototype}: By recipe prototype.
2551
2551
  * - {@link LuaRecipe}: By instance of recipe.
2552
2552
  * - `string`: By name of the recipe prototype.
2553
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/RecipeID.html Online documentation}
2553
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/RecipeID.html Online documentation}
2554
2554
  */
2555
2555
  export type RecipeID = LuaRecipePrototype | LuaRecipe | string
2556
2556
  /**
@@ -2560,7 +2560,7 @@ declare module "factorio:runtime" {
2560
2560
  * - {@link LuaTilePrototype}: By tile prototype.
2561
2561
  * - {@link LuaTile}: By instance of tile.
2562
2562
  * - `string`: By name of the tile prototype.
2563
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/TileID.html Online documentation}
2563
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/TileID.html Online documentation}
2564
2564
  */
2565
2565
  export type TileID = LuaTilePrototype | LuaTile | string
2566
2566
  export interface Fluid {
@@ -2584,7 +2584,7 @@ declare module "factorio:runtime" {
2584
2584
  * - {@link LuaEquipmentPrototype}: The equipment prototype.
2585
2585
  * - {@link LuaEquipment}: The equipment.
2586
2586
  * - `string`: The prototype name.
2587
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/EquipmentID.html Online documentation}
2587
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/EquipmentID.html Online documentation}
2588
2588
  */
2589
2589
  export type EquipmentID = LuaEquipmentPrototype | LuaEquipment | string
2590
2590
  /**
@@ -2595,12 +2595,12 @@ declare module "factorio:runtime" {
2595
2595
  * - {@link LuaEquipment}: The equipment. Both prototype and quality of the provided equipment will be used.
2596
2596
  * - `string`: The prototype name. Normal quality will be used.
2597
2597
  * - {@link EquipmentIDAndQualityIDPair}: A table of equipment prototype and quality.
2598
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/EquipmentWithQualityID.html Online documentation}
2598
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/EquipmentWithQualityID.html Online documentation}
2599
2599
  */
2600
2600
  export type EquipmentWithQualityID = LuaEquipmentPrototype | LuaEquipment | string | EquipmentIDAndQualityIDPair
2601
2601
  /**
2602
2602
  * An equipment prototype with optional quality specification.
2603
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/EquipmentIDAndQualityIDPair.html Online documentation}
2603
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/EquipmentIDAndQualityIDPair.html Online documentation}
2604
2604
  */
2605
2605
  export interface EquipmentIDAndQualityIDPair {
2606
2606
  /**
@@ -2621,7 +2621,7 @@ declare module "factorio:runtime" {
2621
2621
  * @example
2622
2622
  * -- Shorthand
2623
2623
  * {{-2, -3}, {5, 8}}
2624
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/BoundingBox.html Online documentation}
2624
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BoundingBox.html Online documentation}
2625
2625
  */
2626
2626
  export interface BoundingBox {
2627
2627
  readonly left_top: MapPosition
@@ -2631,7 +2631,7 @@ declare module "factorio:runtime" {
2631
2631
  /**
2632
2632
  * Array form of {@link BoundingBox}.
2633
2633
  * @see BoundingBox
2634
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/BoundingBox.html Online documentation}
2634
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BoundingBox.html Online documentation}
2635
2635
  */
2636
2636
  export type BoundingBoxArray = readonly [MapPosition | MapPositionArray, MapPosition | MapPositionArray]
2637
2637
  export interface BoundingBoxWrite {
@@ -2644,7 +2644,7 @@ declare module "factorio:runtime" {
2644
2644
  *
2645
2645
  * ## Union members
2646
2646
  * - {@link LuaSpacePlatform}
2647
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/SpacePlatformIdentification.html Online documentation}
2647
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/SpacePlatformIdentification.html Online documentation}
2648
2648
  */
2649
2649
  export type SpacePlatformIdentification = LuaSpacePlatform
2650
2650
  /**
@@ -2654,12 +2654,12 @@ declare module "factorio:runtime" {
2654
2654
  * - {@link LuaForce}[]: Array of many forces.
2655
2655
  * - {@link LuaForce}: A single force.
2656
2656
  * @see ForceSetWrite
2657
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ForceSet.html Online documentation}
2657
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ForceSet.html Online documentation}
2658
2658
  */
2659
2659
  export type ForceSet = LuaForce[] | LuaForce
2660
2660
  /**
2661
2661
  * Write form of {@link ForceSet}, where some properties allow additional values as input compared to the read form.
2662
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ForceSet.html Online documentation}
2662
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ForceSet.html Online documentation}
2663
2663
  */
2664
2664
  export type ForceSetWrite = readonly ForceID[] | ForceID
2665
2665
  /**
@@ -2668,7 +2668,7 @@ declare module "factorio:runtime" {
2668
2668
  * ## Union members
2669
2669
  * - {@link LuaDecorativePrototype}: The decorative prototype.
2670
2670
  * - `string`: The prototype name.
2671
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/DecorativeID.html Online documentation}
2671
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/DecorativeID.html Online documentation}
2672
2672
  */
2673
2673
  export type DecorativeID = LuaDecorativePrototype | string
2674
2674
  /**
@@ -2677,7 +2677,7 @@ declare module "factorio:runtime" {
2677
2677
  * ## Union members
2678
2678
  * - {@link LuaAsteroidChunkPrototype}: The asteroid chunk prototype.
2679
2679
  * - `string`: The prototype name.
2680
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/AsteroidChunkID.html Online documentation}
2680
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/AsteroidChunkID.html Online documentation}
2681
2681
  */
2682
2682
  export type AsteroidChunkID = LuaAsteroidChunkPrototype | string
2683
2683
  /**
@@ -2686,13 +2686,13 @@ declare module "factorio:runtime" {
2686
2686
  * ## Union members
2687
2687
  * - {@link LuaSpaceLocationPrototype}: The space location prototype.
2688
2688
  * - `string`: The prototype name.
2689
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/SpaceLocationID.html Online documentation}
2689
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/SpaceLocationID.html Online documentation}
2690
2690
  */
2691
2691
  export type SpaceLocationID = LuaSpaceLocationPrototype | string
2692
2692
  /**
2693
2693
  * 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.
2694
2694
  * @see SignalFilterWrite
2695
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/SignalFilter.html Online documentation}
2695
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/SignalFilter.html Online documentation}
2696
2696
  */
2697
2697
  export type SignalFilter =
2698
2698
  | {
@@ -2716,7 +2716,7 @@ declare module "factorio:runtime" {
2716
2716
  | string
2717
2717
  /**
2718
2718
  * Write form of {@link SignalFilter}, where some properties allow additional values as input compared to the read form.
2719
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/SignalFilter.html Online documentation}
2719
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/SignalFilter.html Online documentation}
2720
2720
  */
2721
2721
  export type SignalFilterWrite =
2722
2722
  | {
@@ -2740,7 +2740,7 @@ declare module "factorio:runtime" {
2740
2740
  | string
2741
2741
  /**
2742
2742
  * @see LogisticFilterWrite
2743
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LogisticFilter.html Online documentation}
2743
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LogisticFilter.html Online documentation}
2744
2744
  */
2745
2745
  export interface LogisticFilter {
2746
2746
  /**
@@ -2766,7 +2766,7 @@ declare module "factorio:runtime" {
2766
2766
  }
2767
2767
  /**
2768
2768
  * Write form of {@link LogisticFilter}, where some properties allow additional values as input compared to the read form.
2769
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LogisticFilter.html Online documentation}
2769
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LogisticFilter.html Online documentation}
2770
2770
  */
2771
2771
  export interface LogisticFilterWrite {
2772
2772
  /**
@@ -2822,23 +2822,23 @@ declare module "factorio:runtime" {
2822
2822
  * ## Union members
2823
2823
  * - {@link LuaSurfacePropertyPrototype}: The surface property prototype.
2824
2824
  * - `string`: The prototype name.
2825
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/SurfacePropertyID.html Online documentation}
2825
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/SurfacePropertyID.html Online documentation}
2826
2826
  */
2827
2827
  export type SurfacePropertyID = LuaSurfacePropertyPrototype | string
2828
2828
  /**
2829
2829
  * When writing it is possible to give LuaEntity or MapPosition directly. However, reading always returns the full ScriptRenderTargetTable.
2830
2830
  * @see ScriptRenderTargetWrite
2831
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ScriptRenderTarget.html Online documentation}
2831
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ScriptRenderTarget.html Online documentation}
2832
2832
  */
2833
2833
  export type ScriptRenderTarget = LuaEntity | MapPosition | ScriptRenderTargetTable
2834
2834
  /**
2835
2835
  * Write form of {@link ScriptRenderTarget}, where some properties allow additional values as input compared to the read form.
2836
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ScriptRenderTarget.html Online documentation}
2836
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ScriptRenderTarget.html Online documentation}
2837
2837
  */
2838
2838
  export type ScriptRenderTargetWrite = LuaEntity | (MapPosition | MapPositionArray) | ScriptRenderTargetTableWrite
2839
2839
  /**
2840
2840
  * @see ScriptRenderTargetTableWrite
2841
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ScriptRenderTargetTable.html Online documentation}
2841
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ScriptRenderTargetTable.html Online documentation}
2842
2842
  */
2843
2843
  export interface ScriptRenderTargetTable {
2844
2844
  readonly entity?: LuaEntity
@@ -2853,7 +2853,7 @@ declare module "factorio:runtime" {
2853
2853
  }
2854
2854
  /**
2855
2855
  * Write form of {@link ScriptRenderTargetTable}, where some properties allow additional values as input compared to the read form.
2856
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ScriptRenderTargetTable.html Online documentation}
2856
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ScriptRenderTargetTable.html Online documentation}
2857
2857
  */
2858
2858
  export interface ScriptRenderTargetTableWrite {
2859
2859
  readonly entity?: LuaEntity
@@ -2868,7 +2868,7 @@ declare module "factorio:runtime" {
2868
2868
  }
2869
2869
  /**
2870
2870
  * An item filter may be specified in two ways, either as a string which is a quality prototype name or as a table.
2871
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/QualityCondition.html Online documentation}
2871
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/QualityCondition.html Online documentation}
2872
2872
  */
2873
2873
  export type QualityCondition =
2874
2874
  | {
@@ -2890,7 +2890,7 @@ declare module "factorio:runtime" {
2890
2890
  * - {@link LuaCustomInputPrototype}: Custom input prototype.
2891
2891
  * - {@link defines.events}: Event identifier.
2892
2892
  * - `string`: Name of the event.
2893
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaEventType.html Online documentation}
2893
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaEventType.html Online documentation}
2894
2894
  */
2895
2895
  export type LuaEventType = LuaCustomEventPrototype | LuaCustomInputPrototype | defines.events | string | EventId<any>
2896
2896
  /**
@@ -2898,13 +2898,13 @@ declare module "factorio:runtime" {
2898
2898
  * - `"center-to-center"`
2899
2899
  * - `"bounding-box-to-bounding-box"`
2900
2900
  * - `"center-to-bounding-box"`
2901
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/RangeMode.html Online documentation}
2901
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/RangeMode.html Online documentation}
2902
2902
  */
2903
2903
  export type RangeMode = "center-to-center" | "bounding-box-to-bounding-box" | "center-to-bounding-box"
2904
2904
  /**
2905
2905
  * 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.
2906
2906
  * @see BlueprintEntityWrite
2907
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/BlueprintEntity.html Online documentation}
2907
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BlueprintEntity.html Online documentation}
2908
2908
  */
2909
2909
  export interface BlueprintEntity {
2910
2910
  /**
@@ -3118,7 +3118,7 @@ declare module "factorio:runtime" {
3118
3118
  }
3119
3119
  /**
3120
3120
  * Write form of {@link BlueprintEntity}, where some properties allow additional values as input compared to the read form.
3121
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/BlueprintEntity.html Online documentation}
3121
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BlueprintEntity.html Online documentation}
3122
3122
  */
3123
3123
  export interface BlueprintEntityWrite {
3124
3124
  /**
@@ -3339,7 +3339,7 @@ declare module "factorio:runtime" {
3339
3339
  }
3340
3340
  /**
3341
3341
  * @see BlueprintEquipmentWrite
3342
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/BlueprintEquipment.html Online documentation}
3342
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BlueprintEquipment.html Online documentation}
3343
3343
  */
3344
3344
  export interface BlueprintEquipment {
3345
3345
  readonly equipment: ItemIDAndQualityIDPair
@@ -3347,7 +3347,7 @@ declare module "factorio:runtime" {
3347
3347
  }
3348
3348
  /**
3349
3349
  * Write form of {@link BlueprintEquipment}, where some properties allow additional values as input compared to the read form.
3350
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/BlueprintEquipment.html Online documentation}
3350
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BlueprintEquipment.html Online documentation}
3351
3351
  */
3352
3352
  export interface BlueprintEquipmentWrite {
3353
3353
  readonly equipment: ItemIDAndQualityIDPairWrite
@@ -3355,7 +3355,7 @@ declare module "factorio:runtime" {
3355
3355
  }
3356
3356
  /**
3357
3357
  * @see BlueprintInventoryWrite
3358
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/BlueprintInventory.html Online documentation}
3358
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BlueprintInventory.html Online documentation}
3359
3359
  */
3360
3360
  export interface BlueprintInventory {
3361
3361
  readonly filters?: BlueprintLogisticFilter[]
@@ -3366,7 +3366,7 @@ declare module "factorio:runtime" {
3366
3366
  }
3367
3367
  /**
3368
3368
  * Write form of {@link BlueprintInventory}, where some properties allow additional values as input compared to the read form.
3369
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/BlueprintInventory.html Online documentation}
3369
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BlueprintInventory.html Online documentation}
3370
3370
  */
3371
3371
  export interface BlueprintInventoryWrite {
3372
3372
  readonly filters?: readonly BlueprintLogisticFilterWrite[]
@@ -3387,7 +3387,7 @@ declare module "factorio:runtime" {
3387
3387
  }
3388
3388
  /**
3389
3389
  * @see BlueprintControlBehaviorWrite
3390
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/BlueprintControlBehavior.html Online documentation}
3390
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BlueprintControlBehavior.html Online documentation}
3391
3391
  */
3392
3392
  export interface BlueprintControlBehavior {
3393
3393
  /**
@@ -3640,7 +3640,7 @@ declare module "factorio:runtime" {
3640
3640
  }
3641
3641
  /**
3642
3642
  * Write form of {@link BlueprintControlBehavior}, where some properties allow additional values as input compared to the read form.
3643
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/BlueprintControlBehavior.html Online documentation}
3643
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BlueprintControlBehavior.html Online documentation}
3644
3644
  */
3645
3645
  export interface BlueprintControlBehaviorWrite {
3646
3646
  /**
@@ -3921,7 +3921,7 @@ declare module "factorio:runtime" {
3921
3921
  * "2500 * (L - 3)"
3922
3922
  * @example
3923
3923
  * "(4e5 * (abs(speed) + 10.5)) / weight"
3924
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/MathExpression.html Online documentation}
3924
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/MathExpression.html Online documentation}
3925
3925
  */
3926
3926
  export type MathExpression = string
3927
3927
  /**
@@ -3943,7 +3943,7 @@ declare module "factorio:runtime" {
3943
3943
  * -- What a custom recipe would look like that had a probability of 0.5 to return a
3944
3944
  * -- minimum amount of 1 and a maximum amount of 5
3945
3945
  * {{type="item", name="custom-item", probability=0.5, amount_min=1, amount_max=5}}
3946
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/Product.html Online documentation}
3946
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/Product.html Online documentation}
3947
3947
  */
3948
3948
  export type Product = ItemProduct | FluidProduct | ResearchProgressProduct
3949
3949
  /**
@@ -3954,7 +3954,7 @@ declare module "factorio:runtime" {
3954
3954
  * -- What a custom recipe would look like that had a probability of 0.5 to return a
3955
3955
  * -- minimum amount of 1 and a maximum amount of 5
3956
3956
  * {{type="item", name="custom-item", probability=0.5, amount_min=1, amount_max=5}}
3957
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ItemProduct.html Online documentation}
3957
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ItemProduct.html Online documentation}
3958
3958
  */
3959
3959
  export interface ItemProduct {
3960
3960
  readonly type: "item"
@@ -3998,7 +3998,7 @@ declare module "factorio:runtime" {
3998
3998
  * {{type="fluid", name="heavy-oil", amount=1},
3999
3999
  * {type="fluid", name="light-oil", amount=4.5},
4000
4000
  * {type="fluid", name="petroleum-gas", amount=5.5}}
4001
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/FluidProduct.html Online documentation}
4001
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/FluidProduct.html Online documentation}
4002
4002
  */
4003
4003
  export interface FluidProduct {
4004
4004
  readonly type: "fluid"
@@ -4046,7 +4046,7 @@ declare module "factorio:runtime" {
4046
4046
  }
4047
4047
  /**
4048
4048
  * @see LogisticSectionsWrite
4049
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LogisticSections.html Online documentation}
4049
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LogisticSections.html Online documentation}
4050
4050
  */
4051
4051
  export interface LogisticSections {
4052
4052
  readonly sections?: LogisticSection[]
@@ -4057,7 +4057,7 @@ declare module "factorio:runtime" {
4057
4057
  }
4058
4058
  /**
4059
4059
  * Write form of {@link LogisticSections}, where some properties allow additional values as input compared to the read form.
4060
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LogisticSections.html Online documentation}
4060
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LogisticSections.html Online documentation}
4061
4061
  */
4062
4062
  export interface LogisticSectionsWrite {
4063
4063
  readonly sections?: readonly LogisticSectionWrite[]
@@ -4093,7 +4093,7 @@ declare module "factorio:runtime" {
4093
4093
  }
4094
4094
  /**
4095
4095
  * @see LogisticSectionWrite
4096
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LogisticSection.html Online documentation}
4096
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LogisticSection.html Online documentation}
4097
4097
  */
4098
4098
  export interface LogisticSection {
4099
4099
  readonly index: uint8
@@ -4110,7 +4110,7 @@ declare module "factorio:runtime" {
4110
4110
  }
4111
4111
  /**
4112
4112
  * Write form of {@link LogisticSection}, where some properties allow additional values as input compared to the read form.
4113
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LogisticSection.html Online documentation}
4113
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LogisticSection.html Online documentation}
4114
4114
  */
4115
4115
  export interface LogisticSectionWrite {
4116
4116
  readonly index: uint8
@@ -4127,7 +4127,7 @@ declare module "factorio:runtime" {
4127
4127
  }
4128
4128
  /**
4129
4129
  * @see BlueprintLogisticFilterWrite
4130
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/BlueprintLogisticFilter.html Online documentation}
4130
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BlueprintLogisticFilter.html Online documentation}
4131
4131
  */
4132
4132
  export interface BlueprintLogisticFilter {
4133
4133
  readonly index: LogisticFilterIndex
@@ -4157,7 +4157,7 @@ declare module "factorio:runtime" {
4157
4157
  }
4158
4158
  /**
4159
4159
  * Write form of {@link BlueprintLogisticFilter}, where some properties allow additional values as input compared to the read form.
4160
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/BlueprintLogisticFilter.html Online documentation}
4160
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BlueprintLogisticFilter.html Online documentation}
4161
4161
  */
4162
4162
  export interface BlueprintLogisticFilterWrite {
4163
4163
  readonly index: LogisticFilterIndex
@@ -4187,7 +4187,7 @@ declare module "factorio:runtime" {
4187
4187
  }
4188
4188
  /**
4189
4189
  * Specifies how probability and richness are calculated when placing something on the map.
4190
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/AutoplaceSpecification.html Online documentation}
4190
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/AutoplaceSpecification.html Online documentation}
4191
4191
  */
4192
4192
  export interface AutoplaceSpecification {
4193
4193
  /**
@@ -4204,7 +4204,7 @@ declare module "factorio:runtime" {
4204
4204
  }
4205
4205
  /**
4206
4206
  * @see CliffPlacementSettingsWrite
4207
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/CliffPlacementSettings.html Online documentation}
4207
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/CliffPlacementSettings.html Online documentation}
4208
4208
  */
4209
4209
  export interface CliffPlacementSettings {
4210
4210
  /**
@@ -4234,7 +4234,7 @@ declare module "factorio:runtime" {
4234
4234
  }
4235
4235
  /**
4236
4236
  * Write form of {@link CliffPlacementSettings}, where some properties allow additional values as input compared to the read form.
4237
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/CliffPlacementSettings.html Online documentation}
4237
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/CliffPlacementSettings.html Online documentation}
4238
4238
  */
4239
4239
  export interface CliffPlacementSettingsWrite {
4240
4240
  /**
@@ -4264,7 +4264,7 @@ declare module "factorio:runtime" {
4264
4264
  }
4265
4265
  /**
4266
4266
  * @see AutoplaceSettingsWrite
4267
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/AutoplaceSettings.html Online documentation}
4267
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/AutoplaceSettings.html Online documentation}
4268
4268
  */
4269
4269
  export interface AutoplaceSettings {
4270
4270
  /**
@@ -4278,7 +4278,7 @@ declare module "factorio:runtime" {
4278
4278
  }
4279
4279
  /**
4280
4280
  * Write form of {@link AutoplaceSettings}, where some properties allow additional values as input compared to the read form.
4281
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/AutoplaceSettings.html Online documentation}
4281
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/AutoplaceSettings.html Online documentation}
4282
4282
  */
4283
4283
  export interface AutoplaceSettingsWrite {
4284
4284
  /**
@@ -4313,7 +4313,7 @@ declare module "factorio:runtime" {
4313
4313
  * surface.map_gen_settings = mgs
4314
4314
  * -- This does not require a NamedNoiseExpression to be defined, since literal numbers (and strings naming literal
4315
4315
  * -- numbers, e.g. `"123"`) are understood to stand for constant value expressions.
4316
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/MapGenSettings.html Online documentation}
4316
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/MapGenSettings.html Online documentation}
4317
4317
  */
4318
4318
  export interface MapGenSettings {
4319
4319
  /**
@@ -4368,7 +4368,7 @@ declare module "factorio:runtime" {
4368
4368
  }
4369
4369
  /**
4370
4370
  * Write form of {@link MapGenSettings}, where some properties allow additional values as input compared to the read form.
4371
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/MapGenSettings.html Online documentation}
4371
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/MapGenSettings.html Online documentation}
4372
4372
  */
4373
4373
  export interface MapGenSettingsWrite {
4374
4374
  /**
@@ -4427,7 +4427,7 @@ declare module "factorio:runtime" {
4427
4427
  }
4428
4428
  /**
4429
4429
  * These values are for the time frame of one second (60 ticks).
4430
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/PollutionMapSettings.html Online documentation}
4430
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/PollutionMapSettings.html Online documentation}
4431
4431
  */
4432
4432
  export interface PollutionMapSettings {
4433
4433
  /**
@@ -4481,7 +4481,7 @@ declare module "factorio:runtime" {
4481
4481
  }
4482
4482
  /**
4483
4483
  * These values represent a percentual increase in evolution. This means a value of `0.1` would increase evolution by 10%.
4484
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/EnemyEvolutionMapSettings.html Online documentation}
4484
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/EnemyEvolutionMapSettings.html Online documentation}
4485
4485
  */
4486
4486
  export interface EnemyEvolutionMapSettings {
4487
4487
  /**
@@ -4519,7 +4519,7 @@ declare module "factorio:runtime" {
4519
4519
  * * neighbouring_base_chunk_coefficient^distance(chunk, neighbour)
4520
4520
  * score(chunk) = 1 / (1 + player + base)
4521
4521
  * ```
4522
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/EnemyExpansionMapSettings.html Online documentation}
4522
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/EnemyExpansionMapSettings.html Online documentation}
4523
4523
  */
4524
4524
  export interface EnemyExpansionMapSettings {
4525
4525
  /**
@@ -4778,17 +4778,17 @@ declare module "factorio:runtime" {
4778
4778
  }
4779
4779
  /**
4780
4780
  * Technology difficulty settings. Updating any of the attributes will immediately take effect in the game engine.
4781
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/DifficultySettings.html Online documentation}
4781
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/DifficultySettings.html Online documentation}
4782
4782
  */
4783
4783
  export interface DifficultySettings {
4784
4784
  /**
4785
4785
  * A value in range [0.001, 1000].
4786
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/DifficultySettings.technology_price_multiplier.html Online documentation}
4786
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/DifficultySettings.technology_price_multiplier.html Online documentation}
4787
4787
  */
4788
4788
  technology_price_multiplier: double
4789
4789
  /**
4790
4790
  * A value in range [0.01, 100].
4791
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/DifficultySettings.spoil_time_modifier.html Online documentation}
4791
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/DifficultySettings.spoil_time_modifier.html Online documentation}
4792
4792
  */
4793
4793
  spoil_time_modifier: double
4794
4794
  }
@@ -4804,7 +4804,7 @@ declare module "factorio:runtime" {
4804
4804
  }
4805
4805
  /**
4806
4806
  * A standard table containing all {@link MapSettings} attributes plus an additional table that contains all {@link DifficultySettings} properties.
4807
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/MapAndDifficultySettings.html Online documentation}
4807
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/MapAndDifficultySettings.html Online documentation}
4808
4808
  */
4809
4809
  export interface MapAndDifficultySettings {
4810
4810
  readonly pollution: PollutionMapSettings
@@ -4825,7 +4825,7 @@ declare module "factorio:runtime" {
4825
4825
  * @example
4826
4826
  * -- Increase the number of short paths the pathfinder can cache.
4827
4827
  * game.map_settings.path_finder.short_cache_size = 15
4828
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/MapSettings.html Online documentation}
4828
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/MapSettings.html Online documentation}
4829
4829
  */
4830
4830
  export interface MapSettings {
4831
4831
  pollution: PollutionMapSettings
@@ -4837,13 +4837,13 @@ declare module "factorio:runtime" {
4837
4837
  asteroids: AsteroidMapSettings
4838
4838
  /**
4839
4839
  * If a behavior fails this many times, the enemy (or enemy group) is destroyed. This solves biters getting stuck within their own base.
4840
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/MapSettings.max_failed_behavior_count.html Online documentation}
4840
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/MapSettings.max_failed_behavior_count.html Online documentation}
4841
4841
  */
4842
4842
  max_failed_behavior_count: uint
4843
4843
  }
4844
4844
  /**
4845
4845
  * @see BlueprintScheduleRecordWrite
4846
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/BlueprintScheduleRecord.html Online documentation}
4846
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BlueprintScheduleRecord.html Online documentation}
4847
4847
  */
4848
4848
  export interface BlueprintScheduleRecord {
4849
4849
  /**
@@ -4860,7 +4860,7 @@ declare module "factorio:runtime" {
4860
4860
  }
4861
4861
  /**
4862
4862
  * Write form of {@link BlueprintScheduleRecord}, where some properties allow additional values as input compared to the read form.
4863
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/BlueprintScheduleRecord.html Online documentation}
4863
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BlueprintScheduleRecord.html Online documentation}
4864
4864
  */
4865
4865
  export interface BlueprintScheduleRecordWrite {
4866
4866
  /**
@@ -4877,7 +4877,7 @@ declare module "factorio:runtime" {
4877
4877
  }
4878
4878
  /**
4879
4879
  * @see BlueprintScheduleInterruptWrite
4880
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/BlueprintScheduleInterrupt.html Online documentation}
4880
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BlueprintScheduleInterrupt.html Online documentation}
4881
4881
  */
4882
4882
  export interface BlueprintScheduleInterrupt {
4883
4883
  readonly name?: string
@@ -4887,7 +4887,7 @@ declare module "factorio:runtime" {
4887
4887
  }
4888
4888
  /**
4889
4889
  * Write form of {@link BlueprintScheduleInterrupt}, where some properties allow additional values as input compared to the read form.
4890
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/BlueprintScheduleInterrupt.html Online documentation}
4890
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BlueprintScheduleInterrupt.html Online documentation}
4891
4891
  */
4892
4892
  export interface BlueprintScheduleInterruptWrite {
4893
4893
  readonly name?: string
@@ -4897,7 +4897,7 @@ declare module "factorio:runtime" {
4897
4897
  }
4898
4898
  /**
4899
4899
  * @see BlueprintScheduleWrite
4900
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/BlueprintSchedule.html Online documentation}
4900
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BlueprintSchedule.html Online documentation}
4901
4901
  */
4902
4902
  export interface BlueprintSchedule {
4903
4903
  readonly records?: BlueprintScheduleRecord[]
@@ -4906,7 +4906,7 @@ declare module "factorio:runtime" {
4906
4906
  }
4907
4907
  /**
4908
4908
  * Write form of {@link BlueprintSchedule}, where some properties allow additional values as input compared to the read form.
4909
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/BlueprintSchedule.html Online documentation}
4909
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BlueprintSchedule.html Online documentation}
4910
4910
  */
4911
4911
  export interface BlueprintScheduleWrite {
4912
4912
  readonly records?: readonly BlueprintScheduleRecordWrite[]
@@ -4915,7 +4915,7 @@ declare module "factorio:runtime" {
4915
4915
  }
4916
4916
  /**
4917
4917
  * @see WaitConditionWrite
4918
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/WaitCondition.html Online documentation}
4918
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/WaitCondition.html Online documentation}
4919
4919
  */
4920
4920
  export interface WaitCondition {
4921
4921
  readonly type: WaitConditionType
@@ -4946,7 +4946,7 @@ declare module "factorio:runtime" {
4946
4946
  }
4947
4947
  /**
4948
4948
  * Write form of {@link WaitCondition}, where some properties allow additional values as input compared to the read form.
4949
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/WaitCondition.html Online documentation}
4949
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/WaitCondition.html Online documentation}
4950
4950
  */
4951
4951
  export interface WaitConditionWrite {
4952
4952
  readonly type: WaitConditionType
@@ -5005,7 +5005,7 @@ declare module "factorio:runtime" {
5005
5005
  * - `"at_station"`
5006
5006
  * - `"not_at_station"`
5007
5007
  * - `"damage_taken"`
5008
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/WaitConditionType.html Online documentation}
5008
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/WaitConditionType.html Online documentation}
5009
5009
  */
5010
5010
  export type WaitConditionType =
5011
5011
  | "time"
@@ -5047,7 +5047,7 @@ declare module "factorio:runtime" {
5047
5047
  * - `"blueprint-snap-rectangle"`: Green by default.
5048
5048
  * - `"spidertron-remote-selected"`
5049
5049
  * - `"spidertron-remote-to-be-selected"`
5050
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/CursorBoxRenderType.html Online documentation}
5050
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/CursorBoxRenderType.html Online documentation}
5051
5051
  */
5052
5052
  export type CursorBoxRenderType =
5053
5053
  | "entity"
@@ -5063,7 +5063,7 @@ declare module "factorio:runtime" {
5063
5063
  | "spidertron-remote-to-be-selected"
5064
5064
  /**
5065
5065
  * What is shown in the map view. If a field is not given, that setting will not be changed.
5066
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/MapViewSettings.html Online documentation}
5066
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/MapViewSettings.html Online documentation}
5067
5067
  */
5068
5068
  export interface MapViewSettings {
5069
5069
  readonly "show-logistic-network"?: boolean
@@ -5156,7 +5156,7 @@ declare module "factorio:runtime" {
5156
5156
  * - `"collision-selection-box"`: 189
5157
5157
  * - `"arrow"`: 190
5158
5158
  * - `"cursor"`: 226
5159
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/RenderLayer.html Online documentation}
5159
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/RenderLayer.html Online documentation}
5160
5160
  */
5161
5161
  export type RenderLayer =
5162
5162
  | `${bigint}`
@@ -5231,6 +5231,20 @@ declare module "factorio:runtime" {
5231
5231
  | "collision-selection-box"
5232
5232
  | "arrow"
5233
5233
  | "cursor"
5234
+ export interface PrototypeWithQuality {
5235
+ /**
5236
+ * Name of a prototype.
5237
+ */
5238
+ readonly name: string
5239
+ /**
5240
+ * Name of a quality prototype. Always defined when reading, defaults to "normal" when writing.
5241
+ */
5242
+ readonly quality?: string
5243
+ }
5244
+ export interface PrototypeWithQualityRead {
5245
+ readonly name: string
5246
+ readonly quality: string
5247
+ }
5234
5248
  /**
5235
5249
  * A `string` specifying a type for {@link LuaGuiElement#elem_type choose elem buttons}. It's also used by {@link ElemID} for {@link LuaGuiElement#elem_tooltip LuaGuiElement::elem_tooltip}.
5236
5250
  *
@@ -5252,7 +5266,7 @@ declare module "factorio:runtime" {
5252
5266
  * - `"entity-with-quality"`
5253
5267
  * - `"recipe-with-quality"`
5254
5268
  * - `"equipment-with-quality"`
5255
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ElemType.html Online documentation}
5269
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ElemType.html Online documentation}
5256
5270
  */
5257
5271
  export type ElemType =
5258
5272
  | "achievement"
@@ -5279,7 +5293,7 @@ declare module "factorio:runtime" {
5279
5293
  * - `"left"`
5280
5294
  * - `"right"`
5281
5295
  * - `"none"`
5282
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/SwitchState.html Online documentation}
5296
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/SwitchState.html Online documentation}
5283
5297
  */
5284
5298
  export type SwitchState = "left" | "right" | "none"
5285
5299
  export interface ElemID {
@@ -5320,7 +5334,7 @@ declare module "factorio:runtime" {
5320
5334
  * - `"destroy-decoratives"`
5321
5335
  * - `"camera-effect"`
5322
5336
  * - `"activate-impact"`
5323
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/TriggerEffectItemType.html Online documentation}
5337
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/TriggerEffectItemType.html Online documentation}
5324
5338
  */
5325
5339
  export type TriggerEffectItemType =
5326
5340
  | "damage"
@@ -5357,7 +5371,7 @@ declare module "factorio:runtime" {
5357
5371
  }
5358
5372
  /**
5359
5373
  * A set of trigger target masks.
5360
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/TriggerTargetMask.html Online documentation}
5374
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/TriggerTargetMask.html Online documentation}
5361
5375
  */
5362
5376
  export type TriggerTargetMask = Record<string, true>
5363
5377
  export interface TriggerItem {
@@ -5424,7 +5438,7 @@ declare module "factorio:runtime" {
5424
5438
  * -- If 'entity-description.furnace' exists, it is concatenated with "\n" and returned. Otherwise, if 'item-description.furnace'
5425
5439
  * -- exists, it is returned as-is. Otherwise, "optional fallback" is returned. If this value wasn't specified, the
5426
5440
  * -- translation result would be "Unknown key: 'item-description.furnace'".
5427
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LocalisedString.html Online documentation}
5441
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LocalisedString.html Online documentation}
5428
5442
  */
5429
5443
  export type LocalisedString = string | number | boolean | LuaObject | nil | [string, ...LocalisedString[]]
5430
5444
  export interface DisplayResolution {
@@ -5435,7 +5449,7 @@ declare module "factorio:runtime" {
5435
5449
  * 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".
5436
5450
  *
5437
5451
  * For example then, a value of `0.625` would indicate "south-west", and a value of `0.875` would indicate "north-west".
5438
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/RealOrientation.html Online documentation}
5452
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/RealOrientation.html Online documentation}
5439
5453
  */
5440
5454
  export type RealOrientation = float
5441
5455
  /**
@@ -5450,7 +5464,7 @@ declare module "factorio:runtime" {
5450
5464
  * @example
5451
5465
  * -- Shorthand
5452
5466
  * {1.625, 2.375}
5453
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/MapPosition.html Online documentation}
5467
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/MapPosition.html Online documentation}
5454
5468
  */
5455
5469
  export interface MapPosition {
5456
5470
  readonly x: double
@@ -5459,13 +5473,13 @@ declare module "factorio:runtime" {
5459
5473
  /**
5460
5474
  * Array form of {@link MapPosition}.
5461
5475
  * @see MapPosition
5462
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/MapPosition.html Online documentation}
5476
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/MapPosition.html Online documentation}
5463
5477
  */
5464
5478
  export type MapPositionArray = readonly [double, double]
5465
5479
  /**
5466
5480
  * 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.
5467
5481
  * @see ChunkPositionArray
5468
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ChunkPosition.html Online documentation}
5482
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ChunkPosition.html Online documentation}
5469
5483
  */
5470
5484
  export interface ChunkPosition {
5471
5485
  readonly x: int
@@ -5474,13 +5488,13 @@ declare module "factorio:runtime" {
5474
5488
  /**
5475
5489
  * Array form of {@link ChunkPosition}.
5476
5490
  * @see ChunkPosition
5477
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ChunkPosition.html Online documentation}
5491
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ChunkPosition.html Online documentation}
5478
5492
  */
5479
5493
  export type ChunkPositionArray = readonly [int, int]
5480
5494
  /**
5481
5495
  * 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.
5482
5496
  * @see TilePositionArray
5483
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/TilePosition.html Online documentation}
5497
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/TilePosition.html Online documentation}
5484
5498
  */
5485
5499
  export interface TilePosition {
5486
5500
  readonly x: int
@@ -5489,7 +5503,7 @@ declare module "factorio:runtime" {
5489
5503
  /**
5490
5504
  * Array form of {@link TilePosition}.
5491
5505
  * @see TilePosition
5492
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/TilePosition.html Online documentation}
5506
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/TilePosition.html Online documentation}
5493
5507
  */
5494
5508
  export type TilePositionArray = readonly [int, int]
5495
5509
  /**
@@ -5502,7 +5516,7 @@ declare module "factorio:runtime" {
5502
5516
  * @example
5503
5517
  * -- Shorthand
5504
5518
  * {1, 2}
5505
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/EquipmentPosition.html Online documentation}
5519
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/EquipmentPosition.html Online documentation}
5506
5520
  */
5507
5521
  export interface EquipmentPosition {
5508
5522
  readonly x: int
@@ -5511,13 +5525,13 @@ declare module "factorio:runtime" {
5511
5525
  /**
5512
5526
  * Array form of {@link EquipmentPosition}.
5513
5527
  * @see EquipmentPosition
5514
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/EquipmentPosition.html Online documentation}
5528
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/EquipmentPosition.html Online documentation}
5515
5529
  */
5516
5530
  export type EquipmentPositionArray = readonly [int, int]
5517
5531
  /**
5518
5532
  * 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.
5519
5533
  * @see GuiLocationArray
5520
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/GuiLocation.html Online documentation}
5534
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GuiLocation.html Online documentation}
5521
5535
  */
5522
5536
  export interface GuiLocation {
5523
5537
  readonly x: int
@@ -5526,12 +5540,12 @@ declare module "factorio:runtime" {
5526
5540
  /**
5527
5541
  * Array form of {@link GuiLocation}.
5528
5542
  * @see GuiLocation
5529
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/GuiLocation.html Online documentation}
5543
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GuiLocation.html Online documentation}
5530
5544
  */
5531
5545
  export type GuiLocationArray = readonly [int, int]
5532
5546
  /**
5533
5547
  * A {@link ChunkPosition} with an added bounding box for the area of the chunk.
5534
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ChunkPositionAndArea.html Online documentation}
5548
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ChunkPositionAndArea.html Online documentation}
5535
5549
  */
5536
5550
  export interface ChunkPositionAndArea {
5537
5551
  readonly x: int
@@ -5540,7 +5554,7 @@ declare module "factorio:runtime" {
5540
5554
  }
5541
5555
  /**
5542
5556
  * A table used to define a manual shape for a piece of equipment.
5543
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/EquipmentPoint.html Online documentation}
5557
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/EquipmentPoint.html Online documentation}
5544
5558
  */
5545
5559
  export interface EquipmentPoint {
5546
5560
  readonly x: uint
@@ -5576,7 +5590,7 @@ declare module "factorio:runtime" {
5576
5590
  * 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.
5577
5591
  * @example
5578
5592
  * {a = 1, b = true, c = "three", d = {e = "f"}}
5579
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/Tags.html Online documentation}
5593
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/Tags.html Online documentation}
5580
5594
  */
5581
5595
  export type Tags = Record<string, AnyBasic>
5582
5596
  export interface SurfaceCondition {
@@ -5610,13 +5624,13 @@ declare module "factorio:runtime" {
5610
5624
  * 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.
5611
5625
  * @example
5612
5626
  * right = {1.0, 0.0}
5613
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/Vector.html Online documentation}
5627
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/Vector.html Online documentation}
5614
5628
  */
5615
5629
  export type Vector = MapPositionArray
5616
5630
  /**
5617
5631
  * An area defined using the map editor.
5618
5632
  * @see ScriptAreaWrite
5619
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ScriptArea.html Online documentation}
5633
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ScriptArea.html Online documentation}
5620
5634
  */
5621
5635
  export interface ScriptArea {
5622
5636
  readonly area: BoundingBox
@@ -5626,7 +5640,7 @@ declare module "factorio:runtime" {
5626
5640
  }
5627
5641
  /**
5628
5642
  * Write form of {@link ScriptArea}, where some properties allow additional values as input compared to the read form.
5629
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ScriptArea.html Online documentation}
5643
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ScriptArea.html Online documentation}
5630
5644
  */
5631
5645
  export interface ScriptAreaWrite {
5632
5646
  readonly area: BoundingBoxWrite | BoundingBoxArray
@@ -5637,7 +5651,7 @@ declare module "factorio:runtime" {
5637
5651
  /**
5638
5652
  * A position defined using the map editor.
5639
5653
  * @see ScriptPositionWrite
5640
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ScriptPosition.html Online documentation}
5654
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ScriptPosition.html Online documentation}
5641
5655
  */
5642
5656
  export interface ScriptPosition {
5643
5657
  readonly position: MapPosition
@@ -5647,7 +5661,7 @@ declare module "factorio:runtime" {
5647
5661
  }
5648
5662
  /**
5649
5663
  * Write form of {@link ScriptPosition}, where some properties allow additional values as input compared to the read form.
5650
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ScriptPosition.html Online documentation}
5664
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ScriptPosition.html Online documentation}
5651
5665
  */
5652
5666
  export interface ScriptPositionWrite {
5653
5667
  readonly position: MapPosition | MapPositionArray
@@ -5665,7 +5679,7 @@ declare module "factorio:runtime" {
5665
5679
  * red2 = {r = 0.5, a = 0.5} -- Same color as red1
5666
5680
  * black = {} -- All channels omitted: black
5667
5681
  * red1_short = {0.5, 0, 0, 0.5} -- Same color as red1 in short-hand notation
5668
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/Color.html Online documentation}
5682
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/Color.html Online documentation}
5669
5683
  */
5670
5684
  export interface Color {
5671
5685
  readonly r?: float
@@ -5676,13 +5690,13 @@ declare module "factorio:runtime" {
5676
5690
  /**
5677
5691
  * Array form of {@link Color}.
5678
5692
  * @see Color
5679
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/Color.html Online documentation}
5693
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/Color.html Online documentation}
5680
5694
  */
5681
5695
  export type ColorArray = readonly [r: double, g: double, b: double, a?: double]
5682
5696
  /**
5683
5697
  * 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].
5684
5698
  * @see ColorModifierArray
5685
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ColorModifier.html Online documentation}
5699
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ColorModifier.html Online documentation}
5686
5700
  */
5687
5701
  export interface ColorModifier {
5688
5702
  readonly r?: float
@@ -5693,7 +5707,7 @@ declare module "factorio:runtime" {
5693
5707
  /**
5694
5708
  * Array form of {@link ColorModifier}.
5695
5709
  * @see ColorModifier
5696
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ColorModifier.html Online documentation}
5710
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ColorModifier.html Online documentation}
5697
5711
  */
5698
5712
  export type ColorModifierArray = readonly [r: double, g: double, b: double, a?: double]
5699
5713
  export interface CraftingQueueItem {
@@ -5836,7 +5850,7 @@ declare module "factorio:runtime" {
5836
5850
  }
5837
5851
  /**
5838
5852
  * @see AsteroidChunkWrite
5839
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/AsteroidChunk.html Online documentation}
5853
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/AsteroidChunk.html Online documentation}
5840
5854
  */
5841
5855
  export interface AsteroidChunk {
5842
5856
  /**
@@ -5848,7 +5862,7 @@ declare module "factorio:runtime" {
5848
5862
  }
5849
5863
  /**
5850
5864
  * Write form of {@link AsteroidChunk}, where some properties allow additional values as input compared to the read form.
5851
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/AsteroidChunk.html Online documentation}
5865
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/AsteroidChunk.html Online documentation}
5852
5866
  */
5853
5867
  export interface AsteroidChunkWrite {
5854
5868
  /**
@@ -5870,7 +5884,7 @@ declare module "factorio:runtime" {
5870
5884
  }
5871
5885
  /**
5872
5886
  * Either `icon`, `text`, or both must be provided.
5873
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ChartTagSpec.html Online documentation}
5887
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ChartTagSpec.html Online documentation}
5874
5888
  */
5875
5889
  export interface ChartTagSpec {
5876
5890
  readonly position: MapPosition | MapPositionArray
@@ -5880,93 +5894,93 @@ declare module "factorio:runtime" {
5880
5894
  }
5881
5895
  /**
5882
5896
  * 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.
5883
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/GameViewSettings.html Online documentation}
5897
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GameViewSettings.html Online documentation}
5884
5898
  */
5885
5899
  export interface GameViewSettings {
5886
5900
  /**
5887
5901
  * Show the controller GUI elements. This includes the toolbar, the selected tool slot, the armour slot, and the gun and ammunition slots.
5888
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/GameViewSettings.show_controller_gui.html Online documentation}
5902
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GameViewSettings.show_controller_gui.html Online documentation}
5889
5903
  */
5890
5904
  show_controller_gui: boolean
5891
5905
  /**
5892
5906
  * Show the chart in the upper right-hand corner of the screen.
5893
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/GameViewSettings.show_minimap.html Online documentation}
5907
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GameViewSettings.show_minimap.html Online documentation}
5894
5908
  */
5895
5909
  show_minimap: boolean
5896
5910
  /**
5897
5911
  * Show research progress and name in the upper right-hand corner of the screen.
5898
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/GameViewSettings.show_research_info.html Online documentation}
5912
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GameViewSettings.show_research_info.html Online documentation}
5899
5913
  */
5900
5914
  show_research_info: boolean
5901
5915
  /**
5902
5916
  * Show overlay icons on entities. Also known as "alt-mode".
5903
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/GameViewSettings.show_entity_info.html Online documentation}
5917
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GameViewSettings.show_entity_info.html Online documentation}
5904
5918
  */
5905
5919
  show_entity_info: boolean
5906
5920
  /**
5907
5921
  * Show the flashing alert icons next to the player's toolbar.
5908
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/GameViewSettings.show_alert_gui.html Online documentation}
5922
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GameViewSettings.show_alert_gui.html Online documentation}
5909
5923
  */
5910
5924
  show_alert_gui: boolean
5911
5925
  /**
5912
5926
  * When `true` (the default), mousing over an entity will select it. Otherwise, moving the mouse won't update entity selection.
5913
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/GameViewSettings.update_entity_selection.html Online documentation}
5927
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GameViewSettings.update_entity_selection.html Online documentation}
5914
5928
  */
5915
5929
  update_entity_selection: boolean
5916
5930
  /**
5917
5931
  * When `true` (`false` is default), the rails will always show the rail block visualisation.
5918
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/GameViewSettings.show_rail_block_visualisation.html Online documentation}
5932
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GameViewSettings.show_rail_block_visualisation.html Online documentation}
5919
5933
  */
5920
5934
  show_rail_block_visualisation: boolean
5921
5935
  /**
5922
5936
  * Shows or hides the buttons row.
5923
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/GameViewSettings.show_side_menu.html Online documentation}
5937
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GameViewSettings.show_side_menu.html Online documentation}
5924
5938
  */
5925
5939
  show_side_menu: boolean
5926
5940
  /**
5927
5941
  * Shows or hides the view options when map is opened.
5928
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/GameViewSettings.show_map_view_options.html Online documentation}
5942
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GameViewSettings.show_map_view_options.html Online documentation}
5929
5943
  */
5930
5944
  show_map_view_options: boolean
5931
5945
  /**
5932
5946
  * Shows or hides the tooltip that is displayed when selecting an entity.
5933
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/GameViewSettings.show_entity_tooltip.html Online documentation}
5947
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GameViewSettings.show_entity_tooltip.html Online documentation}
5934
5948
  */
5935
5949
  show_entity_tooltip: boolean
5936
5950
  /**
5937
5951
  * Shows or hides quickbar of shortcuts.
5938
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/GameViewSettings.show_quickbar.html Online documentation}
5952
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GameViewSettings.show_quickbar.html Online documentation}
5939
5953
  */
5940
5954
  show_quickbar: boolean
5941
5955
  /**
5942
5956
  * Shows or hides the shortcut bar.
5943
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/GameViewSettings.show_shortcut_bar.html Online documentation}
5957
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GameViewSettings.show_shortcut_bar.html Online documentation}
5944
5958
  */
5945
5959
  show_shortcut_bar: boolean
5946
5960
  /**
5947
5961
  * Shows or hides the crafting queue.
5948
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/GameViewSettings.show_crafting_queue.html Online documentation}
5962
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GameViewSettings.show_crafting_queue.html Online documentation}
5949
5963
  */
5950
5964
  show_crafting_queue: boolean
5951
5965
  /**
5952
5966
  * Shows or hides the tool window with the weapons and armor.
5953
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/GameViewSettings.show_tool_bar.html Online documentation}
5967
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GameViewSettings.show_tool_bar.html Online documentation}
5954
5968
  */
5955
5969
  show_tool_bar: boolean
5956
5970
  /**
5957
5971
  * Shows or hides the mouse and keyboard/controller button hints in the bottom left corner if they are enabled in the interface settings.
5958
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/GameViewSettings.show_hotkey_suggestions.html Online documentation}
5972
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GameViewSettings.show_hotkey_suggestions.html Online documentation}
5959
5973
  */
5960
5974
  show_hotkey_suggestions: boolean
5961
5975
  /**
5962
5976
  * Shows or hides the surface list while in Remote View.
5963
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/GameViewSettings.show_surface_list.html Online documentation}
5977
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GameViewSettings.show_surface_list.html Online documentation}
5964
5978
  */
5965
5979
  show_surface_list: boolean
5966
5980
  }
5967
5981
  /**
5968
5982
  * The data that can be extracted from a map exchange string, as a plain table.
5969
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/MapExchangeStringData.html Online documentation}
5983
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/MapExchangeStringData.html Online documentation}
5970
5984
  */
5971
5985
  export interface MapExchangeStringData {
5972
5986
  readonly map_settings: MapAndDifficultySettings
@@ -5974,7 +5988,7 @@ declare module "factorio:runtime" {
5974
5988
  }
5975
5989
  /**
5976
5990
  * @see BlueprintSignalIconWrite
5977
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/BlueprintSignalIcon.html Online documentation}
5991
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BlueprintSignalIcon.html Online documentation}
5978
5992
  */
5979
5993
  export interface BlueprintSignalIcon {
5980
5994
  /**
@@ -5988,7 +6002,7 @@ declare module "factorio:runtime" {
5988
6002
  }
5989
6003
  /**
5990
6004
  * Write form of {@link BlueprintSignalIcon}, where some properties allow additional values as input compared to the read form.
5991
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/BlueprintSignalIcon.html Online documentation}
6005
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BlueprintSignalIcon.html Online documentation}
5992
6006
  */
5993
6007
  export interface BlueprintSignalIconWrite {
5994
6008
  /**
@@ -6017,12 +6031,12 @@ declare module "factorio:runtime" {
6017
6031
  * - `target_entity_number`
6018
6032
  *
6019
6033
  * - `target_wire_connector_id`
6020
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/BlueprintWire.html Online documentation}
6034
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/BlueprintWire.html Online documentation}
6021
6035
  */
6022
6036
  export type BlueprintWire = readonly [uint, defines.wire_connector_id, uint, defines.wire_connector_id]
6023
6037
  /**
6024
6038
  * @see TileWrite
6025
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/Tile.html Online documentation}
6039
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/Tile.html Online documentation}
6026
6040
  */
6027
6041
  export interface Tile {
6028
6042
  /**
@@ -6036,7 +6050,7 @@ declare module "factorio:runtime" {
6036
6050
  }
6037
6051
  /**
6038
6052
  * Write form of {@link Tile}, where some properties allow additional values as input compared to the read form.
6039
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/Tile.html Online documentation}
6053
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/Tile.html Online documentation}
6040
6054
  */
6041
6055
  export interface TileWrite {
6042
6056
  /**
@@ -6091,7 +6105,7 @@ declare module "factorio:runtime" {
6091
6105
  *
6092
6106
  * Other attributes may be specified depending on `type`:
6093
6107
  * - `"fluid"`: {@link FluidIngredient}
6094
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/Ingredient.html Online documentation}
6108
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/Ingredient.html Online documentation}
6095
6109
  */
6096
6110
  export type Ingredient = FluidIngredient | OtherIngredient
6097
6111
  export interface Loot {
@@ -6257,7 +6271,7 @@ declare module "factorio:runtime" {
6257
6271
  * - `"unlock-recipe"`: {@link UnlockRecipeTechnologyModifier}
6258
6272
  * - `"nothing"`: {@link NothingTechnologyModifier}
6259
6273
  * - Other types: {@link OtherTechnologyModifier}
6260
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/TechnologyModifier.html Online documentation}
6274
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/TechnologyModifier.html Online documentation}
6261
6275
  */
6262
6276
  export type TechnologyModifier =
6263
6277
  | GunSpeedTechnologyModifier
@@ -6269,7 +6283,7 @@ declare module "factorio:runtime" {
6269
6283
  | OtherTechnologyModifier
6270
6284
  /**
6271
6285
  * 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}.
6272
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/NoiseExpression.html Online documentation}
6286
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/NoiseExpression.html Online documentation}
6273
6287
  */
6274
6288
  export interface NoiseExpression {
6275
6289
  /**
@@ -6322,7 +6336,7 @@ declare module "factorio:runtime" {
6322
6336
  * - `"very-high"`: equivalent to `2`.
6323
6337
  * - `"very-big"`: equivalent to `2`.
6324
6338
  * - `"very-good"`: equivalent to `2`.
6325
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/MapGenSize.html Online documentation}
6339
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/MapGenSize.html Online documentation}
6326
6340
  */
6327
6341
  export type MapGenSize =
6328
6342
  | float
@@ -6344,7 +6358,7 @@ declare module "factorio:runtime" {
6344
6358
  | "very-good"
6345
6359
  /**
6346
6360
  * @see AutoplaceControlWrite
6347
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/AutoplaceControl.html Online documentation}
6361
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/AutoplaceControl.html Online documentation}
6348
6362
  */
6349
6363
  export interface AutoplaceControl {
6350
6364
  /**
@@ -6362,7 +6376,7 @@ declare module "factorio:runtime" {
6362
6376
  }
6363
6377
  /**
6364
6378
  * Write form of {@link AutoplaceControl}, where some properties allow additional values as input compared to the read form.
6365
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/AutoplaceControl.html Online documentation}
6379
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/AutoplaceControl.html Online documentation}
6366
6380
  */
6367
6381
  export interface AutoplaceControlWrite {
6368
6382
  /**
@@ -6381,10 +6395,10 @@ declare module "factorio:runtime" {
6381
6395
  /**
6382
6396
  * 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}`.
6383
6397
  *
6384
- * {@link https://lua-api.factorio.com/2.0.29/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:}
6398
+ * {@link https://lua-api.factorio.com/2.0.31/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:}
6385
6399
  *
6386
- * {@link https://lua-api.factorio.com/2.0.29/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:}
6387
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/PropertyExpressionNames.html Online documentation}
6400
+ * {@link https://lua-api.factorio.com/2.0.31/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:}
6401
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/PropertyExpressionNames.html Online documentation}
6388
6402
  */
6389
6403
  export type PropertyExpressionNames = Record<string, string>
6390
6404
  export interface AdvancedMapGenSettings {
@@ -6407,7 +6421,7 @@ declare module "factorio:runtime" {
6407
6421
  }
6408
6422
  /**
6409
6423
  * An actual signal transmitted by the network.
6410
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/Signal.html Online documentation}
6424
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/Signal.html Online documentation}
6411
6425
  */
6412
6426
  export interface Signal {
6413
6427
  /**
@@ -6421,7 +6435,7 @@ declare module "factorio:runtime" {
6421
6435
  }
6422
6436
  /**
6423
6437
  * @see UpgradeMapperSourceWrite
6424
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/UpgradeMapperSource.html Online documentation}
6438
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/UpgradeMapperSource.html Online documentation}
6425
6439
  */
6426
6440
  export interface UpgradeMapperSource {
6427
6441
  readonly type: "item" | "entity"
@@ -6440,7 +6454,7 @@ declare module "factorio:runtime" {
6440
6454
  }
6441
6455
  /**
6442
6456
  * Write form of {@link UpgradeMapperSource}, where some properties allow additional values as input compared to the read form.
6443
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/UpgradeMapperSource.html Online documentation}
6457
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/UpgradeMapperSource.html Online documentation}
6444
6458
  */
6445
6459
  export interface UpgradeMapperSourceWrite {
6446
6460
  readonly type: "item" | "entity"
@@ -6477,7 +6491,7 @@ declare module "factorio:runtime" {
6477
6491
  }
6478
6492
  /**
6479
6493
  * A single filter used by an infinity-filters instance.
6480
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/InfinityInventoryFilter.html Online documentation}
6494
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/InfinityInventoryFilter.html Online documentation}
6481
6495
  */
6482
6496
  export interface InfinityInventoryFilter {
6483
6497
  /**
@@ -6499,7 +6513,7 @@ declare module "factorio:runtime" {
6499
6513
  }
6500
6514
  /**
6501
6515
  * A single filter used by an infinity-pipe type entity.
6502
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/InfinityPipeFilter.html Online documentation}
6516
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/InfinityPipeFilter.html Online documentation}
6503
6517
  */
6504
6518
  export interface InfinityPipeFilter {
6505
6519
  /**
@@ -6553,7 +6567,7 @@ declare module "factorio:runtime" {
6553
6567
  }
6554
6568
  /**
6555
6569
  * The settings used by a heat-interface type entity.
6556
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/HeatSetting.html Online documentation}
6570
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/HeatSetting.html Online documentation}
6557
6571
  */
6558
6572
  export interface HeatSetting {
6559
6573
  /**
@@ -6571,7 +6585,7 @@ declare module "factorio:runtime" {
6571
6585
  }
6572
6586
  /**
6573
6587
  * @see ArithmeticCombinatorParametersWrite
6574
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ArithmeticCombinatorParameters.html Online documentation}
6588
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ArithmeticCombinatorParameters.html Online documentation}
6575
6589
  */
6576
6590
  export interface ArithmeticCombinatorParameters {
6577
6591
  /**
@@ -6601,7 +6615,7 @@ declare module "factorio:runtime" {
6601
6615
  }
6602
6616
  /**
6603
6617
  * Write form of {@link ArithmeticCombinatorParameters}, where some properties allow additional values as input compared to the read form.
6604
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ArithmeticCombinatorParameters.html Online documentation}
6618
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ArithmeticCombinatorParameters.html Online documentation}
6605
6619
  */
6606
6620
  export interface ArithmeticCombinatorParametersWrite {
6607
6621
  /**
@@ -6631,7 +6645,7 @@ declare module "factorio:runtime" {
6631
6645
  }
6632
6646
  /**
6633
6647
  * @see SelectorCombinatorParametersWrite
6634
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/SelectorCombinatorParameters.html Online documentation}
6648
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/SelectorCombinatorParameters.html Online documentation}
6635
6649
  */
6636
6650
  export interface SelectorCombinatorParameters {
6637
6651
  /**
@@ -6657,7 +6671,7 @@ declare module "factorio:runtime" {
6657
6671
  }
6658
6672
  /**
6659
6673
  * Write form of {@link SelectorCombinatorParameters}, where some properties allow additional values as input compared to the read form.
6660
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/SelectorCombinatorParameters.html Online documentation}
6674
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/SelectorCombinatorParameters.html Online documentation}
6661
6675
  */
6662
6676
  export interface SelectorCombinatorParametersWrite {
6663
6677
  /**
@@ -6699,7 +6713,7 @@ declare module "factorio:runtime" {
6699
6713
  }
6700
6714
  /**
6701
6715
  * @see CircuitConditionWrite
6702
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/CircuitCondition.html Online documentation}
6716
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/CircuitCondition.html Online documentation}
6703
6717
  */
6704
6718
  export interface CircuitCondition {
6705
6719
  /**
@@ -6721,7 +6735,7 @@ declare module "factorio:runtime" {
6721
6735
  }
6722
6736
  /**
6723
6737
  * Write form of {@link CircuitCondition}, where some properties allow additional values as input compared to the read form.
6724
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/CircuitCondition.html Online documentation}
6738
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/CircuitCondition.html Online documentation}
6725
6739
  */
6726
6740
  export interface CircuitConditionWrite {
6727
6741
  /**
@@ -6743,7 +6757,7 @@ declare module "factorio:runtime" {
6743
6757
  }
6744
6758
  /**
6745
6759
  * @see CircuitConditionDefinitionWrite
6746
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/CircuitConditionDefinition.html Online documentation}
6760
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/CircuitConditionDefinition.html Online documentation}
6747
6761
  */
6748
6762
  export interface CircuitConditionDefinition {
6749
6763
  /**
@@ -6757,7 +6771,7 @@ declare module "factorio:runtime" {
6757
6771
  }
6758
6772
  /**
6759
6773
  * Write form of {@link CircuitConditionDefinition}, where some properties allow additional values as input compared to the read form.
6760
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/CircuitConditionDefinition.html Online documentation}
6774
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/CircuitConditionDefinition.html Online documentation}
6761
6775
  */
6762
6776
  export interface CircuitConditionDefinitionWrite {
6763
6777
  /**
@@ -7032,7 +7046,7 @@ declare module "factorio:runtime" {
7032
7046
  * - {@link defines.command.stop}: {@link StopCommand}
7033
7047
  * - {@link defines.command.flee}: {@link FleeCommand}
7034
7048
  * - {@link defines.command.build_base}: {@link BuildBaseCommand}
7035
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/Command.html Online documentation}
7049
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/Command.html Online documentation}
7036
7050
  */
7037
7051
  export type Command =
7038
7052
  | AttackCommand
@@ -7046,7 +7060,7 @@ declare module "factorio:runtime" {
7046
7060
  | BuildBaseCommand
7047
7061
  /**
7048
7062
  * Write form of {@link Command}, where some properties allow additional values as input compared to the read form.
7049
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/Command.html Online documentation}
7063
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/Command.html Online documentation}
7050
7064
  */
7051
7065
  export type CommandWrite =
7052
7066
  | AttackCommand
@@ -7131,7 +7145,7 @@ declare module "factorio:runtime" {
7131
7145
  * These are both full stacks of iron plates (for iron-plate, a full stack is 100 plates)
7132
7146
  * "iron-plate"
7133
7147
  * {name="iron-plate", count=100}
7134
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/SimpleItemStack.html Online documentation}
7148
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/SimpleItemStack.html Online documentation}
7135
7149
  */
7136
7150
  export type SimpleItemStack = string | ItemStackDefinition
7137
7151
  /**
@@ -7141,7 +7155,7 @@ declare module "factorio:runtime" {
7141
7155
  * - 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.
7142
7156
  * - `string`: It will be the surface name. E.g. `"nauvis"`.
7143
7157
  * - {@link LuaSurface}: A reference to {@link LuaSurface} may be passed directly.
7144
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/SurfaceIdentification.html Online documentation}
7158
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/SurfaceIdentification.html Online documentation}
7145
7159
  */
7146
7160
  export type SurfaceIdentification = SurfaceIndex | string | LuaSurface
7147
7161
  /**
@@ -7151,7 +7165,7 @@ declare module "factorio:runtime" {
7151
7165
  * - PlayerIndex: The player index.
7152
7166
  * - `string`: The player name.
7153
7167
  * - {@link LuaPlayer}: A reference to {@link LuaPlayer} may be passed directly.
7154
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/PlayerIdentification.html Online documentation}
7168
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/PlayerIdentification.html Online documentation}
7155
7169
  */
7156
7170
  export type PlayerIdentification = PlayerIndex | string | LuaPlayer
7157
7171
  /**
@@ -7160,7 +7174,7 @@ declare module "factorio:runtime" {
7160
7174
  * ## Union members
7161
7175
  * - {@link SimpleItemStack}
7162
7176
  * - {@link LuaItemStack}
7163
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ItemStackIdentification.html Online documentation}
7177
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ItemStackIdentification.html Online documentation}
7164
7178
  */
7165
7179
  export type ItemStackIdentification = SimpleItemStack | LuaItemStack
7166
7180
  /**
@@ -7170,7 +7184,7 @@ declare module "factorio:runtime" {
7170
7184
  * - `"entity"`: Fires at an entity.
7171
7185
  * - `"position"`: Fires directly at a position.
7172
7186
  * - `"direction"`: Fires in a direction.
7173
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/TargetType.html Online documentation}
7187
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/TargetType.html Online documentation}
7174
7188
  */
7175
7189
  export type TargetType = "entity" | "position" | "direction"
7176
7190
  export interface BeamTarget {
@@ -7207,8 +7221,8 @@ declare module "factorio:runtime" {
7207
7221
  *
7208
7222
  * The validity of a SoundPath can be verified at runtime using {@link LuaHelpers#is_valid_sound_path LuaHelpers::is_valid_sound_path}.
7209
7223
  *
7210
- * {@link https://lua-api.factorio.com/2.0.29/concepts/SoundPath.html > The utility and ambient types each contain general use sound prototypes defined by the game itself.}
7211
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/SoundPath.html Online documentation}
7224
+ * {@link https://lua-api.factorio.com/2.0.31/concepts/SoundPath.html > The utility and ambient types each contain general use sound prototypes defined by the game itself.}
7225
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/SoundPath.html Online documentation}
7212
7226
  */
7213
7227
  export type SoundPath = (string & { _?: never }) | `${SoundCategory}/${string}`
7214
7228
  export interface CircularParticleCreationSpecification {
@@ -7340,7 +7354,7 @@ declare module "factorio:runtime" {
7340
7354
  * Other attributes may be specified depending on `type`:
7341
7355
  * - `"projectile"`: {@link ProjectileAttackParameters}
7342
7356
  * - `"stream"`: {@link StreamAttackParameters}
7343
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/AttackParameters.html Online documentation}
7357
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/AttackParameters.html Online documentation}
7344
7358
  */
7345
7359
  export type AttackParameters = ProjectileAttackParameters | StreamAttackParameters | OtherAttackParameters
7346
7360
  export interface GunShift4Way {
@@ -7406,7 +7420,7 @@ declare module "factorio:runtime" {
7406
7420
  * - `"use-on-self"`: {@link UseOnSelfCapsuleAction}
7407
7421
  * - `"artillery-remote"`: {@link ArtilleryRemoteCapsuleAction}
7408
7422
  * - `"destroy-cliffs"`: {@link DestroyCliffsCapsuleAction}
7409
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/CapsuleAction.html Online documentation}
7423
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/CapsuleAction.html Online documentation}
7410
7424
  */
7411
7425
  export type CapsuleAction =
7412
7426
  | ThrowCapsuleAction
@@ -7446,12 +7460,12 @@ declare module "factorio:runtime" {
7446
7460
  }
7447
7461
  /**
7448
7462
  * Any basic type (string, number, boolean) or table.
7449
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/AnyBasic.html Online documentation}
7463
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/AnyBasic.html Online documentation}
7450
7464
  */
7451
7465
  export type AnyBasic = string | boolean | number | table
7452
7466
  /**
7453
7467
  * Any basic type (string, number, boolean), table, or LuaObject.
7454
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/Any.html Online documentation}
7468
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/Any.html Online documentation}
7455
7469
  */
7456
7470
  export type Any = string | boolean | number | table | LuaObject
7457
7471
  export interface ProgrammableSpeakerParameters {
@@ -7461,7 +7475,7 @@ declare module "factorio:runtime" {
7461
7475
  }
7462
7476
  /**
7463
7477
  * @see ProgrammableSpeakerAlertParametersWrite
7464
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ProgrammableSpeakerAlertParameters.html Online documentation}
7478
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ProgrammableSpeakerAlertParameters.html Online documentation}
7465
7479
  */
7466
7480
  export interface ProgrammableSpeakerAlertParameters {
7467
7481
  readonly show_alert: boolean
@@ -7471,7 +7485,7 @@ declare module "factorio:runtime" {
7471
7485
  }
7472
7486
  /**
7473
7487
  * Write form of {@link ProgrammableSpeakerAlertParameters}, where some properties allow additional values as input compared to the read form.
7474
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ProgrammableSpeakerAlertParameters.html Online documentation}
7488
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ProgrammableSpeakerAlertParameters.html Online documentation}
7475
7489
  */
7476
7490
  export interface ProgrammableSpeakerAlertParametersWrite {
7477
7491
  readonly show_alert: boolean
@@ -7503,7 +7517,7 @@ declare module "factorio:runtime" {
7503
7517
  * - `"top-right"`
7504
7518
  * - `"right"`: The same as `"middle-right"`
7505
7519
  * - `"bottom-right"`
7506
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/Alignment.html Online documentation}
7520
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/Alignment.html Online documentation}
7507
7521
  */
7508
7522
  export type Alignment =
7509
7523
  | "top-left"
@@ -7536,8 +7550,8 @@ declare module "factorio:runtime" {
7536
7550
  _customEventIdBrand: any
7537
7551
  }
7538
7552
  /**
7539
- * 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.29/events.html the list of Factorio events} for more information on these.
7540
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/EventData.html Online documentation}
7553
+ * 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.31/events.html the list of Factorio events} for more information on these.
7554
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/EventData.html Online documentation}
7541
7555
  */
7542
7556
  export interface EventData {
7543
7557
  /**
@@ -7646,7 +7660,7 @@ declare module "factorio:runtime" {
7646
7660
  * - `"button-7"`
7647
7661
  * - `"button-8"`
7648
7662
  * - `"button-9"`
7649
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/MouseButtonFlags.html Online documentation}
7663
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/MouseButtonFlags.html Online documentation}
7650
7664
  */
7651
7665
  export interface MouseButtonFlags {
7652
7666
  readonly left?: true
@@ -7669,7 +7683,7 @@ declare module "factorio:runtime" {
7669
7683
  * - `"not-friend"`: Forces which are not friends pass.
7670
7684
  * - `"same"`: The same force pass.
7671
7685
  * - `"not-same"`: The non-same forces pass.
7672
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ForceCondition.html Online documentation}
7686
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ForceCondition.html Online documentation}
7673
7687
  */
7674
7688
  export type ForceCondition = "all" | "enemy" | "ally" | "friend" | "not-friend" | "same" | "not-same"
7675
7689
  export interface ItemStackLocation {
@@ -7707,7 +7721,7 @@ declare module "factorio:runtime" {
7707
7721
  * - `"tabbed-pane"`: A collection of `tab`s and their contents. Relevant event: {@link OnGuiSelectedTabChangedEvent on_gui_selected_tab_changed}
7708
7722
  * - `"tab"`: A tab for use in a `tabbed-pane`.
7709
7723
  * - `"switch"`: A switch with three possible states. Can have labels attached to either side. Relevant event: {@link OnGuiSwitchStateChangedEvent on_gui_switch_state_changed}
7710
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/GuiElementType.html Online documentation}
7724
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GuiElementType.html Online documentation}
7711
7725
  */
7712
7726
  export type GuiElementType =
7713
7727
  | "button"
@@ -7747,7 +7761,7 @@ declare module "factorio:runtime" {
7747
7761
  * - `"position"`
7748
7762
  * - `"crafting_queue"`
7749
7763
  * - `"item_stack"`: Will point to a given item stack in an inventory.
7750
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/GuiArrowType.html Online documentation}
7764
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GuiArrowType.html Online documentation}
7751
7765
  */
7752
7766
  export type GuiArrowType =
7753
7767
  | "nowhere"
@@ -7764,7 +7778,7 @@ declare module "factorio:runtime" {
7764
7778
  * ## Union members
7765
7779
  * - `"horizontal"`
7766
7780
  * - `"vertical"`
7767
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/GuiDirection.html Online documentation}
7781
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/GuiDirection.html Online documentation}
7768
7782
  */
7769
7783
  export type GuiDirection = "horizontal" | "vertical"
7770
7784
  /**
@@ -7776,7 +7790,7 @@ declare module "factorio:runtime" {
7776
7790
  * - `"always"`
7777
7791
  * - `"auto"`
7778
7792
  * - `"auto-and-reserve-space"`
7779
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ScrollPolicy.html Online documentation}
7793
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ScrollPolicy.html Online documentation}
7780
7794
  */
7781
7795
  export type ScrollPolicy = "never" | "dont-show-but-allow-scrolling" | "always" | "auto" | "auto-and-reserve-space"
7782
7796
  export interface RailLocation {
@@ -7793,71 +7807,71 @@ declare module "factorio:runtime" {
7793
7807
  }
7794
7808
  /**
7795
7809
  * 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.
7796
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/float.html Online documentation}
7810
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/float.html Online documentation}
7797
7811
  */
7798
7812
  export type float = number
7799
7813
  /**
7800
7814
  * A double-precision floating-point number. This is the same data type as all Lua numbers use.
7801
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/double.html Online documentation}
7815
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/double.html Online documentation}
7802
7816
  */
7803
7817
  export type double = number
7804
7818
  /**
7805
7819
  * 32-bit signed integer. Possible values are `-2 147 483 648` to `2 147 483 647`.
7806
7820
  *
7807
7821
  * Since Lua 5.2 only uses doubles, any API that asks for `int` will floor the given double.
7808
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/int.html Online documentation}
7822
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/int.html Online documentation}
7809
7823
  */
7810
7824
  export type int = number
7811
7825
  /**
7812
7826
  * 8-bit signed integer. Possible values are `-128` to `127`.
7813
7827
  *
7814
7828
  * Since Lua 5.2 only uses doubles, any API that asks for `int8` will floor the given double.
7815
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/int8.html Online documentation}
7829
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/int8.html Online documentation}
7816
7830
  */
7817
7831
  export type int8 = number
7818
7832
  /**
7819
7833
  * 32-bit unsigned integer. Possible values are `0` to `4 294 967 295`.
7820
7834
  *
7821
7835
  * Since Lua 5.2 only uses doubles, any API that asks for `uint` will floor the given double.
7822
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/uint.html Online documentation}
7836
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/uint.html Online documentation}
7823
7837
  */
7824
7838
  export type uint = number
7825
7839
  /**
7826
7840
  * 8-bit unsigned integer. Possible values are `0` to `255`.
7827
7841
  *
7828
7842
  * Since Lua 5.2 only uses doubles, any API that asks for `uint8` will floor the given double.
7829
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/uint8.html Online documentation}
7843
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/uint8.html Online documentation}
7830
7844
  */
7831
7845
  export type uint8 = number
7832
7846
  /**
7833
7847
  * 16-bit unsigned integer. Possible values are `0` to `65 535`.
7834
7848
  *
7835
7849
  * Since Lua 5.2 only uses doubles, any API that asks for `uint16` will floor the given double.
7836
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/uint16.html Online documentation}
7850
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/uint16.html Online documentation}
7837
7851
  */
7838
7852
  export type uint16 = number
7839
7853
  /**
7840
7854
  * 64-bit unsigned integer. Possible values are `0` to `18 446 744 073 709 551 615`.
7841
7855
  *
7842
7856
  * Since Lua 5.2 only uses doubles, any API that asks for `uint64` will floor the given double.
7843
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/uint64.html Online documentation}
7857
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/uint64.html Online documentation}
7844
7858
  */
7845
7859
  export type uint64 = number
7846
7860
  /**
7847
7861
  * 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.
7848
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/nil.html Online documentation}
7862
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/nil.html Online documentation}
7849
7863
  */
7850
7864
  export type nil = undefined
7851
7865
  /**
7852
7866
  * Tables are enclosed in curly brackets, like this `{}`.
7853
7867
  *
7854
7868
  * 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.
7855
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/table.html Online documentation}
7869
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/table.html Online documentation}
7856
7870
  */
7857
7871
  export type table = object
7858
7872
  /**
7859
- * Any LuaObject listed on the {@linkplain https://lua-api.factorio.com/2.0.29/classes.html Classes} page.
7860
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaObject.html Online documentation}
7873
+ * Any LuaObject listed on the {@linkplain https://lua-api.factorio.com/2.0.31/classes.html Classes} page.
7874
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaObject.html Online documentation}
7861
7875
  */
7862
7876
  export interface LuaObject {
7863
7877
  readonly object_name: string
@@ -7916,7 +7930,7 @@ declare module "factorio:runtime" {
7916
7930
  * - `"type"`: {@link TypeModSettingPrototypeFilter}
7917
7931
  * - `"mod"`: {@link ModModSettingPrototypeFilter}
7918
7932
  * - `"setting-type"`: {@link SettingTypeModSettingPrototypeFilter}
7919
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ModSettingPrototypeFilter.html Online documentation}
7933
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ModSettingPrototypeFilter.html Online documentation}
7920
7934
  */
7921
7935
  export type ModSettingPrototypeFilter =
7922
7936
  | TypeModSettingPrototypeFilter
@@ -8061,7 +8075,7 @@ declare module "factorio:runtime" {
8061
8075
  * - `"vehicle-friction-modifier"`: {@link VehicleFrictionModifierTilePrototypeFilter}
8062
8076
  * - `"decorative-removal-probability"`: {@link DecorativeRemovalProbabilityTilePrototypeFilter}
8063
8077
  * - `"absorptions-per-second"`: {@link AbsorptionsPerSecondTilePrototypeFilter}
8064
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/TilePrototypeFilter.html Online documentation}
8078
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/TilePrototypeFilter.html Online documentation}
8065
8079
  */
8066
8080
  export type TilePrototypeFilter =
8067
8081
  | CollisionMaskTilePrototypeFilter
@@ -8072,7 +8086,7 @@ declare module "factorio:runtime" {
8072
8086
  | OtherTilePrototypeFilter
8073
8087
  /**
8074
8088
  * Write form of {@link TilePrototypeFilter}, where some properties allow additional values as input compared to the read form.
8075
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/TilePrototypeFilter.html Online documentation}
8089
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/TilePrototypeFilter.html Online documentation}
8076
8090
  */
8077
8091
  export type TilePrototypeFilterWrite =
8078
8092
  | CollisionMaskTilePrototypeFilter
@@ -8123,7 +8137,7 @@ declare module "factorio:runtime" {
8123
8137
  *
8124
8138
  * Other attributes may be specified depending on `filter`:
8125
8139
  * - `"collision-mask"`: {@link CollisionMaskDecorativePrototypeFilter}
8126
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/DecorativePrototypeFilter.html Online documentation}
8140
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/DecorativePrototypeFilter.html Online documentation}
8127
8141
  */
8128
8142
  export type DecorativePrototypeFilter = CollisionMaskDecorativePrototypeFilter | OtherDecorativePrototypeFilter
8129
8143
  /**
@@ -8377,7 +8391,7 @@ declare module "factorio:runtime" {
8377
8391
  * - `"emissions-multiplier"`: {@link EmissionsMultiplierRecipePrototypeFilter}
8378
8392
  * - `"request-paste-multiplier"`: {@link RequestPasteMultiplierRecipePrototypeFilter}
8379
8393
  * - `"overload-multiplier"`: {@link OverloadMultiplierRecipePrototypeFilter}
8380
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/RecipePrototypeFilter.html Online documentation}
8394
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/RecipePrototypeFilter.html Online documentation}
8381
8395
  */
8382
8396
  export type RecipePrototypeFilter =
8383
8397
  | HasIngredientItemRecipePrototypeFilter
@@ -8393,7 +8407,7 @@ declare module "factorio:runtime" {
8393
8407
  | OtherRecipePrototypeFilter
8394
8408
  /**
8395
8409
  * Write form of {@link RecipePrototypeFilter}, where some properties allow additional values as input compared to the read form.
8396
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/RecipePrototypeFilter.html Online documentation}
8410
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/RecipePrototypeFilter.html Online documentation}
8397
8411
  */
8398
8412
  export type RecipePrototypeFilterWrite =
8399
8413
  | HasIngredientItemRecipePrototypeFilterWrite
@@ -8445,7 +8459,7 @@ declare module "factorio:runtime" {
8445
8459
  *
8446
8460
  * Other attributes may be specified depending on `filter`:
8447
8461
  * - `"type"`: {@link TypeAchievementPrototypeFilter}
8448
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/AchievementPrototypeFilter.html Online documentation}
8462
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/AchievementPrototypeFilter.html Online documentation}
8449
8463
  */
8450
8464
  export type AchievementPrototypeFilter = TypeAchievementPrototypeFilter | OtherAchievementPrototypeFilter
8451
8465
  /**
@@ -8568,7 +8582,7 @@ declare module "factorio:runtime" {
8568
8582
  * - `"level"`: {@link LevelTechnologyPrototypeFilter}
8569
8583
  * - `"max-level"`: {@link MaxLevelTechnologyPrototypeFilter}
8570
8584
  * - `"time"`: {@link TimeTechnologyPrototypeFilter}
8571
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/TechnologyPrototypeFilter.html Online documentation}
8585
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/TechnologyPrototypeFilter.html Online documentation}
8572
8586
  */
8573
8587
  export type TechnologyPrototypeFilter =
8574
8588
  | ResearchUnitIngredientTechnologyPrototypeFilter
@@ -8579,7 +8593,7 @@ declare module "factorio:runtime" {
8579
8593
  | OtherTechnologyPrototypeFilter
8580
8594
  /**
8581
8595
  * Write form of {@link TechnologyPrototypeFilter}, where some properties allow additional values as input compared to the read form.
8582
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/TechnologyPrototypeFilter.html Online documentation}
8596
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/TechnologyPrototypeFilter.html Online documentation}
8583
8597
  */
8584
8598
  export type TechnologyPrototypeFilterWrite =
8585
8599
  | ResearchUnitIngredientTechnologyPrototypeFilter
@@ -8896,7 +8910,7 @@ declare module "factorio:runtime" {
8896
8910
  * - `"fuel-acceleration-multiplier"`: {@link FuelAccelerationMultiplierItemPrototypeFilter}
8897
8911
  * - `"fuel-top-speed-multiplier"`: {@link FuelTopSpeedMultiplierItemPrototypeFilter}
8898
8912
  * - `"fuel-emissions-multiplier"`: {@link FuelEmissionsMultiplierItemPrototypeFilter}
8899
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ItemPrototypeFilter.html Online documentation}
8913
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ItemPrototypeFilter.html Online documentation}
8900
8914
  */
8901
8915
  export type ItemPrototypeFilter =
8902
8916
  | PlaceResultItemPrototypeFilter
@@ -8916,7 +8930,7 @@ declare module "factorio:runtime" {
8916
8930
  | OtherItemPrototypeFilter
8917
8931
  /**
8918
8932
  * Write form of {@link ItemPrototypeFilter}, where some properties allow additional values as input compared to the read form.
8919
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ItemPrototypeFilter.html Online documentation}
8933
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/ItemPrototypeFilter.html Online documentation}
8920
8934
  */
8921
8935
  export type ItemPrototypeFilterWrite =
8922
8936
  | PlaceResultItemPrototypeFilterWrite
@@ -8972,7 +8986,7 @@ declare module "factorio:runtime" {
8972
8986
  *
8973
8987
  * Other attributes may be specified depending on `filter`:
8974
8988
  * - `"type"`: {@link TypeEquipmentPrototypeFilter}
8975
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/EquipmentPrototypeFilter.html Online documentation}
8989
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/EquipmentPrototypeFilter.html Online documentation}
8976
8990
  */
8977
8991
  export type EquipmentPrototypeFilter = TypeEquipmentPrototypeFilter | OtherEquipmentPrototypeFilter
8978
8992
  /**
@@ -9203,7 +9217,7 @@ declare module "factorio:runtime" {
9203
9217
  * - `"selection-priority"`: {@link SelectionPriorityEntityPrototypeFilter}
9204
9218
  * - `"emissions-per-second"`: {@link EmissionsPerSecondEntityPrototypeFilter}
9205
9219
  * - `"crafting-category"`: {@link CraftingCategoryEntityPrototypeFilter}
9206
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/EntityPrototypeFilter.html Online documentation}
9220
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/EntityPrototypeFilter.html Online documentation}
9207
9221
  */
9208
9222
  export type EntityPrototypeFilter =
9209
9223
  | NameEntityPrototypeFilter
@@ -9217,7 +9231,7 @@ declare module "factorio:runtime" {
9217
9231
  | OtherEntityPrototypeFilter
9218
9232
  /**
9219
9233
  * Write form of {@link EntityPrototypeFilter}, where some properties allow additional values as input compared to the read form.
9220
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/EntityPrototypeFilter.html Online documentation}
9234
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/EntityPrototypeFilter.html Online documentation}
9221
9235
  */
9222
9236
  export type EntityPrototypeFilterWrite =
9223
9237
  | NameEntityPrototypeFilter
@@ -9287,7 +9301,7 @@ declare module "factorio:runtime" {
9287
9301
  * Other attributes may be specified depending on `filter`:
9288
9302
  * - `"type"`: {@link TypeSpaceLocationPrototypeFilter}
9289
9303
  * - `"solar-power-in-space"`: {@link SolarPowerInSpaceSpaceLocationPrototypeFilter}
9290
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/SpaceLocationPrototypeFilter.html Online documentation}
9304
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/SpaceLocationPrototypeFilter.html Online documentation}
9291
9305
  */
9292
9306
  export type SpaceLocationPrototypeFilter =
9293
9307
  | TypeSpaceLocationPrototypeFilter
@@ -9295,7 +9309,7 @@ declare module "factorio:runtime" {
9295
9309
  | OtherSpaceLocationPrototypeFilter
9296
9310
  /**
9297
9311
  * Write form of {@link SpaceLocationPrototypeFilter}, where some properties allow additional values as input compared to the read form.
9298
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/SpaceLocationPrototypeFilter.html Online documentation}
9312
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/SpaceLocationPrototypeFilter.html Online documentation}
9299
9313
  */
9300
9314
  export type SpaceLocationPrototypeFilterWrite =
9301
9315
  | TypeSpaceLocationPrototypeFilter
@@ -9483,7 +9497,7 @@ declare module "factorio:runtime" {
9483
9497
  * - `"fuel-value"`: {@link FuelValueFluidPrototypeFilter}
9484
9498
  * - `"emissions-multiplier"`: {@link EmissionsMultiplierFluidPrototypeFilter}
9485
9499
  * - `"gas-temperature"`: {@link GasTemperatureFluidPrototypeFilter}
9486
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/FluidPrototypeFilter.html Online documentation}
9500
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/FluidPrototypeFilter.html Online documentation}
9487
9501
  */
9488
9502
  export type FluidPrototypeFilter =
9489
9503
  | NameFluidPrototypeFilter
@@ -9497,7 +9511,7 @@ declare module "factorio:runtime" {
9497
9511
  | OtherFluidPrototypeFilter
9498
9512
  /**
9499
9513
  * Write form of {@link FluidPrototypeFilter}, where some properties allow additional values as input compared to the read form.
9500
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/FluidPrototypeFilter.html Online documentation}
9514
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/FluidPrototypeFilter.html Online documentation}
9501
9515
  */
9502
9516
  export type FluidPrototypeFilterWrite =
9503
9517
  | NameFluidPrototypeFilter
@@ -9606,7 +9620,7 @@ declare module "factorio:runtime" {
9606
9620
  * - `"name"`: {@link NamePrePlatformMinedEntityEventFilter}
9607
9621
  * - `"ghost_type"`: {@link GhostTypePrePlatformMinedEntityEventFilter}
9608
9622
  * - `"ghost_name"`: {@link GhostNamePrePlatformMinedEntityEventFilter}
9609
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaPrePlatformMinedEntityEventFilter.html Online documentation}
9623
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaPrePlatformMinedEntityEventFilter.html Online documentation}
9610
9624
  */
9611
9625
  export type LuaPrePlatformMinedEntityEventFilter =
9612
9626
  | TypePrePlatformMinedEntityEventFilter
@@ -9711,7 +9725,7 @@ declare module "factorio:runtime" {
9711
9725
  * - `"name"`: {@link NameRobotMinedEntityEventFilter}
9712
9726
  * - `"ghost_type"`: {@link GhostTypeRobotMinedEntityEventFilter}
9713
9727
  * - `"ghost_name"`: {@link GhostNameRobotMinedEntityEventFilter}
9714
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaRobotMinedEntityEventFilter.html Online documentation}
9728
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaRobotMinedEntityEventFilter.html Online documentation}
9715
9729
  */
9716
9730
  export type LuaRobotMinedEntityEventFilter =
9717
9731
  | TypeRobotMinedEntityEventFilter
@@ -9816,7 +9830,7 @@ declare module "factorio:runtime" {
9816
9830
  * - `"name"`: {@link NameEntityMarkedForUpgradeEventFilter}
9817
9831
  * - `"ghost_type"`: {@link GhostTypeEntityMarkedForUpgradeEventFilter}
9818
9832
  * - `"ghost_name"`: {@link GhostNameEntityMarkedForUpgradeEventFilter}
9819
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaEntityMarkedForUpgradeEventFilter.html Online documentation}
9833
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaEntityMarkedForUpgradeEventFilter.html Online documentation}
9820
9834
  */
9821
9835
  export type LuaEntityMarkedForUpgradeEventFilter =
9822
9836
  | TypeEntityMarkedForUpgradeEventFilter
@@ -9921,7 +9935,7 @@ declare module "factorio:runtime" {
9921
9935
  * - `"name"`: {@link NamePreGhostUpgradedEventFilter}
9922
9936
  * - `"ghost_type"`: {@link GhostTypePreGhostUpgradedEventFilter}
9923
9937
  * - `"ghost_name"`: {@link GhostNamePreGhostUpgradedEventFilter}
9924
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaPreGhostUpgradedEventFilter.html Online documentation}
9938
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaPreGhostUpgradedEventFilter.html Online documentation}
9925
9939
  */
9926
9940
  export type LuaPreGhostUpgradedEventFilter =
9927
9941
  | TypePreGhostUpgradedEventFilter
@@ -10026,7 +10040,7 @@ declare module "factorio:runtime" {
10026
10040
  * - `"name"`: {@link NamePlatformMinedEntityEventFilter}
10027
10041
  * - `"ghost_type"`: {@link GhostTypePlatformMinedEntityEventFilter}
10028
10042
  * - `"ghost_name"`: {@link GhostNamePlatformMinedEntityEventFilter}
10029
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaPlatformMinedEntityEventFilter.html Online documentation}
10043
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaPlatformMinedEntityEventFilter.html Online documentation}
10030
10044
  */
10031
10045
  export type LuaPlatformMinedEntityEventFilter =
10032
10046
  | TypePlatformMinedEntityEventFilter
@@ -10131,7 +10145,7 @@ declare module "factorio:runtime" {
10131
10145
  * - `"name"`: {@link NameScriptRaisedDestroyEventFilter}
10132
10146
  * - `"ghost_type"`: {@link GhostTypeScriptRaisedDestroyEventFilter}
10133
10147
  * - `"ghost_name"`: {@link GhostNameScriptRaisedDestroyEventFilter}
10134
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaScriptRaisedDestroyEventFilter.html Online documentation}
10148
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaScriptRaisedDestroyEventFilter.html Online documentation}
10135
10149
  */
10136
10150
  export type LuaScriptRaisedDestroyEventFilter =
10137
10151
  | TypeScriptRaisedDestroyEventFilter
@@ -10248,7 +10262,7 @@ declare module "factorio:runtime" {
10248
10262
  * - `"ghost_type"`: {@link GhostTypePlayerBuiltEntityEventFilter}
10249
10263
  * - `"ghost_name"`: {@link GhostNamePlayerBuiltEntityEventFilter}
10250
10264
  * - `"force"`: {@link ForcePlayerBuiltEntityEventFilter}
10251
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaPlayerBuiltEntityEventFilter.html Online documentation}
10265
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaPlayerBuiltEntityEventFilter.html Online documentation}
10252
10266
  */
10253
10267
  export type LuaPlayerBuiltEntityEventFilter =
10254
10268
  | TypePlayerBuiltEntityEventFilter
@@ -10366,7 +10380,7 @@ declare module "factorio:runtime" {
10366
10380
  * - `"ghost_type"`: {@link GhostTypePlatformBuiltEntityEventFilter}
10367
10381
  * - `"ghost_name"`: {@link GhostNamePlatformBuiltEntityEventFilter}
10368
10382
  * - `"force"`: {@link ForcePlatformBuiltEntityEventFilter}
10369
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaPlatformBuiltEntityEventFilter.html Online documentation}
10383
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaPlatformBuiltEntityEventFilter.html Online documentation}
10370
10384
  */
10371
10385
  export type LuaPlatformBuiltEntityEventFilter =
10372
10386
  | TypePlatformBuiltEntityEventFilter
@@ -10472,7 +10486,7 @@ declare module "factorio:runtime" {
10472
10486
  * - `"name"`: {@link NamePreGhostDeconstructedEventFilter}
10473
10487
  * - `"ghost_type"`: {@link GhostTypePreGhostDeconstructedEventFilter}
10474
10488
  * - `"ghost_name"`: {@link GhostNamePreGhostDeconstructedEventFilter}
10475
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaPreGhostDeconstructedEventFilter.html Online documentation}
10489
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaPreGhostDeconstructedEventFilter.html Online documentation}
10476
10490
  */
10477
10491
  export type LuaPreGhostDeconstructedEventFilter =
10478
10492
  | TypePreGhostDeconstructedEventFilter
@@ -10577,7 +10591,7 @@ declare module "factorio:runtime" {
10577
10591
  * - `"name"`: {@link NameEntityClonedEventFilter}
10578
10592
  * - `"ghost_type"`: {@link GhostTypeEntityClonedEventFilter}
10579
10593
  * - `"ghost_name"`: {@link GhostNameEntityClonedEventFilter}
10580
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaEntityClonedEventFilter.html Online documentation}
10594
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaEntityClonedEventFilter.html Online documentation}
10581
10595
  */
10582
10596
  export type LuaEntityClonedEventFilter =
10583
10597
  | TypeEntityClonedEventFilter
@@ -10682,7 +10696,7 @@ declare module "factorio:runtime" {
10682
10696
  * - `"name"`: {@link NameScriptRaisedTeleportedEventFilter}
10683
10697
  * - `"ghost_type"`: {@link GhostTypeScriptRaisedTeleportedEventFilter}
10684
10698
  * - `"ghost_name"`: {@link GhostNameScriptRaisedTeleportedEventFilter}
10685
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaScriptRaisedTeleportedEventFilter.html Online documentation}
10699
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaScriptRaisedTeleportedEventFilter.html Online documentation}
10686
10700
  */
10687
10701
  export type LuaScriptRaisedTeleportedEventFilter =
10688
10702
  | TypeScriptRaisedTeleportedEventFilter
@@ -10789,7 +10803,7 @@ declare module "factorio:runtime" {
10789
10803
  * - `"name"`: {@link NameEntityDeconstructionCancelledEventFilter}
10790
10804
  * - `"ghost_type"`: {@link GhostTypeEntityDeconstructionCancelledEventFilter}
10791
10805
  * - `"ghost_name"`: {@link GhostNameEntityDeconstructionCancelledEventFilter}
10792
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaEntityDeconstructionCancelledEventFilter.html Online documentation}
10806
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaEntityDeconstructionCancelledEventFilter.html Online documentation}
10793
10807
  */
10794
10808
  export type LuaEntityDeconstructionCancelledEventFilter =
10795
10809
  | TypeEntityDeconstructionCancelledEventFilter
@@ -10906,7 +10920,7 @@ declare module "factorio:runtime" {
10906
10920
  * - `"ghost_type"`: {@link GhostTypeRobotBuiltEntityEventFilter}
10907
10921
  * - `"ghost_name"`: {@link GhostNameRobotBuiltEntityEventFilter}
10908
10922
  * - `"force"`: {@link ForceRobotBuiltEntityEventFilter}
10909
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaRobotBuiltEntityEventFilter.html Online documentation}
10923
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaRobotBuiltEntityEventFilter.html Online documentation}
10910
10924
  */
10911
10925
  export type LuaRobotBuiltEntityEventFilter =
10912
10926
  | TypeRobotBuiltEntityEventFilter
@@ -11012,7 +11026,7 @@ declare module "factorio:runtime" {
11012
11026
  * - `"name"`: {@link NameScriptRaisedBuiltEventFilter}
11013
11027
  * - `"ghost_type"`: {@link GhostTypeScriptRaisedBuiltEventFilter}
11014
11028
  * - `"ghost_name"`: {@link GhostNameScriptRaisedBuiltEventFilter}
11015
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaScriptRaisedBuiltEventFilter.html Online documentation}
11029
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaScriptRaisedBuiltEventFilter.html Online documentation}
11016
11030
  */
11017
11031
  export type LuaScriptRaisedBuiltEventFilter =
11018
11032
  | TypeScriptRaisedBuiltEventFilter
@@ -11117,7 +11131,7 @@ declare module "factorio:runtime" {
11117
11131
  * - `"name"`: {@link NamePrePlayerMinedEntityEventFilter}
11118
11132
  * - `"ghost_type"`: {@link GhostTypePrePlayerMinedEntityEventFilter}
11119
11133
  * - `"ghost_name"`: {@link GhostNamePrePlayerMinedEntityEventFilter}
11120
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaPrePlayerMinedEntityEventFilter.html Online documentation}
11134
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaPrePlayerMinedEntityEventFilter.html Online documentation}
11121
11135
  */
11122
11136
  export type LuaPrePlayerMinedEntityEventFilter =
11123
11137
  | TypePrePlayerMinedEntityEventFilter
@@ -11222,7 +11236,7 @@ declare module "factorio:runtime" {
11222
11236
  * - `"name"`: {@link NamePlayerRepairedEntityEventFilter}
11223
11237
  * - `"ghost_type"`: {@link GhostTypePlayerRepairedEntityEventFilter}
11224
11238
  * - `"ghost_name"`: {@link GhostNamePlayerRepairedEntityEventFilter}
11225
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaPlayerRepairedEntityEventFilter.html Online documentation}
11239
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaPlayerRepairedEntityEventFilter.html Online documentation}
11226
11240
  */
11227
11241
  export type LuaPlayerRepairedEntityEventFilter =
11228
11242
  | TypePlayerRepairedEntityEventFilter
@@ -11327,7 +11341,7 @@ declare module "factorio:runtime" {
11327
11341
  * - `"name"`: {@link NameUpgradeCancelledEventFilter}
11328
11342
  * - `"ghost_type"`: {@link GhostTypeUpgradeCancelledEventFilter}
11329
11343
  * - `"ghost_name"`: {@link GhostNameUpgradeCancelledEventFilter}
11330
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaUpgradeCancelledEventFilter.html Online documentation}
11344
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaUpgradeCancelledEventFilter.html Online documentation}
11331
11345
  */
11332
11346
  export type LuaUpgradeCancelledEventFilter =
11333
11347
  | TypeUpgradeCancelledEventFilter
@@ -11432,7 +11446,7 @@ declare module "factorio:runtime" {
11432
11446
  * - `"name"`: {@link NameSectorScannedEventFilter}
11433
11447
  * - `"ghost_type"`: {@link GhostTypeSectorScannedEventFilter}
11434
11448
  * - `"ghost_name"`: {@link GhostNameSectorScannedEventFilter}
11435
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaSectorScannedEventFilter.html Online documentation}
11449
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaSectorScannedEventFilter.html Online documentation}
11436
11450
  */
11437
11451
  export type LuaSectorScannedEventFilter =
11438
11452
  | TypeSectorScannedEventFilter
@@ -11478,7 +11492,7 @@ declare module "factorio:runtime" {
11478
11492
  *
11479
11493
  * Other attributes may be specified depending on `filter`:
11480
11494
  * - `"type"`: {@link TypePostEntityDiedEventFilter}
11481
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaPostEntityDiedEventFilter.html Online documentation}
11495
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaPostEntityDiedEventFilter.html Online documentation}
11482
11496
  */
11483
11497
  export type LuaPostEntityDiedEventFilter = TypePostEntityDiedEventFilter | OtherPostEntityDiedEventFilter
11484
11498
  /**
@@ -11580,7 +11594,7 @@ declare module "factorio:runtime" {
11580
11594
  * - `"name"`: {@link NameEntityMarkedForDeconstructionEventFilter}
11581
11595
  * - `"ghost_type"`: {@link GhostTypeEntityMarkedForDeconstructionEventFilter}
11582
11596
  * - `"ghost_name"`: {@link GhostNameEntityMarkedForDeconstructionEventFilter}
11583
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaEntityMarkedForDeconstructionEventFilter.html Online documentation}
11597
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaEntityMarkedForDeconstructionEventFilter.html Online documentation}
11584
11598
  */
11585
11599
  export type LuaEntityMarkedForDeconstructionEventFilter =
11586
11600
  | TypeEntityMarkedForDeconstructionEventFilter
@@ -11685,7 +11699,7 @@ declare module "factorio:runtime" {
11685
11699
  * - `"name"`: {@link NamePlayerMinedEntityEventFilter}
11686
11700
  * - `"ghost_type"`: {@link GhostTypePlayerMinedEntityEventFilter}
11687
11701
  * - `"ghost_name"`: {@link GhostNamePlayerMinedEntityEventFilter}
11688
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaPlayerMinedEntityEventFilter.html Online documentation}
11702
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaPlayerMinedEntityEventFilter.html Online documentation}
11689
11703
  */
11690
11704
  export type LuaPlayerMinedEntityEventFilter =
11691
11705
  | TypePlayerMinedEntityEventFilter
@@ -11865,7 +11879,7 @@ declare module "factorio:runtime" {
11865
11879
  * - `"final-damage-amount"`: {@link FinalDamageAmountEntityDamagedEventFilter}
11866
11880
  * - `"damage-type"`: {@link DamageTypeEntityDamagedEventFilter}
11867
11881
  * - `"final-health"`: {@link FinalHealthEntityDamagedEventFilter}
11868
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaEntityDamagedEventFilter.html Online documentation}
11882
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaEntityDamagedEventFilter.html Online documentation}
11869
11883
  */
11870
11884
  export type LuaEntityDamagedEventFilter =
11871
11885
  | TypeEntityDamagedEventFilter
@@ -11879,7 +11893,7 @@ declare module "factorio:runtime" {
11879
11893
  | OtherEntityDamagedEventFilter
11880
11894
  /**
11881
11895
  * Write form of {@link LuaEntityDamagedEventFilter}, where some properties allow additional values as input compared to the read form.
11882
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaEntityDamagedEventFilter.html Online documentation}
11896
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaEntityDamagedEventFilter.html Online documentation}
11883
11897
  */
11884
11898
  export type LuaEntityDamagedEventFilterWrite =
11885
11899
  | TypeEntityDamagedEventFilter
@@ -11988,7 +12002,7 @@ declare module "factorio:runtime" {
11988
12002
  * - `"name"`: {@link NameScriptRaisedReviveEventFilter}
11989
12003
  * - `"ghost_type"`: {@link GhostTypeScriptRaisedReviveEventFilter}
11990
12004
  * - `"ghost_name"`: {@link GhostNameScriptRaisedReviveEventFilter}
11991
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaScriptRaisedReviveEventFilter.html Online documentation}
12005
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaScriptRaisedReviveEventFilter.html Online documentation}
11992
12006
  */
11993
12007
  export type LuaScriptRaisedReviveEventFilter =
11994
12008
  | TypeScriptRaisedReviveEventFilter
@@ -12093,7 +12107,7 @@ declare module "factorio:runtime" {
12093
12107
  * - `"name"`: {@link NameEntityDiedEventFilter}
12094
12108
  * - `"ghost_type"`: {@link GhostTypeEntityDiedEventFilter}
12095
12109
  * - `"ghost_name"`: {@link GhostNameEntityDiedEventFilter}
12096
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaEntityDiedEventFilter.html Online documentation}
12110
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaEntityDiedEventFilter.html Online documentation}
12097
12111
  */
12098
12112
  export type LuaEntityDiedEventFilter =
12099
12113
  | TypeEntityDiedEventFilter
@@ -12198,7 +12212,7 @@ declare module "factorio:runtime" {
12198
12212
  * - `"name"`: {@link NamePreRobotMinedEntityEventFilter}
12199
12213
  * - `"ghost_type"`: {@link GhostTypePreRobotMinedEntityEventFilter}
12200
12214
  * - `"ghost_name"`: {@link GhostNamePreRobotMinedEntityEventFilter}
12201
- * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaPreRobotMinedEntityEventFilter.html Online documentation}
12215
+ * @see {@link https://lua-api.factorio.com/2.0.31/concepts/LuaPreRobotMinedEntityEventFilter.html Online documentation}
12202
12216
  */
12203
12217
  export type LuaPreRobotMinedEntityEventFilter =
12204
12218
  | TypePreRobotMinedEntityEventFilter