typed-factorio 3.10.0 → 3.11.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.28/concepts/MapTick.html Online documentation}
15
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/ModuleEffectValue.html Online documentation}
22
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/ModuleEffects.html Online documentation}
29
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/ComparatorString.html Online documentation}
53
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/SpritePath.html > The supported types are:}
85
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/SpritePath.html Online documentation}
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}
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.28/concepts/FlowStatisticsID.html Online documentation}
96
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/CollisionMask.html Online documentation}
103
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/SimulationWidgetType.html Online documentation}
231
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/TrainPathRequestType.html Online documentation}
353
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/TrainPathFinderGoal.html Online documentation}
362
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/PipeConnection.html Online documentation}
467
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/EventFilter.html Online documentation}
530
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/EventFilter.html Online documentation}
560
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/EventFilter.html Online documentation}
561
561
  */
562
562
  export type EventFilterWrite =
563
563
  | readonly LuaPrePlatformMinedEntityEventFilter[]
@@ -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.28/concepts/RegistrationTarget.html Online documentation}
610
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/UndoRedoAction.html Online documentation}
811
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/SoundType.html Online documentation}
843
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/SelectionModeFlags.html Online documentation}
926
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/ItemPrototypeFlags.html Online documentation}
1045
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/ItemPrototypeFlag.html Online documentation}
1066
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/PrototypeFilterMode.html Online documentation}
1086
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/CollisionLayerID.html Online documentation}
1110
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/PrototypeFilter.html Online documentation}
1160
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/PrototypeFilter.html Online documentation}
1177
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/DisplayPanelMessageDefinition.html Online documentation}
1194
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/DisplayPanelMessageDefinition.html Online documentation}
1212
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/SignalIDType.html Online documentation}
1238
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/SignalID.html Online documentation}
1251
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/SignalID.html Online documentation}
1269
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/LinkedGameControl.html Online documentation}
1475
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/ModifierType.html Online documentation}
1726
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/ResearchTrigger.html Online documentation}
1845
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/EntityPrototypeFlags.html Online documentation}
1859
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/EntityPrototypeFlag.html Online documentation}
1894
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/ProgrammableSpeakerPlaybackMode.html Online documentation}
1964
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/CliffOrientation.html Online documentation}
1989
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/BlueprintInsertPlan.html Online documentation}
2015
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/BlueprintInsertPlan.html Online documentation}
2029
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/Offer.html Online documentation}
2057
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/ItemFilter.html Online documentation}
2072
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/ItemFilter.html Online documentation}
2092
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/ScheduleRecord.html Online documentation}
2112
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/ScheduleRecord.html Online documentation}
2135
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/GuiArrowSpecification.html Online documentation}
2221
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/Vector3D.html Online documentation}
2234
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/Vector3D.html Online documentation}
2244
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/TrainSchedule.html Online documentation}
2277
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/TrainSchedule.html Online documentation}
2288
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/PlatformSchedule.html Online documentation}
2299
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/PlatformSchedule.html Online documentation}
2310
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/RecipeIDAndQualityIDPair.html Online documentation}
2327
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/ForceID.html Online documentation}
2376
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/FluidID.html Online documentation}
2386
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/EntityWithQualityID.html Online documentation}
2397
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/EntityIDAndQualityIDPair.html Online documentation}
2402
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/ItemWithQualityID.html Online documentation}
2422
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/ItemIDAndQualityIDPair.html Online documentation}
2428
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/ItemIDAndQualityIDPair.html Online documentation}
2442
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/ItemID.html Online documentation}
2462
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/EntityID.html Online documentation}
2472
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/TechnologyID.html Online documentation}
2482
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/ParticleID.html Online documentation}
2491
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/DamageTypeID.html Online documentation}
2500
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/TrivialSmokeID.html Online documentation}
2509
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/TextAlign.html Online documentation}
2521
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/VerticalTextAlign.html Online documentation}
2534
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/QualityID.html Online documentation}
2543
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/RecipeID.html Online documentation}
2553
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/TileID.html Online documentation}
2563
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/EquipmentID.html Online documentation}
2587
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/EquipmentWithQualityID.html Online documentation}
2598
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/EquipmentIDAndQualityIDPair.html Online documentation}
2603
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/BoundingBox.html Online documentation}
2624
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/BoundingBox.html Online documentation}
2634
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/SpacePlatformIdentification.html Online documentation}
2647
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/ForceSet.html Online documentation}
2657
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/ForceSet.html Online documentation}
2662
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/DecorativeID.html Online documentation}
2671
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/AsteroidChunkID.html Online documentation}
2680
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/SpaceLocationID.html Online documentation}
2689
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/SignalFilter.html Online documentation}
2695
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/SignalFilter.html Online documentation}
2719
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/LogisticFilter.html Online documentation}
2743
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/LogisticFilter.html Online documentation}
2769
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/SurfacePropertyID.html Online documentation}
2825
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/ScriptRenderTarget.html Online documentation}
2831
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/ScriptRenderTarget.html Online documentation}
2836
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/ScriptRenderTargetTable.html Online documentation}
2841
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/ScriptRenderTargetTable.html Online documentation}
2856
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/QualityCondition.html Online documentation}
2871
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/LuaEventType.html Online documentation}
2893
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/RangeMode.html Online documentation}
2901
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/BlueprintEntity.html Online documentation}
2907
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/BlueprintEntity.html Online documentation}
3121
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/BlueprintEquipment.html Online documentation}
3342
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/BlueprintEquipment.html Online documentation}
3350
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/BlueprintInventory.html Online documentation}
3358
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/BlueprintInventory.html Online documentation}
3369
+ * @see {@link https://lua-api.factorio.com/2.0.29/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.28/concepts/BlueprintControlBehavior.html Online documentation}
3390
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/BlueprintControlBehavior.html Online documentation}
3391
3391
  */
3392
3392
  export interface BlueprintControlBehavior {
3393
3393
  /**
@@ -3395,8 +3395,6 @@ declare module "factorio:runtime" {
3395
3395
  *
3396
3396
  * Does **not** apply to logistic containers, see instead {@link circuit_condition_enabled }.
3397
3397
  *
3398
- *
3399
- *
3400
3398
  * Corresponds to {@link LuaGenericOnOffControlBehavior.circuit_enable_disable }
3401
3399
  */
3402
3400
  readonly circuit_enabled?: boolean
@@ -3642,7 +3640,7 @@ declare module "factorio:runtime" {
3642
3640
  }
3643
3641
  /**
3644
3642
  * Write form of {@link BlueprintControlBehavior}, where some properties allow additional values as input compared to the read form.
3645
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/BlueprintControlBehavior.html Online documentation}
3643
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/BlueprintControlBehavior.html Online documentation}
3646
3644
  */
3647
3645
  export interface BlueprintControlBehaviorWrite {
3648
3646
  /**
@@ -3650,8 +3648,6 @@ declare module "factorio:runtime" {
3650
3648
  *
3651
3649
  * Does **not** apply to logistic containers, see instead {@link circuit_condition_enabled }.
3652
3650
  *
3653
- *
3654
- *
3655
3651
  * Corresponds to {@link LuaGenericOnOffControlBehavior.circuit_enable_disable }
3656
3652
  */
3657
3653
  readonly circuit_enabled?: boolean
@@ -3925,7 +3921,7 @@ declare module "factorio:runtime" {
3925
3921
  * "2500 * (L - 3)"
3926
3922
  * @example
3927
3923
  * "(4e5 * (abs(speed) + 10.5)) / weight"
3928
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/MathExpression.html Online documentation}
3924
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/MathExpression.html Online documentation}
3929
3925
  */
3930
3926
  export type MathExpression = string
3931
3927
  /**
@@ -3947,7 +3943,7 @@ declare module "factorio:runtime" {
3947
3943
  * -- What a custom recipe would look like that had a probability of 0.5 to return a
3948
3944
  * -- minimum amount of 1 and a maximum amount of 5
3949
3945
  * {{type="item", name="custom-item", probability=0.5, amount_min=1, amount_max=5}}
3950
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/Product.html Online documentation}
3946
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/Product.html Online documentation}
3951
3947
  */
3952
3948
  export type Product = ItemProduct | FluidProduct | ResearchProgressProduct
3953
3949
  /**
@@ -3958,7 +3954,7 @@ declare module "factorio:runtime" {
3958
3954
  * -- What a custom recipe would look like that had a probability of 0.5 to return a
3959
3955
  * -- minimum amount of 1 and a maximum amount of 5
3960
3956
  * {{type="item", name="custom-item", probability=0.5, amount_min=1, amount_max=5}}
3961
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/ItemProduct.html Online documentation}
3957
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ItemProduct.html Online documentation}
3962
3958
  */
3963
3959
  export interface ItemProduct {
3964
3960
  readonly type: "item"
@@ -4002,7 +3998,7 @@ declare module "factorio:runtime" {
4002
3998
  * {{type="fluid", name="heavy-oil", amount=1},
4003
3999
  * {type="fluid", name="light-oil", amount=4.5},
4004
4000
  * {type="fluid", name="petroleum-gas", amount=5.5}}
4005
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/FluidProduct.html Online documentation}
4001
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/FluidProduct.html Online documentation}
4006
4002
  */
4007
4003
  export interface FluidProduct {
4008
4004
  readonly type: "fluid"
@@ -4050,7 +4046,7 @@ declare module "factorio:runtime" {
4050
4046
  }
4051
4047
  /**
4052
4048
  * @see LogisticSectionsWrite
4053
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/LogisticSections.html Online documentation}
4049
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LogisticSections.html Online documentation}
4054
4050
  */
4055
4051
  export interface LogisticSections {
4056
4052
  readonly sections?: LogisticSection[]
@@ -4061,7 +4057,7 @@ declare module "factorio:runtime" {
4061
4057
  }
4062
4058
  /**
4063
4059
  * Write form of {@link LogisticSections}, where some properties allow additional values as input compared to the read form.
4064
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/LogisticSections.html Online documentation}
4060
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LogisticSections.html Online documentation}
4065
4061
  */
4066
4062
  export interface LogisticSectionsWrite {
4067
4063
  readonly sections?: readonly LogisticSectionWrite[]
@@ -4097,7 +4093,7 @@ declare module "factorio:runtime" {
4097
4093
  }
4098
4094
  /**
4099
4095
  * @see LogisticSectionWrite
4100
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/LogisticSection.html Online documentation}
4096
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LogisticSection.html Online documentation}
4101
4097
  */
4102
4098
  export interface LogisticSection {
4103
4099
  readonly index: uint8
@@ -4114,7 +4110,7 @@ declare module "factorio:runtime" {
4114
4110
  }
4115
4111
  /**
4116
4112
  * Write form of {@link LogisticSection}, where some properties allow additional values as input compared to the read form.
4117
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/LogisticSection.html Online documentation}
4113
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LogisticSection.html Online documentation}
4118
4114
  */
4119
4115
  export interface LogisticSectionWrite {
4120
4116
  readonly index: uint8
@@ -4131,7 +4127,7 @@ declare module "factorio:runtime" {
4131
4127
  }
4132
4128
  /**
4133
4129
  * @see BlueprintLogisticFilterWrite
4134
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/BlueprintLogisticFilter.html Online documentation}
4130
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/BlueprintLogisticFilter.html Online documentation}
4135
4131
  */
4136
4132
  export interface BlueprintLogisticFilter {
4137
4133
  readonly index: LogisticFilterIndex
@@ -4161,7 +4157,7 @@ declare module "factorio:runtime" {
4161
4157
  }
4162
4158
  /**
4163
4159
  * Write form of {@link BlueprintLogisticFilter}, where some properties allow additional values as input compared to the read form.
4164
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/BlueprintLogisticFilter.html Online documentation}
4160
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/BlueprintLogisticFilter.html Online documentation}
4165
4161
  */
4166
4162
  export interface BlueprintLogisticFilterWrite {
4167
4163
  readonly index: LogisticFilterIndex
@@ -4191,7 +4187,7 @@ declare module "factorio:runtime" {
4191
4187
  }
4192
4188
  /**
4193
4189
  * Specifies how probability and richness are calculated when placing something on the map.
4194
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/AutoplaceSpecification.html Online documentation}
4190
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/AutoplaceSpecification.html Online documentation}
4195
4191
  */
4196
4192
  export interface AutoplaceSpecification {
4197
4193
  /**
@@ -4208,7 +4204,7 @@ declare module "factorio:runtime" {
4208
4204
  }
4209
4205
  /**
4210
4206
  * @see CliffPlacementSettingsWrite
4211
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/CliffPlacementSettings.html Online documentation}
4207
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/CliffPlacementSettings.html Online documentation}
4212
4208
  */
4213
4209
  export interface CliffPlacementSettings {
4214
4210
  /**
@@ -4238,7 +4234,7 @@ declare module "factorio:runtime" {
4238
4234
  }
4239
4235
  /**
4240
4236
  * Write form of {@link CliffPlacementSettings}, where some properties allow additional values as input compared to the read form.
4241
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/CliffPlacementSettings.html Online documentation}
4237
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/CliffPlacementSettings.html Online documentation}
4242
4238
  */
4243
4239
  export interface CliffPlacementSettingsWrite {
4244
4240
  /**
@@ -4268,7 +4264,7 @@ declare module "factorio:runtime" {
4268
4264
  }
4269
4265
  /**
4270
4266
  * @see AutoplaceSettingsWrite
4271
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/AutoplaceSettings.html Online documentation}
4267
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/AutoplaceSettings.html Online documentation}
4272
4268
  */
4273
4269
  export interface AutoplaceSettings {
4274
4270
  /**
@@ -4282,7 +4278,7 @@ declare module "factorio:runtime" {
4282
4278
  }
4283
4279
  /**
4284
4280
  * Write form of {@link AutoplaceSettings}, where some properties allow additional values as input compared to the read form.
4285
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/AutoplaceSettings.html Online documentation}
4281
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/AutoplaceSettings.html Online documentation}
4286
4282
  */
4287
4283
  export interface AutoplaceSettingsWrite {
4288
4284
  /**
@@ -4317,7 +4313,7 @@ declare module "factorio:runtime" {
4317
4313
  * surface.map_gen_settings = mgs
4318
4314
  * -- This does not require a NamedNoiseExpression to be defined, since literal numbers (and strings naming literal
4319
4315
  * -- numbers, e.g. `"123"`) are understood to stand for constant value expressions.
4320
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/MapGenSettings.html Online documentation}
4316
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/MapGenSettings.html Online documentation}
4321
4317
  */
4322
4318
  export interface MapGenSettings {
4323
4319
  /**
@@ -4372,7 +4368,7 @@ declare module "factorio:runtime" {
4372
4368
  }
4373
4369
  /**
4374
4370
  * Write form of {@link MapGenSettings}, where some properties allow additional values as input compared to the read form.
4375
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/MapGenSettings.html Online documentation}
4371
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/MapGenSettings.html Online documentation}
4376
4372
  */
4377
4373
  export interface MapGenSettingsWrite {
4378
4374
  /**
@@ -4431,7 +4427,7 @@ declare module "factorio:runtime" {
4431
4427
  }
4432
4428
  /**
4433
4429
  * These values are for the time frame of one second (60 ticks).
4434
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/PollutionMapSettings.html Online documentation}
4430
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/PollutionMapSettings.html Online documentation}
4435
4431
  */
4436
4432
  export interface PollutionMapSettings {
4437
4433
  /**
@@ -4485,7 +4481,7 @@ declare module "factorio:runtime" {
4485
4481
  }
4486
4482
  /**
4487
4483
  * These values represent a percentual increase in evolution. This means a value of `0.1` would increase evolution by 10%.
4488
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/EnemyEvolutionMapSettings.html Online documentation}
4484
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/EnemyEvolutionMapSettings.html Online documentation}
4489
4485
  */
4490
4486
  export interface EnemyEvolutionMapSettings {
4491
4487
  /**
@@ -4523,7 +4519,7 @@ declare module "factorio:runtime" {
4523
4519
  * * neighbouring_base_chunk_coefficient^distance(chunk, neighbour)
4524
4520
  * score(chunk) = 1 / (1 + player + base)
4525
4521
  * ```
4526
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/EnemyExpansionMapSettings.html Online documentation}
4522
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/EnemyExpansionMapSettings.html Online documentation}
4527
4523
  */
4528
4524
  export interface EnemyExpansionMapSettings {
4529
4525
  /**
@@ -4782,17 +4778,17 @@ declare module "factorio:runtime" {
4782
4778
  }
4783
4779
  /**
4784
4780
  * Technology difficulty settings. Updating any of the attributes will immediately take effect in the game engine.
4785
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/DifficultySettings.html Online documentation}
4781
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/DifficultySettings.html Online documentation}
4786
4782
  */
4787
4783
  export interface DifficultySettings {
4788
4784
  /**
4789
4785
  * A value in range [0.001, 1000].
4790
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/DifficultySettings.technology_price_multiplier.html Online documentation}
4786
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/DifficultySettings.technology_price_multiplier.html Online documentation}
4791
4787
  */
4792
4788
  technology_price_multiplier: double
4793
4789
  /**
4794
4790
  * A value in range [0.01, 100].
4795
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/DifficultySettings.spoil_time_modifier.html Online documentation}
4791
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/DifficultySettings.spoil_time_modifier.html Online documentation}
4796
4792
  */
4797
4793
  spoil_time_modifier: double
4798
4794
  }
@@ -4808,7 +4804,7 @@ declare module "factorio:runtime" {
4808
4804
  }
4809
4805
  /**
4810
4806
  * A standard table containing all {@link MapSettings} attributes plus an additional table that contains all {@link DifficultySettings} properties.
4811
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/MapAndDifficultySettings.html Online documentation}
4807
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/MapAndDifficultySettings.html Online documentation}
4812
4808
  */
4813
4809
  export interface MapAndDifficultySettings {
4814
4810
  readonly pollution: PollutionMapSettings
@@ -4829,7 +4825,7 @@ declare module "factorio:runtime" {
4829
4825
  * @example
4830
4826
  * -- Increase the number of short paths the pathfinder can cache.
4831
4827
  * game.map_settings.path_finder.short_cache_size = 15
4832
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/MapSettings.html Online documentation}
4828
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/MapSettings.html Online documentation}
4833
4829
  */
4834
4830
  export interface MapSettings {
4835
4831
  pollution: PollutionMapSettings
@@ -4841,13 +4837,13 @@ declare module "factorio:runtime" {
4841
4837
  asteroids: AsteroidMapSettings
4842
4838
  /**
4843
4839
  * If a behavior fails this many times, the enemy (or enemy group) is destroyed. This solves biters getting stuck within their own base.
4844
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/MapSettings.max_failed_behavior_count.html Online documentation}
4840
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/MapSettings.max_failed_behavior_count.html Online documentation}
4845
4841
  */
4846
4842
  max_failed_behavior_count: uint
4847
4843
  }
4848
4844
  /**
4849
4845
  * @see BlueprintScheduleRecordWrite
4850
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/BlueprintScheduleRecord.html Online documentation}
4846
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/BlueprintScheduleRecord.html Online documentation}
4851
4847
  */
4852
4848
  export interface BlueprintScheduleRecord {
4853
4849
  /**
@@ -4864,7 +4860,7 @@ declare module "factorio:runtime" {
4864
4860
  }
4865
4861
  /**
4866
4862
  * Write form of {@link BlueprintScheduleRecord}, where some properties allow additional values as input compared to the read form.
4867
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/BlueprintScheduleRecord.html Online documentation}
4863
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/BlueprintScheduleRecord.html Online documentation}
4868
4864
  */
4869
4865
  export interface BlueprintScheduleRecordWrite {
4870
4866
  /**
@@ -4881,7 +4877,7 @@ declare module "factorio:runtime" {
4881
4877
  }
4882
4878
  /**
4883
4879
  * @see BlueprintScheduleInterruptWrite
4884
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/BlueprintScheduleInterrupt.html Online documentation}
4880
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/BlueprintScheduleInterrupt.html Online documentation}
4885
4881
  */
4886
4882
  export interface BlueprintScheduleInterrupt {
4887
4883
  readonly name?: string
@@ -4891,7 +4887,7 @@ declare module "factorio:runtime" {
4891
4887
  }
4892
4888
  /**
4893
4889
  * Write form of {@link BlueprintScheduleInterrupt}, where some properties allow additional values as input compared to the read form.
4894
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/BlueprintScheduleInterrupt.html Online documentation}
4890
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/BlueprintScheduleInterrupt.html Online documentation}
4895
4891
  */
4896
4892
  export interface BlueprintScheduleInterruptWrite {
4897
4893
  readonly name?: string
@@ -4901,7 +4897,7 @@ declare module "factorio:runtime" {
4901
4897
  }
4902
4898
  /**
4903
4899
  * @see BlueprintScheduleWrite
4904
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/BlueprintSchedule.html Online documentation}
4900
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/BlueprintSchedule.html Online documentation}
4905
4901
  */
4906
4902
  export interface BlueprintSchedule {
4907
4903
  readonly records?: BlueprintScheduleRecord[]
@@ -4910,7 +4906,7 @@ declare module "factorio:runtime" {
4910
4906
  }
4911
4907
  /**
4912
4908
  * Write form of {@link BlueprintSchedule}, where some properties allow additional values as input compared to the read form.
4913
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/BlueprintSchedule.html Online documentation}
4909
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/BlueprintSchedule.html Online documentation}
4914
4910
  */
4915
4911
  export interface BlueprintScheduleWrite {
4916
4912
  readonly records?: readonly BlueprintScheduleRecordWrite[]
@@ -4919,7 +4915,7 @@ declare module "factorio:runtime" {
4919
4915
  }
4920
4916
  /**
4921
4917
  * @see WaitConditionWrite
4922
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/WaitCondition.html Online documentation}
4918
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/WaitCondition.html Online documentation}
4923
4919
  */
4924
4920
  export interface WaitCondition {
4925
4921
  readonly type: WaitConditionType
@@ -4950,7 +4946,7 @@ declare module "factorio:runtime" {
4950
4946
  }
4951
4947
  /**
4952
4948
  * Write form of {@link WaitCondition}, where some properties allow additional values as input compared to the read form.
4953
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/WaitCondition.html Online documentation}
4949
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/WaitCondition.html Online documentation}
4954
4950
  */
4955
4951
  export interface WaitConditionWrite {
4956
4952
  readonly type: WaitConditionType
@@ -5009,7 +5005,7 @@ declare module "factorio:runtime" {
5009
5005
  * - `"at_station"`
5010
5006
  * - `"not_at_station"`
5011
5007
  * - `"damage_taken"`
5012
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/WaitConditionType.html Online documentation}
5008
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/WaitConditionType.html Online documentation}
5013
5009
  */
5014
5010
  export type WaitConditionType =
5015
5011
  | "time"
@@ -5051,7 +5047,7 @@ declare module "factorio:runtime" {
5051
5047
  * - `"blueprint-snap-rectangle"`: Green by default.
5052
5048
  * - `"spidertron-remote-selected"`
5053
5049
  * - `"spidertron-remote-to-be-selected"`
5054
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/CursorBoxRenderType.html Online documentation}
5050
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/CursorBoxRenderType.html Online documentation}
5055
5051
  */
5056
5052
  export type CursorBoxRenderType =
5057
5053
  | "entity"
@@ -5067,7 +5063,7 @@ declare module "factorio:runtime" {
5067
5063
  | "spidertron-remote-to-be-selected"
5068
5064
  /**
5069
5065
  * What is shown in the map view. If a field is not given, that setting will not be changed.
5070
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/MapViewSettings.html Online documentation}
5066
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/MapViewSettings.html Online documentation}
5071
5067
  */
5072
5068
  export interface MapViewSettings {
5073
5069
  readonly "show-logistic-network"?: boolean
@@ -5160,7 +5156,7 @@ declare module "factorio:runtime" {
5160
5156
  * - `"collision-selection-box"`: 189
5161
5157
  * - `"arrow"`: 190
5162
5158
  * - `"cursor"`: 226
5163
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/RenderLayer.html Online documentation}
5159
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/RenderLayer.html Online documentation}
5164
5160
  */
5165
5161
  export type RenderLayer =
5166
5162
  | `${bigint}`
@@ -5256,7 +5252,7 @@ declare module "factorio:runtime" {
5256
5252
  * - `"entity-with-quality"`
5257
5253
  * - `"recipe-with-quality"`
5258
5254
  * - `"equipment-with-quality"`
5259
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/ElemType.html Online documentation}
5255
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ElemType.html Online documentation}
5260
5256
  */
5261
5257
  export type ElemType =
5262
5258
  | "achievement"
@@ -5283,7 +5279,7 @@ declare module "factorio:runtime" {
5283
5279
  * - `"left"`
5284
5280
  * - `"right"`
5285
5281
  * - `"none"`
5286
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/SwitchState.html Online documentation}
5282
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/SwitchState.html Online documentation}
5287
5283
  */
5288
5284
  export type SwitchState = "left" | "right" | "none"
5289
5285
  export interface ElemID {
@@ -5324,7 +5320,7 @@ declare module "factorio:runtime" {
5324
5320
  * - `"destroy-decoratives"`
5325
5321
  * - `"camera-effect"`
5326
5322
  * - `"activate-impact"`
5327
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/TriggerEffectItemType.html Online documentation}
5323
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/TriggerEffectItemType.html Online documentation}
5328
5324
  */
5329
5325
  export type TriggerEffectItemType =
5330
5326
  | "damage"
@@ -5361,7 +5357,7 @@ declare module "factorio:runtime" {
5361
5357
  }
5362
5358
  /**
5363
5359
  * A set of trigger target masks.
5364
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/TriggerTargetMask.html Online documentation}
5360
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/TriggerTargetMask.html Online documentation}
5365
5361
  */
5366
5362
  export type TriggerTargetMask = Record<string, true>
5367
5363
  export interface TriggerItem {
@@ -5428,7 +5424,7 @@ declare module "factorio:runtime" {
5428
5424
  * -- If 'entity-description.furnace' exists, it is concatenated with "\n" and returned. Otherwise, if 'item-description.furnace'
5429
5425
  * -- exists, it is returned as-is. Otherwise, "optional fallback" is returned. If this value wasn't specified, the
5430
5426
  * -- translation result would be "Unknown key: 'item-description.furnace'".
5431
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/LocalisedString.html Online documentation}
5427
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LocalisedString.html Online documentation}
5432
5428
  */
5433
5429
  export type LocalisedString = string | number | boolean | LuaObject | nil | [string, ...LocalisedString[]]
5434
5430
  export interface DisplayResolution {
@@ -5439,7 +5435,7 @@ declare module "factorio:runtime" {
5439
5435
  * 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".
5440
5436
  *
5441
5437
  * For example then, a value of `0.625` would indicate "south-west", and a value of `0.875` would indicate "north-west".
5442
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/RealOrientation.html Online documentation}
5438
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/RealOrientation.html Online documentation}
5443
5439
  */
5444
5440
  export type RealOrientation = float
5445
5441
  /**
@@ -5454,7 +5450,7 @@ declare module "factorio:runtime" {
5454
5450
  * @example
5455
5451
  * -- Shorthand
5456
5452
  * {1.625, 2.375}
5457
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/MapPosition.html Online documentation}
5453
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/MapPosition.html Online documentation}
5458
5454
  */
5459
5455
  export interface MapPosition {
5460
5456
  readonly x: double
@@ -5463,13 +5459,13 @@ declare module "factorio:runtime" {
5463
5459
  /**
5464
5460
  * Array form of {@link MapPosition}.
5465
5461
  * @see MapPosition
5466
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/MapPosition.html Online documentation}
5462
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/MapPosition.html Online documentation}
5467
5463
  */
5468
5464
  export type MapPositionArray = readonly [double, double]
5469
5465
  /**
5470
5466
  * 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.
5471
5467
  * @see ChunkPositionArray
5472
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/ChunkPosition.html Online documentation}
5468
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ChunkPosition.html Online documentation}
5473
5469
  */
5474
5470
  export interface ChunkPosition {
5475
5471
  readonly x: int
@@ -5478,13 +5474,13 @@ declare module "factorio:runtime" {
5478
5474
  /**
5479
5475
  * Array form of {@link ChunkPosition}.
5480
5476
  * @see ChunkPosition
5481
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/ChunkPosition.html Online documentation}
5477
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ChunkPosition.html Online documentation}
5482
5478
  */
5483
5479
  export type ChunkPositionArray = readonly [int, int]
5484
5480
  /**
5485
5481
  * 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.
5486
5482
  * @see TilePositionArray
5487
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/TilePosition.html Online documentation}
5483
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/TilePosition.html Online documentation}
5488
5484
  */
5489
5485
  export interface TilePosition {
5490
5486
  readonly x: int
@@ -5493,7 +5489,7 @@ declare module "factorio:runtime" {
5493
5489
  /**
5494
5490
  * Array form of {@link TilePosition}.
5495
5491
  * @see TilePosition
5496
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/TilePosition.html Online documentation}
5492
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/TilePosition.html Online documentation}
5497
5493
  */
5498
5494
  export type TilePositionArray = readonly [int, int]
5499
5495
  /**
@@ -5506,7 +5502,7 @@ declare module "factorio:runtime" {
5506
5502
  * @example
5507
5503
  * -- Shorthand
5508
5504
  * {1, 2}
5509
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/EquipmentPosition.html Online documentation}
5505
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/EquipmentPosition.html Online documentation}
5510
5506
  */
5511
5507
  export interface EquipmentPosition {
5512
5508
  readonly x: int
@@ -5515,13 +5511,13 @@ declare module "factorio:runtime" {
5515
5511
  /**
5516
5512
  * Array form of {@link EquipmentPosition}.
5517
5513
  * @see EquipmentPosition
5518
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/EquipmentPosition.html Online documentation}
5514
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/EquipmentPosition.html Online documentation}
5519
5515
  */
5520
5516
  export type EquipmentPositionArray = readonly [int, int]
5521
5517
  /**
5522
5518
  * 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.
5523
5519
  * @see GuiLocationArray
5524
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/GuiLocation.html Online documentation}
5520
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/GuiLocation.html Online documentation}
5525
5521
  */
5526
5522
  export interface GuiLocation {
5527
5523
  readonly x: int
@@ -5530,12 +5526,12 @@ declare module "factorio:runtime" {
5530
5526
  /**
5531
5527
  * Array form of {@link GuiLocation}.
5532
5528
  * @see GuiLocation
5533
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/GuiLocation.html Online documentation}
5529
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/GuiLocation.html Online documentation}
5534
5530
  */
5535
5531
  export type GuiLocationArray = readonly [int, int]
5536
5532
  /**
5537
5533
  * A {@link ChunkPosition} with an added bounding box for the area of the chunk.
5538
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/ChunkPositionAndArea.html Online documentation}
5534
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ChunkPositionAndArea.html Online documentation}
5539
5535
  */
5540
5536
  export interface ChunkPositionAndArea {
5541
5537
  readonly x: int
@@ -5544,7 +5540,7 @@ declare module "factorio:runtime" {
5544
5540
  }
5545
5541
  /**
5546
5542
  * A table used to define a manual shape for a piece of equipment.
5547
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/EquipmentPoint.html Online documentation}
5543
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/EquipmentPoint.html Online documentation}
5548
5544
  */
5549
5545
  export interface EquipmentPoint {
5550
5546
  readonly x: uint
@@ -5580,7 +5576,7 @@ declare module "factorio:runtime" {
5580
5576
  * 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.
5581
5577
  * @example
5582
5578
  * {a = 1, b = true, c = "three", d = {e = "f"}}
5583
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/Tags.html Online documentation}
5579
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/Tags.html Online documentation}
5584
5580
  */
5585
5581
  export type Tags = Record<string, AnyBasic>
5586
5582
  export interface SurfaceCondition {
@@ -5614,13 +5610,13 @@ declare module "factorio:runtime" {
5614
5610
  * 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.
5615
5611
  * @example
5616
5612
  * right = {1.0, 0.0}
5617
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/Vector.html Online documentation}
5613
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/Vector.html Online documentation}
5618
5614
  */
5619
5615
  export type Vector = MapPositionArray
5620
5616
  /**
5621
5617
  * An area defined using the map editor.
5622
5618
  * @see ScriptAreaWrite
5623
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/ScriptArea.html Online documentation}
5619
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ScriptArea.html Online documentation}
5624
5620
  */
5625
5621
  export interface ScriptArea {
5626
5622
  readonly area: BoundingBox
@@ -5630,7 +5626,7 @@ declare module "factorio:runtime" {
5630
5626
  }
5631
5627
  /**
5632
5628
  * Write form of {@link ScriptArea}, where some properties allow additional values as input compared to the read form.
5633
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/ScriptArea.html Online documentation}
5629
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ScriptArea.html Online documentation}
5634
5630
  */
5635
5631
  export interface ScriptAreaWrite {
5636
5632
  readonly area: BoundingBoxWrite | BoundingBoxArray
@@ -5641,7 +5637,7 @@ declare module "factorio:runtime" {
5641
5637
  /**
5642
5638
  * A position defined using the map editor.
5643
5639
  * @see ScriptPositionWrite
5644
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/ScriptPosition.html Online documentation}
5640
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ScriptPosition.html Online documentation}
5645
5641
  */
5646
5642
  export interface ScriptPosition {
5647
5643
  readonly position: MapPosition
@@ -5651,7 +5647,7 @@ declare module "factorio:runtime" {
5651
5647
  }
5652
5648
  /**
5653
5649
  * Write form of {@link ScriptPosition}, where some properties allow additional values as input compared to the read form.
5654
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/ScriptPosition.html Online documentation}
5650
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ScriptPosition.html Online documentation}
5655
5651
  */
5656
5652
  export interface ScriptPositionWrite {
5657
5653
  readonly position: MapPosition | MapPositionArray
@@ -5669,7 +5665,7 @@ declare module "factorio:runtime" {
5669
5665
  * red2 = {r = 0.5, a = 0.5} -- Same color as red1
5670
5666
  * black = {} -- All channels omitted: black
5671
5667
  * red1_short = {0.5, 0, 0, 0.5} -- Same color as red1 in short-hand notation
5672
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/Color.html Online documentation}
5668
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/Color.html Online documentation}
5673
5669
  */
5674
5670
  export interface Color {
5675
5671
  readonly r?: float
@@ -5680,13 +5676,13 @@ declare module "factorio:runtime" {
5680
5676
  /**
5681
5677
  * Array form of {@link Color}.
5682
5678
  * @see Color
5683
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/Color.html Online documentation}
5679
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/Color.html Online documentation}
5684
5680
  */
5685
5681
  export type ColorArray = readonly [r: double, g: double, b: double, a?: double]
5686
5682
  /**
5687
5683
  * 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].
5688
5684
  * @see ColorModifierArray
5689
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/ColorModifier.html Online documentation}
5685
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ColorModifier.html Online documentation}
5690
5686
  */
5691
5687
  export interface ColorModifier {
5692
5688
  readonly r?: float
@@ -5697,7 +5693,7 @@ declare module "factorio:runtime" {
5697
5693
  /**
5698
5694
  * Array form of {@link ColorModifier}.
5699
5695
  * @see ColorModifier
5700
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/ColorModifier.html Online documentation}
5696
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ColorModifier.html Online documentation}
5701
5697
  */
5702
5698
  export type ColorModifierArray = readonly [r: double, g: double, b: double, a?: double]
5703
5699
  export interface CraftingQueueItem {
@@ -5840,7 +5836,7 @@ declare module "factorio:runtime" {
5840
5836
  }
5841
5837
  /**
5842
5838
  * @see AsteroidChunkWrite
5843
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/AsteroidChunk.html Online documentation}
5839
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/AsteroidChunk.html Online documentation}
5844
5840
  */
5845
5841
  export interface AsteroidChunk {
5846
5842
  /**
@@ -5852,7 +5848,7 @@ declare module "factorio:runtime" {
5852
5848
  }
5853
5849
  /**
5854
5850
  * Write form of {@link AsteroidChunk}, where some properties allow additional values as input compared to the read form.
5855
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/AsteroidChunk.html Online documentation}
5851
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/AsteroidChunk.html Online documentation}
5856
5852
  */
5857
5853
  export interface AsteroidChunkWrite {
5858
5854
  /**
@@ -5874,7 +5870,7 @@ declare module "factorio:runtime" {
5874
5870
  }
5875
5871
  /**
5876
5872
  * Either `icon`, `text`, or both must be provided.
5877
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/ChartTagSpec.html Online documentation}
5873
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ChartTagSpec.html Online documentation}
5878
5874
  */
5879
5875
  export interface ChartTagSpec {
5880
5876
  readonly position: MapPosition | MapPositionArray
@@ -5884,93 +5880,93 @@ declare module "factorio:runtime" {
5884
5880
  }
5885
5881
  /**
5886
5882
  * 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.
5887
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/GameViewSettings.html Online documentation}
5883
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/GameViewSettings.html Online documentation}
5888
5884
  */
5889
5885
  export interface GameViewSettings {
5890
5886
  /**
5891
5887
  * Show the controller GUI elements. This includes the toolbar, the selected tool slot, the armour slot, and the gun and ammunition slots.
5892
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/GameViewSettings.show_controller_gui.html Online documentation}
5888
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/GameViewSettings.show_controller_gui.html Online documentation}
5893
5889
  */
5894
5890
  show_controller_gui: boolean
5895
5891
  /**
5896
5892
  * Show the chart in the upper right-hand corner of the screen.
5897
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/GameViewSettings.show_minimap.html Online documentation}
5893
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/GameViewSettings.show_minimap.html Online documentation}
5898
5894
  */
5899
5895
  show_minimap: boolean
5900
5896
  /**
5901
5897
  * Show research progress and name in the upper right-hand corner of the screen.
5902
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/GameViewSettings.show_research_info.html Online documentation}
5898
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/GameViewSettings.show_research_info.html Online documentation}
5903
5899
  */
5904
5900
  show_research_info: boolean
5905
5901
  /**
5906
5902
  * Show overlay icons on entities. Also known as "alt-mode".
5907
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/GameViewSettings.show_entity_info.html Online documentation}
5903
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/GameViewSettings.show_entity_info.html Online documentation}
5908
5904
  */
5909
5905
  show_entity_info: boolean
5910
5906
  /**
5911
5907
  * Show the flashing alert icons next to the player's toolbar.
5912
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/GameViewSettings.show_alert_gui.html Online documentation}
5908
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/GameViewSettings.show_alert_gui.html Online documentation}
5913
5909
  */
5914
5910
  show_alert_gui: boolean
5915
5911
  /**
5916
5912
  * When `true` (the default), mousing over an entity will select it. Otherwise, moving the mouse won't update entity selection.
5917
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/GameViewSettings.update_entity_selection.html Online documentation}
5913
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/GameViewSettings.update_entity_selection.html Online documentation}
5918
5914
  */
5919
5915
  update_entity_selection: boolean
5920
5916
  /**
5921
5917
  * When `true` (`false` is default), the rails will always show the rail block visualisation.
5922
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/GameViewSettings.show_rail_block_visualisation.html Online documentation}
5918
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/GameViewSettings.show_rail_block_visualisation.html Online documentation}
5923
5919
  */
5924
5920
  show_rail_block_visualisation: boolean
5925
5921
  /**
5926
5922
  * Shows or hides the buttons row.
5927
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/GameViewSettings.show_side_menu.html Online documentation}
5923
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/GameViewSettings.show_side_menu.html Online documentation}
5928
5924
  */
5929
5925
  show_side_menu: boolean
5930
5926
  /**
5931
5927
  * Shows or hides the view options when map is opened.
5932
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/GameViewSettings.show_map_view_options.html Online documentation}
5928
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/GameViewSettings.show_map_view_options.html Online documentation}
5933
5929
  */
5934
5930
  show_map_view_options: boolean
5935
5931
  /**
5936
5932
  * Shows or hides the tooltip that is displayed when selecting an entity.
5937
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/GameViewSettings.show_entity_tooltip.html Online documentation}
5933
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/GameViewSettings.show_entity_tooltip.html Online documentation}
5938
5934
  */
5939
5935
  show_entity_tooltip: boolean
5940
5936
  /**
5941
5937
  * Shows or hides quickbar of shortcuts.
5942
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/GameViewSettings.show_quickbar.html Online documentation}
5938
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/GameViewSettings.show_quickbar.html Online documentation}
5943
5939
  */
5944
5940
  show_quickbar: boolean
5945
5941
  /**
5946
5942
  * Shows or hides the shortcut bar.
5947
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/GameViewSettings.show_shortcut_bar.html Online documentation}
5943
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/GameViewSettings.show_shortcut_bar.html Online documentation}
5948
5944
  */
5949
5945
  show_shortcut_bar: boolean
5950
5946
  /**
5951
5947
  * Shows or hides the crafting queue.
5952
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/GameViewSettings.show_crafting_queue.html Online documentation}
5948
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/GameViewSettings.show_crafting_queue.html Online documentation}
5953
5949
  */
5954
5950
  show_crafting_queue: boolean
5955
5951
  /**
5956
5952
  * Shows or hides the tool window with the weapons and armor.
5957
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/GameViewSettings.show_tool_bar.html Online documentation}
5953
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/GameViewSettings.show_tool_bar.html Online documentation}
5958
5954
  */
5959
5955
  show_tool_bar: boolean
5960
5956
  /**
5961
5957
  * Shows or hides the mouse and keyboard/controller button hints in the bottom left corner if they are enabled in the interface settings.
5962
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/GameViewSettings.show_hotkey_suggestions.html Online documentation}
5958
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/GameViewSettings.show_hotkey_suggestions.html Online documentation}
5963
5959
  */
5964
5960
  show_hotkey_suggestions: boolean
5965
5961
  /**
5966
5962
  * Shows or hides the surface list while in Remote View.
5967
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/GameViewSettings.show_surface_list.html Online documentation}
5963
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/GameViewSettings.show_surface_list.html Online documentation}
5968
5964
  */
5969
5965
  show_surface_list: boolean
5970
5966
  }
5971
5967
  /**
5972
5968
  * The data that can be extracted from a map exchange string, as a plain table.
5973
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/MapExchangeStringData.html Online documentation}
5969
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/MapExchangeStringData.html Online documentation}
5974
5970
  */
5975
5971
  export interface MapExchangeStringData {
5976
5972
  readonly map_settings: MapAndDifficultySettings
@@ -5978,7 +5974,7 @@ declare module "factorio:runtime" {
5978
5974
  }
5979
5975
  /**
5980
5976
  * @see BlueprintSignalIconWrite
5981
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/BlueprintSignalIcon.html Online documentation}
5977
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/BlueprintSignalIcon.html Online documentation}
5982
5978
  */
5983
5979
  export interface BlueprintSignalIcon {
5984
5980
  /**
@@ -5992,7 +5988,7 @@ declare module "factorio:runtime" {
5992
5988
  }
5993
5989
  /**
5994
5990
  * Write form of {@link BlueprintSignalIcon}, where some properties allow additional values as input compared to the read form.
5995
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/BlueprintSignalIcon.html Online documentation}
5991
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/BlueprintSignalIcon.html Online documentation}
5996
5992
  */
5997
5993
  export interface BlueprintSignalIconWrite {
5998
5994
  /**
@@ -6021,12 +6017,12 @@ declare module "factorio:runtime" {
6021
6017
  * - `target_entity_number`
6022
6018
  *
6023
6019
  * - `target_wire_connector_id`
6024
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/BlueprintWire.html Online documentation}
6020
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/BlueprintWire.html Online documentation}
6025
6021
  */
6026
6022
  export type BlueprintWire = readonly [uint, defines.wire_connector_id, uint, defines.wire_connector_id]
6027
6023
  /**
6028
6024
  * @see TileWrite
6029
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/Tile.html Online documentation}
6025
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/Tile.html Online documentation}
6030
6026
  */
6031
6027
  export interface Tile {
6032
6028
  /**
@@ -6040,7 +6036,7 @@ declare module "factorio:runtime" {
6040
6036
  }
6041
6037
  /**
6042
6038
  * Write form of {@link Tile}, where some properties allow additional values as input compared to the read form.
6043
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/Tile.html Online documentation}
6039
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/Tile.html Online documentation}
6044
6040
  */
6045
6041
  export interface TileWrite {
6046
6042
  /**
@@ -6095,7 +6091,7 @@ declare module "factorio:runtime" {
6095
6091
  *
6096
6092
  * Other attributes may be specified depending on `type`:
6097
6093
  * - `"fluid"`: {@link FluidIngredient}
6098
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/Ingredient.html Online documentation}
6094
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/Ingredient.html Online documentation}
6099
6095
  */
6100
6096
  export type Ingredient = FluidIngredient | OtherIngredient
6101
6097
  export interface Loot {
@@ -6261,7 +6257,7 @@ declare module "factorio:runtime" {
6261
6257
  * - `"unlock-recipe"`: {@link UnlockRecipeTechnologyModifier}
6262
6258
  * - `"nothing"`: {@link NothingTechnologyModifier}
6263
6259
  * - Other types: {@link OtherTechnologyModifier}
6264
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/TechnologyModifier.html Online documentation}
6260
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/TechnologyModifier.html Online documentation}
6265
6261
  */
6266
6262
  export type TechnologyModifier =
6267
6263
  | GunSpeedTechnologyModifier
@@ -6273,7 +6269,7 @@ declare module "factorio:runtime" {
6273
6269
  | OtherTechnologyModifier
6274
6270
  /**
6275
6271
  * 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}.
6276
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/NoiseExpression.html Online documentation}
6272
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/NoiseExpression.html Online documentation}
6277
6273
  */
6278
6274
  export interface NoiseExpression {
6279
6275
  /**
@@ -6326,7 +6322,7 @@ declare module "factorio:runtime" {
6326
6322
  * - `"very-high"`: equivalent to `2`.
6327
6323
  * - `"very-big"`: equivalent to `2`.
6328
6324
  * - `"very-good"`: equivalent to `2`.
6329
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/MapGenSize.html Online documentation}
6325
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/MapGenSize.html Online documentation}
6330
6326
  */
6331
6327
  export type MapGenSize =
6332
6328
  | float
@@ -6348,7 +6344,7 @@ declare module "factorio:runtime" {
6348
6344
  | "very-good"
6349
6345
  /**
6350
6346
  * @see AutoplaceControlWrite
6351
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/AutoplaceControl.html Online documentation}
6347
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/AutoplaceControl.html Online documentation}
6352
6348
  */
6353
6349
  export interface AutoplaceControl {
6354
6350
  /**
@@ -6366,7 +6362,7 @@ declare module "factorio:runtime" {
6366
6362
  }
6367
6363
  /**
6368
6364
  * Write form of {@link AutoplaceControl}, where some properties allow additional values as input compared to the read form.
6369
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/AutoplaceControl.html Online documentation}
6365
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/AutoplaceControl.html Online documentation}
6370
6366
  */
6371
6367
  export interface AutoplaceControlWrite {
6372
6368
  /**
@@ -6385,10 +6381,10 @@ declare module "factorio:runtime" {
6385
6381
  /**
6386
6382
  * 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}`.
6387
6383
  *
6388
- * {@link https://lua-api.factorio.com/2.0.28/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:}
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:}
6389
6385
  *
6390
- * {@link https://lua-api.factorio.com/2.0.28/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:}
6391
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/PropertyExpressionNames.html Online documentation}
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}
6392
6388
  */
6393
6389
  export type PropertyExpressionNames = Record<string, string>
6394
6390
  export interface AdvancedMapGenSettings {
@@ -6411,7 +6407,7 @@ declare module "factorio:runtime" {
6411
6407
  }
6412
6408
  /**
6413
6409
  * An actual signal transmitted by the network.
6414
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/Signal.html Online documentation}
6410
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/Signal.html Online documentation}
6415
6411
  */
6416
6412
  export interface Signal {
6417
6413
  /**
@@ -6425,7 +6421,7 @@ declare module "factorio:runtime" {
6425
6421
  }
6426
6422
  /**
6427
6423
  * @see UpgradeMapperSourceWrite
6428
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/UpgradeMapperSource.html Online documentation}
6424
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/UpgradeMapperSource.html Online documentation}
6429
6425
  */
6430
6426
  export interface UpgradeMapperSource {
6431
6427
  readonly type: "item" | "entity"
@@ -6444,7 +6440,7 @@ declare module "factorio:runtime" {
6444
6440
  }
6445
6441
  /**
6446
6442
  * Write form of {@link UpgradeMapperSource}, where some properties allow additional values as input compared to the read form.
6447
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/UpgradeMapperSource.html Online documentation}
6443
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/UpgradeMapperSource.html Online documentation}
6448
6444
  */
6449
6445
  export interface UpgradeMapperSourceWrite {
6450
6446
  readonly type: "item" | "entity"
@@ -6481,7 +6477,7 @@ declare module "factorio:runtime" {
6481
6477
  }
6482
6478
  /**
6483
6479
  * A single filter used by an infinity-filters instance.
6484
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/InfinityInventoryFilter.html Online documentation}
6480
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/InfinityInventoryFilter.html Online documentation}
6485
6481
  */
6486
6482
  export interface InfinityInventoryFilter {
6487
6483
  /**
@@ -6503,7 +6499,7 @@ declare module "factorio:runtime" {
6503
6499
  }
6504
6500
  /**
6505
6501
  * A single filter used by an infinity-pipe type entity.
6506
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/InfinityPipeFilter.html Online documentation}
6502
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/InfinityPipeFilter.html Online documentation}
6507
6503
  */
6508
6504
  export interface InfinityPipeFilter {
6509
6505
  /**
@@ -6557,7 +6553,7 @@ declare module "factorio:runtime" {
6557
6553
  }
6558
6554
  /**
6559
6555
  * The settings used by a heat-interface type entity.
6560
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/HeatSetting.html Online documentation}
6556
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/HeatSetting.html Online documentation}
6561
6557
  */
6562
6558
  export interface HeatSetting {
6563
6559
  /**
@@ -6575,7 +6571,7 @@ declare module "factorio:runtime" {
6575
6571
  }
6576
6572
  /**
6577
6573
  * @see ArithmeticCombinatorParametersWrite
6578
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/ArithmeticCombinatorParameters.html Online documentation}
6574
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ArithmeticCombinatorParameters.html Online documentation}
6579
6575
  */
6580
6576
  export interface ArithmeticCombinatorParameters {
6581
6577
  /**
@@ -6605,7 +6601,7 @@ declare module "factorio:runtime" {
6605
6601
  }
6606
6602
  /**
6607
6603
  * Write form of {@link ArithmeticCombinatorParameters}, where some properties allow additional values as input compared to the read form.
6608
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/ArithmeticCombinatorParameters.html Online documentation}
6604
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ArithmeticCombinatorParameters.html Online documentation}
6609
6605
  */
6610
6606
  export interface ArithmeticCombinatorParametersWrite {
6611
6607
  /**
@@ -6635,7 +6631,7 @@ declare module "factorio:runtime" {
6635
6631
  }
6636
6632
  /**
6637
6633
  * @see SelectorCombinatorParametersWrite
6638
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/SelectorCombinatorParameters.html Online documentation}
6634
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/SelectorCombinatorParameters.html Online documentation}
6639
6635
  */
6640
6636
  export interface SelectorCombinatorParameters {
6641
6637
  /**
@@ -6661,7 +6657,7 @@ declare module "factorio:runtime" {
6661
6657
  }
6662
6658
  /**
6663
6659
  * Write form of {@link SelectorCombinatorParameters}, where some properties allow additional values as input compared to the read form.
6664
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/SelectorCombinatorParameters.html Online documentation}
6660
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/SelectorCombinatorParameters.html Online documentation}
6665
6661
  */
6666
6662
  export interface SelectorCombinatorParametersWrite {
6667
6663
  /**
@@ -6703,7 +6699,7 @@ declare module "factorio:runtime" {
6703
6699
  }
6704
6700
  /**
6705
6701
  * @see CircuitConditionWrite
6706
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/CircuitCondition.html Online documentation}
6702
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/CircuitCondition.html Online documentation}
6707
6703
  */
6708
6704
  export interface CircuitCondition {
6709
6705
  /**
@@ -6725,7 +6721,7 @@ declare module "factorio:runtime" {
6725
6721
  }
6726
6722
  /**
6727
6723
  * Write form of {@link CircuitCondition}, where some properties allow additional values as input compared to the read form.
6728
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/CircuitCondition.html Online documentation}
6724
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/CircuitCondition.html Online documentation}
6729
6725
  */
6730
6726
  export interface CircuitConditionWrite {
6731
6727
  /**
@@ -6747,7 +6743,7 @@ declare module "factorio:runtime" {
6747
6743
  }
6748
6744
  /**
6749
6745
  * @see CircuitConditionDefinitionWrite
6750
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/CircuitConditionDefinition.html Online documentation}
6746
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/CircuitConditionDefinition.html Online documentation}
6751
6747
  */
6752
6748
  export interface CircuitConditionDefinition {
6753
6749
  /**
@@ -6761,7 +6757,7 @@ declare module "factorio:runtime" {
6761
6757
  }
6762
6758
  /**
6763
6759
  * Write form of {@link CircuitConditionDefinition}, where some properties allow additional values as input compared to the read form.
6764
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/CircuitConditionDefinition.html Online documentation}
6760
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/CircuitConditionDefinition.html Online documentation}
6765
6761
  */
6766
6762
  export interface CircuitConditionDefinitionWrite {
6767
6763
  /**
@@ -7036,7 +7032,7 @@ declare module "factorio:runtime" {
7036
7032
  * - {@link defines.command.stop}: {@link StopCommand}
7037
7033
  * - {@link defines.command.flee}: {@link FleeCommand}
7038
7034
  * - {@link defines.command.build_base}: {@link BuildBaseCommand}
7039
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/Command.html Online documentation}
7035
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/Command.html Online documentation}
7040
7036
  */
7041
7037
  export type Command =
7042
7038
  | AttackCommand
@@ -7050,7 +7046,7 @@ declare module "factorio:runtime" {
7050
7046
  | BuildBaseCommand
7051
7047
  /**
7052
7048
  * Write form of {@link Command}, where some properties allow additional values as input compared to the read form.
7053
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/Command.html Online documentation}
7049
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/Command.html Online documentation}
7054
7050
  */
7055
7051
  export type CommandWrite =
7056
7052
  | AttackCommand
@@ -7135,7 +7131,7 @@ declare module "factorio:runtime" {
7135
7131
  * These are both full stacks of iron plates (for iron-plate, a full stack is 100 plates)
7136
7132
  * "iron-plate"
7137
7133
  * {name="iron-plate", count=100}
7138
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/SimpleItemStack.html Online documentation}
7134
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/SimpleItemStack.html Online documentation}
7139
7135
  */
7140
7136
  export type SimpleItemStack = string | ItemStackDefinition
7141
7137
  /**
@@ -7145,7 +7141,7 @@ declare module "factorio:runtime" {
7145
7141
  * - 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.
7146
7142
  * - `string`: It will be the surface name. E.g. `"nauvis"`.
7147
7143
  * - {@link LuaSurface}: A reference to {@link LuaSurface} may be passed directly.
7148
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/SurfaceIdentification.html Online documentation}
7144
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/SurfaceIdentification.html Online documentation}
7149
7145
  */
7150
7146
  export type SurfaceIdentification = SurfaceIndex | string | LuaSurface
7151
7147
  /**
@@ -7155,7 +7151,7 @@ declare module "factorio:runtime" {
7155
7151
  * - PlayerIndex: The player index.
7156
7152
  * - `string`: The player name.
7157
7153
  * - {@link LuaPlayer}: A reference to {@link LuaPlayer} may be passed directly.
7158
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/PlayerIdentification.html Online documentation}
7154
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/PlayerIdentification.html Online documentation}
7159
7155
  */
7160
7156
  export type PlayerIdentification = PlayerIndex | string | LuaPlayer
7161
7157
  /**
@@ -7164,7 +7160,7 @@ declare module "factorio:runtime" {
7164
7160
  * ## Union members
7165
7161
  * - {@link SimpleItemStack}
7166
7162
  * - {@link LuaItemStack}
7167
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/ItemStackIdentification.html Online documentation}
7163
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ItemStackIdentification.html Online documentation}
7168
7164
  */
7169
7165
  export type ItemStackIdentification = SimpleItemStack | LuaItemStack
7170
7166
  /**
@@ -7174,7 +7170,7 @@ declare module "factorio:runtime" {
7174
7170
  * - `"entity"`: Fires at an entity.
7175
7171
  * - `"position"`: Fires directly at a position.
7176
7172
  * - `"direction"`: Fires in a direction.
7177
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/TargetType.html Online documentation}
7173
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/TargetType.html Online documentation}
7178
7174
  */
7179
7175
  export type TargetType = "entity" | "position" | "direction"
7180
7176
  export interface BeamTarget {
@@ -7211,8 +7207,8 @@ declare module "factorio:runtime" {
7211
7207
  *
7212
7208
  * The validity of a SoundPath can be verified at runtime using {@link LuaHelpers#is_valid_sound_path LuaHelpers::is_valid_sound_path}.
7213
7209
  *
7214
- * {@link https://lua-api.factorio.com/2.0.28/concepts/SoundPath.html > The utility and ambient types each contain general use sound prototypes defined by the game itself.}
7215
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/SoundPath.html Online documentation}
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}
7216
7212
  */
7217
7213
  export type SoundPath = (string & { _?: never }) | `${SoundCategory}/${string}`
7218
7214
  export interface CircularParticleCreationSpecification {
@@ -7344,7 +7340,7 @@ declare module "factorio:runtime" {
7344
7340
  * Other attributes may be specified depending on `type`:
7345
7341
  * - `"projectile"`: {@link ProjectileAttackParameters}
7346
7342
  * - `"stream"`: {@link StreamAttackParameters}
7347
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/AttackParameters.html Online documentation}
7343
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/AttackParameters.html Online documentation}
7348
7344
  */
7349
7345
  export type AttackParameters = ProjectileAttackParameters | StreamAttackParameters | OtherAttackParameters
7350
7346
  export interface GunShift4Way {
@@ -7410,7 +7406,7 @@ declare module "factorio:runtime" {
7410
7406
  * - `"use-on-self"`: {@link UseOnSelfCapsuleAction}
7411
7407
  * - `"artillery-remote"`: {@link ArtilleryRemoteCapsuleAction}
7412
7408
  * - `"destroy-cliffs"`: {@link DestroyCliffsCapsuleAction}
7413
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/CapsuleAction.html Online documentation}
7409
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/CapsuleAction.html Online documentation}
7414
7410
  */
7415
7411
  export type CapsuleAction =
7416
7412
  | ThrowCapsuleAction
@@ -7450,12 +7446,12 @@ declare module "factorio:runtime" {
7450
7446
  }
7451
7447
  /**
7452
7448
  * Any basic type (string, number, boolean) or table.
7453
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/AnyBasic.html Online documentation}
7449
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/AnyBasic.html Online documentation}
7454
7450
  */
7455
7451
  export type AnyBasic = string | boolean | number | table
7456
7452
  /**
7457
7453
  * Any basic type (string, number, boolean), table, or LuaObject.
7458
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/Any.html Online documentation}
7454
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/Any.html Online documentation}
7459
7455
  */
7460
7456
  export type Any = string | boolean | number | table | LuaObject
7461
7457
  export interface ProgrammableSpeakerParameters {
@@ -7465,7 +7461,7 @@ declare module "factorio:runtime" {
7465
7461
  }
7466
7462
  /**
7467
7463
  * @see ProgrammableSpeakerAlertParametersWrite
7468
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/ProgrammableSpeakerAlertParameters.html Online documentation}
7464
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ProgrammableSpeakerAlertParameters.html Online documentation}
7469
7465
  */
7470
7466
  export interface ProgrammableSpeakerAlertParameters {
7471
7467
  readonly show_alert: boolean
@@ -7475,7 +7471,7 @@ declare module "factorio:runtime" {
7475
7471
  }
7476
7472
  /**
7477
7473
  * Write form of {@link ProgrammableSpeakerAlertParameters}, where some properties allow additional values as input compared to the read form.
7478
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/ProgrammableSpeakerAlertParameters.html Online documentation}
7474
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ProgrammableSpeakerAlertParameters.html Online documentation}
7479
7475
  */
7480
7476
  export interface ProgrammableSpeakerAlertParametersWrite {
7481
7477
  readonly show_alert: boolean
@@ -7507,7 +7503,7 @@ declare module "factorio:runtime" {
7507
7503
  * - `"top-right"`
7508
7504
  * - `"right"`: The same as `"middle-right"`
7509
7505
  * - `"bottom-right"`
7510
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/Alignment.html Online documentation}
7506
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/Alignment.html Online documentation}
7511
7507
  */
7512
7508
  export type Alignment =
7513
7509
  | "top-left"
@@ -7540,8 +7536,8 @@ declare module "factorio:runtime" {
7540
7536
  _customEventIdBrand: any
7541
7537
  }
7542
7538
  /**
7543
- * 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.28/events.html the list of Factorio events} for more information on these.
7544
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/EventData.html Online documentation}
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}
7545
7541
  */
7546
7542
  export interface EventData {
7547
7543
  /**
@@ -7650,7 +7646,7 @@ declare module "factorio:runtime" {
7650
7646
  * - `"button-7"`
7651
7647
  * - `"button-8"`
7652
7648
  * - `"button-9"`
7653
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/MouseButtonFlags.html Online documentation}
7649
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/MouseButtonFlags.html Online documentation}
7654
7650
  */
7655
7651
  export interface MouseButtonFlags {
7656
7652
  readonly left?: true
@@ -7673,7 +7669,7 @@ declare module "factorio:runtime" {
7673
7669
  * - `"not-friend"`: Forces which are not friends pass.
7674
7670
  * - `"same"`: The same force pass.
7675
7671
  * - `"not-same"`: The non-same forces pass.
7676
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/ForceCondition.html Online documentation}
7672
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ForceCondition.html Online documentation}
7677
7673
  */
7678
7674
  export type ForceCondition = "all" | "enemy" | "ally" | "friend" | "not-friend" | "same" | "not-same"
7679
7675
  export interface ItemStackLocation {
@@ -7711,7 +7707,7 @@ declare module "factorio:runtime" {
7711
7707
  * - `"tabbed-pane"`: A collection of `tab`s and their contents. Relevant event: {@link OnGuiSelectedTabChangedEvent on_gui_selected_tab_changed}
7712
7708
  * - `"tab"`: A tab for use in a `tabbed-pane`.
7713
7709
  * - `"switch"`: A switch with three possible states. Can have labels attached to either side. Relevant event: {@link OnGuiSwitchStateChangedEvent on_gui_switch_state_changed}
7714
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/GuiElementType.html Online documentation}
7710
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/GuiElementType.html Online documentation}
7715
7711
  */
7716
7712
  export type GuiElementType =
7717
7713
  | "button"
@@ -7751,7 +7747,7 @@ declare module "factorio:runtime" {
7751
7747
  * - `"position"`
7752
7748
  * - `"crafting_queue"`
7753
7749
  * - `"item_stack"`: Will point to a given item stack in an inventory.
7754
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/GuiArrowType.html Online documentation}
7750
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/GuiArrowType.html Online documentation}
7755
7751
  */
7756
7752
  export type GuiArrowType =
7757
7753
  | "nowhere"
@@ -7768,7 +7764,7 @@ declare module "factorio:runtime" {
7768
7764
  * ## Union members
7769
7765
  * - `"horizontal"`
7770
7766
  * - `"vertical"`
7771
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/GuiDirection.html Online documentation}
7767
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/GuiDirection.html Online documentation}
7772
7768
  */
7773
7769
  export type GuiDirection = "horizontal" | "vertical"
7774
7770
  /**
@@ -7780,7 +7776,7 @@ declare module "factorio:runtime" {
7780
7776
  * - `"always"`
7781
7777
  * - `"auto"`
7782
7778
  * - `"auto-and-reserve-space"`
7783
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/ScrollPolicy.html Online documentation}
7779
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ScrollPolicy.html Online documentation}
7784
7780
  */
7785
7781
  export type ScrollPolicy = "never" | "dont-show-but-allow-scrolling" | "always" | "auto" | "auto-and-reserve-space"
7786
7782
  export interface RailLocation {
@@ -7797,71 +7793,71 @@ declare module "factorio:runtime" {
7797
7793
  }
7798
7794
  /**
7799
7795
  * 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.
7800
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/float.html Online documentation}
7796
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/float.html Online documentation}
7801
7797
  */
7802
7798
  export type float = number
7803
7799
  /**
7804
7800
  * A double-precision floating-point number. This is the same data type as all Lua numbers use.
7805
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/double.html Online documentation}
7801
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/double.html Online documentation}
7806
7802
  */
7807
7803
  export type double = number
7808
7804
  /**
7809
7805
  * 32-bit signed integer. Possible values are `-2 147 483 648` to `2 147 483 647`.
7810
7806
  *
7811
7807
  * Since Lua 5.2 only uses doubles, any API that asks for `int` will floor the given double.
7812
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/int.html Online documentation}
7808
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/int.html Online documentation}
7813
7809
  */
7814
7810
  export type int = number
7815
7811
  /**
7816
7812
  * 8-bit signed integer. Possible values are `-128` to `127`.
7817
7813
  *
7818
7814
  * Since Lua 5.2 only uses doubles, any API that asks for `int8` will floor the given double.
7819
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/int8.html Online documentation}
7815
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/int8.html Online documentation}
7820
7816
  */
7821
7817
  export type int8 = number
7822
7818
  /**
7823
7819
  * 32-bit unsigned integer. Possible values are `0` to `4 294 967 295`.
7824
7820
  *
7825
7821
  * Since Lua 5.2 only uses doubles, any API that asks for `uint` will floor the given double.
7826
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/uint.html Online documentation}
7822
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/uint.html Online documentation}
7827
7823
  */
7828
7824
  export type uint = number
7829
7825
  /**
7830
7826
  * 8-bit unsigned integer. Possible values are `0` to `255`.
7831
7827
  *
7832
7828
  * Since Lua 5.2 only uses doubles, any API that asks for `uint8` will floor the given double.
7833
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/uint8.html Online documentation}
7829
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/uint8.html Online documentation}
7834
7830
  */
7835
7831
  export type uint8 = number
7836
7832
  /**
7837
7833
  * 16-bit unsigned integer. Possible values are `0` to `65 535`.
7838
7834
  *
7839
7835
  * Since Lua 5.2 only uses doubles, any API that asks for `uint16` will floor the given double.
7840
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/uint16.html Online documentation}
7836
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/uint16.html Online documentation}
7841
7837
  */
7842
7838
  export type uint16 = number
7843
7839
  /**
7844
7840
  * 64-bit unsigned integer. Possible values are `0` to `18 446 744 073 709 551 615`.
7845
7841
  *
7846
7842
  * Since Lua 5.2 only uses doubles, any API that asks for `uint64` will floor the given double.
7847
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/uint64.html Online documentation}
7843
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/uint64.html Online documentation}
7848
7844
  */
7849
7845
  export type uint64 = number
7850
7846
  /**
7851
7847
  * 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.
7852
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/nil.html Online documentation}
7848
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/nil.html Online documentation}
7853
7849
  */
7854
7850
  export type nil = undefined
7855
7851
  /**
7856
7852
  * Tables are enclosed in curly brackets, like this `{}`.
7857
7853
  *
7858
7854
  * 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.
7859
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/table.html Online documentation}
7855
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/table.html Online documentation}
7860
7856
  */
7861
7857
  export type table = object
7862
7858
  /**
7863
- * Any LuaObject listed on the {@linkplain https://lua-api.factorio.com/2.0.28/classes.html Classes} page.
7864
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/LuaObject.html Online documentation}
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}
7865
7861
  */
7866
7862
  export interface LuaObject {
7867
7863
  readonly object_name: string
@@ -7920,7 +7916,7 @@ declare module "factorio:runtime" {
7920
7916
  * - `"type"`: {@link TypeModSettingPrototypeFilter}
7921
7917
  * - `"mod"`: {@link ModModSettingPrototypeFilter}
7922
7918
  * - `"setting-type"`: {@link SettingTypeModSettingPrototypeFilter}
7923
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/ModSettingPrototypeFilter.html Online documentation}
7919
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ModSettingPrototypeFilter.html Online documentation}
7924
7920
  */
7925
7921
  export type ModSettingPrototypeFilter =
7926
7922
  | TypeModSettingPrototypeFilter
@@ -8065,7 +8061,7 @@ declare module "factorio:runtime" {
8065
8061
  * - `"vehicle-friction-modifier"`: {@link VehicleFrictionModifierTilePrototypeFilter}
8066
8062
  * - `"decorative-removal-probability"`: {@link DecorativeRemovalProbabilityTilePrototypeFilter}
8067
8063
  * - `"absorptions-per-second"`: {@link AbsorptionsPerSecondTilePrototypeFilter}
8068
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/TilePrototypeFilter.html Online documentation}
8064
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/TilePrototypeFilter.html Online documentation}
8069
8065
  */
8070
8066
  export type TilePrototypeFilter =
8071
8067
  | CollisionMaskTilePrototypeFilter
@@ -8076,7 +8072,7 @@ declare module "factorio:runtime" {
8076
8072
  | OtherTilePrototypeFilter
8077
8073
  /**
8078
8074
  * Write form of {@link TilePrototypeFilter}, where some properties allow additional values as input compared to the read form.
8079
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/TilePrototypeFilter.html Online documentation}
8075
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/TilePrototypeFilter.html Online documentation}
8080
8076
  */
8081
8077
  export type TilePrototypeFilterWrite =
8082
8078
  | CollisionMaskTilePrototypeFilter
@@ -8127,7 +8123,7 @@ declare module "factorio:runtime" {
8127
8123
  *
8128
8124
  * Other attributes may be specified depending on `filter`:
8129
8125
  * - `"collision-mask"`: {@link CollisionMaskDecorativePrototypeFilter}
8130
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/DecorativePrototypeFilter.html Online documentation}
8126
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/DecorativePrototypeFilter.html Online documentation}
8131
8127
  */
8132
8128
  export type DecorativePrototypeFilter = CollisionMaskDecorativePrototypeFilter | OtherDecorativePrototypeFilter
8133
8129
  /**
@@ -8381,7 +8377,7 @@ declare module "factorio:runtime" {
8381
8377
  * - `"emissions-multiplier"`: {@link EmissionsMultiplierRecipePrototypeFilter}
8382
8378
  * - `"request-paste-multiplier"`: {@link RequestPasteMultiplierRecipePrototypeFilter}
8383
8379
  * - `"overload-multiplier"`: {@link OverloadMultiplierRecipePrototypeFilter}
8384
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/RecipePrototypeFilter.html Online documentation}
8380
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/RecipePrototypeFilter.html Online documentation}
8385
8381
  */
8386
8382
  export type RecipePrototypeFilter =
8387
8383
  | HasIngredientItemRecipePrototypeFilter
@@ -8397,7 +8393,7 @@ declare module "factorio:runtime" {
8397
8393
  | OtherRecipePrototypeFilter
8398
8394
  /**
8399
8395
  * Write form of {@link RecipePrototypeFilter}, where some properties allow additional values as input compared to the read form.
8400
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/RecipePrototypeFilter.html Online documentation}
8396
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/RecipePrototypeFilter.html Online documentation}
8401
8397
  */
8402
8398
  export type RecipePrototypeFilterWrite =
8403
8399
  | HasIngredientItemRecipePrototypeFilterWrite
@@ -8449,7 +8445,7 @@ declare module "factorio:runtime" {
8449
8445
  *
8450
8446
  * Other attributes may be specified depending on `filter`:
8451
8447
  * - `"type"`: {@link TypeAchievementPrototypeFilter}
8452
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/AchievementPrototypeFilter.html Online documentation}
8448
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/AchievementPrototypeFilter.html Online documentation}
8453
8449
  */
8454
8450
  export type AchievementPrototypeFilter = TypeAchievementPrototypeFilter | OtherAchievementPrototypeFilter
8455
8451
  /**
@@ -8572,7 +8568,7 @@ declare module "factorio:runtime" {
8572
8568
  * - `"level"`: {@link LevelTechnologyPrototypeFilter}
8573
8569
  * - `"max-level"`: {@link MaxLevelTechnologyPrototypeFilter}
8574
8570
  * - `"time"`: {@link TimeTechnologyPrototypeFilter}
8575
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/TechnologyPrototypeFilter.html Online documentation}
8571
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/TechnologyPrototypeFilter.html Online documentation}
8576
8572
  */
8577
8573
  export type TechnologyPrototypeFilter =
8578
8574
  | ResearchUnitIngredientTechnologyPrototypeFilter
@@ -8583,7 +8579,7 @@ declare module "factorio:runtime" {
8583
8579
  | OtherTechnologyPrototypeFilter
8584
8580
  /**
8585
8581
  * Write form of {@link TechnologyPrototypeFilter}, where some properties allow additional values as input compared to the read form.
8586
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/TechnologyPrototypeFilter.html Online documentation}
8582
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/TechnologyPrototypeFilter.html Online documentation}
8587
8583
  */
8588
8584
  export type TechnologyPrototypeFilterWrite =
8589
8585
  | ResearchUnitIngredientTechnologyPrototypeFilter
@@ -8900,7 +8896,7 @@ declare module "factorio:runtime" {
8900
8896
  * - `"fuel-acceleration-multiplier"`: {@link FuelAccelerationMultiplierItemPrototypeFilter}
8901
8897
  * - `"fuel-top-speed-multiplier"`: {@link FuelTopSpeedMultiplierItemPrototypeFilter}
8902
8898
  * - `"fuel-emissions-multiplier"`: {@link FuelEmissionsMultiplierItemPrototypeFilter}
8903
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/ItemPrototypeFilter.html Online documentation}
8899
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ItemPrototypeFilter.html Online documentation}
8904
8900
  */
8905
8901
  export type ItemPrototypeFilter =
8906
8902
  | PlaceResultItemPrototypeFilter
@@ -8920,7 +8916,7 @@ declare module "factorio:runtime" {
8920
8916
  | OtherItemPrototypeFilter
8921
8917
  /**
8922
8918
  * Write form of {@link ItemPrototypeFilter}, where some properties allow additional values as input compared to the read form.
8923
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/ItemPrototypeFilter.html Online documentation}
8919
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/ItemPrototypeFilter.html Online documentation}
8924
8920
  */
8925
8921
  export type ItemPrototypeFilterWrite =
8926
8922
  | PlaceResultItemPrototypeFilterWrite
@@ -8976,7 +8972,7 @@ declare module "factorio:runtime" {
8976
8972
  *
8977
8973
  * Other attributes may be specified depending on `filter`:
8978
8974
  * - `"type"`: {@link TypeEquipmentPrototypeFilter}
8979
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/EquipmentPrototypeFilter.html Online documentation}
8975
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/EquipmentPrototypeFilter.html Online documentation}
8980
8976
  */
8981
8977
  export type EquipmentPrototypeFilter = TypeEquipmentPrototypeFilter | OtherEquipmentPrototypeFilter
8982
8978
  /**
@@ -9207,7 +9203,7 @@ declare module "factorio:runtime" {
9207
9203
  * - `"selection-priority"`: {@link SelectionPriorityEntityPrototypeFilter}
9208
9204
  * - `"emissions-per-second"`: {@link EmissionsPerSecondEntityPrototypeFilter}
9209
9205
  * - `"crafting-category"`: {@link CraftingCategoryEntityPrototypeFilter}
9210
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/EntityPrototypeFilter.html Online documentation}
9206
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/EntityPrototypeFilter.html Online documentation}
9211
9207
  */
9212
9208
  export type EntityPrototypeFilter =
9213
9209
  | NameEntityPrototypeFilter
@@ -9221,7 +9217,7 @@ declare module "factorio:runtime" {
9221
9217
  | OtherEntityPrototypeFilter
9222
9218
  /**
9223
9219
  * Write form of {@link EntityPrototypeFilter}, where some properties allow additional values as input compared to the read form.
9224
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/EntityPrototypeFilter.html Online documentation}
9220
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/EntityPrototypeFilter.html Online documentation}
9225
9221
  */
9226
9222
  export type EntityPrototypeFilterWrite =
9227
9223
  | NameEntityPrototypeFilter
@@ -9291,7 +9287,7 @@ declare module "factorio:runtime" {
9291
9287
  * Other attributes may be specified depending on `filter`:
9292
9288
  * - `"type"`: {@link TypeSpaceLocationPrototypeFilter}
9293
9289
  * - `"solar-power-in-space"`: {@link SolarPowerInSpaceSpaceLocationPrototypeFilter}
9294
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/SpaceLocationPrototypeFilter.html Online documentation}
9290
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/SpaceLocationPrototypeFilter.html Online documentation}
9295
9291
  */
9296
9292
  export type SpaceLocationPrototypeFilter =
9297
9293
  | TypeSpaceLocationPrototypeFilter
@@ -9299,7 +9295,7 @@ declare module "factorio:runtime" {
9299
9295
  | OtherSpaceLocationPrototypeFilter
9300
9296
  /**
9301
9297
  * Write form of {@link SpaceLocationPrototypeFilter}, where some properties allow additional values as input compared to the read form.
9302
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/SpaceLocationPrototypeFilter.html Online documentation}
9298
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/SpaceLocationPrototypeFilter.html Online documentation}
9303
9299
  */
9304
9300
  export type SpaceLocationPrototypeFilterWrite =
9305
9301
  | TypeSpaceLocationPrototypeFilter
@@ -9487,7 +9483,7 @@ declare module "factorio:runtime" {
9487
9483
  * - `"fuel-value"`: {@link FuelValueFluidPrototypeFilter}
9488
9484
  * - `"emissions-multiplier"`: {@link EmissionsMultiplierFluidPrototypeFilter}
9489
9485
  * - `"gas-temperature"`: {@link GasTemperatureFluidPrototypeFilter}
9490
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/FluidPrototypeFilter.html Online documentation}
9486
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/FluidPrototypeFilter.html Online documentation}
9491
9487
  */
9492
9488
  export type FluidPrototypeFilter =
9493
9489
  | NameFluidPrototypeFilter
@@ -9501,7 +9497,7 @@ declare module "factorio:runtime" {
9501
9497
  | OtherFluidPrototypeFilter
9502
9498
  /**
9503
9499
  * Write form of {@link FluidPrototypeFilter}, where some properties allow additional values as input compared to the read form.
9504
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/FluidPrototypeFilter.html Online documentation}
9500
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/FluidPrototypeFilter.html Online documentation}
9505
9501
  */
9506
9502
  export type FluidPrototypeFilterWrite =
9507
9503
  | NameFluidPrototypeFilter
@@ -9610,7 +9606,7 @@ declare module "factorio:runtime" {
9610
9606
  * - `"name"`: {@link NamePrePlatformMinedEntityEventFilter}
9611
9607
  * - `"ghost_type"`: {@link GhostTypePrePlatformMinedEntityEventFilter}
9612
9608
  * - `"ghost_name"`: {@link GhostNamePrePlatformMinedEntityEventFilter}
9613
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/LuaPrePlatformMinedEntityEventFilter.html Online documentation}
9609
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaPrePlatformMinedEntityEventFilter.html Online documentation}
9614
9610
  */
9615
9611
  export type LuaPrePlatformMinedEntityEventFilter =
9616
9612
  | TypePrePlatformMinedEntityEventFilter
@@ -9715,7 +9711,7 @@ declare module "factorio:runtime" {
9715
9711
  * - `"name"`: {@link NameRobotMinedEntityEventFilter}
9716
9712
  * - `"ghost_type"`: {@link GhostTypeRobotMinedEntityEventFilter}
9717
9713
  * - `"ghost_name"`: {@link GhostNameRobotMinedEntityEventFilter}
9718
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/LuaRobotMinedEntityEventFilter.html Online documentation}
9714
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaRobotMinedEntityEventFilter.html Online documentation}
9719
9715
  */
9720
9716
  export type LuaRobotMinedEntityEventFilter =
9721
9717
  | TypeRobotMinedEntityEventFilter
@@ -9820,7 +9816,7 @@ declare module "factorio:runtime" {
9820
9816
  * - `"name"`: {@link NameEntityMarkedForUpgradeEventFilter}
9821
9817
  * - `"ghost_type"`: {@link GhostTypeEntityMarkedForUpgradeEventFilter}
9822
9818
  * - `"ghost_name"`: {@link GhostNameEntityMarkedForUpgradeEventFilter}
9823
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/LuaEntityMarkedForUpgradeEventFilter.html Online documentation}
9819
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaEntityMarkedForUpgradeEventFilter.html Online documentation}
9824
9820
  */
9825
9821
  export type LuaEntityMarkedForUpgradeEventFilter =
9826
9822
  | TypeEntityMarkedForUpgradeEventFilter
@@ -9925,7 +9921,7 @@ declare module "factorio:runtime" {
9925
9921
  * - `"name"`: {@link NamePreGhostUpgradedEventFilter}
9926
9922
  * - `"ghost_type"`: {@link GhostTypePreGhostUpgradedEventFilter}
9927
9923
  * - `"ghost_name"`: {@link GhostNamePreGhostUpgradedEventFilter}
9928
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/LuaPreGhostUpgradedEventFilter.html Online documentation}
9924
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaPreGhostUpgradedEventFilter.html Online documentation}
9929
9925
  */
9930
9926
  export type LuaPreGhostUpgradedEventFilter =
9931
9927
  | TypePreGhostUpgradedEventFilter
@@ -10030,7 +10026,7 @@ declare module "factorio:runtime" {
10030
10026
  * - `"name"`: {@link NamePlatformMinedEntityEventFilter}
10031
10027
  * - `"ghost_type"`: {@link GhostTypePlatformMinedEntityEventFilter}
10032
10028
  * - `"ghost_name"`: {@link GhostNamePlatformMinedEntityEventFilter}
10033
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/LuaPlatformMinedEntityEventFilter.html Online documentation}
10029
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaPlatformMinedEntityEventFilter.html Online documentation}
10034
10030
  */
10035
10031
  export type LuaPlatformMinedEntityEventFilter =
10036
10032
  | TypePlatformMinedEntityEventFilter
@@ -10135,7 +10131,7 @@ declare module "factorio:runtime" {
10135
10131
  * - `"name"`: {@link NameScriptRaisedDestroyEventFilter}
10136
10132
  * - `"ghost_type"`: {@link GhostTypeScriptRaisedDestroyEventFilter}
10137
10133
  * - `"ghost_name"`: {@link GhostNameScriptRaisedDestroyEventFilter}
10138
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/LuaScriptRaisedDestroyEventFilter.html Online documentation}
10134
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaScriptRaisedDestroyEventFilter.html Online documentation}
10139
10135
  */
10140
10136
  export type LuaScriptRaisedDestroyEventFilter =
10141
10137
  | TypeScriptRaisedDestroyEventFilter
@@ -10252,7 +10248,7 @@ declare module "factorio:runtime" {
10252
10248
  * - `"ghost_type"`: {@link GhostTypePlayerBuiltEntityEventFilter}
10253
10249
  * - `"ghost_name"`: {@link GhostNamePlayerBuiltEntityEventFilter}
10254
10250
  * - `"force"`: {@link ForcePlayerBuiltEntityEventFilter}
10255
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/LuaPlayerBuiltEntityEventFilter.html Online documentation}
10251
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaPlayerBuiltEntityEventFilter.html Online documentation}
10256
10252
  */
10257
10253
  export type LuaPlayerBuiltEntityEventFilter =
10258
10254
  | TypePlayerBuiltEntityEventFilter
@@ -10370,7 +10366,7 @@ declare module "factorio:runtime" {
10370
10366
  * - `"ghost_type"`: {@link GhostTypePlatformBuiltEntityEventFilter}
10371
10367
  * - `"ghost_name"`: {@link GhostNamePlatformBuiltEntityEventFilter}
10372
10368
  * - `"force"`: {@link ForcePlatformBuiltEntityEventFilter}
10373
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/LuaPlatformBuiltEntityEventFilter.html Online documentation}
10369
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaPlatformBuiltEntityEventFilter.html Online documentation}
10374
10370
  */
10375
10371
  export type LuaPlatformBuiltEntityEventFilter =
10376
10372
  | TypePlatformBuiltEntityEventFilter
@@ -10476,7 +10472,7 @@ declare module "factorio:runtime" {
10476
10472
  * - `"name"`: {@link NamePreGhostDeconstructedEventFilter}
10477
10473
  * - `"ghost_type"`: {@link GhostTypePreGhostDeconstructedEventFilter}
10478
10474
  * - `"ghost_name"`: {@link GhostNamePreGhostDeconstructedEventFilter}
10479
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/LuaPreGhostDeconstructedEventFilter.html Online documentation}
10475
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaPreGhostDeconstructedEventFilter.html Online documentation}
10480
10476
  */
10481
10477
  export type LuaPreGhostDeconstructedEventFilter =
10482
10478
  | TypePreGhostDeconstructedEventFilter
@@ -10581,7 +10577,7 @@ declare module "factorio:runtime" {
10581
10577
  * - `"name"`: {@link NameEntityClonedEventFilter}
10582
10578
  * - `"ghost_type"`: {@link GhostTypeEntityClonedEventFilter}
10583
10579
  * - `"ghost_name"`: {@link GhostNameEntityClonedEventFilter}
10584
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/LuaEntityClonedEventFilter.html Online documentation}
10580
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaEntityClonedEventFilter.html Online documentation}
10585
10581
  */
10586
10582
  export type LuaEntityClonedEventFilter =
10587
10583
  | TypeEntityClonedEventFilter
@@ -10686,7 +10682,7 @@ declare module "factorio:runtime" {
10686
10682
  * - `"name"`: {@link NameScriptRaisedTeleportedEventFilter}
10687
10683
  * - `"ghost_type"`: {@link GhostTypeScriptRaisedTeleportedEventFilter}
10688
10684
  * - `"ghost_name"`: {@link GhostNameScriptRaisedTeleportedEventFilter}
10689
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/LuaScriptRaisedTeleportedEventFilter.html Online documentation}
10685
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaScriptRaisedTeleportedEventFilter.html Online documentation}
10690
10686
  */
10691
10687
  export type LuaScriptRaisedTeleportedEventFilter =
10692
10688
  | TypeScriptRaisedTeleportedEventFilter
@@ -10793,7 +10789,7 @@ declare module "factorio:runtime" {
10793
10789
  * - `"name"`: {@link NameEntityDeconstructionCancelledEventFilter}
10794
10790
  * - `"ghost_type"`: {@link GhostTypeEntityDeconstructionCancelledEventFilter}
10795
10791
  * - `"ghost_name"`: {@link GhostNameEntityDeconstructionCancelledEventFilter}
10796
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/LuaEntityDeconstructionCancelledEventFilter.html Online documentation}
10792
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaEntityDeconstructionCancelledEventFilter.html Online documentation}
10797
10793
  */
10798
10794
  export type LuaEntityDeconstructionCancelledEventFilter =
10799
10795
  | TypeEntityDeconstructionCancelledEventFilter
@@ -10910,7 +10906,7 @@ declare module "factorio:runtime" {
10910
10906
  * - `"ghost_type"`: {@link GhostTypeRobotBuiltEntityEventFilter}
10911
10907
  * - `"ghost_name"`: {@link GhostNameRobotBuiltEntityEventFilter}
10912
10908
  * - `"force"`: {@link ForceRobotBuiltEntityEventFilter}
10913
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/LuaRobotBuiltEntityEventFilter.html Online documentation}
10909
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaRobotBuiltEntityEventFilter.html Online documentation}
10914
10910
  */
10915
10911
  export type LuaRobotBuiltEntityEventFilter =
10916
10912
  | TypeRobotBuiltEntityEventFilter
@@ -11016,7 +11012,7 @@ declare module "factorio:runtime" {
11016
11012
  * - `"name"`: {@link NameScriptRaisedBuiltEventFilter}
11017
11013
  * - `"ghost_type"`: {@link GhostTypeScriptRaisedBuiltEventFilter}
11018
11014
  * - `"ghost_name"`: {@link GhostNameScriptRaisedBuiltEventFilter}
11019
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/LuaScriptRaisedBuiltEventFilter.html Online documentation}
11015
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaScriptRaisedBuiltEventFilter.html Online documentation}
11020
11016
  */
11021
11017
  export type LuaScriptRaisedBuiltEventFilter =
11022
11018
  | TypeScriptRaisedBuiltEventFilter
@@ -11121,7 +11117,7 @@ declare module "factorio:runtime" {
11121
11117
  * - `"name"`: {@link NamePrePlayerMinedEntityEventFilter}
11122
11118
  * - `"ghost_type"`: {@link GhostTypePrePlayerMinedEntityEventFilter}
11123
11119
  * - `"ghost_name"`: {@link GhostNamePrePlayerMinedEntityEventFilter}
11124
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/LuaPrePlayerMinedEntityEventFilter.html Online documentation}
11120
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaPrePlayerMinedEntityEventFilter.html Online documentation}
11125
11121
  */
11126
11122
  export type LuaPrePlayerMinedEntityEventFilter =
11127
11123
  | TypePrePlayerMinedEntityEventFilter
@@ -11226,7 +11222,7 @@ declare module "factorio:runtime" {
11226
11222
  * - `"name"`: {@link NamePlayerRepairedEntityEventFilter}
11227
11223
  * - `"ghost_type"`: {@link GhostTypePlayerRepairedEntityEventFilter}
11228
11224
  * - `"ghost_name"`: {@link GhostNamePlayerRepairedEntityEventFilter}
11229
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/LuaPlayerRepairedEntityEventFilter.html Online documentation}
11225
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaPlayerRepairedEntityEventFilter.html Online documentation}
11230
11226
  */
11231
11227
  export type LuaPlayerRepairedEntityEventFilter =
11232
11228
  | TypePlayerRepairedEntityEventFilter
@@ -11331,7 +11327,7 @@ declare module "factorio:runtime" {
11331
11327
  * - `"name"`: {@link NameUpgradeCancelledEventFilter}
11332
11328
  * - `"ghost_type"`: {@link GhostTypeUpgradeCancelledEventFilter}
11333
11329
  * - `"ghost_name"`: {@link GhostNameUpgradeCancelledEventFilter}
11334
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/LuaUpgradeCancelledEventFilter.html Online documentation}
11330
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaUpgradeCancelledEventFilter.html Online documentation}
11335
11331
  */
11336
11332
  export type LuaUpgradeCancelledEventFilter =
11337
11333
  | TypeUpgradeCancelledEventFilter
@@ -11436,7 +11432,7 @@ declare module "factorio:runtime" {
11436
11432
  * - `"name"`: {@link NameSectorScannedEventFilter}
11437
11433
  * - `"ghost_type"`: {@link GhostTypeSectorScannedEventFilter}
11438
11434
  * - `"ghost_name"`: {@link GhostNameSectorScannedEventFilter}
11439
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/LuaSectorScannedEventFilter.html Online documentation}
11435
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaSectorScannedEventFilter.html Online documentation}
11440
11436
  */
11441
11437
  export type LuaSectorScannedEventFilter =
11442
11438
  | TypeSectorScannedEventFilter
@@ -11482,7 +11478,7 @@ declare module "factorio:runtime" {
11482
11478
  *
11483
11479
  * Other attributes may be specified depending on `filter`:
11484
11480
  * - `"type"`: {@link TypePostEntityDiedEventFilter}
11485
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/LuaPostEntityDiedEventFilter.html Online documentation}
11481
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaPostEntityDiedEventFilter.html Online documentation}
11486
11482
  */
11487
11483
  export type LuaPostEntityDiedEventFilter = TypePostEntityDiedEventFilter | OtherPostEntityDiedEventFilter
11488
11484
  /**
@@ -11584,7 +11580,7 @@ declare module "factorio:runtime" {
11584
11580
  * - `"name"`: {@link NameEntityMarkedForDeconstructionEventFilter}
11585
11581
  * - `"ghost_type"`: {@link GhostTypeEntityMarkedForDeconstructionEventFilter}
11586
11582
  * - `"ghost_name"`: {@link GhostNameEntityMarkedForDeconstructionEventFilter}
11587
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/LuaEntityMarkedForDeconstructionEventFilter.html Online documentation}
11583
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaEntityMarkedForDeconstructionEventFilter.html Online documentation}
11588
11584
  */
11589
11585
  export type LuaEntityMarkedForDeconstructionEventFilter =
11590
11586
  | TypeEntityMarkedForDeconstructionEventFilter
@@ -11689,7 +11685,7 @@ declare module "factorio:runtime" {
11689
11685
  * - `"name"`: {@link NamePlayerMinedEntityEventFilter}
11690
11686
  * - `"ghost_type"`: {@link GhostTypePlayerMinedEntityEventFilter}
11691
11687
  * - `"ghost_name"`: {@link GhostNamePlayerMinedEntityEventFilter}
11692
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/LuaPlayerMinedEntityEventFilter.html Online documentation}
11688
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaPlayerMinedEntityEventFilter.html Online documentation}
11693
11689
  */
11694
11690
  export type LuaPlayerMinedEntityEventFilter =
11695
11691
  | TypePlayerMinedEntityEventFilter
@@ -11869,7 +11865,7 @@ declare module "factorio:runtime" {
11869
11865
  * - `"final-damage-amount"`: {@link FinalDamageAmountEntityDamagedEventFilter}
11870
11866
  * - `"damage-type"`: {@link DamageTypeEntityDamagedEventFilter}
11871
11867
  * - `"final-health"`: {@link FinalHealthEntityDamagedEventFilter}
11872
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/LuaEntityDamagedEventFilter.html Online documentation}
11868
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaEntityDamagedEventFilter.html Online documentation}
11873
11869
  */
11874
11870
  export type LuaEntityDamagedEventFilter =
11875
11871
  | TypeEntityDamagedEventFilter
@@ -11883,7 +11879,7 @@ declare module "factorio:runtime" {
11883
11879
  | OtherEntityDamagedEventFilter
11884
11880
  /**
11885
11881
  * Write form of {@link LuaEntityDamagedEventFilter}, where some properties allow additional values as input compared to the read form.
11886
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/LuaEntityDamagedEventFilter.html Online documentation}
11882
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaEntityDamagedEventFilter.html Online documentation}
11887
11883
  */
11888
11884
  export type LuaEntityDamagedEventFilterWrite =
11889
11885
  | TypeEntityDamagedEventFilter
@@ -11992,7 +11988,7 @@ declare module "factorio:runtime" {
11992
11988
  * - `"name"`: {@link NameScriptRaisedReviveEventFilter}
11993
11989
  * - `"ghost_type"`: {@link GhostTypeScriptRaisedReviveEventFilter}
11994
11990
  * - `"ghost_name"`: {@link GhostNameScriptRaisedReviveEventFilter}
11995
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/LuaScriptRaisedReviveEventFilter.html Online documentation}
11991
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaScriptRaisedReviveEventFilter.html Online documentation}
11996
11992
  */
11997
11993
  export type LuaScriptRaisedReviveEventFilter =
11998
11994
  | TypeScriptRaisedReviveEventFilter
@@ -12097,7 +12093,7 @@ declare module "factorio:runtime" {
12097
12093
  * - `"name"`: {@link NameEntityDiedEventFilter}
12098
12094
  * - `"ghost_type"`: {@link GhostTypeEntityDiedEventFilter}
12099
12095
  * - `"ghost_name"`: {@link GhostNameEntityDiedEventFilter}
12100
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/LuaEntityDiedEventFilter.html Online documentation}
12096
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaEntityDiedEventFilter.html Online documentation}
12101
12097
  */
12102
12098
  export type LuaEntityDiedEventFilter =
12103
12099
  | TypeEntityDiedEventFilter
@@ -12202,7 +12198,7 @@ declare module "factorio:runtime" {
12202
12198
  * - `"name"`: {@link NamePreRobotMinedEntityEventFilter}
12203
12199
  * - `"ghost_type"`: {@link GhostTypePreRobotMinedEntityEventFilter}
12204
12200
  * - `"ghost_name"`: {@link GhostNamePreRobotMinedEntityEventFilter}
12205
- * @see {@link https://lua-api.factorio.com/2.0.28/concepts/LuaPreRobotMinedEntityEventFilter.html Online documentation}
12201
+ * @see {@link https://lua-api.factorio.com/2.0.29/concepts/LuaPreRobotMinedEntityEventFilter.html Online documentation}
12206
12202
  */
12207
12203
  export type LuaPreRobotMinedEntityEventFilter =
12208
12204
  | TypePreRobotMinedEntityEventFilter