typed-factorio 3.15.0 → 3.17.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -12,21 +12,21 @@ import type { VersionString } from "factorio:common"
12
12
  declare module "factorio:runtime" {
13
13
  /**
14
14
  * `math.huge` represents the maximum possible tick.
15
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/MapTick.html Online documentation}
15
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/MapTick.html Online documentation}
16
16
  */
17
17
  export type MapTick = uint64
18
18
  /**
19
19
  * The percentual increase of the attribute. A value of `0.6` means a 60% increase.
20
20
  *
21
21
  * Quality values are divided by 10 internally, allowing for one more decimal of precision.
22
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ModuleEffectValue.html Online documentation}
22
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ModuleEffectValue.html Online documentation}
23
23
  */
24
24
  export type ModuleEffectValue = float
25
25
  /**
26
26
  * @example
27
27
  * -- These are the effects of the vanilla Speed Module 3
28
28
  * {speed = 0.5, consumption = 0.7, quality = -0.25}
29
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ModuleEffects.html Online documentation}
29
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ModuleEffects.html Online documentation}
30
30
  */
31
31
  export interface ModuleEffects {
32
32
  readonly consumption?: ModuleEffectValue
@@ -50,7 +50,7 @@ declare module "factorio:runtime" {
50
50
  * - `"<="`: "lesser than or equal to"
51
51
  * - `"≠"`: "not equal to"
52
52
  * - `"!="`: "not equal to"
53
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ComparatorString.html Online documentation}
53
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ComparatorString.html Online documentation}
54
54
  */
55
55
  export type ComparatorString = "=" | ">" | "<" | "≥" | ">=" | "≤" | "<=" | "≠" | "!="
56
56
  export type ComparatorStringRead = "=" | ">" | "<" | "≥" | "≤" | "≠"
@@ -81,8 +81,8 @@ declare module "factorio:runtime" {
81
81
  *
82
82
  * The validity of a SpritePath can be verified at runtime using {@link LuaHelpers#is_valid_sprite_path LuaHelpers::is_valid_sprite_path}.
83
83
  *
84
- * {@link https://lua-api.factorio.com/2.0.35/concepts/SpritePath.html > The supported types are:}
85
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/SpritePath.html Online documentation}
84
+ * {@link https://lua-api.factorio.com/2.0.41/concepts/SpritePath.html > The supported types are:}
85
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/SpritePath.html Online documentation}
86
86
  */
87
87
  export type SpritePath = (string & { _?: never }) | `${SpriteType}${"/" | "."}${string}`
88
88
  /**
@@ -93,14 +93,14 @@ declare module "factorio:runtime" {
93
93
  * - {@link FluidID}: Used with fluid production statistics.
94
94
  * - {@link EntityWithQualityID}: Used with electric network, entity build count, and kill count statistics.
95
95
  * - {@link EntityID}: Used with pollution statistics.
96
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/FlowStatisticsID.html Online documentation}
96
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/FlowStatisticsID.html Online documentation}
97
97
  */
98
98
  export type FlowStatisticsID = ItemWithQualityID | FluidID | EntityWithQualityID | EntityID
99
99
  /**
100
100
  * @example
101
101
  * -- Most common collision mask of buildings:
102
102
  * collision_mask = {layers = {item = true, meltable = true, object = true, player = true, water_tile = true, is_object = true, is_lower_object = true}}
103
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/CollisionMask.html Online documentation}
103
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/CollisionMask.html Online documentation}
104
104
  */
105
105
  export interface CollisionMask {
106
106
  /**
@@ -228,7 +228,7 @@ declare module "factorio:runtime" {
228
228
  * - `"check-box"`
229
229
  * - `"switch"`
230
230
  * - `"label"`
231
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/SimulationWidgetType.html Online documentation}
231
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/SimulationWidgetType.html Online documentation}
232
232
  */
233
233
  export type SimulationWidgetType =
234
234
  | "signal-id"
@@ -354,7 +354,7 @@ declare module "factorio:runtime" {
354
354
  * - `"any-goal-accessible"`: The method will return {@link TrainPathFinderOneGoalResult}.
355
355
  * - `"all-goals-accessible"`: The method will return {@link TrainPathAllGoalsResult}.
356
356
  * - `"all-goals-penalties"`: The method will return {@link TrainPathAllGoalsResult} with `penalties`.
357
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/TrainPathRequestType.html Online documentation}
357
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/TrainPathRequestType.html Online documentation}
358
358
  */
359
359
  export type TrainPathRequestType = "path" | "any-goal-accessible" | "all-goals-accessible" | "all-goals-penalties"
360
360
  /**
@@ -363,7 +363,7 @@ declare module "factorio:runtime" {
363
363
  * - {@link RailEndGoal}
364
364
  * - {@link LuaRailEnd}
365
365
  * - {@link LuaEntity}: Only if it points at train-stop that is connected to a rail.
366
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/TrainPathFinderGoal.html Online documentation}
366
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/TrainPathFinderGoal.html Online documentation}
367
367
  */
368
368
  export type TrainPathFinderGoal = TrainStopGoal | RailEndGoal | LuaRailEnd | LuaEntity
369
369
  export interface TrainStopGoal {
@@ -455,6 +455,24 @@ declare module "factorio:runtime" {
455
455
  */
456
456
  readonly steps_count: uint
457
457
  }
458
+ export interface AddRecordData {
459
+ /**
460
+ * One of station or rail must be given.
461
+ */
462
+ readonly station?: string
463
+ readonly rail?: LuaEntity
464
+ /**
465
+ * When `rail` is given, this can be provided to further narrow down direction from which that rail should be approached.
466
+ */
467
+ readonly rail_direction?: defines.rail_direction
468
+ readonly wait_conditions?: readonly WaitConditionWrite[]
469
+ readonly temporary?: boolean
470
+ readonly allows_unloading?: boolean
471
+ /**
472
+ * If index is not given, the record is appended.
473
+ */
474
+ readonly index?: ScheduleRecordPosition
475
+ }
458
476
  export interface DetailedItemOnLine {
459
477
  readonly stack: LuaItemStack
460
478
  /**
@@ -468,7 +486,7 @@ declare module "factorio:runtime" {
468
486
  }
469
487
  /**
470
488
  * A single pipe connection for a given fluidbox.
471
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/PipeConnection.html Online documentation}
489
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/PipeConnection.html Online documentation}
472
490
  */
473
491
  export interface PipeConnection {
474
492
  readonly flow_direction: "input" | "output" | "input-output"
@@ -531,7 +549,7 @@ declare module "factorio:runtime" {
531
549
  * - {@link LuaEntityDiedEventFilter}
532
550
  * - {@link LuaPreRobotMinedEntityEventFilter}
533
551
  * @see EventFilterWrite
534
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/EventFilter.html Online documentation}
552
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/EventFilter.html Online documentation}
535
553
  */
536
554
  export type EventFilter =
537
555
  | LuaPrePlatformMinedEntityEventFilter[]
@@ -561,7 +579,7 @@ declare module "factorio:runtime" {
561
579
  | LuaPreRobotMinedEntityEventFilter[]
562
580
  /**
563
581
  * Write form of {@link EventFilter}, where some properties allow additional values as input compared to the read form.
564
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/EventFilter.html Online documentation}
582
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/EventFilter.html Online documentation}
565
583
  */
566
584
  export type EventFilterWrite =
567
585
  | readonly LuaPrePlatformMinedEntityEventFilter[]
@@ -612,7 +630,8 @@ declare module "factorio:runtime" {
612
630
  * - {@link LuaCustomChartTag}: Target type {@link defines.target_type.custom_chart_tag custom_chart_tag}; `useful_id` {@link LuaCustomChartTag#tag_number LuaCustomChartTag::tag_number}
613
631
  * - {@link LuaGuiElement}: Target type {@link defines.target_type.gui_element gui_element}; `useful_id` {@link LuaGuiElement#index LuaGuiElement::index}
614
632
  * - {@link LuaCargoHatch}: Target type {@link defines.target_type.cargo_hatch cargo_hatch}
615
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/RegistrationTarget.html Online documentation}
633
+ * - {@link LuaSchedule}: Target type {@link defines.target_type.schedule schedule}
634
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/RegistrationTarget.html Online documentation}
616
635
  */
617
636
  export type RegistrationTarget =
618
637
  | LuaEntity
@@ -634,6 +653,7 @@ declare module "factorio:runtime" {
634
653
  | LuaCustomChartTag
635
654
  | LuaGuiElement
636
655
  | LuaCargoHatch
656
+ | LuaSchedule
637
657
  /**
638
658
  * Common attributes to all variants of {@link UndoRedoAction}.
639
659
  */
@@ -814,7 +834,7 @@ declare module "factorio:runtime" {
814
834
  * - `"wire-removed"`: {@link WireRemovedUndoRedoAction}
815
835
  * - `"rotated-entity"`: {@link RotatedEntityUndoRedoAction}
816
836
  * - `"copy-entity-settings"`: {@link CopyEntitySettingsUndoRedoAction}
817
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/UndoRedoAction.html Online documentation}
837
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/UndoRedoAction.html Online documentation}
818
838
  */
819
839
  export type UndoRedoAction =
820
840
  | BuiltEntityUndoRedoAction
@@ -846,7 +866,7 @@ declare module "factorio:runtime" {
846
866
  * - `"weapon"`
847
867
  * - `"explosion"`
848
868
  * - `"enemy"`
849
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/SoundType.html Online documentation}
869
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/SoundType.html Online documentation}
850
870
  */
851
871
  export type SoundType =
852
872
  | "game-effect"
@@ -929,7 +949,7 @@ declare module "factorio:runtime" {
929
949
  * - `"controllable-remove"`
930
950
  * - `"entity-ghost"`: Selects entities that are `entity-ghost`s.
931
951
  * - `"tile-ghost"`: Selects entities that are `tile-ghost`s.
932
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/SelectionModeFlags.html Online documentation}
952
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/SelectionModeFlags.html Online documentation}
933
953
  */
934
954
  export interface SelectionModeFlags {
935
955
  /**
@@ -1048,7 +1068,7 @@ declare module "factorio:runtime" {
1048
1068
  * A set of flags. Active flags are in the dictionary as `true`, while inactive flags aren't present at all.
1049
1069
  *
1050
1070
  * By default, none of these flags are set.
1051
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ItemPrototypeFlags.html Online documentation}
1071
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ItemPrototypeFlags.html Online documentation}
1052
1072
  */
1053
1073
  export type ItemPrototypeFlags = {
1054
1074
  readonly [T in ItemPrototypeFlag]?: true
@@ -1069,7 +1089,7 @@ declare module "factorio:runtime" {
1069
1089
  * - `"spawnable"`: Allows the item to be spawned by a quickbar shortcut or custom input.
1070
1090
  * - `"spoil-result"`
1071
1091
  * - `"ignore-spoil-time-modifier"`: Controls whether the spoil time ignores the spoil time modifier in the {@link DifficultySettings}.
1072
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ItemPrototypeFlag.html Online documentation}
1092
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ItemPrototypeFlag.html Online documentation}
1073
1093
  */
1074
1094
  export type ItemPrototypeFlag =
1075
1095
  | "draw-logistic-overlay"
@@ -1089,7 +1109,7 @@ declare module "factorio:runtime" {
1089
1109
  * - `"none"`
1090
1110
  * - `"whitelist"`
1091
1111
  * - `"blacklist"`
1092
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/PrototypeFilterMode.html Online documentation}
1112
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/PrototypeFilterMode.html Online documentation}
1093
1113
  */
1094
1114
  export type PrototypeFilterMode = "none" | "whitelist" | "blacklist"
1095
1115
  export interface PipeConnectionDefinition {
@@ -1114,7 +1134,7 @@ declare module "factorio:runtime" {
1114
1134
  * The name of a {@link LuaCollisionLayerPrototype}.
1115
1135
  * @example
1116
1136
  * "is_lower_object"
1117
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/CollisionLayerID.html Online documentation}
1137
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/CollisionLayerID.html Online documentation}
1118
1138
  */
1119
1139
  export type CollisionLayerID = string
1120
1140
  export interface ItemIDFilter {
@@ -1164,7 +1184,7 @@ declare module "factorio:runtime" {
1164
1184
  * - {@link SpaceLocationPrototypeFilter}
1165
1185
  * - {@link FluidPrototypeFilter}
1166
1186
  * @see PrototypeFilterWrite
1167
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/PrototypeFilter.html Online documentation}
1187
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/PrototypeFilter.html Online documentation}
1168
1188
  */
1169
1189
  export type PrototypeFilter =
1170
1190
  | ModSettingPrototypeFilter[]
@@ -1181,7 +1201,7 @@ declare module "factorio:runtime" {
1181
1201
  | FluidPrototypeFilter[]
1182
1202
  /**
1183
1203
  * Write form of {@link PrototypeFilter}, where some properties allow additional values as input compared to the read form.
1184
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/PrototypeFilter.html Online documentation}
1204
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/PrototypeFilter.html Online documentation}
1185
1205
  */
1186
1206
  export type PrototypeFilterWrite =
1187
1207
  | readonly ModSettingPrototypeFilter[]
@@ -1198,7 +1218,7 @@ declare module "factorio:runtime" {
1198
1218
  | readonly FluidPrototypeFilterWrite[]
1199
1219
  /**
1200
1220
  * @see DisplayPanelMessageDefinitionWrite
1201
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/DisplayPanelMessageDefinition.html Online documentation}
1221
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/DisplayPanelMessageDefinition.html Online documentation}
1202
1222
  */
1203
1223
  export interface DisplayPanelMessageDefinition {
1204
1224
  /**
@@ -1216,7 +1236,7 @@ declare module "factorio:runtime" {
1216
1236
  }
1217
1237
  /**
1218
1238
  * Write form of {@link DisplayPanelMessageDefinition}, where some properties allow additional values as input compared to the read form.
1219
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/DisplayPanelMessageDefinition.html Online documentation}
1239
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/DisplayPanelMessageDefinition.html Online documentation}
1220
1240
  */
1221
1241
  export interface DisplayPanelMessageDefinitionWrite {
1222
1242
  /**
@@ -1242,7 +1262,7 @@ declare module "factorio:runtime" {
1242
1262
  * - `"space-location"`
1243
1263
  * - `"asteroid-chunk"`
1244
1264
  * - `"quality"`
1245
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/SignalIDType.html Online documentation}
1265
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/SignalIDType.html Online documentation}
1246
1266
  */
1247
1267
  export type SignalIDType =
1248
1268
  | "item"
@@ -1255,7 +1275,7 @@ declare module "factorio:runtime" {
1255
1275
  | "quality"
1256
1276
  /**
1257
1277
  * @see SignalIDWrite
1258
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/SignalID.html Online documentation}
1278
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/SignalID.html Online documentation}
1259
1279
  */
1260
1280
  export interface SignalID {
1261
1281
  /**
@@ -1273,7 +1293,7 @@ declare module "factorio:runtime" {
1273
1293
  }
1274
1294
  /**
1275
1295
  * Write form of {@link SignalID}, where some properties allow additional values as input compared to the read form.
1276
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/SignalID.html Online documentation}
1296
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/SignalID.html Online documentation}
1277
1297
  */
1278
1298
  export interface SignalIDWrite {
1279
1299
  /**
@@ -1479,7 +1499,7 @@ declare module "factorio:runtime" {
1479
1499
  * - `"play-next-track"`
1480
1500
  * - `"play-previous-track"`
1481
1501
  * - `"pause-resume-music"`
1482
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/LinkedGameControl.html Online documentation}
1502
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LinkedGameControl.html Online documentation}
1483
1503
  */
1484
1504
  export type LinkedGameControl =
1485
1505
  | "move-up"
@@ -1730,7 +1750,7 @@ declare module "factorio:runtime" {
1730
1750
  * - `"create-ghost-on-entity-death"`
1731
1751
  * - `"belt-stack-size-bonus"`
1732
1752
  * - `"vehicle-logistics"`
1733
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ModifierType.html Online documentation}
1753
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ModifierType.html Online documentation}
1734
1754
  */
1735
1755
  export type ModifierType =
1736
1756
  | "inserter-stack-size-bonus"
@@ -1849,7 +1869,7 @@ declare module "factorio:runtime" {
1849
1869
  * - `"capture-spawner"`: {@link CaptureSpawnerResearchTrigger}
1850
1870
  * - `"build-entity"`: {@link BuildEntityResearchTrigger}
1851
1871
  * - `"send-item-to-orbit"`: {@link SendItemToOrbitResearchTrigger}
1852
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ResearchTrigger.html Online documentation}
1872
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ResearchTrigger.html Online documentation}
1853
1873
  */
1854
1874
  export type ResearchTrigger =
1855
1875
  | CraftItemResearchTrigger
@@ -1863,7 +1883,7 @@ declare module "factorio:runtime" {
1863
1883
  * A set of flags. Active flags are in the dictionary as `true`, while inactive flags aren't present at all.
1864
1884
  *
1865
1885
  * By default, none of these flags are set.
1866
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/EntityPrototypeFlags.html Online documentation}
1886
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/EntityPrototypeFlags.html Online documentation}
1867
1887
  */
1868
1888
  export type EntityPrototypeFlags = {
1869
1889
  readonly [T in EntityPrototypeFlag]?: true
@@ -1898,7 +1918,7 @@ declare module "factorio:runtime" {
1898
1918
  * - `"building-direction-16-way"`
1899
1919
  * - `"snap-to-rail-support-spot"`
1900
1920
  * - `"not-in-made-in"`: Prevents the entity from being shown in the "made in" list in recipe tooltips.
1901
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/EntityPrototypeFlag.html Online documentation}
1921
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/EntityPrototypeFlag.html Online documentation}
1902
1922
  */
1903
1923
  export type EntityPrototypeFlag =
1904
1924
  | "not-rotatable"
@@ -1968,7 +1988,7 @@ declare module "factorio:runtime" {
1968
1988
  * - `"local"`: The sound can be heard within the audible range around the speaker.
1969
1989
  * - `"surface"`: The sound can be heard anywhere on the speaker's surface.
1970
1990
  * - `"global"`: The sound can be heard everywhere.
1971
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ProgrammableSpeakerPlaybackMode.html Online documentation}
1991
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ProgrammableSpeakerPlaybackMode.html Online documentation}
1972
1992
  */
1973
1993
  export type ProgrammableSpeakerPlaybackMode = "local" | "surface" | "global"
1974
1994
  /**
@@ -1993,7 +2013,7 @@ declare module "factorio:runtime" {
1993
2013
  * - `"none-to-south"`
1994
2014
  * - `"south-to-none"`
1995
2015
  * - `"none-to-north"`
1996
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/CliffOrientation.html Online documentation}
2016
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/CliffOrientation.html Online documentation}
1997
2017
  */
1998
2018
  export type CliffOrientation =
1999
2019
  | "west-to-east"
@@ -2019,7 +2039,7 @@ declare module "factorio:runtime" {
2019
2039
  /**
2020
2040
  * Defines an item type that a blueprint entity will request.
2021
2041
  * @see BlueprintInsertPlanWrite
2022
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/BlueprintInsertPlan.html Online documentation}
2042
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BlueprintInsertPlan.html Online documentation}
2023
2043
  */
2024
2044
  export interface BlueprintInsertPlan {
2025
2045
  /**
@@ -2033,7 +2053,7 @@ declare module "factorio:runtime" {
2033
2053
  }
2034
2054
  /**
2035
2055
  * Write form of {@link BlueprintInsertPlan}, where some properties allow additional values as input compared to the read form.
2036
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/BlueprintInsertPlan.html Online documentation}
2056
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BlueprintInsertPlan.html Online documentation}
2037
2057
  */
2038
2058
  export interface BlueprintInsertPlanWrite {
2039
2059
  /**
@@ -2061,7 +2081,7 @@ declare module "factorio:runtime" {
2061
2081
  }
2062
2082
  /**
2063
2083
  * A single offer on a market entity.
2064
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/Offer.html Online documentation}
2084
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/Offer.html Online documentation}
2065
2085
  */
2066
2086
  export interface Offer {
2067
2087
  /**
@@ -2076,7 +2096,7 @@ declare module "factorio:runtime" {
2076
2096
  /**
2077
2097
  * An item filter may be specified in two ways, either as a string which is an item prototype name or as a table.
2078
2098
  * @see ItemFilterWrite
2079
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ItemFilter.html Online documentation}
2099
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ItemFilter.html Online documentation}
2080
2100
  */
2081
2101
  export type ItemFilter =
2082
2102
  | {
@@ -2096,7 +2116,7 @@ declare module "factorio:runtime" {
2096
2116
  | string
2097
2117
  /**
2098
2118
  * Write form of {@link ItemFilter}, where some properties allow additional values as input compared to the read form.
2099
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ItemFilter.html Online documentation}
2119
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ItemFilter.html Online documentation}
2100
2120
  */
2101
2121
  export type ItemFilterWrite =
2102
2122
  | {
@@ -2114,52 +2134,6 @@ declare module "factorio:runtime" {
2114
2134
  readonly comparator?: ComparatorString
2115
2135
  }
2116
2136
  | string
2117
- /**
2118
- * @see ScheduleRecordWrite
2119
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ScheduleRecord.html Online documentation}
2120
- */
2121
- export interface ScheduleRecord {
2122
- /**
2123
- * Name of the station.
2124
- */
2125
- readonly station?: string
2126
- /**
2127
- * Rail to path to. Ignored if `station` is present.
2128
- */
2129
- readonly rail?: LuaEntity
2130
- /**
2131
- * When a train is allowed to reach rail target from any direction it will be `nil`. If rail has to be reached from specific direction, this value allows to choose the direction. This value corresponds to {@link LuaEntity#connected_rail_direction LuaEntity::connected_rail_direction} of a TrainStop.
2132
- */
2133
- readonly rail_direction?: defines.rail_direction
2134
- readonly wait_conditions?: WaitCondition[]
2135
- /**
2136
- * Only present when the station is temporary, the value is then always `true`.
2137
- */
2138
- readonly temporary?: boolean
2139
- }
2140
- /**
2141
- * Write form of {@link ScheduleRecord}, where some properties allow additional values as input compared to the read form.
2142
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ScheduleRecord.html Online documentation}
2143
- */
2144
- export interface ScheduleRecordWrite {
2145
- /**
2146
- * Name of the station.
2147
- */
2148
- readonly station?: string
2149
- /**
2150
- * Rail to path to. Ignored if `station` is present.
2151
- */
2152
- readonly rail?: LuaEntity
2153
- /**
2154
- * When a train is allowed to reach rail target from any direction it will be `nil`. If rail has to be reached from specific direction, this value allows to choose the direction. This value corresponds to {@link LuaEntity#connected_rail_direction LuaEntity::connected_rail_direction} of a TrainStop.
2155
- */
2156
- readonly rail_direction?: defines.rail_direction
2157
- readonly wait_conditions?: readonly WaitConditionWrite[]
2158
- /**
2159
- * Only present when the station is temporary, the value is then always `true`.
2160
- */
2161
- readonly temporary?: boolean
2162
- }
2163
2137
  /**
2164
2138
  * Common attributes to all variants of {@link GuiArrowSpecification}.
2165
2139
  */
@@ -2225,7 +2199,7 @@ declare module "factorio:runtime" {
2225
2199
  * - `"position"`: {@link PositionGuiArrowSpecification}
2226
2200
  * - `"crafting_queue"`: {@link CraftingQueueGuiArrowSpecification}
2227
2201
  * - `"item_stack"`: {@link ItemStackGuiArrowSpecification}
2228
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/GuiArrowSpecification.html Online documentation}
2202
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GuiArrowSpecification.html Online documentation}
2229
2203
  */
2230
2204
  export type GuiArrowSpecification =
2231
2205
  | EntityGuiArrowSpecification
@@ -2238,7 +2212,7 @@ declare module "factorio:runtime" {
2238
2212
  *
2239
2213
  * If this is specified as a three-element array then the array items are x, y and z, in that order.
2240
2214
  * @see Vector3DArray
2241
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/Vector3D.html Online documentation}
2215
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/Vector3D.html Online documentation}
2242
2216
  */
2243
2217
  export interface Vector3D {
2244
2218
  readonly x: float
@@ -2248,7 +2222,7 @@ declare module "factorio:runtime" {
2248
2222
  /**
2249
2223
  * Array form of {@link Vector3D}.
2250
2224
  * @see Vector3D
2251
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/Vector3D.html Online documentation}
2225
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/Vector3D.html Online documentation}
2252
2226
  */
2253
2227
  export type Vector3DArray = readonly [float, float, float]
2254
2228
  export interface ItemWithQualityCounts {
@@ -2281,7 +2255,7 @@ declare module "factorio:runtime" {
2281
2255
  }
2282
2256
  /**
2283
2257
  * @see TrainScheduleWrite
2284
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/TrainSchedule.html Online documentation}
2258
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/TrainSchedule.html Online documentation}
2285
2259
  */
2286
2260
  export interface TrainSchedule {
2287
2261
  /**
@@ -2292,7 +2266,7 @@ declare module "factorio:runtime" {
2292
2266
  }
2293
2267
  /**
2294
2268
  * Write form of {@link TrainSchedule}, where some properties allow additional values as input compared to the read form.
2295
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/TrainSchedule.html Online documentation}
2269
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/TrainSchedule.html Online documentation}
2296
2270
  */
2297
2271
  export interface TrainScheduleWrite {
2298
2272
  /**
@@ -2303,7 +2277,7 @@ declare module "factorio:runtime" {
2303
2277
  }
2304
2278
  /**
2305
2279
  * @see PlatformScheduleWrite
2306
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/PlatformSchedule.html Online documentation}
2280
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/PlatformSchedule.html Online documentation}
2307
2281
  */
2308
2282
  export interface PlatformSchedule {
2309
2283
  /**
@@ -2314,7 +2288,7 @@ declare module "factorio:runtime" {
2314
2288
  }
2315
2289
  /**
2316
2290
  * Write form of {@link PlatformSchedule}, where some properties allow additional values as input compared to the read form.
2317
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/PlatformSchedule.html Online documentation}
2291
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/PlatformSchedule.html Online documentation}
2318
2292
  */
2319
2293
  export interface PlatformScheduleWrite {
2320
2294
  /**
@@ -2331,7 +2305,7 @@ declare module "factorio:runtime" {
2331
2305
  }
2332
2306
  /**
2333
2307
  * A recipe prototype with optional quality specification.
2334
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/RecipeIDAndQualityIDPair.html Online documentation}
2308
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/RecipeIDAndQualityIDPair.html Online documentation}
2335
2309
  */
2336
2310
  export interface RecipeIDAndQualityIDPair {
2337
2311
  /**
@@ -2380,7 +2354,7 @@ declare module "factorio:runtime" {
2380
2354
  * - `string`: Name of the force, same as {@link LuaForce#name LuaForce::name}.
2381
2355
  * - {@link uint8}: Index of the force, same as {@link LuaForce#index LuaForce::index}.
2382
2356
  * - {@link LuaForce}: A reference to {@link LuaForce} may be passed directly.
2383
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ForceID.html Online documentation}
2357
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ForceID.html Online documentation}
2384
2358
  */
2385
2359
  export type ForceID = string | uint8 | LuaForce
2386
2360
  /**
@@ -2390,7 +2364,7 @@ declare module "factorio:runtime" {
2390
2364
  * - `string`: The fluid name.
2391
2365
  * - {@link LuaFluidPrototype}: The fluid prototype.
2392
2366
  * - {@link Fluid}: The fluid.
2393
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/FluidID.html Online documentation}
2367
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/FluidID.html Online documentation}
2394
2368
  */
2395
2369
  export type FluidID = string | LuaFluidPrototype | Fluid
2396
2370
  /**
@@ -2401,12 +2375,12 @@ declare module "factorio:runtime" {
2401
2375
  * - {@link LuaEntityPrototype}: The entity prototype. Normal quality will be used.
2402
2376
  * - `string`: The prototype name. Normal quality will be used.
2403
2377
  * - {@link EntityIDAndQualityIDPair}: A table of entity prototype and quality.
2404
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/EntityWithQualityID.html Online documentation}
2378
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/EntityWithQualityID.html Online documentation}
2405
2379
  */
2406
2380
  export type EntityWithQualityID = LuaEntity | LuaEntityPrototype | string | EntityIDAndQualityIDPair
2407
2381
  /**
2408
2382
  * An entity prototype with optional quality specification.
2409
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/EntityIDAndQualityIDPair.html Online documentation}
2383
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/EntityIDAndQualityIDPair.html Online documentation}
2410
2384
  */
2411
2385
  export interface EntityIDAndQualityIDPair {
2412
2386
  /**
@@ -2426,13 +2400,13 @@ declare module "factorio:runtime" {
2426
2400
  * - {@link LuaItemPrototype}: The item prototype. Normal quality will be used.
2427
2401
  * - `string`: The prototype name. Normal quality will be used.
2428
2402
  * - {@link ItemIDAndQualityIDPair}: A table of entity prototype and quality.
2429
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ItemWithQualityID.html Online documentation}
2403
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ItemWithQualityID.html Online documentation}
2430
2404
  */
2431
2405
  export type ItemWithQualityID = LuaItemStack | LuaItemPrototype | string | ItemIDAndQualityIDPairWrite
2432
2406
  /**
2433
2407
  * An item prototype with optional quality specification.
2434
2408
  * @see ItemIDAndQualityIDPairWrite
2435
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ItemIDAndQualityIDPair.html Online documentation}
2409
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ItemIDAndQualityIDPair.html Online documentation}
2436
2410
  */
2437
2411
  export interface ItemIDAndQualityIDPair {
2438
2412
  /**
@@ -2446,7 +2420,7 @@ declare module "factorio:runtime" {
2446
2420
  }
2447
2421
  /**
2448
2422
  * Write form of {@link ItemIDAndQualityIDPair}, where some properties allow additional values as input compared to the read form.
2449
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ItemIDAndQualityIDPair.html Online documentation}
2423
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ItemIDAndQualityIDPair.html Online documentation}
2450
2424
  */
2451
2425
  export interface ItemIDAndQualityIDPairWrite {
2452
2426
  /**
@@ -2466,7 +2440,7 @@ declare module "factorio:runtime" {
2466
2440
  * - {@link LuaItemStack}: Non empty item stack.
2467
2441
  * - {@link LuaItem}: The item.
2468
2442
  * - `string`: The prototype name.
2469
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ItemID.html Online documentation}
2443
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ItemID.html Online documentation}
2470
2444
  */
2471
2445
  export type ItemID = LuaItemPrototype | LuaItemStack | LuaItem | string
2472
2446
  /**
@@ -2476,7 +2450,7 @@ declare module "factorio:runtime" {
2476
2450
  * - {@link LuaEntityPrototype}: The entity prototype.
2477
2451
  * - {@link LuaEntity}: The entity.
2478
2452
  * - `string`: The prototype name.
2479
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/EntityID.html Online documentation}
2453
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/EntityID.html Online documentation}
2480
2454
  */
2481
2455
  export type EntityID = LuaEntityPrototype | LuaEntity | string
2482
2456
  /**
@@ -2486,7 +2460,7 @@ declare module "factorio:runtime" {
2486
2460
  * - {@link LuaTechnologyPrototype}: The technology prototype.
2487
2461
  * - {@link LuaTechnology}: Instance of the technology.
2488
2462
  * - `string`: The prototype name.
2489
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/TechnologyID.html Online documentation}
2463
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/TechnologyID.html Online documentation}
2490
2464
  */
2491
2465
  export type TechnologyID = LuaTechnologyPrototype | LuaTechnology | string
2492
2466
  /**
@@ -2495,7 +2469,7 @@ declare module "factorio:runtime" {
2495
2469
  * ## Union members
2496
2470
  * - {@link LuaParticlePrototype}: The particle prototype.
2497
2471
  * - `string`: The prototype name.
2498
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ParticleID.html Online documentation}
2472
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ParticleID.html Online documentation}
2499
2473
  */
2500
2474
  export type ParticleID = LuaParticlePrototype | string
2501
2475
  /**
@@ -2504,7 +2478,7 @@ declare module "factorio:runtime" {
2504
2478
  * ## Union members
2505
2479
  * - {@link LuaDamagePrototype}: The damage type prototype.
2506
2480
  * - `string`: The prototype name.
2507
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/DamageTypeID.html Online documentation}
2481
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/DamageTypeID.html Online documentation}
2508
2482
  */
2509
2483
  export type DamageTypeID = LuaDamagePrototype | string
2510
2484
  /**
@@ -2513,7 +2487,7 @@ declare module "factorio:runtime" {
2513
2487
  * ## Union members
2514
2488
  * - {@link LuaTrivialSmokePrototype}: The trivial smoke prototype.
2515
2489
  * - `string`: The prototype name.
2516
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/TrivialSmokeID.html Online documentation}
2490
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/TrivialSmokeID.html Online documentation}
2517
2491
  */
2518
2492
  export type TrivialSmokeID = LuaTrivialSmokePrototype | string
2519
2493
  /**
@@ -2525,7 +2499,7 @@ declare module "factorio:runtime" {
2525
2499
  * - `"left"`
2526
2500
  * - `"right"`
2527
2501
  * - `"center"`
2528
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/TextAlign.html Online documentation}
2502
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/TextAlign.html Online documentation}
2529
2503
  */
2530
2504
  export type TextAlign = "left" | "right" | "center"
2531
2505
  /**
@@ -2538,7 +2512,7 @@ declare module "factorio:runtime" {
2538
2512
  * - `"middle"`
2539
2513
  * - `"baseline"`
2540
2514
  * - `"bottom"`
2541
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/VerticalTextAlign.html Online documentation}
2515
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/VerticalTextAlign.html Online documentation}
2542
2516
  */
2543
2517
  export type VerticalTextAlign = "top" | "middle" | "baseline" | "bottom"
2544
2518
  /**
@@ -2547,7 +2521,7 @@ declare module "factorio:runtime" {
2547
2521
  * ## Union members
2548
2522
  * - {@link LuaQualityPrototype}: The quality prototype.
2549
2523
  * - `string`: The prototype name.
2550
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/QualityID.html Online documentation}
2524
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/QualityID.html Online documentation}
2551
2525
  */
2552
2526
  export type QualityID = LuaQualityPrototype | string
2553
2527
  /**
@@ -2557,7 +2531,7 @@ declare module "factorio:runtime" {
2557
2531
  * - {@link LuaRecipePrototype}: By recipe prototype.
2558
2532
  * - {@link LuaRecipe}: By instance of recipe.
2559
2533
  * - `string`: By name of the recipe prototype.
2560
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/RecipeID.html Online documentation}
2534
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/RecipeID.html Online documentation}
2561
2535
  */
2562
2536
  export type RecipeID = LuaRecipePrototype | LuaRecipe | string
2563
2537
  /**
@@ -2567,7 +2541,7 @@ declare module "factorio:runtime" {
2567
2541
  * - {@link LuaTilePrototype}: By tile prototype.
2568
2542
  * - {@link LuaTile}: By instance of tile.
2569
2543
  * - `string`: By name of the tile prototype.
2570
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/TileID.html Online documentation}
2544
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/TileID.html Online documentation}
2571
2545
  */
2572
2546
  export type TileID = LuaTilePrototype | LuaTile | string
2573
2547
  export interface Fluid {
@@ -2591,7 +2565,7 @@ declare module "factorio:runtime" {
2591
2565
  * - {@link LuaEquipmentPrototype}: The equipment prototype.
2592
2566
  * - {@link LuaEquipment}: The equipment.
2593
2567
  * - `string`: The prototype name.
2594
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/EquipmentID.html Online documentation}
2568
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/EquipmentID.html Online documentation}
2595
2569
  */
2596
2570
  export type EquipmentID = LuaEquipmentPrototype | LuaEquipment | string
2597
2571
  /**
@@ -2602,12 +2576,12 @@ declare module "factorio:runtime" {
2602
2576
  * - {@link LuaEquipment}: The equipment. Both prototype and quality of the provided equipment will be used.
2603
2577
  * - `string`: The prototype name. Normal quality will be used.
2604
2578
  * - {@link EquipmentIDAndQualityIDPair}: A table of equipment prototype and quality.
2605
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/EquipmentWithQualityID.html Online documentation}
2579
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/EquipmentWithQualityID.html Online documentation}
2606
2580
  */
2607
2581
  export type EquipmentWithQualityID = LuaEquipmentPrototype | LuaEquipment | string | EquipmentIDAndQualityIDPair
2608
2582
  /**
2609
2583
  * An equipment prototype with optional quality specification.
2610
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/EquipmentIDAndQualityIDPair.html Online documentation}
2584
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/EquipmentIDAndQualityIDPair.html Online documentation}
2611
2585
  */
2612
2586
  export interface EquipmentIDAndQualityIDPair {
2613
2587
  /**
@@ -2628,7 +2602,7 @@ declare module "factorio:runtime" {
2628
2602
  * @example
2629
2603
  * -- Shorthand
2630
2604
  * {{-2, -3}, {5, 8}}
2631
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/BoundingBox.html Online documentation}
2605
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BoundingBox.html Online documentation}
2632
2606
  */
2633
2607
  export interface BoundingBox {
2634
2608
  readonly left_top: MapPosition
@@ -2638,7 +2612,7 @@ declare module "factorio:runtime" {
2638
2612
  /**
2639
2613
  * Array form of {@link BoundingBox}.
2640
2614
  * @see BoundingBox
2641
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/BoundingBox.html Online documentation}
2615
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BoundingBox.html Online documentation}
2642
2616
  */
2643
2617
  export type BoundingBoxArray = readonly [MapPosition | MapPositionArray, MapPosition | MapPositionArray]
2644
2618
  export interface BoundingBoxWrite {
@@ -2651,7 +2625,7 @@ declare module "factorio:runtime" {
2651
2625
  *
2652
2626
  * ## Union members
2653
2627
  * - {@link LuaSpacePlatform}
2654
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/SpacePlatformIdentification.html Online documentation}
2628
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/SpacePlatformIdentification.html Online documentation}
2655
2629
  */
2656
2630
  export type SpacePlatformIdentification = LuaSpacePlatform
2657
2631
  /**
@@ -2661,12 +2635,12 @@ declare module "factorio:runtime" {
2661
2635
  * - {@link LuaForce}[]: Array of many forces.
2662
2636
  * - {@link LuaForce}: A single force.
2663
2637
  * @see ForceSetWrite
2664
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ForceSet.html Online documentation}
2638
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ForceSet.html Online documentation}
2665
2639
  */
2666
2640
  export type ForceSet = LuaForce[] | LuaForce
2667
2641
  /**
2668
2642
  * Write form of {@link ForceSet}, where some properties allow additional values as input compared to the read form.
2669
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ForceSet.html Online documentation}
2643
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ForceSet.html Online documentation}
2670
2644
  */
2671
2645
  export type ForceSetWrite = readonly ForceID[] | ForceID
2672
2646
  /**
@@ -2675,7 +2649,7 @@ declare module "factorio:runtime" {
2675
2649
  * ## Union members
2676
2650
  * - {@link LuaDecorativePrototype}: The decorative prototype.
2677
2651
  * - `string`: The prototype name.
2678
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/DecorativeID.html Online documentation}
2652
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/DecorativeID.html Online documentation}
2679
2653
  */
2680
2654
  export type DecorativeID = LuaDecorativePrototype | string
2681
2655
  /**
@@ -2684,7 +2658,7 @@ declare module "factorio:runtime" {
2684
2658
  * ## Union members
2685
2659
  * - {@link LuaAsteroidChunkPrototype}: The asteroid chunk prototype.
2686
2660
  * - `string`: The prototype name.
2687
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/AsteroidChunkID.html Online documentation}
2661
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/AsteroidChunkID.html Online documentation}
2688
2662
  */
2689
2663
  export type AsteroidChunkID = LuaAsteroidChunkPrototype | string
2690
2664
  /**
@@ -2693,13 +2667,13 @@ declare module "factorio:runtime" {
2693
2667
  * ## Union members
2694
2668
  * - {@link LuaSpaceLocationPrototype}: The space location prototype.
2695
2669
  * - `string`: The prototype name.
2696
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/SpaceLocationID.html Online documentation}
2670
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/SpaceLocationID.html Online documentation}
2697
2671
  */
2698
2672
  export type SpaceLocationID = LuaSpaceLocationPrototype | string
2699
2673
  /**
2700
2674
  * A signal filter may be specified in two ways, either as a string which is a virtual signal name or item prototype name or as a table.
2701
2675
  * @see SignalFilterWrite
2702
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/SignalFilter.html Online documentation}
2676
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/SignalFilter.html Online documentation}
2703
2677
  */
2704
2678
  export type SignalFilter =
2705
2679
  | {
@@ -2723,7 +2697,7 @@ declare module "factorio:runtime" {
2723
2697
  | string
2724
2698
  /**
2725
2699
  * Write form of {@link SignalFilter}, where some properties allow additional values as input compared to the read form.
2726
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/SignalFilter.html Online documentation}
2700
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/SignalFilter.html Online documentation}
2727
2701
  */
2728
2702
  export type SignalFilterWrite =
2729
2703
  | {
@@ -2747,7 +2721,7 @@ declare module "factorio:runtime" {
2747
2721
  | string
2748
2722
  /**
2749
2723
  * @see LogisticFilterWrite
2750
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/LogisticFilter.html Online documentation}
2724
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LogisticFilter.html Online documentation}
2751
2725
  */
2752
2726
  export interface LogisticFilter {
2753
2727
  /**
@@ -2773,7 +2747,7 @@ declare module "factorio:runtime" {
2773
2747
  }
2774
2748
  /**
2775
2749
  * Write form of {@link LogisticFilter}, where some properties allow additional values as input compared to the read form.
2776
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/LogisticFilter.html Online documentation}
2750
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LogisticFilter.html Online documentation}
2777
2751
  */
2778
2752
  export interface LogisticFilterWrite {
2779
2753
  /**
@@ -2829,23 +2803,23 @@ declare module "factorio:runtime" {
2829
2803
  * ## Union members
2830
2804
  * - {@link LuaSurfacePropertyPrototype}: The surface property prototype.
2831
2805
  * - `string`: The prototype name.
2832
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/SurfacePropertyID.html Online documentation}
2806
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/SurfacePropertyID.html Online documentation}
2833
2807
  */
2834
2808
  export type SurfacePropertyID = LuaSurfacePropertyPrototype | string
2835
2809
  /**
2836
2810
  * When writing it is possible to give LuaEntity or MapPosition directly. However, reading always returns the full ScriptRenderTargetTable.
2837
2811
  * @see ScriptRenderTargetWrite
2838
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ScriptRenderTarget.html Online documentation}
2812
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ScriptRenderTarget.html Online documentation}
2839
2813
  */
2840
2814
  export type ScriptRenderTarget = LuaEntity | MapPosition | ScriptRenderTargetTable
2841
2815
  /**
2842
2816
  * Write form of {@link ScriptRenderTarget}, where some properties allow additional values as input compared to the read form.
2843
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ScriptRenderTarget.html Online documentation}
2817
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ScriptRenderTarget.html Online documentation}
2844
2818
  */
2845
2819
  export type ScriptRenderTargetWrite = LuaEntity | (MapPosition | MapPositionArray) | ScriptRenderTargetTableWrite
2846
2820
  /**
2847
2821
  * @see ScriptRenderTargetTableWrite
2848
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ScriptRenderTargetTable.html Online documentation}
2822
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ScriptRenderTargetTable.html Online documentation}
2849
2823
  */
2850
2824
  export interface ScriptRenderTargetTable {
2851
2825
  readonly entity?: LuaEntity
@@ -2860,7 +2834,7 @@ declare module "factorio:runtime" {
2860
2834
  }
2861
2835
  /**
2862
2836
  * Write form of {@link ScriptRenderTargetTable}, where some properties allow additional values as input compared to the read form.
2863
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ScriptRenderTargetTable.html Online documentation}
2837
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ScriptRenderTargetTable.html Online documentation}
2864
2838
  */
2865
2839
  export interface ScriptRenderTargetTableWrite {
2866
2840
  readonly entity?: LuaEntity
@@ -2875,7 +2849,7 @@ declare module "factorio:runtime" {
2875
2849
  }
2876
2850
  /**
2877
2851
  * An item filter may be specified in two ways, either as a string which is a quality prototype name or as a table.
2878
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/QualityCondition.html Online documentation}
2852
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/QualityCondition.html Online documentation}
2879
2853
  */
2880
2854
  export type QualityCondition =
2881
2855
  | {
@@ -2892,7 +2866,7 @@ declare module "factorio:runtime" {
2892
2866
  /**
2893
2867
  * The destination of a cargo pod.
2894
2868
  * @see CargoDestinationWrite
2895
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/CargoDestination.html Online documentation}
2869
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/CargoDestination.html Online documentation}
2896
2870
  */
2897
2871
  export interface CargoDestination {
2898
2872
  /**
@@ -2930,7 +2904,7 @@ declare module "factorio:runtime" {
2930
2904
  }
2931
2905
  /**
2932
2906
  * Write form of {@link CargoDestination}, where some properties allow additional values as input compared to the read form.
2933
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/CargoDestination.html Online documentation}
2907
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/CargoDestination.html Online documentation}
2934
2908
  */
2935
2909
  export interface CargoDestinationWrite {
2936
2910
  /**
@@ -2966,6 +2940,16 @@ declare module "factorio:runtime" {
2966
2940
  */
2967
2941
  readonly space_platform?: SpacePlatformIdentification
2968
2942
  }
2943
+ export interface ScheduleRecordPosition {
2944
+ /**
2945
+ * The schedule index
2946
+ */
2947
+ readonly schedule_index?: uint
2948
+ /**
2949
+ * The interrupt index
2950
+ */
2951
+ readonly interrupt_index?: uint
2952
+ }
2969
2953
  /**
2970
2954
  * Event name may be specified in one of four ways.
2971
2955
  *
@@ -2974,7 +2958,7 @@ declare module "factorio:runtime" {
2974
2958
  * - {@link LuaCustomInputPrototype}: Custom input prototype.
2975
2959
  * - {@link defines.events}: Event identifier.
2976
2960
  * - `string`: Name of the event.
2977
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaEventType.html Online documentation}
2961
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaEventType.html Online documentation}
2978
2962
  */
2979
2963
  export type LuaEventType = LuaCustomEventPrototype | LuaCustomInputPrototype | defines.events | string | EventId<any>
2980
2964
  /**
@@ -2982,13 +2966,13 @@ declare module "factorio:runtime" {
2982
2966
  * - `"center-to-center"`
2983
2967
  * - `"bounding-box-to-bounding-box"`
2984
2968
  * - `"center-to-bounding-box"`
2985
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/RangeMode.html Online documentation}
2969
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/RangeMode.html Online documentation}
2986
2970
  */
2987
2971
  export type RangeMode = "center-to-center" | "bounding-box-to-bounding-box" | "center-to-bounding-box"
2988
2972
  /**
2989
2973
  * The representation of an entity inside of a blueprint. It has at least these fields, but can contain additional ones depending on the kind of entity.
2990
2974
  * @see BlueprintEntityWrite
2991
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/BlueprintEntity.html Online documentation}
2975
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BlueprintEntity.html Online documentation}
2992
2976
  */
2993
2977
  export interface BlueprintEntity {
2994
2978
  /**
@@ -3202,7 +3186,7 @@ declare module "factorio:runtime" {
3202
3186
  }
3203
3187
  /**
3204
3188
  * Write form of {@link BlueprintEntity}, where some properties allow additional values as input compared to the read form.
3205
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/BlueprintEntity.html Online documentation}
3189
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BlueprintEntity.html Online documentation}
3206
3190
  */
3207
3191
  export interface BlueprintEntityWrite {
3208
3192
  /**
@@ -3423,7 +3407,7 @@ declare module "factorio:runtime" {
3423
3407
  }
3424
3408
  /**
3425
3409
  * @see BlueprintEquipmentWrite
3426
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/BlueprintEquipment.html Online documentation}
3410
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BlueprintEquipment.html Online documentation}
3427
3411
  */
3428
3412
  export interface BlueprintEquipment {
3429
3413
  readonly equipment: ItemIDAndQualityIDPair
@@ -3431,7 +3415,7 @@ declare module "factorio:runtime" {
3431
3415
  }
3432
3416
  /**
3433
3417
  * Write form of {@link BlueprintEquipment}, where some properties allow additional values as input compared to the read form.
3434
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/BlueprintEquipment.html Online documentation}
3418
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BlueprintEquipment.html Online documentation}
3435
3419
  */
3436
3420
  export interface BlueprintEquipmentWrite {
3437
3421
  readonly equipment: ItemIDAndQualityIDPairWrite
@@ -3439,7 +3423,7 @@ declare module "factorio:runtime" {
3439
3423
  }
3440
3424
  /**
3441
3425
  * @see BlueprintInventoryWrite
3442
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/BlueprintInventory.html Online documentation}
3426
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BlueprintInventory.html Online documentation}
3443
3427
  */
3444
3428
  export interface BlueprintInventory {
3445
3429
  readonly filters?: BlueprintLogisticFilter[]
@@ -3450,7 +3434,7 @@ declare module "factorio:runtime" {
3450
3434
  }
3451
3435
  /**
3452
3436
  * Write form of {@link BlueprintInventory}, where some properties allow additional values as input compared to the read form.
3453
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/BlueprintInventory.html Online documentation}
3437
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BlueprintInventory.html Online documentation}
3454
3438
  */
3455
3439
  export interface BlueprintInventoryWrite {
3456
3440
  readonly filters?: readonly BlueprintLogisticFilterWrite[]
@@ -3471,7 +3455,7 @@ declare module "factorio:runtime" {
3471
3455
  }
3472
3456
  /**
3473
3457
  * @see BlueprintControlBehaviorWrite
3474
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/BlueprintControlBehavior.html Online documentation}
3458
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BlueprintControlBehavior.html Online documentation}
3475
3459
  */
3476
3460
  export interface BlueprintControlBehavior {
3477
3461
  /**
@@ -3724,7 +3708,7 @@ declare module "factorio:runtime" {
3724
3708
  }
3725
3709
  /**
3726
3710
  * Write form of {@link BlueprintControlBehavior}, where some properties allow additional values as input compared to the read form.
3727
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/BlueprintControlBehavior.html Online documentation}
3711
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BlueprintControlBehavior.html Online documentation}
3728
3712
  */
3729
3713
  export interface BlueprintControlBehaviorWrite {
3730
3714
  /**
@@ -4005,7 +3989,7 @@ declare module "factorio:runtime" {
4005
3989
  * "2500 * (L - 3)"
4006
3990
  * @example
4007
3991
  * "(4e5 * (abs(speed) + 10.5)) / weight"
4008
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/MathExpression.html Online documentation}
3992
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/MathExpression.html Online documentation}
4009
3993
  */
4010
3994
  export type MathExpression = string
4011
3995
  /**
@@ -4027,7 +4011,7 @@ declare module "factorio:runtime" {
4027
4011
  * -- What a custom recipe would look like that had a probability of 0.5 to return a
4028
4012
  * -- minimum amount of 1 and a maximum amount of 5
4029
4013
  * {{type="item", name="custom-item", probability=0.5, amount_min=1, amount_max=5}}
4030
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/Product.html Online documentation}
4014
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/Product.html Online documentation}
4031
4015
  */
4032
4016
  export type Product = ItemProduct | FluidProduct | ResearchProgressProduct
4033
4017
  /**
@@ -4038,7 +4022,7 @@ declare module "factorio:runtime" {
4038
4022
  * -- What a custom recipe would look like that had a probability of 0.5 to return a
4039
4023
  * -- minimum amount of 1 and a maximum amount of 5
4040
4024
  * {{type="item", name="custom-item", probability=0.5, amount_min=1, amount_max=5}}
4041
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ItemProduct.html Online documentation}
4025
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ItemProduct.html Online documentation}
4042
4026
  */
4043
4027
  export interface ItemProduct {
4044
4028
  readonly type: "item"
@@ -4082,7 +4066,7 @@ declare module "factorio:runtime" {
4082
4066
  * {{type="fluid", name="heavy-oil", amount=1},
4083
4067
  * {type="fluid", name="light-oil", amount=4.5},
4084
4068
  * {type="fluid", name="petroleum-gas", amount=5.5}}
4085
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/FluidProduct.html Online documentation}
4069
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/FluidProduct.html Online documentation}
4086
4070
  */
4087
4071
  export interface FluidProduct {
4088
4072
  readonly type: "fluid"
@@ -4130,7 +4114,7 @@ declare module "factorio:runtime" {
4130
4114
  }
4131
4115
  /**
4132
4116
  * @see LogisticSectionsWrite
4133
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/LogisticSections.html Online documentation}
4117
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LogisticSections.html Online documentation}
4134
4118
  */
4135
4119
  export interface LogisticSections {
4136
4120
  readonly sections?: LogisticSection[]
@@ -4141,7 +4125,7 @@ declare module "factorio:runtime" {
4141
4125
  }
4142
4126
  /**
4143
4127
  * Write form of {@link LogisticSections}, where some properties allow additional values as input compared to the read form.
4144
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/LogisticSections.html Online documentation}
4128
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LogisticSections.html Online documentation}
4145
4129
  */
4146
4130
  export interface LogisticSectionsWrite {
4147
4131
  readonly sections?: readonly LogisticSectionWrite[]
@@ -4177,7 +4161,7 @@ declare module "factorio:runtime" {
4177
4161
  }
4178
4162
  /**
4179
4163
  * @see LogisticSectionWrite
4180
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/LogisticSection.html Online documentation}
4164
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LogisticSection.html Online documentation}
4181
4165
  */
4182
4166
  export interface LogisticSection {
4183
4167
  readonly index: uint8
@@ -4194,7 +4178,7 @@ declare module "factorio:runtime" {
4194
4178
  }
4195
4179
  /**
4196
4180
  * Write form of {@link LogisticSection}, where some properties allow additional values as input compared to the read form.
4197
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/LogisticSection.html Online documentation}
4181
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LogisticSection.html Online documentation}
4198
4182
  */
4199
4183
  export interface LogisticSectionWrite {
4200
4184
  readonly index: uint8
@@ -4211,7 +4195,7 @@ declare module "factorio:runtime" {
4211
4195
  }
4212
4196
  /**
4213
4197
  * @see BlueprintLogisticFilterWrite
4214
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/BlueprintLogisticFilter.html Online documentation}
4198
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BlueprintLogisticFilter.html Online documentation}
4215
4199
  */
4216
4200
  export interface BlueprintLogisticFilter {
4217
4201
  readonly index: LogisticFilterIndex
@@ -4241,7 +4225,7 @@ declare module "factorio:runtime" {
4241
4225
  }
4242
4226
  /**
4243
4227
  * Write form of {@link BlueprintLogisticFilter}, where some properties allow additional values as input compared to the read form.
4244
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/BlueprintLogisticFilter.html Online documentation}
4228
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BlueprintLogisticFilter.html Online documentation}
4245
4229
  */
4246
4230
  export interface BlueprintLogisticFilterWrite {
4247
4231
  readonly index: LogisticFilterIndex
@@ -4271,7 +4255,7 @@ declare module "factorio:runtime" {
4271
4255
  }
4272
4256
  /**
4273
4257
  * Specifies how probability and richness are calculated when placing something on the map.
4274
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/AutoplaceSpecification.html Online documentation}
4258
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/AutoplaceSpecification.html Online documentation}
4275
4259
  */
4276
4260
  export interface AutoplaceSpecification {
4277
4261
  /**
@@ -4288,7 +4272,7 @@ declare module "factorio:runtime" {
4288
4272
  }
4289
4273
  /**
4290
4274
  * @see CliffPlacementSettingsWrite
4291
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/CliffPlacementSettings.html Online documentation}
4275
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/CliffPlacementSettings.html Online documentation}
4292
4276
  */
4293
4277
  export interface CliffPlacementSettings {
4294
4278
  /**
@@ -4318,7 +4302,7 @@ declare module "factorio:runtime" {
4318
4302
  }
4319
4303
  /**
4320
4304
  * Write form of {@link CliffPlacementSettings}, where some properties allow additional values as input compared to the read form.
4321
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/CliffPlacementSettings.html Online documentation}
4305
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/CliffPlacementSettings.html Online documentation}
4322
4306
  */
4323
4307
  export interface CliffPlacementSettingsWrite {
4324
4308
  /**
@@ -4348,7 +4332,7 @@ declare module "factorio:runtime" {
4348
4332
  }
4349
4333
  /**
4350
4334
  * @see AutoplaceSettingsWrite
4351
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/AutoplaceSettings.html Online documentation}
4335
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/AutoplaceSettings.html Online documentation}
4352
4336
  */
4353
4337
  export interface AutoplaceSettings {
4354
4338
  /**
@@ -4362,7 +4346,7 @@ declare module "factorio:runtime" {
4362
4346
  }
4363
4347
  /**
4364
4348
  * Write form of {@link AutoplaceSettings}, where some properties allow additional values as input compared to the read form.
4365
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/AutoplaceSettings.html Online documentation}
4349
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/AutoplaceSettings.html Online documentation}
4366
4350
  */
4367
4351
  export interface AutoplaceSettingsWrite {
4368
4352
  /**
@@ -4397,7 +4381,7 @@ declare module "factorio:runtime" {
4397
4381
  * surface.map_gen_settings = mgs
4398
4382
  * -- This does not require a NamedNoiseExpression to be defined, since literal numbers (and strings naming literal
4399
4383
  * -- numbers, e.g. `"123"`) are understood to stand for constant value expressions.
4400
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/MapGenSettings.html Online documentation}
4384
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/MapGenSettings.html Online documentation}
4401
4385
  */
4402
4386
  export interface MapGenSettings {
4403
4387
  /**
@@ -4452,7 +4436,7 @@ declare module "factorio:runtime" {
4452
4436
  }
4453
4437
  /**
4454
4438
  * Write form of {@link MapGenSettings}, where some properties allow additional values as input compared to the read form.
4455
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/MapGenSettings.html Online documentation}
4439
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/MapGenSettings.html Online documentation}
4456
4440
  */
4457
4441
  export interface MapGenSettingsWrite {
4458
4442
  /**
@@ -4511,7 +4495,7 @@ declare module "factorio:runtime" {
4511
4495
  }
4512
4496
  /**
4513
4497
  * These values are for the time frame of one second (60 ticks).
4514
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/PollutionMapSettings.html Online documentation}
4498
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/PollutionMapSettings.html Online documentation}
4515
4499
  */
4516
4500
  export interface PollutionMapSettings {
4517
4501
  /**
@@ -4565,7 +4549,7 @@ declare module "factorio:runtime" {
4565
4549
  }
4566
4550
  /**
4567
4551
  * These values represent a percentual increase in evolution. This means a value of `0.1` would increase evolution by 10%.
4568
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/EnemyEvolutionMapSettings.html Online documentation}
4552
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/EnemyEvolutionMapSettings.html Online documentation}
4569
4553
  */
4570
4554
  export interface EnemyEvolutionMapSettings {
4571
4555
  /**
@@ -4603,7 +4587,7 @@ declare module "factorio:runtime" {
4603
4587
  * * neighbouring_base_chunk_coefficient^distance(chunk, neighbour)
4604
4588
  * score(chunk) = 1 / (1 + player + base)
4605
4589
  * ```
4606
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/EnemyExpansionMapSettings.html Online documentation}
4590
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/EnemyExpansionMapSettings.html Online documentation}
4607
4591
  */
4608
4592
  export interface EnemyExpansionMapSettings {
4609
4593
  /**
@@ -4862,17 +4846,17 @@ declare module "factorio:runtime" {
4862
4846
  }
4863
4847
  /**
4864
4848
  * Technology difficulty settings. Updating any of the attributes will immediately take effect in the game engine.
4865
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/DifficultySettings.html Online documentation}
4849
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/DifficultySettings.html Online documentation}
4866
4850
  */
4867
4851
  export interface DifficultySettings {
4868
4852
  /**
4869
4853
  * A value in range [0.001, 1000].
4870
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/DifficultySettings.technology_price_multiplier.html Online documentation}
4854
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/DifficultySettings.technology_price_multiplier.html Online documentation}
4871
4855
  */
4872
4856
  technology_price_multiplier: double
4873
4857
  /**
4874
4858
  * A value in range [0.01, 100].
4875
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/DifficultySettings.spoil_time_modifier.html Online documentation}
4859
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/DifficultySettings.spoil_time_modifier.html Online documentation}
4876
4860
  */
4877
4861
  spoil_time_modifier: double
4878
4862
  }
@@ -4888,7 +4872,7 @@ declare module "factorio:runtime" {
4888
4872
  }
4889
4873
  /**
4890
4874
  * A standard table containing all {@link MapSettings} attributes plus an additional table that contains all {@link DifficultySettings} properties.
4891
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/MapAndDifficultySettings.html Online documentation}
4875
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/MapAndDifficultySettings.html Online documentation}
4892
4876
  */
4893
4877
  export interface MapAndDifficultySettings {
4894
4878
  readonly pollution: PollutionMapSettings
@@ -4909,7 +4893,7 @@ declare module "factorio:runtime" {
4909
4893
  * @example
4910
4894
  * -- Increase the number of short paths the pathfinder can cache.
4911
4895
  * game.map_settings.path_finder.short_cache_size = 15
4912
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/MapSettings.html Online documentation}
4896
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/MapSettings.html Online documentation}
4913
4897
  */
4914
4898
  export interface MapSettings {
4915
4899
  pollution: PollutionMapSettings
@@ -4921,13 +4905,13 @@ declare module "factorio:runtime" {
4921
4905
  asteroids: AsteroidMapSettings
4922
4906
  /**
4923
4907
  * If a behavior fails this many times, the enemy (or enemy group) is destroyed. This solves biters getting stuck within their own base.
4924
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/MapSettings.max_failed_behavior_count.html Online documentation}
4908
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/MapSettings.max_failed_behavior_count.html Online documentation}
4925
4909
  */
4926
4910
  max_failed_behavior_count: uint
4927
4911
  }
4928
4912
  /**
4929
4913
  * @see BlueprintScheduleRecordWrite
4930
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/BlueprintScheduleRecord.html Online documentation}
4914
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BlueprintScheduleRecord.html Online documentation}
4931
4915
  */
4932
4916
  export interface BlueprintScheduleRecord {
4933
4917
  /**
@@ -4935,16 +4919,13 @@ declare module "factorio:runtime" {
4935
4919
  */
4936
4920
  readonly station?: string
4937
4921
  readonly wait_conditions?: WaitCondition[]
4938
- /**
4939
- * Only present when the station is temporary, the value is then always `true`.
4940
- */
4941
4922
  readonly temporary?: boolean
4942
4923
  readonly created_by_interrupt?: boolean
4943
4924
  readonly allows_unloading?: boolean
4944
4925
  }
4945
4926
  /**
4946
4927
  * Write form of {@link BlueprintScheduleRecord}, where some properties allow additional values as input compared to the read form.
4947
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/BlueprintScheduleRecord.html Online documentation}
4928
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BlueprintScheduleRecord.html Online documentation}
4948
4929
  */
4949
4930
  export interface BlueprintScheduleRecordWrite {
4950
4931
  /**
@@ -4952,16 +4933,51 @@ declare module "factorio:runtime" {
4952
4933
  */
4953
4934
  readonly station?: string
4954
4935
  readonly wait_conditions?: readonly WaitConditionWrite[]
4936
+ readonly temporary?: boolean
4937
+ readonly created_by_interrupt?: boolean
4938
+ readonly allows_unloading?: boolean
4939
+ }
4940
+ /**
4941
+ * @see ScheduleRecordWrite
4942
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ScheduleRecord.html Online documentation}
4943
+ */
4944
+ export interface ScheduleRecord {
4955
4945
  /**
4956
- * Only present when the station is temporary, the value is then always `true`.
4946
+ * Name of the station.
4947
+ */
4948
+ readonly station?: string
4949
+ readonly rail?: LuaEntity
4950
+ /**
4951
+ * When a train is allowed to reach rail target from any direction it will be `nil`. If rail has to be reached from specific direction, this value allows to choose the direction. This value corresponds to {@link LuaEntity#connected_rail_direction LuaEntity::connected_rail_direction} of a TrainStop.
4957
4952
  */
4953
+ readonly rail_direction?: defines.rail_direction
4954
+ readonly wait_conditions?: WaitCondition[]
4955
+ readonly temporary?: boolean
4956
+ readonly created_by_interrupt?: boolean
4957
+ readonly allows_unloading?: boolean
4958
+ }
4959
+ /**
4960
+ * Write form of {@link ScheduleRecord}, where some properties allow additional values as input compared to the read form.
4961
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ScheduleRecord.html Online documentation}
4962
+ */
4963
+ export interface ScheduleRecordWrite {
4964
+ /**
4965
+ * Name of the station.
4966
+ */
4967
+ readonly station?: string
4968
+ readonly rail?: LuaEntity
4969
+ /**
4970
+ * When a train is allowed to reach rail target from any direction it will be `nil`. If rail has to be reached from specific direction, this value allows to choose the direction. This value corresponds to {@link LuaEntity#connected_rail_direction LuaEntity::connected_rail_direction} of a TrainStop.
4971
+ */
4972
+ readonly rail_direction?: defines.rail_direction
4973
+ readonly wait_conditions?: readonly WaitConditionWrite[]
4958
4974
  readonly temporary?: boolean
4959
4975
  readonly created_by_interrupt?: boolean
4960
4976
  readonly allows_unloading?: boolean
4961
4977
  }
4962
4978
  /**
4963
4979
  * @see BlueprintScheduleInterruptWrite
4964
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/BlueprintScheduleInterrupt.html Online documentation}
4980
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BlueprintScheduleInterrupt.html Online documentation}
4965
4981
  */
4966
4982
  export interface BlueprintScheduleInterrupt {
4967
4983
  readonly name?: string
@@ -4971,7 +4987,7 @@ declare module "factorio:runtime" {
4971
4987
  }
4972
4988
  /**
4973
4989
  * Write form of {@link BlueprintScheduleInterrupt}, where some properties allow additional values as input compared to the read form.
4974
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/BlueprintScheduleInterrupt.html Online documentation}
4990
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BlueprintScheduleInterrupt.html Online documentation}
4975
4991
  */
4976
4992
  export interface BlueprintScheduleInterruptWrite {
4977
4993
  readonly name?: string
@@ -4979,9 +4995,29 @@ declare module "factorio:runtime" {
4979
4995
  readonly targets?: readonly BlueprintScheduleRecordWrite[]
4980
4996
  readonly inside_interrupt: boolean
4981
4997
  }
4998
+ /**
4999
+ * @see ScheduleInterruptWrite
5000
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ScheduleInterrupt.html Online documentation}
5001
+ */
5002
+ export interface ScheduleInterrupt {
5003
+ readonly name?: string
5004
+ readonly conditions?: WaitCondition[]
5005
+ readonly targets?: ScheduleRecord[]
5006
+ readonly inside_interrupt: boolean
5007
+ }
5008
+ /**
5009
+ * Write form of {@link ScheduleInterrupt}, where some properties allow additional values as input compared to the read form.
5010
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ScheduleInterrupt.html Online documentation}
5011
+ */
5012
+ export interface ScheduleInterruptWrite {
5013
+ readonly name?: string
5014
+ readonly conditions?: readonly WaitConditionWrite[]
5015
+ readonly targets?: readonly ScheduleRecordWrite[]
5016
+ readonly inside_interrupt: boolean
5017
+ }
4982
5018
  /**
4983
5019
  * @see BlueprintScheduleWrite
4984
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/BlueprintSchedule.html Online documentation}
5020
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BlueprintSchedule.html Online documentation}
4985
5021
  */
4986
5022
  export interface BlueprintSchedule {
4987
5023
  readonly records?: BlueprintScheduleRecord[]
@@ -4990,7 +5026,7 @@ declare module "factorio:runtime" {
4990
5026
  }
4991
5027
  /**
4992
5028
  * Write form of {@link BlueprintSchedule}, where some properties allow additional values as input compared to the read form.
4993
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/BlueprintSchedule.html Online documentation}
5029
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BlueprintSchedule.html Online documentation}
4994
5030
  */
4995
5031
  export interface BlueprintScheduleWrite {
4996
5032
  readonly records?: readonly BlueprintScheduleRecordWrite[]
@@ -4999,7 +5035,7 @@ declare module "factorio:runtime" {
4999
5035
  }
5000
5036
  /**
5001
5037
  * @see WaitConditionWrite
5002
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/WaitCondition.html Online documentation}
5038
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/WaitCondition.html Online documentation}
5003
5039
  */
5004
5040
  export interface WaitCondition {
5005
5041
  readonly type: WaitConditionType
@@ -5030,7 +5066,7 @@ declare module "factorio:runtime" {
5030
5066
  }
5031
5067
  /**
5032
5068
  * Write form of {@link WaitCondition}, where some properties allow additional values as input compared to the read form.
5033
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/WaitCondition.html Online documentation}
5069
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/WaitCondition.html Online documentation}
5034
5070
  */
5035
5071
  export interface WaitConditionWrite {
5036
5072
  readonly type: WaitConditionType
@@ -5089,7 +5125,7 @@ declare module "factorio:runtime" {
5089
5125
  * - `"at_station"`
5090
5126
  * - `"not_at_station"`
5091
5127
  * - `"damage_taken"`
5092
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/WaitConditionType.html Online documentation}
5128
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/WaitConditionType.html Online documentation}
5093
5129
  */
5094
5130
  export type WaitConditionType =
5095
5131
  | "time"
@@ -5131,7 +5167,7 @@ declare module "factorio:runtime" {
5131
5167
  * - `"blueprint-snap-rectangle"`: Green by default.
5132
5168
  * - `"spidertron-remote-selected"`
5133
5169
  * - `"spidertron-remote-to-be-selected"`
5134
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/CursorBoxRenderType.html Online documentation}
5170
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/CursorBoxRenderType.html Online documentation}
5135
5171
  */
5136
5172
  export type CursorBoxRenderType =
5137
5173
  | "entity"
@@ -5147,7 +5183,7 @@ declare module "factorio:runtime" {
5147
5183
  | "spidertron-remote-to-be-selected"
5148
5184
  /**
5149
5185
  * What is shown in the map view. If a field is not given, that setting will not be changed.
5150
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/MapViewSettings.html Online documentation}
5186
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/MapViewSettings.html Online documentation}
5151
5187
  */
5152
5188
  export interface MapViewSettings {
5153
5189
  readonly "show-logistic-network"?: boolean
@@ -5240,7 +5276,7 @@ declare module "factorio:runtime" {
5240
5276
  * - `"collision-selection-box"`: 189
5241
5277
  * - `"arrow"`: 190
5242
5278
  * - `"cursor"`: 226
5243
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/RenderLayer.html Online documentation}
5279
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/RenderLayer.html Online documentation}
5244
5280
  */
5245
5281
  export type RenderLayer =
5246
5282
  | `${bigint}`
@@ -5350,7 +5386,7 @@ declare module "factorio:runtime" {
5350
5386
  * - `"entity-with-quality"`
5351
5387
  * - `"recipe-with-quality"`
5352
5388
  * - `"equipment-with-quality"`
5353
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ElemType.html Online documentation}
5389
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ElemType.html Online documentation}
5354
5390
  */
5355
5391
  export type ElemType =
5356
5392
  | "achievement"
@@ -5377,7 +5413,7 @@ declare module "factorio:runtime" {
5377
5413
  * - `"left"`
5378
5414
  * - `"right"`
5379
5415
  * - `"none"`
5380
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/SwitchState.html Online documentation}
5416
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/SwitchState.html Online documentation}
5381
5417
  */
5382
5418
  export type SwitchState = "left" | "right" | "none"
5383
5419
  export interface ElemID {
@@ -5418,7 +5454,7 @@ declare module "factorio:runtime" {
5418
5454
  * - `"destroy-decoratives"`
5419
5455
  * - `"camera-effect"`
5420
5456
  * - `"activate-impact"`
5421
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/TriggerEffectItemType.html Online documentation}
5457
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/TriggerEffectItemType.html Online documentation}
5422
5458
  */
5423
5459
  export type TriggerEffectItemType =
5424
5460
  | "damage"
@@ -5455,7 +5491,7 @@ declare module "factorio:runtime" {
5455
5491
  }
5456
5492
  /**
5457
5493
  * A set of trigger target masks.
5458
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/TriggerTargetMask.html Online documentation}
5494
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/TriggerTargetMask.html Online documentation}
5459
5495
  */
5460
5496
  export type TriggerTargetMask = Record<string, true>
5461
5497
  export interface TriggerItem {
@@ -5522,7 +5558,7 @@ declare module "factorio:runtime" {
5522
5558
  * -- If 'entity-description.furnace' exists, it is concatenated with "\n" and returned. Otherwise, if 'item-description.furnace'
5523
5559
  * -- exists, it is returned as-is. Otherwise, "optional fallback" is returned. If this value wasn't specified, the
5524
5560
  * -- translation result would be "Unknown key: 'item-description.furnace'".
5525
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/LocalisedString.html Online documentation}
5561
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LocalisedString.html Online documentation}
5526
5562
  */
5527
5563
  export type LocalisedString = string | number | boolean | LuaObject | nil | [string, ...LocalisedString[]]
5528
5564
  export interface DisplayResolution {
@@ -5533,7 +5569,7 @@ declare module "factorio:runtime" {
5533
5569
  * The smooth orientation. It is a {@link float} in the range `[0, 1)` that covers a full circle, starting at the top and going clockwise. This means a value of `0` indicates "north", a value of `0.5` indicates "south".
5534
5570
  *
5535
5571
  * For example then, a value of `0.625` would indicate "south-west", and a value of `0.875` would indicate "north-west".
5536
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/RealOrientation.html Online documentation}
5572
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/RealOrientation.html Online documentation}
5537
5573
  */
5538
5574
  export type RealOrientation = float
5539
5575
  /**
@@ -5548,7 +5584,7 @@ declare module "factorio:runtime" {
5548
5584
  * @example
5549
5585
  * -- Shorthand
5550
5586
  * {1.625, 2.375}
5551
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/MapPosition.html Online documentation}
5587
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/MapPosition.html Online documentation}
5552
5588
  */
5553
5589
  export interface MapPosition {
5554
5590
  readonly x: double
@@ -5557,13 +5593,13 @@ declare module "factorio:runtime" {
5557
5593
  /**
5558
5594
  * Array form of {@link MapPosition}.
5559
5595
  * @see MapPosition
5560
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/MapPosition.html Online documentation}
5596
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/MapPosition.html Online documentation}
5561
5597
  */
5562
5598
  export type MapPositionArray = readonly [double, double]
5563
5599
  /**
5564
5600
  * Coordinates of a chunk in a {@link LuaSurface} where each integer `x`/`y` represents a different chunk. This uses the same format as {@link MapPosition}, meaning it can be specified either with or without explicit keys. A {@link MapPosition} can be translated to a ChunkPosition by dividing the `x`/`y` values by 32.
5565
5601
  * @see ChunkPositionArray
5566
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ChunkPosition.html Online documentation}
5602
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ChunkPosition.html Online documentation}
5567
5603
  */
5568
5604
  export interface ChunkPosition {
5569
5605
  readonly x: int
@@ -5572,13 +5608,13 @@ declare module "factorio:runtime" {
5572
5608
  /**
5573
5609
  * Array form of {@link ChunkPosition}.
5574
5610
  * @see ChunkPosition
5575
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ChunkPosition.html Online documentation}
5611
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ChunkPosition.html Online documentation}
5576
5612
  */
5577
5613
  export type ChunkPositionArray = readonly [int, int]
5578
5614
  /**
5579
5615
  * Coordinates of a tile on a {@link LuaSurface} where each integer `x`/`y` represents a different tile. This uses the same format as {@link MapPosition}, except it rounds any non-integer `x`/`y` down to whole numbers. It can be specified either with or without explicit keys.
5580
5616
  * @see TilePositionArray
5581
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/TilePosition.html Online documentation}
5617
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/TilePosition.html Online documentation}
5582
5618
  */
5583
5619
  export interface TilePosition {
5584
5620
  readonly x: int
@@ -5587,7 +5623,7 @@ declare module "factorio:runtime" {
5587
5623
  /**
5588
5624
  * Array form of {@link TilePosition}.
5589
5625
  * @see TilePosition
5590
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/TilePosition.html Online documentation}
5626
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/TilePosition.html Online documentation}
5591
5627
  */
5592
5628
  export type TilePositionArray = readonly [int, int]
5593
5629
  /**
@@ -5600,7 +5636,7 @@ declare module "factorio:runtime" {
5600
5636
  * @example
5601
5637
  * -- Shorthand
5602
5638
  * {1, 2}
5603
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/EquipmentPosition.html Online documentation}
5639
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/EquipmentPosition.html Online documentation}
5604
5640
  */
5605
5641
  export interface EquipmentPosition {
5606
5642
  readonly x: int
@@ -5609,13 +5645,13 @@ declare module "factorio:runtime" {
5609
5645
  /**
5610
5646
  * Array form of {@link EquipmentPosition}.
5611
5647
  * @see EquipmentPosition
5612
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/EquipmentPosition.html Online documentation}
5648
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/EquipmentPosition.html Online documentation}
5613
5649
  */
5614
5650
  export type EquipmentPositionArray = readonly [int, int]
5615
5651
  /**
5616
5652
  * Screen coordinates of a GUI element in a {@link LuaGui}. This uses the same format as {@link TilePosition}, meaning it can be specified either with or without explicit keys.
5617
5653
  * @see GuiLocationArray
5618
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/GuiLocation.html Online documentation}
5654
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GuiLocation.html Online documentation}
5619
5655
  */
5620
5656
  export interface GuiLocation {
5621
5657
  readonly x: int
@@ -5624,12 +5660,12 @@ declare module "factorio:runtime" {
5624
5660
  /**
5625
5661
  * Array form of {@link GuiLocation}.
5626
5662
  * @see GuiLocation
5627
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/GuiLocation.html Online documentation}
5663
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GuiLocation.html Online documentation}
5628
5664
  */
5629
5665
  export type GuiLocationArray = readonly [int, int]
5630
5666
  /**
5631
5667
  * A {@link ChunkPosition} with an added bounding box for the area of the chunk.
5632
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ChunkPositionAndArea.html Online documentation}
5668
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ChunkPositionAndArea.html Online documentation}
5633
5669
  */
5634
5670
  export interface ChunkPositionAndArea {
5635
5671
  readonly x: int
@@ -5638,7 +5674,7 @@ declare module "factorio:runtime" {
5638
5674
  }
5639
5675
  /**
5640
5676
  * A table used to define a manual shape for a piece of equipment.
5641
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/EquipmentPoint.html Online documentation}
5677
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/EquipmentPoint.html Online documentation}
5642
5678
  */
5643
5679
  export interface EquipmentPoint {
5644
5680
  readonly x: uint
@@ -5674,7 +5710,7 @@ declare module "factorio:runtime" {
5674
5710
  * Note that the API returns tags as a simple table, meaning any modifications to it will not propagate back to the game. Thus, to modify a set of tags, the whole table needs to be written back to the respective property.
5675
5711
  * @example
5676
5712
  * {a = 1, b = true, c = "three", d = {e = "f"}}
5677
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/Tags.html Online documentation}
5713
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/Tags.html Online documentation}
5678
5714
  */
5679
5715
  export type Tags = Record<string, AnyBasic>
5680
5716
  export interface SurfaceCondition {
@@ -5708,13 +5744,13 @@ declare module "factorio:runtime" {
5708
5744
  * A vector is a two-element array or dictionary containing the `x` and `y` components. The game will always provide the array format. Positive x goes east, positive y goes south.
5709
5745
  * @example
5710
5746
  * right = {1.0, 0.0}
5711
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/Vector.html Online documentation}
5747
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/Vector.html Online documentation}
5712
5748
  */
5713
5749
  export type Vector = MapPositionArray
5714
5750
  /**
5715
5751
  * An area defined using the map editor.
5716
5752
  * @see ScriptAreaWrite
5717
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ScriptArea.html Online documentation}
5753
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ScriptArea.html Online documentation}
5718
5754
  */
5719
5755
  export interface ScriptArea {
5720
5756
  readonly area: BoundingBox
@@ -5724,7 +5760,7 @@ declare module "factorio:runtime" {
5724
5760
  }
5725
5761
  /**
5726
5762
  * Write form of {@link ScriptArea}, where some properties allow additional values as input compared to the read form.
5727
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ScriptArea.html Online documentation}
5763
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ScriptArea.html Online documentation}
5728
5764
  */
5729
5765
  export interface ScriptAreaWrite {
5730
5766
  readonly area: BoundingBoxWrite | BoundingBoxArray
@@ -5735,7 +5771,7 @@ declare module "factorio:runtime" {
5735
5771
  /**
5736
5772
  * A position defined using the map editor.
5737
5773
  * @see ScriptPositionWrite
5738
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ScriptPosition.html Online documentation}
5774
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ScriptPosition.html Online documentation}
5739
5775
  */
5740
5776
  export interface ScriptPosition {
5741
5777
  readonly position: MapPosition
@@ -5745,7 +5781,7 @@ declare module "factorio:runtime" {
5745
5781
  }
5746
5782
  /**
5747
5783
  * Write form of {@link ScriptPosition}, where some properties allow additional values as input compared to the read form.
5748
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ScriptPosition.html Online documentation}
5784
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ScriptPosition.html Online documentation}
5749
5785
  */
5750
5786
  export interface ScriptPositionWrite {
5751
5787
  readonly position: MapPosition | MapPositionArray
@@ -5763,7 +5799,7 @@ declare module "factorio:runtime" {
5763
5799
  * red2 = {r = 0.5, a = 0.5} -- Same color as red1
5764
5800
  * black = {} -- All channels omitted: black
5765
5801
  * red1_short = {0.5, 0, 0, 0.5} -- Same color as red1 in short-hand notation
5766
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/Color.html Online documentation}
5802
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/Color.html Online documentation}
5767
5803
  */
5768
5804
  export interface Color {
5769
5805
  readonly r?: float
@@ -5774,13 +5810,13 @@ declare module "factorio:runtime" {
5774
5810
  /**
5775
5811
  * Array form of {@link Color}.
5776
5812
  * @see Color
5777
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/Color.html Online documentation}
5813
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/Color.html Online documentation}
5778
5814
  */
5779
5815
  export type ColorArray = readonly [r: double, g: double, b: double, a?: double]
5780
5816
  /**
5781
5817
  * Same as {@link Color}, but red, green, blue and alpha values can be any floating point number, without any special handling of the range [1, 255].
5782
5818
  * @see ColorModifierArray
5783
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ColorModifier.html Online documentation}
5819
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ColorModifier.html Online documentation}
5784
5820
  */
5785
5821
  export interface ColorModifier {
5786
5822
  readonly r?: float
@@ -5791,7 +5827,7 @@ declare module "factorio:runtime" {
5791
5827
  /**
5792
5828
  * Array form of {@link ColorModifier}.
5793
5829
  * @see ColorModifier
5794
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ColorModifier.html Online documentation}
5830
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ColorModifier.html Online documentation}
5795
5831
  */
5796
5832
  export type ColorModifierArray = readonly [r: double, g: double, b: double, a?: double]
5797
5833
  export interface CraftingQueueItem {
@@ -5934,7 +5970,7 @@ declare module "factorio:runtime" {
5934
5970
  }
5935
5971
  /**
5936
5972
  * @see AsteroidChunkWrite
5937
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/AsteroidChunk.html Online documentation}
5973
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/AsteroidChunk.html Online documentation}
5938
5974
  */
5939
5975
  export interface AsteroidChunk {
5940
5976
  /**
@@ -5946,7 +5982,7 @@ declare module "factorio:runtime" {
5946
5982
  }
5947
5983
  /**
5948
5984
  * Write form of {@link AsteroidChunk}, where some properties allow additional values as input compared to the read form.
5949
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/AsteroidChunk.html Online documentation}
5985
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/AsteroidChunk.html Online documentation}
5950
5986
  */
5951
5987
  export interface AsteroidChunkWrite {
5952
5988
  /**
@@ -5968,7 +6004,7 @@ declare module "factorio:runtime" {
5968
6004
  }
5969
6005
  /**
5970
6006
  * Either `icon`, `text`, or both must be provided.
5971
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ChartTagSpec.html Online documentation}
6007
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ChartTagSpec.html Online documentation}
5972
6008
  */
5973
6009
  export interface ChartTagSpec {
5974
6010
  readonly position: MapPosition | MapPositionArray
@@ -5978,93 +6014,93 @@ declare module "factorio:runtime" {
5978
6014
  }
5979
6015
  /**
5980
6016
  * Parameters that affect the look and control of the game. Updating any of the member attributes here will immediately take effect in the game engine.
5981
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/GameViewSettings.html Online documentation}
6017
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GameViewSettings.html Online documentation}
5982
6018
  */
5983
6019
  export interface GameViewSettings {
5984
6020
  /**
5985
6021
  * Show the controller GUI elements. This includes the toolbar, the selected tool slot, the armour slot, and the gun and ammunition slots.
5986
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/GameViewSettings.show_controller_gui.html Online documentation}
6022
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GameViewSettings.show_controller_gui.html Online documentation}
5987
6023
  */
5988
6024
  show_controller_gui: boolean
5989
6025
  /**
5990
6026
  * Show the chart in the upper right-hand corner of the screen.
5991
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/GameViewSettings.show_minimap.html Online documentation}
6027
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GameViewSettings.show_minimap.html Online documentation}
5992
6028
  */
5993
6029
  show_minimap: boolean
5994
6030
  /**
5995
6031
  * Show research progress and name in the upper right-hand corner of the screen.
5996
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/GameViewSettings.show_research_info.html Online documentation}
6032
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GameViewSettings.show_research_info.html Online documentation}
5997
6033
  */
5998
6034
  show_research_info: boolean
5999
6035
  /**
6000
6036
  * Show overlay icons on entities. Also known as "alt-mode".
6001
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/GameViewSettings.show_entity_info.html Online documentation}
6037
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GameViewSettings.show_entity_info.html Online documentation}
6002
6038
  */
6003
6039
  show_entity_info: boolean
6004
6040
  /**
6005
6041
  * Show the flashing alert icons next to the player's toolbar.
6006
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/GameViewSettings.show_alert_gui.html Online documentation}
6042
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GameViewSettings.show_alert_gui.html Online documentation}
6007
6043
  */
6008
6044
  show_alert_gui: boolean
6009
6045
  /**
6010
6046
  * When `true` (the default), mousing over an entity will select it. Otherwise, moving the mouse won't update entity selection.
6011
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/GameViewSettings.update_entity_selection.html Online documentation}
6047
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GameViewSettings.update_entity_selection.html Online documentation}
6012
6048
  */
6013
6049
  update_entity_selection: boolean
6014
6050
  /**
6015
6051
  * When `true` (`false` is default), the rails will always show the rail block visualisation.
6016
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/GameViewSettings.show_rail_block_visualisation.html Online documentation}
6052
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GameViewSettings.show_rail_block_visualisation.html Online documentation}
6017
6053
  */
6018
6054
  show_rail_block_visualisation: boolean
6019
6055
  /**
6020
6056
  * Shows or hides the buttons row.
6021
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/GameViewSettings.show_side_menu.html Online documentation}
6057
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GameViewSettings.show_side_menu.html Online documentation}
6022
6058
  */
6023
6059
  show_side_menu: boolean
6024
6060
  /**
6025
6061
  * Shows or hides the view options when map is opened.
6026
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/GameViewSettings.show_map_view_options.html Online documentation}
6062
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GameViewSettings.show_map_view_options.html Online documentation}
6027
6063
  */
6028
6064
  show_map_view_options: boolean
6029
6065
  /**
6030
6066
  * Shows or hides the tooltip that is displayed when selecting an entity.
6031
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/GameViewSettings.show_entity_tooltip.html Online documentation}
6067
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GameViewSettings.show_entity_tooltip.html Online documentation}
6032
6068
  */
6033
6069
  show_entity_tooltip: boolean
6034
6070
  /**
6035
6071
  * Shows or hides quickbar of shortcuts.
6036
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/GameViewSettings.show_quickbar.html Online documentation}
6072
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GameViewSettings.show_quickbar.html Online documentation}
6037
6073
  */
6038
6074
  show_quickbar: boolean
6039
6075
  /**
6040
6076
  * Shows or hides the shortcut bar.
6041
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/GameViewSettings.show_shortcut_bar.html Online documentation}
6077
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GameViewSettings.show_shortcut_bar.html Online documentation}
6042
6078
  */
6043
6079
  show_shortcut_bar: boolean
6044
6080
  /**
6045
6081
  * Shows or hides the crafting queue.
6046
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/GameViewSettings.show_crafting_queue.html Online documentation}
6082
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GameViewSettings.show_crafting_queue.html Online documentation}
6047
6083
  */
6048
6084
  show_crafting_queue: boolean
6049
6085
  /**
6050
6086
  * Shows or hides the tool window with the weapons and armor.
6051
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/GameViewSettings.show_tool_bar.html Online documentation}
6087
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GameViewSettings.show_tool_bar.html Online documentation}
6052
6088
  */
6053
6089
  show_tool_bar: boolean
6054
6090
  /**
6055
6091
  * Shows or hides the mouse and keyboard/controller button hints in the bottom left corner if they are enabled in the interface settings.
6056
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/GameViewSettings.show_hotkey_suggestions.html Online documentation}
6092
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GameViewSettings.show_hotkey_suggestions.html Online documentation}
6057
6093
  */
6058
6094
  show_hotkey_suggestions: boolean
6059
6095
  /**
6060
6096
  * Shows or hides the surface list while in Remote View.
6061
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/GameViewSettings.show_surface_list.html Online documentation}
6097
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GameViewSettings.show_surface_list.html Online documentation}
6062
6098
  */
6063
6099
  show_surface_list: boolean
6064
6100
  }
6065
6101
  /**
6066
6102
  * The data that can be extracted from a map exchange string, as a plain table.
6067
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/MapExchangeStringData.html Online documentation}
6103
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/MapExchangeStringData.html Online documentation}
6068
6104
  */
6069
6105
  export interface MapExchangeStringData {
6070
6106
  readonly map_settings: MapAndDifficultySettings
@@ -6072,7 +6108,7 @@ declare module "factorio:runtime" {
6072
6108
  }
6073
6109
  /**
6074
6110
  * @see BlueprintSignalIconWrite
6075
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/BlueprintSignalIcon.html Online documentation}
6111
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BlueprintSignalIcon.html Online documentation}
6076
6112
  */
6077
6113
  export interface BlueprintSignalIcon {
6078
6114
  /**
@@ -6086,7 +6122,7 @@ declare module "factorio:runtime" {
6086
6122
  }
6087
6123
  /**
6088
6124
  * Write form of {@link BlueprintSignalIcon}, where some properties allow additional values as input compared to the read form.
6089
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/BlueprintSignalIcon.html Online documentation}
6125
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BlueprintSignalIcon.html Online documentation}
6090
6126
  */
6091
6127
  export interface BlueprintSignalIconWrite {
6092
6128
  /**
@@ -6115,12 +6151,12 @@ declare module "factorio:runtime" {
6115
6151
  * - `target_entity_number`
6116
6152
  *
6117
6153
  * - `target_wire_connector_id`
6118
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/BlueprintWire.html Online documentation}
6154
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/BlueprintWire.html Online documentation}
6119
6155
  */
6120
6156
  export type BlueprintWire = readonly [uint, defines.wire_connector_id, uint, defines.wire_connector_id]
6121
6157
  /**
6122
6158
  * @see TileWrite
6123
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/Tile.html Online documentation}
6159
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/Tile.html Online documentation}
6124
6160
  */
6125
6161
  export interface Tile {
6126
6162
  /**
@@ -6134,7 +6170,7 @@ declare module "factorio:runtime" {
6134
6170
  }
6135
6171
  /**
6136
6172
  * Write form of {@link Tile}, where some properties allow additional values as input compared to the read form.
6137
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/Tile.html Online documentation}
6173
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/Tile.html Online documentation}
6138
6174
  */
6139
6175
  export interface TileWrite {
6140
6176
  /**
@@ -6189,7 +6225,7 @@ declare module "factorio:runtime" {
6189
6225
  *
6190
6226
  * Other attributes may be specified depending on `type`:
6191
6227
  * - `"fluid"`: {@link FluidIngredient}
6192
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/Ingredient.html Online documentation}
6228
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/Ingredient.html Online documentation}
6193
6229
  */
6194
6230
  export type Ingredient = FluidIngredient | OtherIngredient
6195
6231
  export interface Loot {
@@ -6355,7 +6391,7 @@ declare module "factorio:runtime" {
6355
6391
  * - `"unlock-recipe"`: {@link UnlockRecipeTechnologyModifier}
6356
6392
  * - `"nothing"`: {@link NothingTechnologyModifier}
6357
6393
  * - Other types: {@link OtherTechnologyModifier}
6358
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/TechnologyModifier.html Online documentation}
6394
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/TechnologyModifier.html Online documentation}
6359
6395
  */
6360
6396
  export type TechnologyModifier =
6361
6397
  | GunSpeedTechnologyModifier
@@ -6367,7 +6403,7 @@ declare module "factorio:runtime" {
6367
6403
  | OtherTechnologyModifier
6368
6404
  /**
6369
6405
  * A fragment of a functional program used to generate coherent noise, probably for purposes related to terrain generation. These can only be meaningfully written/modified during the data load phase. More detailed information is found on the {@link import("factorio:prototype").NamedNoiseExpression prototype docs}.
6370
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/NoiseExpression.html Online documentation}
6406
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/NoiseExpression.html Online documentation}
6371
6407
  */
6372
6408
  export interface NoiseExpression {
6373
6409
  /**
@@ -6420,7 +6456,7 @@ declare module "factorio:runtime" {
6420
6456
  * - `"very-high"`: equivalent to `2`.
6421
6457
  * - `"very-big"`: equivalent to `2`.
6422
6458
  * - `"very-good"`: equivalent to `2`.
6423
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/MapGenSize.html Online documentation}
6459
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/MapGenSize.html Online documentation}
6424
6460
  */
6425
6461
  export type MapGenSize =
6426
6462
  | float
@@ -6442,7 +6478,7 @@ declare module "factorio:runtime" {
6442
6478
  | "very-good"
6443
6479
  /**
6444
6480
  * @see AutoplaceControlWrite
6445
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/AutoplaceControl.html Online documentation}
6481
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/AutoplaceControl.html Online documentation}
6446
6482
  */
6447
6483
  export interface AutoplaceControl {
6448
6484
  /**
@@ -6460,7 +6496,7 @@ declare module "factorio:runtime" {
6460
6496
  }
6461
6497
  /**
6462
6498
  * Write form of {@link AutoplaceControl}, where some properties allow additional values as input compared to the read form.
6463
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/AutoplaceControl.html Online documentation}
6499
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/AutoplaceControl.html Online documentation}
6464
6500
  */
6465
6501
  export interface AutoplaceControlWrite {
6466
6502
  /**
@@ -6479,10 +6515,10 @@ declare module "factorio:runtime" {
6479
6515
  /**
6480
6516
  * All other MapGenSettings feed into named noise expressions, and therefore placement can be overridden by including the name of a property in this dictionary. The probability and richness functions for placing specific tiles, entities, and decoratives can be overridden by including an entry named `{tile|entity|decorative}:(prototype name):{probability|richness}`.
6481
6517
  *
6482
- * {@link https://lua-api.factorio.com/2.0.35/concepts/PropertyExpressionNames.html > Values either name a NamedNoiseExpression or can be literal numbers, stored as strings (e.g. `5`). All other controls can be overridden by a property expression names. Notable properties:}
6518
+ * {@link https://lua-api.factorio.com/2.0.41/concepts/PropertyExpressionNames.html > Values either name a NamedNoiseExpression or can be literal numbers, stored as strings (e.g. `5`). All other controls can be overridden by a property expression names. Notable properties:}
6483
6519
  *
6484
- * {@link https://lua-api.factorio.com/2.0.35/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:}
6485
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/PropertyExpressionNames.html Online documentation}
6520
+ * {@link https://lua-api.factorio.com/2.0.41/concepts/PropertyExpressionNames.html > Climate controls ('Moisture' and 'Terrain type' at the bottom of the Terrain tab in the map generator GUI) don't have their own dedicated structures in MapGenSettings. Instead, their values are stored as property expression overrides with long names:}
6521
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/PropertyExpressionNames.html Online documentation}
6486
6522
  */
6487
6523
  export type PropertyExpressionNames = Record<string, string>
6488
6524
  export interface AdvancedMapGenSettings {
@@ -6505,7 +6541,7 @@ declare module "factorio:runtime" {
6505
6541
  }
6506
6542
  /**
6507
6543
  * An actual signal transmitted by the network.
6508
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/Signal.html Online documentation}
6544
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/Signal.html Online documentation}
6509
6545
  */
6510
6546
  export interface Signal {
6511
6547
  /**
@@ -6519,7 +6555,7 @@ declare module "factorio:runtime" {
6519
6555
  }
6520
6556
  /**
6521
6557
  * @see UpgradeMapperSourceWrite
6522
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/UpgradeMapperSource.html Online documentation}
6558
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/UpgradeMapperSource.html Online documentation}
6523
6559
  */
6524
6560
  export interface UpgradeMapperSource {
6525
6561
  readonly type: "item" | "entity"
@@ -6538,7 +6574,7 @@ declare module "factorio:runtime" {
6538
6574
  }
6539
6575
  /**
6540
6576
  * Write form of {@link UpgradeMapperSource}, where some properties allow additional values as input compared to the read form.
6541
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/UpgradeMapperSource.html Online documentation}
6577
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/UpgradeMapperSource.html Online documentation}
6542
6578
  */
6543
6579
  export interface UpgradeMapperSourceWrite {
6544
6580
  readonly type: "item" | "entity"
@@ -6575,7 +6611,7 @@ declare module "factorio:runtime" {
6575
6611
  }
6576
6612
  /**
6577
6613
  * A single filter used by an infinity-filters instance.
6578
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/InfinityInventoryFilter.html Online documentation}
6614
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/InfinityInventoryFilter.html Online documentation}
6579
6615
  */
6580
6616
  export interface InfinityInventoryFilter {
6581
6617
  /**
@@ -6597,7 +6633,7 @@ declare module "factorio:runtime" {
6597
6633
  }
6598
6634
  /**
6599
6635
  * A single filter used by an infinity-pipe type entity.
6600
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/InfinityPipeFilter.html Online documentation}
6636
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/InfinityPipeFilter.html Online documentation}
6601
6637
  */
6602
6638
  export interface InfinityPipeFilter {
6603
6639
  /**
@@ -6651,7 +6687,7 @@ declare module "factorio:runtime" {
6651
6687
  }
6652
6688
  /**
6653
6689
  * The settings used by a heat-interface type entity.
6654
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/HeatSetting.html Online documentation}
6690
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/HeatSetting.html Online documentation}
6655
6691
  */
6656
6692
  export interface HeatSetting {
6657
6693
  /**
@@ -6669,7 +6705,7 @@ declare module "factorio:runtime" {
6669
6705
  }
6670
6706
  /**
6671
6707
  * @see ArithmeticCombinatorParametersWrite
6672
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ArithmeticCombinatorParameters.html Online documentation}
6708
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ArithmeticCombinatorParameters.html Online documentation}
6673
6709
  */
6674
6710
  export interface ArithmeticCombinatorParameters {
6675
6711
  /**
@@ -6699,7 +6735,7 @@ declare module "factorio:runtime" {
6699
6735
  }
6700
6736
  /**
6701
6737
  * Write form of {@link ArithmeticCombinatorParameters}, where some properties allow additional values as input compared to the read form.
6702
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ArithmeticCombinatorParameters.html Online documentation}
6738
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ArithmeticCombinatorParameters.html Online documentation}
6703
6739
  */
6704
6740
  export interface ArithmeticCombinatorParametersWrite {
6705
6741
  /**
@@ -6729,7 +6765,7 @@ declare module "factorio:runtime" {
6729
6765
  }
6730
6766
  /**
6731
6767
  * @see SelectorCombinatorParametersWrite
6732
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/SelectorCombinatorParameters.html Online documentation}
6768
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/SelectorCombinatorParameters.html Online documentation}
6733
6769
  */
6734
6770
  export interface SelectorCombinatorParameters {
6735
6771
  /**
@@ -6755,7 +6791,7 @@ declare module "factorio:runtime" {
6755
6791
  }
6756
6792
  /**
6757
6793
  * Write form of {@link SelectorCombinatorParameters}, where some properties allow additional values as input compared to the read form.
6758
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/SelectorCombinatorParameters.html Online documentation}
6794
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/SelectorCombinatorParameters.html Online documentation}
6759
6795
  */
6760
6796
  export interface SelectorCombinatorParametersWrite {
6761
6797
  /**
@@ -6797,7 +6833,7 @@ declare module "factorio:runtime" {
6797
6833
  }
6798
6834
  /**
6799
6835
  * @see CircuitConditionWrite
6800
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/CircuitCondition.html Online documentation}
6836
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/CircuitCondition.html Online documentation}
6801
6837
  */
6802
6838
  export interface CircuitCondition {
6803
6839
  /**
@@ -6819,7 +6855,7 @@ declare module "factorio:runtime" {
6819
6855
  }
6820
6856
  /**
6821
6857
  * Write form of {@link CircuitCondition}, where some properties allow additional values as input compared to the read form.
6822
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/CircuitCondition.html Online documentation}
6858
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/CircuitCondition.html Online documentation}
6823
6859
  */
6824
6860
  export interface CircuitConditionWrite {
6825
6861
  /**
@@ -6841,7 +6877,7 @@ declare module "factorio:runtime" {
6841
6877
  }
6842
6878
  /**
6843
6879
  * @see CircuitConditionDefinitionWrite
6844
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/CircuitConditionDefinition.html Online documentation}
6880
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/CircuitConditionDefinition.html Online documentation}
6845
6881
  */
6846
6882
  export interface CircuitConditionDefinition {
6847
6883
  /**
@@ -6855,7 +6891,7 @@ declare module "factorio:runtime" {
6855
6891
  }
6856
6892
  /**
6857
6893
  * Write form of {@link CircuitConditionDefinition}, where some properties allow additional values as input compared to the read form.
6858
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/CircuitConditionDefinition.html Online documentation}
6894
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/CircuitConditionDefinition.html Online documentation}
6859
6895
  */
6860
6896
  export interface CircuitConditionDefinitionWrite {
6861
6897
  /**
@@ -7130,7 +7166,7 @@ declare module "factorio:runtime" {
7130
7166
  * - {@link defines.command.stop}: {@link StopCommand}
7131
7167
  * - {@link defines.command.flee}: {@link FleeCommand}
7132
7168
  * - {@link defines.command.build_base}: {@link BuildBaseCommand}
7133
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/Command.html Online documentation}
7169
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/Command.html Online documentation}
7134
7170
  */
7135
7171
  export type Command =
7136
7172
  | AttackCommand
@@ -7144,7 +7180,7 @@ declare module "factorio:runtime" {
7144
7180
  | BuildBaseCommand
7145
7181
  /**
7146
7182
  * Write form of {@link Command}, where some properties allow additional values as input compared to the read form.
7147
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/Command.html Online documentation}
7183
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/Command.html Online documentation}
7148
7184
  */
7149
7185
  export type CommandWrite =
7150
7186
  | AttackCommand
@@ -7229,7 +7265,7 @@ declare module "factorio:runtime" {
7229
7265
  * These are both full stacks of iron plates (for iron-plate, a full stack is 100 plates)
7230
7266
  * "iron-plate"
7231
7267
  * {name="iron-plate", count=100}
7232
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/SimpleItemStack.html Online documentation}
7268
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/SimpleItemStack.html Online documentation}
7233
7269
  */
7234
7270
  export type SimpleItemStack = string | ItemStackDefinition
7235
7271
  /**
@@ -7239,7 +7275,7 @@ declare module "factorio:runtime" {
7239
7275
  * - SurfaceIndex: It will be the index of the surface. `nauvis` has index `1`, the first surface-created surface will have index `2` and so on.
7240
7276
  * - `string`: It will be the surface name. E.g. `"nauvis"`.
7241
7277
  * - {@link LuaSurface}: A reference to {@link LuaSurface} may be passed directly.
7242
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/SurfaceIdentification.html Online documentation}
7278
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/SurfaceIdentification.html Online documentation}
7243
7279
  */
7244
7280
  export type SurfaceIdentification = SurfaceIndex | string | LuaSurface
7245
7281
  /**
@@ -7249,7 +7285,7 @@ declare module "factorio:runtime" {
7249
7285
  * - PlayerIndex: The player index.
7250
7286
  * - `string`: The player name.
7251
7287
  * - {@link LuaPlayer}: A reference to {@link LuaPlayer} may be passed directly.
7252
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/PlayerIdentification.html Online documentation}
7288
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/PlayerIdentification.html Online documentation}
7253
7289
  */
7254
7290
  export type PlayerIdentification = PlayerIndex | string | LuaPlayer
7255
7291
  /**
@@ -7258,7 +7294,7 @@ declare module "factorio:runtime" {
7258
7294
  * ## Union members
7259
7295
  * - {@link SimpleItemStack}
7260
7296
  * - {@link LuaItemStack}
7261
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ItemStackIdentification.html Online documentation}
7297
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ItemStackIdentification.html Online documentation}
7262
7298
  */
7263
7299
  export type ItemStackIdentification = SimpleItemStack | LuaItemStack
7264
7300
  /**
@@ -7268,7 +7304,7 @@ declare module "factorio:runtime" {
7268
7304
  * - `"entity"`: Fires at an entity.
7269
7305
  * - `"position"`: Fires directly at a position.
7270
7306
  * - `"direction"`: Fires in a direction.
7271
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/TargetType.html Online documentation}
7307
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/TargetType.html Online documentation}
7272
7308
  */
7273
7309
  export type TargetType = "entity" | "position" | "direction"
7274
7310
  export interface BeamTarget {
@@ -7305,8 +7341,8 @@ declare module "factorio:runtime" {
7305
7341
  *
7306
7342
  * The validity of a SoundPath can be verified at runtime using {@link LuaHelpers#is_valid_sound_path LuaHelpers::is_valid_sound_path}.
7307
7343
  *
7308
- * {@link https://lua-api.factorio.com/2.0.35/concepts/SoundPath.html > The utility and ambient types each contain general use sound prototypes defined by the game itself.}
7309
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/SoundPath.html Online documentation}
7344
+ * {@link https://lua-api.factorio.com/2.0.41/concepts/SoundPath.html > The utility and ambient types each contain general use sound prototypes defined by the game itself.}
7345
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/SoundPath.html Online documentation}
7310
7346
  */
7311
7347
  export type SoundPath = (string & { _?: never }) | `${SoundCategory}/${string}`
7312
7348
  export interface CircularParticleCreationSpecification {
@@ -7438,7 +7474,7 @@ declare module "factorio:runtime" {
7438
7474
  * Other attributes may be specified depending on `type`:
7439
7475
  * - `"projectile"`: {@link ProjectileAttackParameters}
7440
7476
  * - `"stream"`: {@link StreamAttackParameters}
7441
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/AttackParameters.html Online documentation}
7477
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/AttackParameters.html Online documentation}
7442
7478
  */
7443
7479
  export type AttackParameters = ProjectileAttackParameters | StreamAttackParameters | OtherAttackParameters
7444
7480
  export interface GunShift4Way {
@@ -7504,7 +7540,7 @@ declare module "factorio:runtime" {
7504
7540
  * - `"use-on-self"`: {@link UseOnSelfCapsuleAction}
7505
7541
  * - `"artillery-remote"`: {@link ArtilleryRemoteCapsuleAction}
7506
7542
  * - `"destroy-cliffs"`: {@link DestroyCliffsCapsuleAction}
7507
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/CapsuleAction.html Online documentation}
7543
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/CapsuleAction.html Online documentation}
7508
7544
  */
7509
7545
  export type CapsuleAction =
7510
7546
  | ThrowCapsuleAction
@@ -7544,12 +7580,12 @@ declare module "factorio:runtime" {
7544
7580
  }
7545
7581
  /**
7546
7582
  * Any basic type (string, number, boolean) or table.
7547
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/AnyBasic.html Online documentation}
7583
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/AnyBasic.html Online documentation}
7548
7584
  */
7549
7585
  export type AnyBasic = string | boolean | number | table
7550
7586
  /**
7551
7587
  * Any basic type (string, number, boolean), table, or LuaObject.
7552
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/Any.html Online documentation}
7588
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/Any.html Online documentation}
7553
7589
  */
7554
7590
  export type Any = string | boolean | number | table | LuaObject
7555
7591
  export interface ProgrammableSpeakerParameters {
@@ -7559,7 +7595,7 @@ declare module "factorio:runtime" {
7559
7595
  }
7560
7596
  /**
7561
7597
  * @see ProgrammableSpeakerAlertParametersWrite
7562
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ProgrammableSpeakerAlertParameters.html Online documentation}
7598
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ProgrammableSpeakerAlertParameters.html Online documentation}
7563
7599
  */
7564
7600
  export interface ProgrammableSpeakerAlertParameters {
7565
7601
  readonly show_alert: boolean
@@ -7569,7 +7605,7 @@ declare module "factorio:runtime" {
7569
7605
  }
7570
7606
  /**
7571
7607
  * Write form of {@link ProgrammableSpeakerAlertParameters}, where some properties allow additional values as input compared to the read form.
7572
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ProgrammableSpeakerAlertParameters.html Online documentation}
7608
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ProgrammableSpeakerAlertParameters.html Online documentation}
7573
7609
  */
7574
7610
  export interface ProgrammableSpeakerAlertParametersWrite {
7575
7611
  readonly show_alert: boolean
@@ -7601,7 +7637,7 @@ declare module "factorio:runtime" {
7601
7637
  * - `"top-right"`
7602
7638
  * - `"right"`: The same as `"middle-right"`
7603
7639
  * - `"bottom-right"`
7604
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/Alignment.html Online documentation}
7640
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/Alignment.html Online documentation}
7605
7641
  */
7606
7642
  export type Alignment =
7607
7643
  | "top-left"
@@ -7634,8 +7670,8 @@ declare module "factorio:runtime" {
7634
7670
  _customEventIdBrand: any
7635
7671
  }
7636
7672
  /**
7637
- * 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.35/events.html the list of Factorio events} for more information on these.
7638
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/EventData.html Online documentation}
7673
+ * Information about the event that has been raised. The table can also contain other fields depending on the type of event. See {@linkplain https://lua-api.factorio.com/2.0.41/events.html the list of Factorio events} for more information on these.
7674
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/EventData.html Online documentation}
7639
7675
  */
7640
7676
  export interface EventData {
7641
7677
  /**
@@ -7744,7 +7780,7 @@ declare module "factorio:runtime" {
7744
7780
  * - `"button-7"`
7745
7781
  * - `"button-8"`
7746
7782
  * - `"button-9"`
7747
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/MouseButtonFlags.html Online documentation}
7783
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/MouseButtonFlags.html Online documentation}
7748
7784
  */
7749
7785
  export interface MouseButtonFlags {
7750
7786
  readonly left?: true
@@ -7767,7 +7803,7 @@ declare module "factorio:runtime" {
7767
7803
  * - `"not-friend"`: Forces which are not friends pass.
7768
7804
  * - `"same"`: The same force pass.
7769
7805
  * - `"not-same"`: The non-same forces pass.
7770
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ForceCondition.html Online documentation}
7806
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ForceCondition.html Online documentation}
7771
7807
  */
7772
7808
  export type ForceCondition = "all" | "enemy" | "ally" | "friend" | "not-friend" | "same" | "not-same"
7773
7809
  export interface ItemStackLocation {
@@ -7805,7 +7841,7 @@ declare module "factorio:runtime" {
7805
7841
  * - `"tabbed-pane"`: A collection of `tab`s and their contents. Relevant event: {@link OnGuiSelectedTabChangedEvent on_gui_selected_tab_changed}
7806
7842
  * - `"tab"`: A tab for use in a `tabbed-pane`.
7807
7843
  * - `"switch"`: A switch with three possible states. Can have labels attached to either side. Relevant event: {@link OnGuiSwitchStateChangedEvent on_gui_switch_state_changed}
7808
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/GuiElementType.html Online documentation}
7844
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GuiElementType.html Online documentation}
7809
7845
  */
7810
7846
  export type GuiElementType =
7811
7847
  | "button"
@@ -7845,7 +7881,7 @@ declare module "factorio:runtime" {
7845
7881
  * - `"position"`
7846
7882
  * - `"crafting_queue"`
7847
7883
  * - `"item_stack"`: Will point to a given item stack in an inventory.
7848
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/GuiArrowType.html Online documentation}
7884
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GuiArrowType.html Online documentation}
7849
7885
  */
7850
7886
  export type GuiArrowType =
7851
7887
  | "nowhere"
@@ -7862,7 +7898,7 @@ declare module "factorio:runtime" {
7862
7898
  * ## Union members
7863
7899
  * - `"horizontal"`
7864
7900
  * - `"vertical"`
7865
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/GuiDirection.html Online documentation}
7901
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/GuiDirection.html Online documentation}
7866
7902
  */
7867
7903
  export type GuiDirection = "horizontal" | "vertical"
7868
7904
  /**
@@ -7874,7 +7910,7 @@ declare module "factorio:runtime" {
7874
7910
  * - `"always"`
7875
7911
  * - `"auto"`
7876
7912
  * - `"auto-and-reserve-space"`
7877
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ScrollPolicy.html Online documentation}
7913
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ScrollPolicy.html Online documentation}
7878
7914
  */
7879
7915
  export type ScrollPolicy = "never" | "dont-show-but-allow-scrolling" | "always" | "auto" | "auto-and-reserve-space"
7880
7916
  export interface RailLocation {
@@ -7891,71 +7927,71 @@ declare module "factorio:runtime" {
7891
7927
  }
7892
7928
  /**
7893
7929
  * A floating-point number. This is a single-precision floating point number. Whilst Lua only uses double-precision numbers, when a function takes a float, the game engine will immediately convert the double-precision number to single-precision.
7894
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/float.html Online documentation}
7930
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/float.html Online documentation}
7895
7931
  */
7896
7932
  export type float = number
7897
7933
  /**
7898
7934
  * A double-precision floating-point number. This is the same data type as all Lua numbers use.
7899
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/double.html Online documentation}
7935
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/double.html Online documentation}
7900
7936
  */
7901
7937
  export type double = number
7902
7938
  /**
7903
7939
  * 32-bit signed integer. Possible values are `-2 147 483 648` to `2 147 483 647`.
7904
7940
  *
7905
7941
  * Since Lua 5.2 only uses doubles, any API that asks for `int` will floor the given double.
7906
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/int.html Online documentation}
7942
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/int.html Online documentation}
7907
7943
  */
7908
7944
  export type int = number
7909
7945
  /**
7910
7946
  * 8-bit signed integer. Possible values are `-128` to `127`.
7911
7947
  *
7912
7948
  * Since Lua 5.2 only uses doubles, any API that asks for `int8` will floor the given double.
7913
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/int8.html Online documentation}
7949
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/int8.html Online documentation}
7914
7950
  */
7915
7951
  export type int8 = number
7916
7952
  /**
7917
7953
  * 32-bit unsigned integer. Possible values are `0` to `4 294 967 295`.
7918
7954
  *
7919
7955
  * Since Lua 5.2 only uses doubles, any API that asks for `uint` will floor the given double.
7920
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/uint.html Online documentation}
7956
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/uint.html Online documentation}
7921
7957
  */
7922
7958
  export type uint = number
7923
7959
  /**
7924
7960
  * 8-bit unsigned integer. Possible values are `0` to `255`.
7925
7961
  *
7926
7962
  * Since Lua 5.2 only uses doubles, any API that asks for `uint8` will floor the given double.
7927
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/uint8.html Online documentation}
7963
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/uint8.html Online documentation}
7928
7964
  */
7929
7965
  export type uint8 = number
7930
7966
  /**
7931
7967
  * 16-bit unsigned integer. Possible values are `0` to `65 535`.
7932
7968
  *
7933
7969
  * Since Lua 5.2 only uses doubles, any API that asks for `uint16` will floor the given double.
7934
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/uint16.html Online documentation}
7970
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/uint16.html Online documentation}
7935
7971
  */
7936
7972
  export type uint16 = number
7937
7973
  /**
7938
7974
  * 64-bit unsigned integer. Possible values are `0` to `18 446 744 073 709 551 615`.
7939
7975
  *
7940
7976
  * Since Lua 5.2 only uses doubles, any API that asks for `uint64` will floor the given double.
7941
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/uint64.html Online documentation}
7977
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/uint64.html Online documentation}
7942
7978
  */
7943
7979
  export type uint64 = number
7944
7980
  /**
7945
7981
  * Nil is the type of the value `nil`, whose main property is to be different from any other value. It usually represents the absence of a useful value.
7946
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/nil.html Online documentation}
7982
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/nil.html Online documentation}
7947
7983
  */
7948
7984
  export type nil = undefined
7949
7985
  /**
7950
7986
  * Tables are enclosed in curly brackets, like this `{}`.
7951
7987
  *
7952
7988
  * Throughout the API docs, the terms "array" and "dictionary" are used. These are fundamentally just {@linkplain http://www.lua.org/pil/2.5.html Lua tables}, but have a limitation on which kind of table keys can be used. An array is a table that uses continuous integer keys starting at `1`, while a dictionary can use numeric or string keys in any order or combination.
7953
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/table.html Online documentation}
7989
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/table.html Online documentation}
7954
7990
  */
7955
7991
  export type table = object
7956
7992
  /**
7957
- * Any LuaObject listed on the {@linkplain https://lua-api.factorio.com/2.0.35/classes.html Classes} page.
7958
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaObject.html Online documentation}
7993
+ * Any LuaObject listed on the {@linkplain https://lua-api.factorio.com/2.0.41/classes.html Classes} page.
7994
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaObject.html Online documentation}
7959
7995
  */
7960
7996
  export interface LuaObject {
7961
7997
  readonly object_name: string
@@ -8014,7 +8050,7 @@ declare module "factorio:runtime" {
8014
8050
  * - `"type"`: {@link TypeModSettingPrototypeFilter}
8015
8051
  * - `"mod"`: {@link ModModSettingPrototypeFilter}
8016
8052
  * - `"setting-type"`: {@link SettingTypeModSettingPrototypeFilter}
8017
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ModSettingPrototypeFilter.html Online documentation}
8053
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ModSettingPrototypeFilter.html Online documentation}
8018
8054
  */
8019
8055
  export type ModSettingPrototypeFilter =
8020
8056
  | TypeModSettingPrototypeFilter
@@ -8159,7 +8195,7 @@ declare module "factorio:runtime" {
8159
8195
  * - `"vehicle-friction-modifier"`: {@link VehicleFrictionModifierTilePrototypeFilter}
8160
8196
  * - `"decorative-removal-probability"`: {@link DecorativeRemovalProbabilityTilePrototypeFilter}
8161
8197
  * - `"absorptions-per-second"`: {@link AbsorptionsPerSecondTilePrototypeFilter}
8162
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/TilePrototypeFilter.html Online documentation}
8198
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/TilePrototypeFilter.html Online documentation}
8163
8199
  */
8164
8200
  export type TilePrototypeFilter =
8165
8201
  | CollisionMaskTilePrototypeFilter
@@ -8170,7 +8206,7 @@ declare module "factorio:runtime" {
8170
8206
  | OtherTilePrototypeFilter
8171
8207
  /**
8172
8208
  * Write form of {@link TilePrototypeFilter}, where some properties allow additional values as input compared to the read form.
8173
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/TilePrototypeFilter.html Online documentation}
8209
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/TilePrototypeFilter.html Online documentation}
8174
8210
  */
8175
8211
  export type TilePrototypeFilterWrite =
8176
8212
  | CollisionMaskTilePrototypeFilter
@@ -8221,7 +8257,7 @@ declare module "factorio:runtime" {
8221
8257
  *
8222
8258
  * Other attributes may be specified depending on `filter`:
8223
8259
  * - `"collision-mask"`: {@link CollisionMaskDecorativePrototypeFilter}
8224
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/DecorativePrototypeFilter.html Online documentation}
8260
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/DecorativePrototypeFilter.html Online documentation}
8225
8261
  */
8226
8262
  export type DecorativePrototypeFilter = CollisionMaskDecorativePrototypeFilter | OtherDecorativePrototypeFilter
8227
8263
  /**
@@ -8475,7 +8511,7 @@ declare module "factorio:runtime" {
8475
8511
  * - `"emissions-multiplier"`: {@link EmissionsMultiplierRecipePrototypeFilter}
8476
8512
  * - `"request-paste-multiplier"`: {@link RequestPasteMultiplierRecipePrototypeFilter}
8477
8513
  * - `"overload-multiplier"`: {@link OverloadMultiplierRecipePrototypeFilter}
8478
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/RecipePrototypeFilter.html Online documentation}
8514
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/RecipePrototypeFilter.html Online documentation}
8479
8515
  */
8480
8516
  export type RecipePrototypeFilter =
8481
8517
  | HasIngredientItemRecipePrototypeFilter
@@ -8491,7 +8527,7 @@ declare module "factorio:runtime" {
8491
8527
  | OtherRecipePrototypeFilter
8492
8528
  /**
8493
8529
  * Write form of {@link RecipePrototypeFilter}, where some properties allow additional values as input compared to the read form.
8494
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/RecipePrototypeFilter.html Online documentation}
8530
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/RecipePrototypeFilter.html Online documentation}
8495
8531
  */
8496
8532
  export type RecipePrototypeFilterWrite =
8497
8533
  | HasIngredientItemRecipePrototypeFilterWrite
@@ -8543,7 +8579,7 @@ declare module "factorio:runtime" {
8543
8579
  *
8544
8580
  * Other attributes may be specified depending on `filter`:
8545
8581
  * - `"type"`: {@link TypeAchievementPrototypeFilter}
8546
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/AchievementPrototypeFilter.html Online documentation}
8582
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/AchievementPrototypeFilter.html Online documentation}
8547
8583
  */
8548
8584
  export type AchievementPrototypeFilter = TypeAchievementPrototypeFilter | OtherAchievementPrototypeFilter
8549
8585
  /**
@@ -8666,7 +8702,7 @@ declare module "factorio:runtime" {
8666
8702
  * - `"level"`: {@link LevelTechnologyPrototypeFilter}
8667
8703
  * - `"max-level"`: {@link MaxLevelTechnologyPrototypeFilter}
8668
8704
  * - `"time"`: {@link TimeTechnologyPrototypeFilter}
8669
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/TechnologyPrototypeFilter.html Online documentation}
8705
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/TechnologyPrototypeFilter.html Online documentation}
8670
8706
  */
8671
8707
  export type TechnologyPrototypeFilter =
8672
8708
  | ResearchUnitIngredientTechnologyPrototypeFilter
@@ -8677,7 +8713,7 @@ declare module "factorio:runtime" {
8677
8713
  | OtherTechnologyPrototypeFilter
8678
8714
  /**
8679
8715
  * Write form of {@link TechnologyPrototypeFilter}, where some properties allow additional values as input compared to the read form.
8680
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/TechnologyPrototypeFilter.html Online documentation}
8716
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/TechnologyPrototypeFilter.html Online documentation}
8681
8717
  */
8682
8718
  export type TechnologyPrototypeFilterWrite =
8683
8719
  | ResearchUnitIngredientTechnologyPrototypeFilter
@@ -8994,7 +9030,7 @@ declare module "factorio:runtime" {
8994
9030
  * - `"fuel-acceleration-multiplier"`: {@link FuelAccelerationMultiplierItemPrototypeFilter}
8995
9031
  * - `"fuel-top-speed-multiplier"`: {@link FuelTopSpeedMultiplierItemPrototypeFilter}
8996
9032
  * - `"fuel-emissions-multiplier"`: {@link FuelEmissionsMultiplierItemPrototypeFilter}
8997
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ItemPrototypeFilter.html Online documentation}
9033
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ItemPrototypeFilter.html Online documentation}
8998
9034
  */
8999
9035
  export type ItemPrototypeFilter =
9000
9036
  | PlaceResultItemPrototypeFilter
@@ -9014,7 +9050,7 @@ declare module "factorio:runtime" {
9014
9050
  | OtherItemPrototypeFilter
9015
9051
  /**
9016
9052
  * Write form of {@link ItemPrototypeFilter}, where some properties allow additional values as input compared to the read form.
9017
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/ItemPrototypeFilter.html Online documentation}
9053
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/ItemPrototypeFilter.html Online documentation}
9018
9054
  */
9019
9055
  export type ItemPrototypeFilterWrite =
9020
9056
  | PlaceResultItemPrototypeFilterWrite
@@ -9070,7 +9106,7 @@ declare module "factorio:runtime" {
9070
9106
  *
9071
9107
  * Other attributes may be specified depending on `filter`:
9072
9108
  * - `"type"`: {@link TypeEquipmentPrototypeFilter}
9073
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/EquipmentPrototypeFilter.html Online documentation}
9109
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/EquipmentPrototypeFilter.html Online documentation}
9074
9110
  */
9075
9111
  export type EquipmentPrototypeFilter = TypeEquipmentPrototypeFilter | OtherEquipmentPrototypeFilter
9076
9112
  /**
@@ -9301,7 +9337,7 @@ declare module "factorio:runtime" {
9301
9337
  * - `"selection-priority"`: {@link SelectionPriorityEntityPrototypeFilter}
9302
9338
  * - `"emissions-per-second"`: {@link EmissionsPerSecondEntityPrototypeFilter}
9303
9339
  * - `"crafting-category"`: {@link CraftingCategoryEntityPrototypeFilter}
9304
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/EntityPrototypeFilter.html Online documentation}
9340
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/EntityPrototypeFilter.html Online documentation}
9305
9341
  */
9306
9342
  export type EntityPrototypeFilter =
9307
9343
  | NameEntityPrototypeFilter
@@ -9315,7 +9351,7 @@ declare module "factorio:runtime" {
9315
9351
  | OtherEntityPrototypeFilter
9316
9352
  /**
9317
9353
  * Write form of {@link EntityPrototypeFilter}, where some properties allow additional values as input compared to the read form.
9318
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/EntityPrototypeFilter.html Online documentation}
9354
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/EntityPrototypeFilter.html Online documentation}
9319
9355
  */
9320
9356
  export type EntityPrototypeFilterWrite =
9321
9357
  | NameEntityPrototypeFilter
@@ -9385,7 +9421,7 @@ declare module "factorio:runtime" {
9385
9421
  * Other attributes may be specified depending on `filter`:
9386
9422
  * - `"type"`: {@link TypeSpaceLocationPrototypeFilter}
9387
9423
  * - `"solar-power-in-space"`: {@link SolarPowerInSpaceSpaceLocationPrototypeFilter}
9388
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/SpaceLocationPrototypeFilter.html Online documentation}
9424
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/SpaceLocationPrototypeFilter.html Online documentation}
9389
9425
  */
9390
9426
  export type SpaceLocationPrototypeFilter =
9391
9427
  | TypeSpaceLocationPrototypeFilter
@@ -9393,7 +9429,7 @@ declare module "factorio:runtime" {
9393
9429
  | OtherSpaceLocationPrototypeFilter
9394
9430
  /**
9395
9431
  * Write form of {@link SpaceLocationPrototypeFilter}, where some properties allow additional values as input compared to the read form.
9396
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/SpaceLocationPrototypeFilter.html Online documentation}
9432
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/SpaceLocationPrototypeFilter.html Online documentation}
9397
9433
  */
9398
9434
  export type SpaceLocationPrototypeFilterWrite =
9399
9435
  | TypeSpaceLocationPrototypeFilter
@@ -9581,7 +9617,7 @@ declare module "factorio:runtime" {
9581
9617
  * - `"fuel-value"`: {@link FuelValueFluidPrototypeFilter}
9582
9618
  * - `"emissions-multiplier"`: {@link EmissionsMultiplierFluidPrototypeFilter}
9583
9619
  * - `"gas-temperature"`: {@link GasTemperatureFluidPrototypeFilter}
9584
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/FluidPrototypeFilter.html Online documentation}
9620
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/FluidPrototypeFilter.html Online documentation}
9585
9621
  */
9586
9622
  export type FluidPrototypeFilter =
9587
9623
  | NameFluidPrototypeFilter
@@ -9595,7 +9631,7 @@ declare module "factorio:runtime" {
9595
9631
  | OtherFluidPrototypeFilter
9596
9632
  /**
9597
9633
  * Write form of {@link FluidPrototypeFilter}, where some properties allow additional values as input compared to the read form.
9598
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/FluidPrototypeFilter.html Online documentation}
9634
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/FluidPrototypeFilter.html Online documentation}
9599
9635
  */
9600
9636
  export type FluidPrototypeFilterWrite =
9601
9637
  | NameFluidPrototypeFilter
@@ -9704,7 +9740,7 @@ declare module "factorio:runtime" {
9704
9740
  * - `"name"`: {@link NamePrePlatformMinedEntityEventFilter}
9705
9741
  * - `"ghost_type"`: {@link GhostTypePrePlatformMinedEntityEventFilter}
9706
9742
  * - `"ghost_name"`: {@link GhostNamePrePlatformMinedEntityEventFilter}
9707
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaPrePlatformMinedEntityEventFilter.html Online documentation}
9743
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaPrePlatformMinedEntityEventFilter.html Online documentation}
9708
9744
  */
9709
9745
  export type LuaPrePlatformMinedEntityEventFilter =
9710
9746
  | TypePrePlatformMinedEntityEventFilter
@@ -9809,7 +9845,7 @@ declare module "factorio:runtime" {
9809
9845
  * - `"name"`: {@link NameRobotMinedEntityEventFilter}
9810
9846
  * - `"ghost_type"`: {@link GhostTypeRobotMinedEntityEventFilter}
9811
9847
  * - `"ghost_name"`: {@link GhostNameRobotMinedEntityEventFilter}
9812
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaRobotMinedEntityEventFilter.html Online documentation}
9848
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaRobotMinedEntityEventFilter.html Online documentation}
9813
9849
  */
9814
9850
  export type LuaRobotMinedEntityEventFilter =
9815
9851
  | TypeRobotMinedEntityEventFilter
@@ -9914,7 +9950,7 @@ declare module "factorio:runtime" {
9914
9950
  * - `"name"`: {@link NameEntityMarkedForUpgradeEventFilter}
9915
9951
  * - `"ghost_type"`: {@link GhostTypeEntityMarkedForUpgradeEventFilter}
9916
9952
  * - `"ghost_name"`: {@link GhostNameEntityMarkedForUpgradeEventFilter}
9917
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaEntityMarkedForUpgradeEventFilter.html Online documentation}
9953
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaEntityMarkedForUpgradeEventFilter.html Online documentation}
9918
9954
  */
9919
9955
  export type LuaEntityMarkedForUpgradeEventFilter =
9920
9956
  | TypeEntityMarkedForUpgradeEventFilter
@@ -10019,7 +10055,7 @@ declare module "factorio:runtime" {
10019
10055
  * - `"name"`: {@link NamePreGhostUpgradedEventFilter}
10020
10056
  * - `"ghost_type"`: {@link GhostTypePreGhostUpgradedEventFilter}
10021
10057
  * - `"ghost_name"`: {@link GhostNamePreGhostUpgradedEventFilter}
10022
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaPreGhostUpgradedEventFilter.html Online documentation}
10058
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaPreGhostUpgradedEventFilter.html Online documentation}
10023
10059
  */
10024
10060
  export type LuaPreGhostUpgradedEventFilter =
10025
10061
  | TypePreGhostUpgradedEventFilter
@@ -10124,7 +10160,7 @@ declare module "factorio:runtime" {
10124
10160
  * - `"name"`: {@link NamePlatformMinedEntityEventFilter}
10125
10161
  * - `"ghost_type"`: {@link GhostTypePlatformMinedEntityEventFilter}
10126
10162
  * - `"ghost_name"`: {@link GhostNamePlatformMinedEntityEventFilter}
10127
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaPlatformMinedEntityEventFilter.html Online documentation}
10163
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaPlatformMinedEntityEventFilter.html Online documentation}
10128
10164
  */
10129
10165
  export type LuaPlatformMinedEntityEventFilter =
10130
10166
  | TypePlatformMinedEntityEventFilter
@@ -10229,7 +10265,7 @@ declare module "factorio:runtime" {
10229
10265
  * - `"name"`: {@link NameScriptRaisedDestroyEventFilter}
10230
10266
  * - `"ghost_type"`: {@link GhostTypeScriptRaisedDestroyEventFilter}
10231
10267
  * - `"ghost_name"`: {@link GhostNameScriptRaisedDestroyEventFilter}
10232
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaScriptRaisedDestroyEventFilter.html Online documentation}
10268
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaScriptRaisedDestroyEventFilter.html Online documentation}
10233
10269
  */
10234
10270
  export type LuaScriptRaisedDestroyEventFilter =
10235
10271
  | TypeScriptRaisedDestroyEventFilter
@@ -10346,7 +10382,7 @@ declare module "factorio:runtime" {
10346
10382
  * - `"ghost_type"`: {@link GhostTypePlayerBuiltEntityEventFilter}
10347
10383
  * - `"ghost_name"`: {@link GhostNamePlayerBuiltEntityEventFilter}
10348
10384
  * - `"force"`: {@link ForcePlayerBuiltEntityEventFilter}
10349
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaPlayerBuiltEntityEventFilter.html Online documentation}
10385
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaPlayerBuiltEntityEventFilter.html Online documentation}
10350
10386
  */
10351
10387
  export type LuaPlayerBuiltEntityEventFilter =
10352
10388
  | TypePlayerBuiltEntityEventFilter
@@ -10464,7 +10500,7 @@ declare module "factorio:runtime" {
10464
10500
  * - `"ghost_type"`: {@link GhostTypePlatformBuiltEntityEventFilter}
10465
10501
  * - `"ghost_name"`: {@link GhostNamePlatformBuiltEntityEventFilter}
10466
10502
  * - `"force"`: {@link ForcePlatformBuiltEntityEventFilter}
10467
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaPlatformBuiltEntityEventFilter.html Online documentation}
10503
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaPlatformBuiltEntityEventFilter.html Online documentation}
10468
10504
  */
10469
10505
  export type LuaPlatformBuiltEntityEventFilter =
10470
10506
  | TypePlatformBuiltEntityEventFilter
@@ -10570,7 +10606,7 @@ declare module "factorio:runtime" {
10570
10606
  * - `"name"`: {@link NamePreGhostDeconstructedEventFilter}
10571
10607
  * - `"ghost_type"`: {@link GhostTypePreGhostDeconstructedEventFilter}
10572
10608
  * - `"ghost_name"`: {@link GhostNamePreGhostDeconstructedEventFilter}
10573
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaPreGhostDeconstructedEventFilter.html Online documentation}
10609
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaPreGhostDeconstructedEventFilter.html Online documentation}
10574
10610
  */
10575
10611
  export type LuaPreGhostDeconstructedEventFilter =
10576
10612
  | TypePreGhostDeconstructedEventFilter
@@ -10675,7 +10711,7 @@ declare module "factorio:runtime" {
10675
10711
  * - `"name"`: {@link NameEntityClonedEventFilter}
10676
10712
  * - `"ghost_type"`: {@link GhostTypeEntityClonedEventFilter}
10677
10713
  * - `"ghost_name"`: {@link GhostNameEntityClonedEventFilter}
10678
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaEntityClonedEventFilter.html Online documentation}
10714
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaEntityClonedEventFilter.html Online documentation}
10679
10715
  */
10680
10716
  export type LuaEntityClonedEventFilter =
10681
10717
  | TypeEntityClonedEventFilter
@@ -10780,7 +10816,7 @@ declare module "factorio:runtime" {
10780
10816
  * - `"name"`: {@link NameScriptRaisedTeleportedEventFilter}
10781
10817
  * - `"ghost_type"`: {@link GhostTypeScriptRaisedTeleportedEventFilter}
10782
10818
  * - `"ghost_name"`: {@link GhostNameScriptRaisedTeleportedEventFilter}
10783
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaScriptRaisedTeleportedEventFilter.html Online documentation}
10819
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaScriptRaisedTeleportedEventFilter.html Online documentation}
10784
10820
  */
10785
10821
  export type LuaScriptRaisedTeleportedEventFilter =
10786
10822
  | TypeScriptRaisedTeleportedEventFilter
@@ -10887,7 +10923,7 @@ declare module "factorio:runtime" {
10887
10923
  * - `"name"`: {@link NameEntityDeconstructionCancelledEventFilter}
10888
10924
  * - `"ghost_type"`: {@link GhostTypeEntityDeconstructionCancelledEventFilter}
10889
10925
  * - `"ghost_name"`: {@link GhostNameEntityDeconstructionCancelledEventFilter}
10890
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaEntityDeconstructionCancelledEventFilter.html Online documentation}
10926
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaEntityDeconstructionCancelledEventFilter.html Online documentation}
10891
10927
  */
10892
10928
  export type LuaEntityDeconstructionCancelledEventFilter =
10893
10929
  | TypeEntityDeconstructionCancelledEventFilter
@@ -11004,7 +11040,7 @@ declare module "factorio:runtime" {
11004
11040
  * - `"ghost_type"`: {@link GhostTypeRobotBuiltEntityEventFilter}
11005
11041
  * - `"ghost_name"`: {@link GhostNameRobotBuiltEntityEventFilter}
11006
11042
  * - `"force"`: {@link ForceRobotBuiltEntityEventFilter}
11007
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaRobotBuiltEntityEventFilter.html Online documentation}
11043
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaRobotBuiltEntityEventFilter.html Online documentation}
11008
11044
  */
11009
11045
  export type LuaRobotBuiltEntityEventFilter =
11010
11046
  | TypeRobotBuiltEntityEventFilter
@@ -11110,7 +11146,7 @@ declare module "factorio:runtime" {
11110
11146
  * - `"name"`: {@link NameScriptRaisedBuiltEventFilter}
11111
11147
  * - `"ghost_type"`: {@link GhostTypeScriptRaisedBuiltEventFilter}
11112
11148
  * - `"ghost_name"`: {@link GhostNameScriptRaisedBuiltEventFilter}
11113
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaScriptRaisedBuiltEventFilter.html Online documentation}
11149
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaScriptRaisedBuiltEventFilter.html Online documentation}
11114
11150
  */
11115
11151
  export type LuaScriptRaisedBuiltEventFilter =
11116
11152
  | TypeScriptRaisedBuiltEventFilter
@@ -11215,7 +11251,7 @@ declare module "factorio:runtime" {
11215
11251
  * - `"name"`: {@link NamePrePlayerMinedEntityEventFilter}
11216
11252
  * - `"ghost_type"`: {@link GhostTypePrePlayerMinedEntityEventFilter}
11217
11253
  * - `"ghost_name"`: {@link GhostNamePrePlayerMinedEntityEventFilter}
11218
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaPrePlayerMinedEntityEventFilter.html Online documentation}
11254
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaPrePlayerMinedEntityEventFilter.html Online documentation}
11219
11255
  */
11220
11256
  export type LuaPrePlayerMinedEntityEventFilter =
11221
11257
  | TypePrePlayerMinedEntityEventFilter
@@ -11320,7 +11356,7 @@ declare module "factorio:runtime" {
11320
11356
  * - `"name"`: {@link NamePlayerRepairedEntityEventFilter}
11321
11357
  * - `"ghost_type"`: {@link GhostTypePlayerRepairedEntityEventFilter}
11322
11358
  * - `"ghost_name"`: {@link GhostNamePlayerRepairedEntityEventFilter}
11323
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaPlayerRepairedEntityEventFilter.html Online documentation}
11359
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaPlayerRepairedEntityEventFilter.html Online documentation}
11324
11360
  */
11325
11361
  export type LuaPlayerRepairedEntityEventFilter =
11326
11362
  | TypePlayerRepairedEntityEventFilter
@@ -11425,7 +11461,7 @@ declare module "factorio:runtime" {
11425
11461
  * - `"name"`: {@link NameUpgradeCancelledEventFilter}
11426
11462
  * - `"ghost_type"`: {@link GhostTypeUpgradeCancelledEventFilter}
11427
11463
  * - `"ghost_name"`: {@link GhostNameUpgradeCancelledEventFilter}
11428
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaUpgradeCancelledEventFilter.html Online documentation}
11464
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaUpgradeCancelledEventFilter.html Online documentation}
11429
11465
  */
11430
11466
  export type LuaUpgradeCancelledEventFilter =
11431
11467
  | TypeUpgradeCancelledEventFilter
@@ -11530,7 +11566,7 @@ declare module "factorio:runtime" {
11530
11566
  * - `"name"`: {@link NameSectorScannedEventFilter}
11531
11567
  * - `"ghost_type"`: {@link GhostTypeSectorScannedEventFilter}
11532
11568
  * - `"ghost_name"`: {@link GhostNameSectorScannedEventFilter}
11533
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaSectorScannedEventFilter.html Online documentation}
11569
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaSectorScannedEventFilter.html Online documentation}
11534
11570
  */
11535
11571
  export type LuaSectorScannedEventFilter =
11536
11572
  | TypeSectorScannedEventFilter
@@ -11576,7 +11612,7 @@ declare module "factorio:runtime" {
11576
11612
  *
11577
11613
  * Other attributes may be specified depending on `filter`:
11578
11614
  * - `"type"`: {@link TypePostEntityDiedEventFilter}
11579
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaPostEntityDiedEventFilter.html Online documentation}
11615
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaPostEntityDiedEventFilter.html Online documentation}
11580
11616
  */
11581
11617
  export type LuaPostEntityDiedEventFilter = TypePostEntityDiedEventFilter | OtherPostEntityDiedEventFilter
11582
11618
  /**
@@ -11678,7 +11714,7 @@ declare module "factorio:runtime" {
11678
11714
  * - `"name"`: {@link NameEntityMarkedForDeconstructionEventFilter}
11679
11715
  * - `"ghost_type"`: {@link GhostTypeEntityMarkedForDeconstructionEventFilter}
11680
11716
  * - `"ghost_name"`: {@link GhostNameEntityMarkedForDeconstructionEventFilter}
11681
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaEntityMarkedForDeconstructionEventFilter.html Online documentation}
11717
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaEntityMarkedForDeconstructionEventFilter.html Online documentation}
11682
11718
  */
11683
11719
  export type LuaEntityMarkedForDeconstructionEventFilter =
11684
11720
  | TypeEntityMarkedForDeconstructionEventFilter
@@ -11783,7 +11819,7 @@ declare module "factorio:runtime" {
11783
11819
  * - `"name"`: {@link NamePlayerMinedEntityEventFilter}
11784
11820
  * - `"ghost_type"`: {@link GhostTypePlayerMinedEntityEventFilter}
11785
11821
  * - `"ghost_name"`: {@link GhostNamePlayerMinedEntityEventFilter}
11786
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaPlayerMinedEntityEventFilter.html Online documentation}
11822
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaPlayerMinedEntityEventFilter.html Online documentation}
11787
11823
  */
11788
11824
  export type LuaPlayerMinedEntityEventFilter =
11789
11825
  | TypePlayerMinedEntityEventFilter
@@ -11963,7 +11999,7 @@ declare module "factorio:runtime" {
11963
11999
  * - `"final-damage-amount"`: {@link FinalDamageAmountEntityDamagedEventFilter}
11964
12000
  * - `"damage-type"`: {@link DamageTypeEntityDamagedEventFilter}
11965
12001
  * - `"final-health"`: {@link FinalHealthEntityDamagedEventFilter}
11966
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaEntityDamagedEventFilter.html Online documentation}
12002
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaEntityDamagedEventFilter.html Online documentation}
11967
12003
  */
11968
12004
  export type LuaEntityDamagedEventFilter =
11969
12005
  | TypeEntityDamagedEventFilter
@@ -11977,7 +12013,7 @@ declare module "factorio:runtime" {
11977
12013
  | OtherEntityDamagedEventFilter
11978
12014
  /**
11979
12015
  * Write form of {@link LuaEntityDamagedEventFilter}, where some properties allow additional values as input compared to the read form.
11980
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaEntityDamagedEventFilter.html Online documentation}
12016
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaEntityDamagedEventFilter.html Online documentation}
11981
12017
  */
11982
12018
  export type LuaEntityDamagedEventFilterWrite =
11983
12019
  | TypeEntityDamagedEventFilter
@@ -12086,7 +12122,7 @@ declare module "factorio:runtime" {
12086
12122
  * - `"name"`: {@link NameScriptRaisedReviveEventFilter}
12087
12123
  * - `"ghost_type"`: {@link GhostTypeScriptRaisedReviveEventFilter}
12088
12124
  * - `"ghost_name"`: {@link GhostNameScriptRaisedReviveEventFilter}
12089
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaScriptRaisedReviveEventFilter.html Online documentation}
12125
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaScriptRaisedReviveEventFilter.html Online documentation}
12090
12126
  */
12091
12127
  export type LuaScriptRaisedReviveEventFilter =
12092
12128
  | TypeScriptRaisedReviveEventFilter
@@ -12191,7 +12227,7 @@ declare module "factorio:runtime" {
12191
12227
  * - `"name"`: {@link NameEntityDiedEventFilter}
12192
12228
  * - `"ghost_type"`: {@link GhostTypeEntityDiedEventFilter}
12193
12229
  * - `"ghost_name"`: {@link GhostNameEntityDiedEventFilter}
12194
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaEntityDiedEventFilter.html Online documentation}
12230
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaEntityDiedEventFilter.html Online documentation}
12195
12231
  */
12196
12232
  export type LuaEntityDiedEventFilter =
12197
12233
  | TypeEntityDiedEventFilter
@@ -12296,7 +12332,7 @@ declare module "factorio:runtime" {
12296
12332
  * - `"name"`: {@link NamePreRobotMinedEntityEventFilter}
12297
12333
  * - `"ghost_type"`: {@link GhostTypePreRobotMinedEntityEventFilter}
12298
12334
  * - `"ghost_name"`: {@link GhostNamePreRobotMinedEntityEventFilter}
12299
- * @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaPreRobotMinedEntityEventFilter.html Online documentation}
12335
+ * @see {@link https://lua-api.factorio.com/2.0.41/concepts/LuaPreRobotMinedEntityEventFilter.html Online documentation}
12300
12336
  */
12301
12337
  export type LuaPreRobotMinedEntityEventFilter =
12302
12338
  | TypePreRobotMinedEntityEventFilter