typed-factorio 3.14.0 → 3.15.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.
- package/package.json +2 -2
- package/prototype/generated/prototypes.d.ts +2143 -2087
- package/prototype/generated/types.d.ts +2108 -2108
- package/runtime/generated/classes.d.ts +3762 -3606
- package/runtime/generated/concepts.d.ts +321 -309
- package/runtime/generated/defines.d.ts +232 -184
- package/runtime/generated/events.d.ts +276 -202
- package/runtime/generated/global-functions.d.ts +3 -3
- package/runtime/generated/global-objects.d.ts +8 -8
@@ -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.
|
15
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/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.
|
22
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/ModuleEffectValue.html Online documentation}
|
23
23
|
*/
|
24
24
|
export type ModuleEffectValue = float
|
25
25
|
/**
|
26
26
|
* @example
|
27
27
|
* -- These are the effects of the vanilla Speed Module 3
|
28
28
|
* {speed = 0.5, consumption = 0.7, quality = -0.25}
|
29
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
29
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/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.
|
53
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/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.
|
85
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
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}
|
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.
|
96
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/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.
|
103
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/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.
|
231
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/SimulationWidgetType.html Online documentation}
|
232
232
|
*/
|
233
233
|
export type SimulationWidgetType =
|
234
234
|
| "signal-id"
|
@@ -307,6 +307,10 @@ declare module "factorio:runtime" {
|
|
307
307
|
* Checks if train is in manual controller.
|
308
308
|
*/
|
309
309
|
readonly is_manual?: boolean
|
310
|
+
/**
|
311
|
+
* Train must belong to a group of a given name.
|
312
|
+
*/
|
313
|
+
readonly group?: string
|
310
314
|
}
|
311
315
|
export interface TrainStopFilter {
|
312
316
|
/**
|
@@ -350,7 +354,7 @@ declare module "factorio:runtime" {
|
|
350
354
|
* - `"any-goal-accessible"`: The method will return {@link TrainPathFinderOneGoalResult}.
|
351
355
|
* - `"all-goals-accessible"`: The method will return {@link TrainPathAllGoalsResult}.
|
352
356
|
* - `"all-goals-penalties"`: The method will return {@link TrainPathAllGoalsResult} with `penalties`.
|
353
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
357
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/TrainPathRequestType.html Online documentation}
|
354
358
|
*/
|
355
359
|
export type TrainPathRequestType = "path" | "any-goal-accessible" | "all-goals-accessible" | "all-goals-penalties"
|
356
360
|
/**
|
@@ -359,7 +363,7 @@ declare module "factorio:runtime" {
|
|
359
363
|
* - {@link RailEndGoal}
|
360
364
|
* - {@link LuaRailEnd}
|
361
365
|
* - {@link LuaEntity}: Only if it points at train-stop that is connected to a rail.
|
362
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
366
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/TrainPathFinderGoal.html Online documentation}
|
363
367
|
*/
|
364
368
|
export type TrainPathFinderGoal = TrainStopGoal | RailEndGoal | LuaRailEnd | LuaEntity
|
365
369
|
export interface TrainStopGoal {
|
@@ -464,7 +468,7 @@ declare module "factorio:runtime" {
|
|
464
468
|
}
|
465
469
|
/**
|
466
470
|
* A single pipe connection for a given fluidbox.
|
467
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
471
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/PipeConnection.html Online documentation}
|
468
472
|
*/
|
469
473
|
export interface PipeConnection {
|
470
474
|
readonly flow_direction: "input" | "output" | "input-output"
|
@@ -527,7 +531,7 @@ declare module "factorio:runtime" {
|
|
527
531
|
* - {@link LuaEntityDiedEventFilter}
|
528
532
|
* - {@link LuaPreRobotMinedEntityEventFilter}
|
529
533
|
* @see EventFilterWrite
|
530
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
534
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/EventFilter.html Online documentation}
|
531
535
|
*/
|
532
536
|
export type EventFilter =
|
533
537
|
| LuaPrePlatformMinedEntityEventFilter[]
|
@@ -557,7 +561,7 @@ declare module "factorio:runtime" {
|
|
557
561
|
| LuaPreRobotMinedEntityEventFilter[]
|
558
562
|
/**
|
559
563
|
* Write form of {@link EventFilter}, where some properties allow additional values as input compared to the read form.
|
560
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
564
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/EventFilter.html Online documentation}
|
561
565
|
*/
|
562
566
|
export type EventFilterWrite =
|
563
567
|
| readonly LuaPrePlatformMinedEntityEventFilter[]
|
@@ -608,7 +612,7 @@ declare module "factorio:runtime" {
|
|
608
612
|
* - {@link LuaCustomChartTag}: Target type {@link defines.target_type.custom_chart_tag custom_chart_tag}; `useful_id` {@link LuaCustomChartTag#tag_number LuaCustomChartTag::tag_number}
|
609
613
|
* - {@link LuaGuiElement}: Target type {@link defines.target_type.gui_element gui_element}; `useful_id` {@link LuaGuiElement#index LuaGuiElement::index}
|
610
614
|
* - {@link LuaCargoHatch}: Target type {@link defines.target_type.cargo_hatch cargo_hatch}
|
611
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
615
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/RegistrationTarget.html Online documentation}
|
612
616
|
*/
|
613
617
|
export type RegistrationTarget =
|
614
618
|
| LuaEntity
|
@@ -810,7 +814,7 @@ declare module "factorio:runtime" {
|
|
810
814
|
* - `"wire-removed"`: {@link WireRemovedUndoRedoAction}
|
811
815
|
* - `"rotated-entity"`: {@link RotatedEntityUndoRedoAction}
|
812
816
|
* - `"copy-entity-settings"`: {@link CopyEntitySettingsUndoRedoAction}
|
813
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
817
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/UndoRedoAction.html Online documentation}
|
814
818
|
*/
|
815
819
|
export type UndoRedoAction =
|
816
820
|
| BuiltEntityUndoRedoAction
|
@@ -842,7 +846,7 @@ declare module "factorio:runtime" {
|
|
842
846
|
* - `"weapon"`
|
843
847
|
* - `"explosion"`
|
844
848
|
* - `"enemy"`
|
845
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
849
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/SoundType.html Online documentation}
|
846
850
|
*/
|
847
851
|
export type SoundType =
|
848
852
|
| "game-effect"
|
@@ -925,7 +929,7 @@ declare module "factorio:runtime" {
|
|
925
929
|
* - `"controllable-remove"`
|
926
930
|
* - `"entity-ghost"`: Selects entities that are `entity-ghost`s.
|
927
931
|
* - `"tile-ghost"`: Selects entities that are `tile-ghost`s.
|
928
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
932
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/SelectionModeFlags.html Online documentation}
|
929
933
|
*/
|
930
934
|
export interface SelectionModeFlags {
|
931
935
|
/**
|
@@ -1044,7 +1048,7 @@ declare module "factorio:runtime" {
|
|
1044
1048
|
* A set of flags. Active flags are in the dictionary as `true`, while inactive flags aren't present at all.
|
1045
1049
|
*
|
1046
1050
|
* By default, none of these flags are set.
|
1047
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1051
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/ItemPrototypeFlags.html Online documentation}
|
1048
1052
|
*/
|
1049
1053
|
export type ItemPrototypeFlags = {
|
1050
1054
|
readonly [T in ItemPrototypeFlag]?: true
|
@@ -1065,7 +1069,7 @@ declare module "factorio:runtime" {
|
|
1065
1069
|
* - `"spawnable"`: Allows the item to be spawned by a quickbar shortcut or custom input.
|
1066
1070
|
* - `"spoil-result"`
|
1067
1071
|
* - `"ignore-spoil-time-modifier"`: Controls whether the spoil time ignores the spoil time modifier in the {@link DifficultySettings}.
|
1068
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1072
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/ItemPrototypeFlag.html Online documentation}
|
1069
1073
|
*/
|
1070
1074
|
export type ItemPrototypeFlag =
|
1071
1075
|
| "draw-logistic-overlay"
|
@@ -1085,7 +1089,7 @@ declare module "factorio:runtime" {
|
|
1085
1089
|
* - `"none"`
|
1086
1090
|
* - `"whitelist"`
|
1087
1091
|
* - `"blacklist"`
|
1088
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1092
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/PrototypeFilterMode.html Online documentation}
|
1089
1093
|
*/
|
1090
1094
|
export type PrototypeFilterMode = "none" | "whitelist" | "blacklist"
|
1091
1095
|
export interface PipeConnectionDefinition {
|
@@ -1110,7 +1114,7 @@ declare module "factorio:runtime" {
|
|
1110
1114
|
* The name of a {@link LuaCollisionLayerPrototype}.
|
1111
1115
|
* @example
|
1112
1116
|
* "is_lower_object"
|
1113
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1117
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/CollisionLayerID.html Online documentation}
|
1114
1118
|
*/
|
1115
1119
|
export type CollisionLayerID = string
|
1116
1120
|
export interface ItemIDFilter {
|
@@ -1160,7 +1164,7 @@ declare module "factorio:runtime" {
|
|
1160
1164
|
* - {@link SpaceLocationPrototypeFilter}
|
1161
1165
|
* - {@link FluidPrototypeFilter}
|
1162
1166
|
* @see PrototypeFilterWrite
|
1163
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1167
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/PrototypeFilter.html Online documentation}
|
1164
1168
|
*/
|
1165
1169
|
export type PrototypeFilter =
|
1166
1170
|
| ModSettingPrototypeFilter[]
|
@@ -1177,7 +1181,7 @@ declare module "factorio:runtime" {
|
|
1177
1181
|
| FluidPrototypeFilter[]
|
1178
1182
|
/**
|
1179
1183
|
* Write form of {@link PrototypeFilter}, where some properties allow additional values as input compared to the read form.
|
1180
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1184
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/PrototypeFilter.html Online documentation}
|
1181
1185
|
*/
|
1182
1186
|
export type PrototypeFilterWrite =
|
1183
1187
|
| readonly ModSettingPrototypeFilter[]
|
@@ -1194,7 +1198,7 @@ declare module "factorio:runtime" {
|
|
1194
1198
|
| readonly FluidPrototypeFilterWrite[]
|
1195
1199
|
/**
|
1196
1200
|
* @see DisplayPanelMessageDefinitionWrite
|
1197
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1201
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/DisplayPanelMessageDefinition.html Online documentation}
|
1198
1202
|
*/
|
1199
1203
|
export interface DisplayPanelMessageDefinition {
|
1200
1204
|
/**
|
@@ -1212,7 +1216,7 @@ declare module "factorio:runtime" {
|
|
1212
1216
|
}
|
1213
1217
|
/**
|
1214
1218
|
* Write form of {@link DisplayPanelMessageDefinition}, where some properties allow additional values as input compared to the read form.
|
1215
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1219
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/DisplayPanelMessageDefinition.html Online documentation}
|
1216
1220
|
*/
|
1217
1221
|
export interface DisplayPanelMessageDefinitionWrite {
|
1218
1222
|
/**
|
@@ -1238,7 +1242,7 @@ declare module "factorio:runtime" {
|
|
1238
1242
|
* - `"space-location"`
|
1239
1243
|
* - `"asteroid-chunk"`
|
1240
1244
|
* - `"quality"`
|
1241
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1245
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/SignalIDType.html Online documentation}
|
1242
1246
|
*/
|
1243
1247
|
export type SignalIDType =
|
1244
1248
|
| "item"
|
@@ -1251,7 +1255,7 @@ declare module "factorio:runtime" {
|
|
1251
1255
|
| "quality"
|
1252
1256
|
/**
|
1253
1257
|
* @see SignalIDWrite
|
1254
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1258
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/SignalID.html Online documentation}
|
1255
1259
|
*/
|
1256
1260
|
export interface SignalID {
|
1257
1261
|
/**
|
@@ -1269,7 +1273,7 @@ declare module "factorio:runtime" {
|
|
1269
1273
|
}
|
1270
1274
|
/**
|
1271
1275
|
* Write form of {@link SignalID}, where some properties allow additional values as input compared to the read form.
|
1272
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1276
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/SignalID.html Online documentation}
|
1273
1277
|
*/
|
1274
1278
|
export interface SignalIDWrite {
|
1275
1279
|
/**
|
@@ -1475,7 +1479,7 @@ declare module "factorio:runtime" {
|
|
1475
1479
|
* - `"play-next-track"`
|
1476
1480
|
* - `"play-previous-track"`
|
1477
1481
|
* - `"pause-resume-music"`
|
1478
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1482
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/LinkedGameControl.html Online documentation}
|
1479
1483
|
*/
|
1480
1484
|
export type LinkedGameControl =
|
1481
1485
|
| "move-up"
|
@@ -1726,7 +1730,7 @@ declare module "factorio:runtime" {
|
|
1726
1730
|
* - `"create-ghost-on-entity-death"`
|
1727
1731
|
* - `"belt-stack-size-bonus"`
|
1728
1732
|
* - `"vehicle-logistics"`
|
1729
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1733
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/ModifierType.html Online documentation}
|
1730
1734
|
*/
|
1731
1735
|
export type ModifierType =
|
1732
1736
|
| "inserter-stack-size-bonus"
|
@@ -1845,7 +1849,7 @@ declare module "factorio:runtime" {
|
|
1845
1849
|
* - `"capture-spawner"`: {@link CaptureSpawnerResearchTrigger}
|
1846
1850
|
* - `"build-entity"`: {@link BuildEntityResearchTrigger}
|
1847
1851
|
* - `"send-item-to-orbit"`: {@link SendItemToOrbitResearchTrigger}
|
1848
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1852
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/ResearchTrigger.html Online documentation}
|
1849
1853
|
*/
|
1850
1854
|
export type ResearchTrigger =
|
1851
1855
|
| CraftItemResearchTrigger
|
@@ -1859,7 +1863,7 @@ declare module "factorio:runtime" {
|
|
1859
1863
|
* A set of flags. Active flags are in the dictionary as `true`, while inactive flags aren't present at all.
|
1860
1864
|
*
|
1861
1865
|
* By default, none of these flags are set.
|
1862
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1866
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/EntityPrototypeFlags.html Online documentation}
|
1863
1867
|
*/
|
1864
1868
|
export type EntityPrototypeFlags = {
|
1865
1869
|
readonly [T in EntityPrototypeFlag]?: true
|
@@ -1894,7 +1898,7 @@ declare module "factorio:runtime" {
|
|
1894
1898
|
* - `"building-direction-16-way"`
|
1895
1899
|
* - `"snap-to-rail-support-spot"`
|
1896
1900
|
* - `"not-in-made-in"`: Prevents the entity from being shown in the "made in" list in recipe tooltips.
|
1897
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1901
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/EntityPrototypeFlag.html Online documentation}
|
1898
1902
|
*/
|
1899
1903
|
export type EntityPrototypeFlag =
|
1900
1904
|
| "not-rotatable"
|
@@ -1964,7 +1968,7 @@ declare module "factorio:runtime" {
|
|
1964
1968
|
* - `"local"`: The sound can be heard within the audible range around the speaker.
|
1965
1969
|
* - `"surface"`: The sound can be heard anywhere on the speaker's surface.
|
1966
1970
|
* - `"global"`: The sound can be heard everywhere.
|
1967
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1971
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/ProgrammableSpeakerPlaybackMode.html Online documentation}
|
1968
1972
|
*/
|
1969
1973
|
export type ProgrammableSpeakerPlaybackMode = "local" | "surface" | "global"
|
1970
1974
|
/**
|
@@ -1989,7 +1993,7 @@ declare module "factorio:runtime" {
|
|
1989
1993
|
* - `"none-to-south"`
|
1990
1994
|
* - `"south-to-none"`
|
1991
1995
|
* - `"none-to-north"`
|
1992
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1996
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/CliffOrientation.html Online documentation}
|
1993
1997
|
*/
|
1994
1998
|
export type CliffOrientation =
|
1995
1999
|
| "west-to-east"
|
@@ -2015,7 +2019,7 @@ declare module "factorio:runtime" {
|
|
2015
2019
|
/**
|
2016
2020
|
* Defines an item type that a blueprint entity will request.
|
2017
2021
|
* @see BlueprintInsertPlanWrite
|
2018
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2022
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/BlueprintInsertPlan.html Online documentation}
|
2019
2023
|
*/
|
2020
2024
|
export interface BlueprintInsertPlan {
|
2021
2025
|
/**
|
@@ -2029,7 +2033,7 @@ declare module "factorio:runtime" {
|
|
2029
2033
|
}
|
2030
2034
|
/**
|
2031
2035
|
* Write form of {@link BlueprintInsertPlan}, where some properties allow additional values as input compared to the read form.
|
2032
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2036
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/BlueprintInsertPlan.html Online documentation}
|
2033
2037
|
*/
|
2034
2038
|
export interface BlueprintInsertPlanWrite {
|
2035
2039
|
/**
|
@@ -2057,7 +2061,7 @@ declare module "factorio:runtime" {
|
|
2057
2061
|
}
|
2058
2062
|
/**
|
2059
2063
|
* A single offer on a market entity.
|
2060
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2064
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/Offer.html Online documentation}
|
2061
2065
|
*/
|
2062
2066
|
export interface Offer {
|
2063
2067
|
/**
|
@@ -2072,7 +2076,7 @@ declare module "factorio:runtime" {
|
|
2072
2076
|
/**
|
2073
2077
|
* An item filter may be specified in two ways, either as a string which is an item prototype name or as a table.
|
2074
2078
|
* @see ItemFilterWrite
|
2075
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2079
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/ItemFilter.html Online documentation}
|
2076
2080
|
*/
|
2077
2081
|
export type ItemFilter =
|
2078
2082
|
| {
|
@@ -2092,7 +2096,7 @@ declare module "factorio:runtime" {
|
|
2092
2096
|
| string
|
2093
2097
|
/**
|
2094
2098
|
* Write form of {@link ItemFilter}, where some properties allow additional values as input compared to the read form.
|
2095
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2099
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/ItemFilter.html Online documentation}
|
2096
2100
|
*/
|
2097
2101
|
export type ItemFilterWrite =
|
2098
2102
|
| {
|
@@ -2112,7 +2116,7 @@ declare module "factorio:runtime" {
|
|
2112
2116
|
| string
|
2113
2117
|
/**
|
2114
2118
|
* @see ScheduleRecordWrite
|
2115
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2119
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/ScheduleRecord.html Online documentation}
|
2116
2120
|
*/
|
2117
2121
|
export interface ScheduleRecord {
|
2118
2122
|
/**
|
@@ -2135,7 +2139,7 @@ declare module "factorio:runtime" {
|
|
2135
2139
|
}
|
2136
2140
|
/**
|
2137
2141
|
* Write form of {@link ScheduleRecord}, where some properties allow additional values as input compared to the read form.
|
2138
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2142
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/ScheduleRecord.html Online documentation}
|
2139
2143
|
*/
|
2140
2144
|
export interface ScheduleRecordWrite {
|
2141
2145
|
/**
|
@@ -2221,7 +2225,7 @@ declare module "factorio:runtime" {
|
|
2221
2225
|
* - `"position"`: {@link PositionGuiArrowSpecification}
|
2222
2226
|
* - `"crafting_queue"`: {@link CraftingQueueGuiArrowSpecification}
|
2223
2227
|
* - `"item_stack"`: {@link ItemStackGuiArrowSpecification}
|
2224
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2228
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/GuiArrowSpecification.html Online documentation}
|
2225
2229
|
*/
|
2226
2230
|
export type GuiArrowSpecification =
|
2227
2231
|
| EntityGuiArrowSpecification
|
@@ -2234,7 +2238,7 @@ declare module "factorio:runtime" {
|
|
2234
2238
|
*
|
2235
2239
|
* If this is specified as a three-element array then the array items are x, y and z, in that order.
|
2236
2240
|
* @see Vector3DArray
|
2237
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2241
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/Vector3D.html Online documentation}
|
2238
2242
|
*/
|
2239
2243
|
export interface Vector3D {
|
2240
2244
|
readonly x: float
|
@@ -2244,7 +2248,7 @@ declare module "factorio:runtime" {
|
|
2244
2248
|
/**
|
2245
2249
|
* Array form of {@link Vector3D}.
|
2246
2250
|
* @see Vector3D
|
2247
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2251
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/Vector3D.html Online documentation}
|
2248
2252
|
*/
|
2249
2253
|
export type Vector3DArray = readonly [float, float, float]
|
2250
2254
|
export interface ItemWithQualityCounts {
|
@@ -2277,7 +2281,7 @@ declare module "factorio:runtime" {
|
|
2277
2281
|
}
|
2278
2282
|
/**
|
2279
2283
|
* @see TrainScheduleWrite
|
2280
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2284
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/TrainSchedule.html Online documentation}
|
2281
2285
|
*/
|
2282
2286
|
export interface TrainSchedule {
|
2283
2287
|
/**
|
@@ -2288,7 +2292,7 @@ declare module "factorio:runtime" {
|
|
2288
2292
|
}
|
2289
2293
|
/**
|
2290
2294
|
* Write form of {@link TrainSchedule}, where some properties allow additional values as input compared to the read form.
|
2291
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2295
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/TrainSchedule.html Online documentation}
|
2292
2296
|
*/
|
2293
2297
|
export interface TrainScheduleWrite {
|
2294
2298
|
/**
|
@@ -2299,7 +2303,7 @@ declare module "factorio:runtime" {
|
|
2299
2303
|
}
|
2300
2304
|
/**
|
2301
2305
|
* @see PlatformScheduleWrite
|
2302
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2306
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/PlatformSchedule.html Online documentation}
|
2303
2307
|
*/
|
2304
2308
|
export interface PlatformSchedule {
|
2305
2309
|
/**
|
@@ -2310,7 +2314,7 @@ declare module "factorio:runtime" {
|
|
2310
2314
|
}
|
2311
2315
|
/**
|
2312
2316
|
* Write form of {@link PlatformSchedule}, where some properties allow additional values as input compared to the read form.
|
2313
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2317
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/PlatformSchedule.html Online documentation}
|
2314
2318
|
*/
|
2315
2319
|
export interface PlatformScheduleWrite {
|
2316
2320
|
/**
|
@@ -2327,7 +2331,7 @@ declare module "factorio:runtime" {
|
|
2327
2331
|
}
|
2328
2332
|
/**
|
2329
2333
|
* A recipe prototype with optional quality specification.
|
2330
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2334
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/RecipeIDAndQualityIDPair.html Online documentation}
|
2331
2335
|
*/
|
2332
2336
|
export interface RecipeIDAndQualityIDPair {
|
2333
2337
|
/**
|
@@ -2376,7 +2380,7 @@ declare module "factorio:runtime" {
|
|
2376
2380
|
* - `string`: Name of the force, same as {@link LuaForce#name LuaForce::name}.
|
2377
2381
|
* - {@link uint8}: Index of the force, same as {@link LuaForce#index LuaForce::index}.
|
2378
2382
|
* - {@link LuaForce}: A reference to {@link LuaForce} may be passed directly.
|
2379
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2383
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/ForceID.html Online documentation}
|
2380
2384
|
*/
|
2381
2385
|
export type ForceID = string | uint8 | LuaForce
|
2382
2386
|
/**
|
@@ -2386,7 +2390,7 @@ declare module "factorio:runtime" {
|
|
2386
2390
|
* - `string`: The fluid name.
|
2387
2391
|
* - {@link LuaFluidPrototype}: The fluid prototype.
|
2388
2392
|
* - {@link Fluid}: The fluid.
|
2389
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2393
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/FluidID.html Online documentation}
|
2390
2394
|
*/
|
2391
2395
|
export type FluidID = string | LuaFluidPrototype | Fluid
|
2392
2396
|
/**
|
@@ -2397,12 +2401,12 @@ declare module "factorio:runtime" {
|
|
2397
2401
|
* - {@link LuaEntityPrototype}: The entity prototype. Normal quality will be used.
|
2398
2402
|
* - `string`: The prototype name. Normal quality will be used.
|
2399
2403
|
* - {@link EntityIDAndQualityIDPair}: A table of entity prototype and quality.
|
2400
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2404
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/EntityWithQualityID.html Online documentation}
|
2401
2405
|
*/
|
2402
2406
|
export type EntityWithQualityID = LuaEntity | LuaEntityPrototype | string | EntityIDAndQualityIDPair
|
2403
2407
|
/**
|
2404
2408
|
* An entity prototype with optional quality specification.
|
2405
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2409
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/EntityIDAndQualityIDPair.html Online documentation}
|
2406
2410
|
*/
|
2407
2411
|
export interface EntityIDAndQualityIDPair {
|
2408
2412
|
/**
|
@@ -2422,13 +2426,13 @@ declare module "factorio:runtime" {
|
|
2422
2426
|
* - {@link LuaItemPrototype}: The item prototype. Normal quality will be used.
|
2423
2427
|
* - `string`: The prototype name. Normal quality will be used.
|
2424
2428
|
* - {@link ItemIDAndQualityIDPair}: A table of entity prototype and quality.
|
2425
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2429
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/ItemWithQualityID.html Online documentation}
|
2426
2430
|
*/
|
2427
2431
|
export type ItemWithQualityID = LuaItemStack | LuaItemPrototype | string | ItemIDAndQualityIDPairWrite
|
2428
2432
|
/**
|
2429
2433
|
* An item prototype with optional quality specification.
|
2430
2434
|
* @see ItemIDAndQualityIDPairWrite
|
2431
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2435
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/ItemIDAndQualityIDPair.html Online documentation}
|
2432
2436
|
*/
|
2433
2437
|
export interface ItemIDAndQualityIDPair {
|
2434
2438
|
/**
|
@@ -2442,7 +2446,7 @@ declare module "factorio:runtime" {
|
|
2442
2446
|
}
|
2443
2447
|
/**
|
2444
2448
|
* Write form of {@link ItemIDAndQualityIDPair}, where some properties allow additional values as input compared to the read form.
|
2445
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2449
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/ItemIDAndQualityIDPair.html Online documentation}
|
2446
2450
|
*/
|
2447
2451
|
export interface ItemIDAndQualityIDPairWrite {
|
2448
2452
|
/**
|
@@ -2462,7 +2466,7 @@ declare module "factorio:runtime" {
|
|
2462
2466
|
* - {@link LuaItemStack}: Non empty item stack.
|
2463
2467
|
* - {@link LuaItem}: The item.
|
2464
2468
|
* - `string`: The prototype name.
|
2465
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2469
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/ItemID.html Online documentation}
|
2466
2470
|
*/
|
2467
2471
|
export type ItemID = LuaItemPrototype | LuaItemStack | LuaItem | string
|
2468
2472
|
/**
|
@@ -2472,7 +2476,7 @@ declare module "factorio:runtime" {
|
|
2472
2476
|
* - {@link LuaEntityPrototype}: The entity prototype.
|
2473
2477
|
* - {@link LuaEntity}: The entity.
|
2474
2478
|
* - `string`: The prototype name.
|
2475
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2479
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/EntityID.html Online documentation}
|
2476
2480
|
*/
|
2477
2481
|
export type EntityID = LuaEntityPrototype | LuaEntity | string
|
2478
2482
|
/**
|
@@ -2482,7 +2486,7 @@ declare module "factorio:runtime" {
|
|
2482
2486
|
* - {@link LuaTechnologyPrototype}: The technology prototype.
|
2483
2487
|
* - {@link LuaTechnology}: Instance of the technology.
|
2484
2488
|
* - `string`: The prototype name.
|
2485
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2489
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/TechnologyID.html Online documentation}
|
2486
2490
|
*/
|
2487
2491
|
export type TechnologyID = LuaTechnologyPrototype | LuaTechnology | string
|
2488
2492
|
/**
|
@@ -2491,7 +2495,7 @@ declare module "factorio:runtime" {
|
|
2491
2495
|
* ## Union members
|
2492
2496
|
* - {@link LuaParticlePrototype}: The particle prototype.
|
2493
2497
|
* - `string`: The prototype name.
|
2494
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2498
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/ParticleID.html Online documentation}
|
2495
2499
|
*/
|
2496
2500
|
export type ParticleID = LuaParticlePrototype | string
|
2497
2501
|
/**
|
@@ -2500,7 +2504,7 @@ declare module "factorio:runtime" {
|
|
2500
2504
|
* ## Union members
|
2501
2505
|
* - {@link LuaDamagePrototype}: The damage type prototype.
|
2502
2506
|
* - `string`: The prototype name.
|
2503
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2507
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/DamageTypeID.html Online documentation}
|
2504
2508
|
*/
|
2505
2509
|
export type DamageTypeID = LuaDamagePrototype | string
|
2506
2510
|
/**
|
@@ -2509,7 +2513,7 @@ declare module "factorio:runtime" {
|
|
2509
2513
|
* ## Union members
|
2510
2514
|
* - {@link LuaTrivialSmokePrototype}: The trivial smoke prototype.
|
2511
2515
|
* - `string`: The prototype name.
|
2512
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2516
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/TrivialSmokeID.html Online documentation}
|
2513
2517
|
*/
|
2514
2518
|
export type TrivialSmokeID = LuaTrivialSmokePrototype | string
|
2515
2519
|
/**
|
@@ -2521,7 +2525,7 @@ declare module "factorio:runtime" {
|
|
2521
2525
|
* - `"left"`
|
2522
2526
|
* - `"right"`
|
2523
2527
|
* - `"center"`
|
2524
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2528
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/TextAlign.html Online documentation}
|
2525
2529
|
*/
|
2526
2530
|
export type TextAlign = "left" | "right" | "center"
|
2527
2531
|
/**
|
@@ -2534,7 +2538,7 @@ declare module "factorio:runtime" {
|
|
2534
2538
|
* - `"middle"`
|
2535
2539
|
* - `"baseline"`
|
2536
2540
|
* - `"bottom"`
|
2537
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2541
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/VerticalTextAlign.html Online documentation}
|
2538
2542
|
*/
|
2539
2543
|
export type VerticalTextAlign = "top" | "middle" | "baseline" | "bottom"
|
2540
2544
|
/**
|
@@ -2543,7 +2547,7 @@ declare module "factorio:runtime" {
|
|
2543
2547
|
* ## Union members
|
2544
2548
|
* - {@link LuaQualityPrototype}: The quality prototype.
|
2545
2549
|
* - `string`: The prototype name.
|
2546
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2550
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/QualityID.html Online documentation}
|
2547
2551
|
*/
|
2548
2552
|
export type QualityID = LuaQualityPrototype | string
|
2549
2553
|
/**
|
@@ -2553,7 +2557,7 @@ declare module "factorio:runtime" {
|
|
2553
2557
|
* - {@link LuaRecipePrototype}: By recipe prototype.
|
2554
2558
|
* - {@link LuaRecipe}: By instance of recipe.
|
2555
2559
|
* - `string`: By name of the recipe prototype.
|
2556
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2560
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/RecipeID.html Online documentation}
|
2557
2561
|
*/
|
2558
2562
|
export type RecipeID = LuaRecipePrototype | LuaRecipe | string
|
2559
2563
|
/**
|
@@ -2563,7 +2567,7 @@ declare module "factorio:runtime" {
|
|
2563
2567
|
* - {@link LuaTilePrototype}: By tile prototype.
|
2564
2568
|
* - {@link LuaTile}: By instance of tile.
|
2565
2569
|
* - `string`: By name of the tile prototype.
|
2566
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2570
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/TileID.html Online documentation}
|
2567
2571
|
*/
|
2568
2572
|
export type TileID = LuaTilePrototype | LuaTile | string
|
2569
2573
|
export interface Fluid {
|
@@ -2587,7 +2591,7 @@ declare module "factorio:runtime" {
|
|
2587
2591
|
* - {@link LuaEquipmentPrototype}: The equipment prototype.
|
2588
2592
|
* - {@link LuaEquipment}: The equipment.
|
2589
2593
|
* - `string`: The prototype name.
|
2590
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2594
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/EquipmentID.html Online documentation}
|
2591
2595
|
*/
|
2592
2596
|
export type EquipmentID = LuaEquipmentPrototype | LuaEquipment | string
|
2593
2597
|
/**
|
@@ -2598,12 +2602,12 @@ declare module "factorio:runtime" {
|
|
2598
2602
|
* - {@link LuaEquipment}: The equipment. Both prototype and quality of the provided equipment will be used.
|
2599
2603
|
* - `string`: The prototype name. Normal quality will be used.
|
2600
2604
|
* - {@link EquipmentIDAndQualityIDPair}: A table of equipment prototype and quality.
|
2601
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2605
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/EquipmentWithQualityID.html Online documentation}
|
2602
2606
|
*/
|
2603
2607
|
export type EquipmentWithQualityID = LuaEquipmentPrototype | LuaEquipment | string | EquipmentIDAndQualityIDPair
|
2604
2608
|
/**
|
2605
2609
|
* An equipment prototype with optional quality specification.
|
2606
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2610
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/EquipmentIDAndQualityIDPair.html Online documentation}
|
2607
2611
|
*/
|
2608
2612
|
export interface EquipmentIDAndQualityIDPair {
|
2609
2613
|
/**
|
@@ -2624,7 +2628,7 @@ declare module "factorio:runtime" {
|
|
2624
2628
|
* @example
|
2625
2629
|
* -- Shorthand
|
2626
2630
|
* {{-2, -3}, {5, 8}}
|
2627
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2631
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/BoundingBox.html Online documentation}
|
2628
2632
|
*/
|
2629
2633
|
export interface BoundingBox {
|
2630
2634
|
readonly left_top: MapPosition
|
@@ -2634,7 +2638,7 @@ declare module "factorio:runtime" {
|
|
2634
2638
|
/**
|
2635
2639
|
* Array form of {@link BoundingBox}.
|
2636
2640
|
* @see BoundingBox
|
2637
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2641
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/BoundingBox.html Online documentation}
|
2638
2642
|
*/
|
2639
2643
|
export type BoundingBoxArray = readonly [MapPosition | MapPositionArray, MapPosition | MapPositionArray]
|
2640
2644
|
export interface BoundingBoxWrite {
|
@@ -2647,7 +2651,7 @@ declare module "factorio:runtime" {
|
|
2647
2651
|
*
|
2648
2652
|
* ## Union members
|
2649
2653
|
* - {@link LuaSpacePlatform}
|
2650
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2654
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/SpacePlatformIdentification.html Online documentation}
|
2651
2655
|
*/
|
2652
2656
|
export type SpacePlatformIdentification = LuaSpacePlatform
|
2653
2657
|
/**
|
@@ -2657,12 +2661,12 @@ declare module "factorio:runtime" {
|
|
2657
2661
|
* - {@link LuaForce}[]: Array of many forces.
|
2658
2662
|
* - {@link LuaForce}: A single force.
|
2659
2663
|
* @see ForceSetWrite
|
2660
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2664
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/ForceSet.html Online documentation}
|
2661
2665
|
*/
|
2662
2666
|
export type ForceSet = LuaForce[] | LuaForce
|
2663
2667
|
/**
|
2664
2668
|
* Write form of {@link ForceSet}, where some properties allow additional values as input compared to the read form.
|
2665
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2669
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/ForceSet.html Online documentation}
|
2666
2670
|
*/
|
2667
2671
|
export type ForceSetWrite = readonly ForceID[] | ForceID
|
2668
2672
|
/**
|
@@ -2671,7 +2675,7 @@ declare module "factorio:runtime" {
|
|
2671
2675
|
* ## Union members
|
2672
2676
|
* - {@link LuaDecorativePrototype}: The decorative prototype.
|
2673
2677
|
* - `string`: The prototype name.
|
2674
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2678
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/DecorativeID.html Online documentation}
|
2675
2679
|
*/
|
2676
2680
|
export type DecorativeID = LuaDecorativePrototype | string
|
2677
2681
|
/**
|
@@ -2680,7 +2684,7 @@ declare module "factorio:runtime" {
|
|
2680
2684
|
* ## Union members
|
2681
2685
|
* - {@link LuaAsteroidChunkPrototype}: The asteroid chunk prototype.
|
2682
2686
|
* - `string`: The prototype name.
|
2683
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2687
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/AsteroidChunkID.html Online documentation}
|
2684
2688
|
*/
|
2685
2689
|
export type AsteroidChunkID = LuaAsteroidChunkPrototype | string
|
2686
2690
|
/**
|
@@ -2689,13 +2693,13 @@ declare module "factorio:runtime" {
|
|
2689
2693
|
* ## Union members
|
2690
2694
|
* - {@link LuaSpaceLocationPrototype}: The space location prototype.
|
2691
2695
|
* - `string`: The prototype name.
|
2692
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2696
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/SpaceLocationID.html Online documentation}
|
2693
2697
|
*/
|
2694
2698
|
export type SpaceLocationID = LuaSpaceLocationPrototype | string
|
2695
2699
|
/**
|
2696
2700
|
* 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.
|
2697
2701
|
* @see SignalFilterWrite
|
2698
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2702
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/SignalFilter.html Online documentation}
|
2699
2703
|
*/
|
2700
2704
|
export type SignalFilter =
|
2701
2705
|
| {
|
@@ -2719,7 +2723,7 @@ declare module "factorio:runtime" {
|
|
2719
2723
|
| string
|
2720
2724
|
/**
|
2721
2725
|
* Write form of {@link SignalFilter}, where some properties allow additional values as input compared to the read form.
|
2722
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2726
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/SignalFilter.html Online documentation}
|
2723
2727
|
*/
|
2724
2728
|
export type SignalFilterWrite =
|
2725
2729
|
| {
|
@@ -2743,7 +2747,7 @@ declare module "factorio:runtime" {
|
|
2743
2747
|
| string
|
2744
2748
|
/**
|
2745
2749
|
* @see LogisticFilterWrite
|
2746
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2750
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/LogisticFilter.html Online documentation}
|
2747
2751
|
*/
|
2748
2752
|
export interface LogisticFilter {
|
2749
2753
|
/**
|
@@ -2769,7 +2773,7 @@ declare module "factorio:runtime" {
|
|
2769
2773
|
}
|
2770
2774
|
/**
|
2771
2775
|
* Write form of {@link LogisticFilter}, where some properties allow additional values as input compared to the read form.
|
2772
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2776
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/LogisticFilter.html Online documentation}
|
2773
2777
|
*/
|
2774
2778
|
export interface LogisticFilterWrite {
|
2775
2779
|
/**
|
@@ -2825,23 +2829,23 @@ declare module "factorio:runtime" {
|
|
2825
2829
|
* ## Union members
|
2826
2830
|
* - {@link LuaSurfacePropertyPrototype}: The surface property prototype.
|
2827
2831
|
* - `string`: The prototype name.
|
2828
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2832
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/SurfacePropertyID.html Online documentation}
|
2829
2833
|
*/
|
2830
2834
|
export type SurfacePropertyID = LuaSurfacePropertyPrototype | string
|
2831
2835
|
/**
|
2832
2836
|
* When writing it is possible to give LuaEntity or MapPosition directly. However, reading always returns the full ScriptRenderTargetTable.
|
2833
2837
|
* @see ScriptRenderTargetWrite
|
2834
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2838
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/ScriptRenderTarget.html Online documentation}
|
2835
2839
|
*/
|
2836
2840
|
export type ScriptRenderTarget = LuaEntity | MapPosition | ScriptRenderTargetTable
|
2837
2841
|
/**
|
2838
2842
|
* Write form of {@link ScriptRenderTarget}, where some properties allow additional values as input compared to the read form.
|
2839
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2843
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/ScriptRenderTarget.html Online documentation}
|
2840
2844
|
*/
|
2841
2845
|
export type ScriptRenderTargetWrite = LuaEntity | (MapPosition | MapPositionArray) | ScriptRenderTargetTableWrite
|
2842
2846
|
/**
|
2843
2847
|
* @see ScriptRenderTargetTableWrite
|
2844
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2848
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/ScriptRenderTargetTable.html Online documentation}
|
2845
2849
|
*/
|
2846
2850
|
export interface ScriptRenderTargetTable {
|
2847
2851
|
readonly entity?: LuaEntity
|
@@ -2856,7 +2860,7 @@ declare module "factorio:runtime" {
|
|
2856
2860
|
}
|
2857
2861
|
/**
|
2858
2862
|
* Write form of {@link ScriptRenderTargetTable}, where some properties allow additional values as input compared to the read form.
|
2859
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2863
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/ScriptRenderTargetTable.html Online documentation}
|
2860
2864
|
*/
|
2861
2865
|
export interface ScriptRenderTargetTableWrite {
|
2862
2866
|
readonly entity?: LuaEntity
|
@@ -2871,7 +2875,7 @@ declare module "factorio:runtime" {
|
|
2871
2875
|
}
|
2872
2876
|
/**
|
2873
2877
|
* An item filter may be specified in two ways, either as a string which is a quality prototype name or as a table.
|
2874
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2878
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/QualityCondition.html Online documentation}
|
2875
2879
|
*/
|
2876
2880
|
export type QualityCondition =
|
2877
2881
|
| {
|
@@ -2888,7 +2892,7 @@ declare module "factorio:runtime" {
|
|
2888
2892
|
/**
|
2889
2893
|
* The destination of a cargo pod.
|
2890
2894
|
* @see CargoDestinationWrite
|
2891
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2895
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/CargoDestination.html Online documentation}
|
2892
2896
|
*/
|
2893
2897
|
export interface CargoDestination {
|
2894
2898
|
/**
|
@@ -2896,33 +2900,37 @@ declare module "factorio:runtime" {
|
|
2896
2900
|
*/
|
2897
2901
|
readonly type: defines.cargo_destination
|
2898
2902
|
/**
|
2899
|
-
* Only used if `type` is
|
2903
|
+
* Only used if `type` is {@link defines.cargo_destination.station station}. Must be entity of type `cargo-landing-pad` or `space-platform-hub`.
|
2900
2904
|
*/
|
2901
2905
|
readonly station?: LuaEntity
|
2902
2906
|
/**
|
2903
|
-
* Only used if `type` is
|
2907
|
+
* Only used if `type` is {@link defines.cargo_destination.station station}. Must be connected to the station and not reserved.
|
2904
2908
|
*/
|
2905
2909
|
readonly hatch?: LuaCargoHatch
|
2906
2910
|
/**
|
2907
|
-
* Only used if `type` is
|
2911
|
+
* Only used if `type` is {@link defines.cargo_destination.station station} or {@link defines.cargo_destination.surface surface}. If true, items with {@link import("factorio:prototype").ItemPrototype#rocket_launch_products rocket_launch_products} defined will be transformed into their products before starting descent. Defaults to `false`.
|
2908
2912
|
*/
|
2909
2913
|
readonly transform_launch_products?: boolean
|
2910
2914
|
/**
|
2911
|
-
* Only used if `type` is
|
2915
|
+
* Only used if `type` is {@link defines.cargo_destination.surface surface}.
|
2912
2916
|
*/
|
2913
2917
|
readonly surface?: SurfaceIdentification
|
2914
2918
|
/**
|
2915
|
-
* Only used if `type` is
|
2919
|
+
* Only used if `type` is {@link defines.cargo_destination.surface surface}. Determines the position on the surface to land near. If not provided, cargo pod will switch destination type from {@link defines.cargo_destination.surface surface} to {@link defines.cargo_destination.station station} before starting descent if there is a station available, and will land at {0, 0} if there is no station available.
|
2916
2920
|
*/
|
2917
2921
|
readonly position?: MapPosition
|
2918
2922
|
/**
|
2919
|
-
* Only used if `type` is
|
2923
|
+
* Only used if `type` is {@link defines.cargo_destination.surface surface} and `position` is specified. Determines whether to land at `position` exactly or at a random location nearby. Defaults to `false`.
|
2924
|
+
*/
|
2925
|
+
readonly land_at_exact_position?: boolean
|
2926
|
+
/**
|
2927
|
+
* Only used if `type` is {@link defines.cargo_destination.space_platform space_platform}. Only used for sending space platform starter packs to a platform that is waiting for a starter pack.
|
2920
2928
|
*/
|
2921
2929
|
readonly space_platform?: SpacePlatformIdentification
|
2922
2930
|
}
|
2923
2931
|
/**
|
2924
2932
|
* Write form of {@link CargoDestination}, where some properties allow additional values as input compared to the read form.
|
2925
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2933
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/CargoDestination.html Online documentation}
|
2926
2934
|
*/
|
2927
2935
|
export interface CargoDestinationWrite {
|
2928
2936
|
/**
|
@@ -2930,27 +2938,31 @@ declare module "factorio:runtime" {
|
|
2930
2938
|
*/
|
2931
2939
|
readonly type: defines.cargo_destination
|
2932
2940
|
/**
|
2933
|
-
* Only used if `type` is
|
2941
|
+
* Only used if `type` is {@link defines.cargo_destination.station station}. Must be entity of type `cargo-landing-pad` or `space-platform-hub`.
|
2934
2942
|
*/
|
2935
2943
|
readonly station?: LuaEntity
|
2936
2944
|
/**
|
2937
|
-
* Only used if `type` is
|
2945
|
+
* Only used if `type` is {@link defines.cargo_destination.station station}. Must be connected to the station and not reserved.
|
2938
2946
|
*/
|
2939
2947
|
readonly hatch?: LuaCargoHatch
|
2940
2948
|
/**
|
2941
|
-
* Only used if `type` is
|
2949
|
+
* Only used if `type` is {@link defines.cargo_destination.station station} or {@link defines.cargo_destination.surface surface}. If true, items with {@link import("factorio:prototype").ItemPrototype#rocket_launch_products rocket_launch_products} defined will be transformed into their products before starting descent. Defaults to `false`.
|
2942
2950
|
*/
|
2943
2951
|
readonly transform_launch_products?: boolean
|
2944
2952
|
/**
|
2945
|
-
* Only used if `type` is
|
2953
|
+
* Only used if `type` is {@link defines.cargo_destination.surface surface}.
|
2946
2954
|
*/
|
2947
2955
|
readonly surface?: SurfaceIdentification
|
2948
2956
|
/**
|
2949
|
-
* Only used if `type` is
|
2957
|
+
* Only used if `type` is {@link defines.cargo_destination.surface surface}. Determines the position on the surface to land near. If not provided, cargo pod will switch destination type from {@link defines.cargo_destination.surface surface} to {@link defines.cargo_destination.station station} before starting descent if there is a station available, and will land at {0, 0} if there is no station available.
|
2950
2958
|
*/
|
2951
2959
|
readonly position?: MapPosition | MapPositionArray
|
2952
2960
|
/**
|
2953
|
-
* Only used if `type` is
|
2961
|
+
* Only used if `type` is {@link defines.cargo_destination.surface surface} and `position` is specified. Determines whether to land at `position` exactly or at a random location nearby. Defaults to `false`.
|
2962
|
+
*/
|
2963
|
+
readonly land_at_exact_position?: boolean
|
2964
|
+
/**
|
2965
|
+
* Only used if `type` is {@link defines.cargo_destination.space_platform space_platform}. Only used for sending space platform starter packs to a platform that is waiting for a starter pack.
|
2954
2966
|
*/
|
2955
2967
|
readonly space_platform?: SpacePlatformIdentification
|
2956
2968
|
}
|
@@ -2962,7 +2974,7 @@ declare module "factorio:runtime" {
|
|
2962
2974
|
* - {@link LuaCustomInputPrototype}: Custom input prototype.
|
2963
2975
|
* - {@link defines.events}: Event identifier.
|
2964
2976
|
* - `string`: Name of the event.
|
2965
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2977
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaEventType.html Online documentation}
|
2966
2978
|
*/
|
2967
2979
|
export type LuaEventType = LuaCustomEventPrototype | LuaCustomInputPrototype | defines.events | string | EventId<any>
|
2968
2980
|
/**
|
@@ -2970,13 +2982,13 @@ declare module "factorio:runtime" {
|
|
2970
2982
|
* - `"center-to-center"`
|
2971
2983
|
* - `"bounding-box-to-bounding-box"`
|
2972
2984
|
* - `"center-to-bounding-box"`
|
2973
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2985
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/RangeMode.html Online documentation}
|
2974
2986
|
*/
|
2975
2987
|
export type RangeMode = "center-to-center" | "bounding-box-to-bounding-box" | "center-to-bounding-box"
|
2976
2988
|
/**
|
2977
2989
|
* 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.
|
2978
2990
|
* @see BlueprintEntityWrite
|
2979
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2991
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/BlueprintEntity.html Online documentation}
|
2980
2992
|
*/
|
2981
2993
|
export interface BlueprintEntity {
|
2982
2994
|
/**
|
@@ -3190,7 +3202,7 @@ declare module "factorio:runtime" {
|
|
3190
3202
|
}
|
3191
3203
|
/**
|
3192
3204
|
* Write form of {@link BlueprintEntity}, where some properties allow additional values as input compared to the read form.
|
3193
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3205
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/BlueprintEntity.html Online documentation}
|
3194
3206
|
*/
|
3195
3207
|
export interface BlueprintEntityWrite {
|
3196
3208
|
/**
|
@@ -3411,7 +3423,7 @@ declare module "factorio:runtime" {
|
|
3411
3423
|
}
|
3412
3424
|
/**
|
3413
3425
|
* @see BlueprintEquipmentWrite
|
3414
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3426
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/BlueprintEquipment.html Online documentation}
|
3415
3427
|
*/
|
3416
3428
|
export interface BlueprintEquipment {
|
3417
3429
|
readonly equipment: ItemIDAndQualityIDPair
|
@@ -3419,7 +3431,7 @@ declare module "factorio:runtime" {
|
|
3419
3431
|
}
|
3420
3432
|
/**
|
3421
3433
|
* Write form of {@link BlueprintEquipment}, where some properties allow additional values as input compared to the read form.
|
3422
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3434
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/BlueprintEquipment.html Online documentation}
|
3423
3435
|
*/
|
3424
3436
|
export interface BlueprintEquipmentWrite {
|
3425
3437
|
readonly equipment: ItemIDAndQualityIDPairWrite
|
@@ -3427,7 +3439,7 @@ declare module "factorio:runtime" {
|
|
3427
3439
|
}
|
3428
3440
|
/**
|
3429
3441
|
* @see BlueprintInventoryWrite
|
3430
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3442
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/BlueprintInventory.html Online documentation}
|
3431
3443
|
*/
|
3432
3444
|
export interface BlueprintInventory {
|
3433
3445
|
readonly filters?: BlueprintLogisticFilter[]
|
@@ -3438,7 +3450,7 @@ declare module "factorio:runtime" {
|
|
3438
3450
|
}
|
3439
3451
|
/**
|
3440
3452
|
* Write form of {@link BlueprintInventory}, where some properties allow additional values as input compared to the read form.
|
3441
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3453
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/BlueprintInventory.html Online documentation}
|
3442
3454
|
*/
|
3443
3455
|
export interface BlueprintInventoryWrite {
|
3444
3456
|
readonly filters?: readonly BlueprintLogisticFilterWrite[]
|
@@ -3459,7 +3471,7 @@ declare module "factorio:runtime" {
|
|
3459
3471
|
}
|
3460
3472
|
/**
|
3461
3473
|
* @see BlueprintControlBehaviorWrite
|
3462
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3474
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/BlueprintControlBehavior.html Online documentation}
|
3463
3475
|
*/
|
3464
3476
|
export interface BlueprintControlBehavior {
|
3465
3477
|
/**
|
@@ -3712,7 +3724,7 @@ declare module "factorio:runtime" {
|
|
3712
3724
|
}
|
3713
3725
|
/**
|
3714
3726
|
* Write form of {@link BlueprintControlBehavior}, where some properties allow additional values as input compared to the read form.
|
3715
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3727
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/BlueprintControlBehavior.html Online documentation}
|
3716
3728
|
*/
|
3717
3729
|
export interface BlueprintControlBehaviorWrite {
|
3718
3730
|
/**
|
@@ -3993,7 +4005,7 @@ declare module "factorio:runtime" {
|
|
3993
4005
|
* "2500 * (L - 3)"
|
3994
4006
|
* @example
|
3995
4007
|
* "(4e5 * (abs(speed) + 10.5)) / weight"
|
3996
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4008
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/MathExpression.html Online documentation}
|
3997
4009
|
*/
|
3998
4010
|
export type MathExpression = string
|
3999
4011
|
/**
|
@@ -4015,7 +4027,7 @@ declare module "factorio:runtime" {
|
|
4015
4027
|
* -- What a custom recipe would look like that had a probability of 0.5 to return a
|
4016
4028
|
* -- minimum amount of 1 and a maximum amount of 5
|
4017
4029
|
* {{type="item", name="custom-item", probability=0.5, amount_min=1, amount_max=5}}
|
4018
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4030
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/Product.html Online documentation}
|
4019
4031
|
*/
|
4020
4032
|
export type Product = ItemProduct | FluidProduct | ResearchProgressProduct
|
4021
4033
|
/**
|
@@ -4026,7 +4038,7 @@ declare module "factorio:runtime" {
|
|
4026
4038
|
* -- What a custom recipe would look like that had a probability of 0.5 to return a
|
4027
4039
|
* -- minimum amount of 1 and a maximum amount of 5
|
4028
4040
|
* {{type="item", name="custom-item", probability=0.5, amount_min=1, amount_max=5}}
|
4029
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4041
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/ItemProduct.html Online documentation}
|
4030
4042
|
*/
|
4031
4043
|
export interface ItemProduct {
|
4032
4044
|
readonly type: "item"
|
@@ -4070,7 +4082,7 @@ declare module "factorio:runtime" {
|
|
4070
4082
|
* {{type="fluid", name="heavy-oil", amount=1},
|
4071
4083
|
* {type="fluid", name="light-oil", amount=4.5},
|
4072
4084
|
* {type="fluid", name="petroleum-gas", amount=5.5}}
|
4073
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4085
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/FluidProduct.html Online documentation}
|
4074
4086
|
*/
|
4075
4087
|
export interface FluidProduct {
|
4076
4088
|
readonly type: "fluid"
|
@@ -4118,7 +4130,7 @@ declare module "factorio:runtime" {
|
|
4118
4130
|
}
|
4119
4131
|
/**
|
4120
4132
|
* @see LogisticSectionsWrite
|
4121
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4133
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/LogisticSections.html Online documentation}
|
4122
4134
|
*/
|
4123
4135
|
export interface LogisticSections {
|
4124
4136
|
readonly sections?: LogisticSection[]
|
@@ -4129,7 +4141,7 @@ declare module "factorio:runtime" {
|
|
4129
4141
|
}
|
4130
4142
|
/**
|
4131
4143
|
* Write form of {@link LogisticSections}, where some properties allow additional values as input compared to the read form.
|
4132
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4144
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/LogisticSections.html Online documentation}
|
4133
4145
|
*/
|
4134
4146
|
export interface LogisticSectionsWrite {
|
4135
4147
|
readonly sections?: readonly LogisticSectionWrite[]
|
@@ -4165,7 +4177,7 @@ declare module "factorio:runtime" {
|
|
4165
4177
|
}
|
4166
4178
|
/**
|
4167
4179
|
* @see LogisticSectionWrite
|
4168
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4180
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/LogisticSection.html Online documentation}
|
4169
4181
|
*/
|
4170
4182
|
export interface LogisticSection {
|
4171
4183
|
readonly index: uint8
|
@@ -4182,7 +4194,7 @@ declare module "factorio:runtime" {
|
|
4182
4194
|
}
|
4183
4195
|
/**
|
4184
4196
|
* Write form of {@link LogisticSection}, where some properties allow additional values as input compared to the read form.
|
4185
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4197
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/LogisticSection.html Online documentation}
|
4186
4198
|
*/
|
4187
4199
|
export interface LogisticSectionWrite {
|
4188
4200
|
readonly index: uint8
|
@@ -4199,7 +4211,7 @@ declare module "factorio:runtime" {
|
|
4199
4211
|
}
|
4200
4212
|
/**
|
4201
4213
|
* @see BlueprintLogisticFilterWrite
|
4202
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4214
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/BlueprintLogisticFilter.html Online documentation}
|
4203
4215
|
*/
|
4204
4216
|
export interface BlueprintLogisticFilter {
|
4205
4217
|
readonly index: LogisticFilterIndex
|
@@ -4229,7 +4241,7 @@ declare module "factorio:runtime" {
|
|
4229
4241
|
}
|
4230
4242
|
/**
|
4231
4243
|
* Write form of {@link BlueprintLogisticFilter}, where some properties allow additional values as input compared to the read form.
|
4232
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4244
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/BlueprintLogisticFilter.html Online documentation}
|
4233
4245
|
*/
|
4234
4246
|
export interface BlueprintLogisticFilterWrite {
|
4235
4247
|
readonly index: LogisticFilterIndex
|
@@ -4259,7 +4271,7 @@ declare module "factorio:runtime" {
|
|
4259
4271
|
}
|
4260
4272
|
/**
|
4261
4273
|
* Specifies how probability and richness are calculated when placing something on the map.
|
4262
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4274
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/AutoplaceSpecification.html Online documentation}
|
4263
4275
|
*/
|
4264
4276
|
export interface AutoplaceSpecification {
|
4265
4277
|
/**
|
@@ -4276,7 +4288,7 @@ declare module "factorio:runtime" {
|
|
4276
4288
|
}
|
4277
4289
|
/**
|
4278
4290
|
* @see CliffPlacementSettingsWrite
|
4279
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4291
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/CliffPlacementSettings.html Online documentation}
|
4280
4292
|
*/
|
4281
4293
|
export interface CliffPlacementSettings {
|
4282
4294
|
/**
|
@@ -4306,7 +4318,7 @@ declare module "factorio:runtime" {
|
|
4306
4318
|
}
|
4307
4319
|
/**
|
4308
4320
|
* Write form of {@link CliffPlacementSettings}, where some properties allow additional values as input compared to the read form.
|
4309
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4321
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/CliffPlacementSettings.html Online documentation}
|
4310
4322
|
*/
|
4311
4323
|
export interface CliffPlacementSettingsWrite {
|
4312
4324
|
/**
|
@@ -4336,7 +4348,7 @@ declare module "factorio:runtime" {
|
|
4336
4348
|
}
|
4337
4349
|
/**
|
4338
4350
|
* @see AutoplaceSettingsWrite
|
4339
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4351
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/AutoplaceSettings.html Online documentation}
|
4340
4352
|
*/
|
4341
4353
|
export interface AutoplaceSettings {
|
4342
4354
|
/**
|
@@ -4350,7 +4362,7 @@ declare module "factorio:runtime" {
|
|
4350
4362
|
}
|
4351
4363
|
/**
|
4352
4364
|
* Write form of {@link AutoplaceSettings}, where some properties allow additional values as input compared to the read form.
|
4353
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4365
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/AutoplaceSettings.html Online documentation}
|
4354
4366
|
*/
|
4355
4367
|
export interface AutoplaceSettingsWrite {
|
4356
4368
|
/**
|
@@ -4385,7 +4397,7 @@ declare module "factorio:runtime" {
|
|
4385
4397
|
* surface.map_gen_settings = mgs
|
4386
4398
|
* -- This does not require a NamedNoiseExpression to be defined, since literal numbers (and strings naming literal
|
4387
4399
|
* -- numbers, e.g. `"123"`) are understood to stand for constant value expressions.
|
4388
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4400
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/MapGenSettings.html Online documentation}
|
4389
4401
|
*/
|
4390
4402
|
export interface MapGenSettings {
|
4391
4403
|
/**
|
@@ -4440,7 +4452,7 @@ declare module "factorio:runtime" {
|
|
4440
4452
|
}
|
4441
4453
|
/**
|
4442
4454
|
* Write form of {@link MapGenSettings}, where some properties allow additional values as input compared to the read form.
|
4443
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4455
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/MapGenSettings.html Online documentation}
|
4444
4456
|
*/
|
4445
4457
|
export interface MapGenSettingsWrite {
|
4446
4458
|
/**
|
@@ -4499,7 +4511,7 @@ declare module "factorio:runtime" {
|
|
4499
4511
|
}
|
4500
4512
|
/**
|
4501
4513
|
* These values are for the time frame of one second (60 ticks).
|
4502
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4514
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/PollutionMapSettings.html Online documentation}
|
4503
4515
|
*/
|
4504
4516
|
export interface PollutionMapSettings {
|
4505
4517
|
/**
|
@@ -4553,7 +4565,7 @@ declare module "factorio:runtime" {
|
|
4553
4565
|
}
|
4554
4566
|
/**
|
4555
4567
|
* These values represent a percentual increase in evolution. This means a value of `0.1` would increase evolution by 10%.
|
4556
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4568
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/EnemyEvolutionMapSettings.html Online documentation}
|
4557
4569
|
*/
|
4558
4570
|
export interface EnemyEvolutionMapSettings {
|
4559
4571
|
/**
|
@@ -4591,7 +4603,7 @@ declare module "factorio:runtime" {
|
|
4591
4603
|
* * neighbouring_base_chunk_coefficient^distance(chunk, neighbour)
|
4592
4604
|
* score(chunk) = 1 / (1 + player + base)
|
4593
4605
|
* ```
|
4594
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4606
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/EnemyExpansionMapSettings.html Online documentation}
|
4595
4607
|
*/
|
4596
4608
|
export interface EnemyExpansionMapSettings {
|
4597
4609
|
/**
|
@@ -4850,17 +4862,17 @@ declare module "factorio:runtime" {
|
|
4850
4862
|
}
|
4851
4863
|
/**
|
4852
4864
|
* Technology difficulty settings. Updating any of the attributes will immediately take effect in the game engine.
|
4853
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4865
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/DifficultySettings.html Online documentation}
|
4854
4866
|
*/
|
4855
4867
|
export interface DifficultySettings {
|
4856
4868
|
/**
|
4857
4869
|
* A value in range [0.001, 1000].
|
4858
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4870
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/DifficultySettings.technology_price_multiplier.html Online documentation}
|
4859
4871
|
*/
|
4860
4872
|
technology_price_multiplier: double
|
4861
4873
|
/**
|
4862
4874
|
* A value in range [0.01, 100].
|
4863
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4875
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/DifficultySettings.spoil_time_modifier.html Online documentation}
|
4864
4876
|
*/
|
4865
4877
|
spoil_time_modifier: double
|
4866
4878
|
}
|
@@ -4876,7 +4888,7 @@ declare module "factorio:runtime" {
|
|
4876
4888
|
}
|
4877
4889
|
/**
|
4878
4890
|
* A standard table containing all {@link MapSettings} attributes plus an additional table that contains all {@link DifficultySettings} properties.
|
4879
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4891
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/MapAndDifficultySettings.html Online documentation}
|
4880
4892
|
*/
|
4881
4893
|
export interface MapAndDifficultySettings {
|
4882
4894
|
readonly pollution: PollutionMapSettings
|
@@ -4897,7 +4909,7 @@ declare module "factorio:runtime" {
|
|
4897
4909
|
* @example
|
4898
4910
|
* -- Increase the number of short paths the pathfinder can cache.
|
4899
4911
|
* game.map_settings.path_finder.short_cache_size = 15
|
4900
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4912
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/MapSettings.html Online documentation}
|
4901
4913
|
*/
|
4902
4914
|
export interface MapSettings {
|
4903
4915
|
pollution: PollutionMapSettings
|
@@ -4909,13 +4921,13 @@ declare module "factorio:runtime" {
|
|
4909
4921
|
asteroids: AsteroidMapSettings
|
4910
4922
|
/**
|
4911
4923
|
* If a behavior fails this many times, the enemy (or enemy group) is destroyed. This solves biters getting stuck within their own base.
|
4912
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4924
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/MapSettings.max_failed_behavior_count.html Online documentation}
|
4913
4925
|
*/
|
4914
4926
|
max_failed_behavior_count: uint
|
4915
4927
|
}
|
4916
4928
|
/**
|
4917
4929
|
* @see BlueprintScheduleRecordWrite
|
4918
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4930
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/BlueprintScheduleRecord.html Online documentation}
|
4919
4931
|
*/
|
4920
4932
|
export interface BlueprintScheduleRecord {
|
4921
4933
|
/**
|
@@ -4932,7 +4944,7 @@ declare module "factorio:runtime" {
|
|
4932
4944
|
}
|
4933
4945
|
/**
|
4934
4946
|
* Write form of {@link BlueprintScheduleRecord}, where some properties allow additional values as input compared to the read form.
|
4935
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4947
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/BlueprintScheduleRecord.html Online documentation}
|
4936
4948
|
*/
|
4937
4949
|
export interface BlueprintScheduleRecordWrite {
|
4938
4950
|
/**
|
@@ -4949,7 +4961,7 @@ declare module "factorio:runtime" {
|
|
4949
4961
|
}
|
4950
4962
|
/**
|
4951
4963
|
* @see BlueprintScheduleInterruptWrite
|
4952
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4964
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/BlueprintScheduleInterrupt.html Online documentation}
|
4953
4965
|
*/
|
4954
4966
|
export interface BlueprintScheduleInterrupt {
|
4955
4967
|
readonly name?: string
|
@@ -4959,7 +4971,7 @@ declare module "factorio:runtime" {
|
|
4959
4971
|
}
|
4960
4972
|
/**
|
4961
4973
|
* Write form of {@link BlueprintScheduleInterrupt}, where some properties allow additional values as input compared to the read form.
|
4962
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4974
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/BlueprintScheduleInterrupt.html Online documentation}
|
4963
4975
|
*/
|
4964
4976
|
export interface BlueprintScheduleInterruptWrite {
|
4965
4977
|
readonly name?: string
|
@@ -4969,7 +4981,7 @@ declare module "factorio:runtime" {
|
|
4969
4981
|
}
|
4970
4982
|
/**
|
4971
4983
|
* @see BlueprintScheduleWrite
|
4972
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4984
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/BlueprintSchedule.html Online documentation}
|
4973
4985
|
*/
|
4974
4986
|
export interface BlueprintSchedule {
|
4975
4987
|
readonly records?: BlueprintScheduleRecord[]
|
@@ -4978,7 +4990,7 @@ declare module "factorio:runtime" {
|
|
4978
4990
|
}
|
4979
4991
|
/**
|
4980
4992
|
* Write form of {@link BlueprintSchedule}, where some properties allow additional values as input compared to the read form.
|
4981
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4993
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/BlueprintSchedule.html Online documentation}
|
4982
4994
|
*/
|
4983
4995
|
export interface BlueprintScheduleWrite {
|
4984
4996
|
readonly records?: readonly BlueprintScheduleRecordWrite[]
|
@@ -4987,7 +4999,7 @@ declare module "factorio:runtime" {
|
|
4987
4999
|
}
|
4988
5000
|
/**
|
4989
5001
|
* @see WaitConditionWrite
|
4990
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5002
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/WaitCondition.html Online documentation}
|
4991
5003
|
*/
|
4992
5004
|
export interface WaitCondition {
|
4993
5005
|
readonly type: WaitConditionType
|
@@ -5018,7 +5030,7 @@ declare module "factorio:runtime" {
|
|
5018
5030
|
}
|
5019
5031
|
/**
|
5020
5032
|
* Write form of {@link WaitCondition}, where some properties allow additional values as input compared to the read form.
|
5021
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5033
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/WaitCondition.html Online documentation}
|
5022
5034
|
*/
|
5023
5035
|
export interface WaitConditionWrite {
|
5024
5036
|
readonly type: WaitConditionType
|
@@ -5077,7 +5089,7 @@ declare module "factorio:runtime" {
|
|
5077
5089
|
* - `"at_station"`
|
5078
5090
|
* - `"not_at_station"`
|
5079
5091
|
* - `"damage_taken"`
|
5080
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5092
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/WaitConditionType.html Online documentation}
|
5081
5093
|
*/
|
5082
5094
|
export type WaitConditionType =
|
5083
5095
|
| "time"
|
@@ -5119,7 +5131,7 @@ declare module "factorio:runtime" {
|
|
5119
5131
|
* - `"blueprint-snap-rectangle"`: Green by default.
|
5120
5132
|
* - `"spidertron-remote-selected"`
|
5121
5133
|
* - `"spidertron-remote-to-be-selected"`
|
5122
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5134
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/CursorBoxRenderType.html Online documentation}
|
5123
5135
|
*/
|
5124
5136
|
export type CursorBoxRenderType =
|
5125
5137
|
| "entity"
|
@@ -5135,7 +5147,7 @@ declare module "factorio:runtime" {
|
|
5135
5147
|
| "spidertron-remote-to-be-selected"
|
5136
5148
|
/**
|
5137
5149
|
* What is shown in the map view. If a field is not given, that setting will not be changed.
|
5138
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5150
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/MapViewSettings.html Online documentation}
|
5139
5151
|
*/
|
5140
5152
|
export interface MapViewSettings {
|
5141
5153
|
readonly "show-logistic-network"?: boolean
|
@@ -5228,7 +5240,7 @@ declare module "factorio:runtime" {
|
|
5228
5240
|
* - `"collision-selection-box"`: 189
|
5229
5241
|
* - `"arrow"`: 190
|
5230
5242
|
* - `"cursor"`: 226
|
5231
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5243
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/RenderLayer.html Online documentation}
|
5232
5244
|
*/
|
5233
5245
|
export type RenderLayer =
|
5234
5246
|
| `${bigint}`
|
@@ -5338,7 +5350,7 @@ declare module "factorio:runtime" {
|
|
5338
5350
|
* - `"entity-with-quality"`
|
5339
5351
|
* - `"recipe-with-quality"`
|
5340
5352
|
* - `"equipment-with-quality"`
|
5341
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5353
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/ElemType.html Online documentation}
|
5342
5354
|
*/
|
5343
5355
|
export type ElemType =
|
5344
5356
|
| "achievement"
|
@@ -5365,7 +5377,7 @@ declare module "factorio:runtime" {
|
|
5365
5377
|
* - `"left"`
|
5366
5378
|
* - `"right"`
|
5367
5379
|
* - `"none"`
|
5368
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5380
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/SwitchState.html Online documentation}
|
5369
5381
|
*/
|
5370
5382
|
export type SwitchState = "left" | "right" | "none"
|
5371
5383
|
export interface ElemID {
|
@@ -5406,7 +5418,7 @@ declare module "factorio:runtime" {
|
|
5406
5418
|
* - `"destroy-decoratives"`
|
5407
5419
|
* - `"camera-effect"`
|
5408
5420
|
* - `"activate-impact"`
|
5409
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5421
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/TriggerEffectItemType.html Online documentation}
|
5410
5422
|
*/
|
5411
5423
|
export type TriggerEffectItemType =
|
5412
5424
|
| "damage"
|
@@ -5443,7 +5455,7 @@ declare module "factorio:runtime" {
|
|
5443
5455
|
}
|
5444
5456
|
/**
|
5445
5457
|
* A set of trigger target masks.
|
5446
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5458
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/TriggerTargetMask.html Online documentation}
|
5447
5459
|
*/
|
5448
5460
|
export type TriggerTargetMask = Record<string, true>
|
5449
5461
|
export interface TriggerItem {
|
@@ -5510,7 +5522,7 @@ declare module "factorio:runtime" {
|
|
5510
5522
|
* -- If 'entity-description.furnace' exists, it is concatenated with "\n" and returned. Otherwise, if 'item-description.furnace'
|
5511
5523
|
* -- exists, it is returned as-is. Otherwise, "optional fallback" is returned. If this value wasn't specified, the
|
5512
5524
|
* -- translation result would be "Unknown key: 'item-description.furnace'".
|
5513
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5525
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/LocalisedString.html Online documentation}
|
5514
5526
|
*/
|
5515
5527
|
export type LocalisedString = string | number | boolean | LuaObject | nil | [string, ...LocalisedString[]]
|
5516
5528
|
export interface DisplayResolution {
|
@@ -5521,7 +5533,7 @@ declare module "factorio:runtime" {
|
|
5521
5533
|
* 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".
|
5522
5534
|
*
|
5523
5535
|
* For example then, a value of `0.625` would indicate "south-west", and a value of `0.875` would indicate "north-west".
|
5524
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5536
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/RealOrientation.html Online documentation}
|
5525
5537
|
*/
|
5526
5538
|
export type RealOrientation = float
|
5527
5539
|
/**
|
@@ -5536,7 +5548,7 @@ declare module "factorio:runtime" {
|
|
5536
5548
|
* @example
|
5537
5549
|
* -- Shorthand
|
5538
5550
|
* {1.625, 2.375}
|
5539
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5551
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/MapPosition.html Online documentation}
|
5540
5552
|
*/
|
5541
5553
|
export interface MapPosition {
|
5542
5554
|
readonly x: double
|
@@ -5545,13 +5557,13 @@ declare module "factorio:runtime" {
|
|
5545
5557
|
/**
|
5546
5558
|
* Array form of {@link MapPosition}.
|
5547
5559
|
* @see MapPosition
|
5548
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5560
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/MapPosition.html Online documentation}
|
5549
5561
|
*/
|
5550
5562
|
export type MapPositionArray = readonly [double, double]
|
5551
5563
|
/**
|
5552
5564
|
* 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.
|
5553
5565
|
* @see ChunkPositionArray
|
5554
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5566
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/ChunkPosition.html Online documentation}
|
5555
5567
|
*/
|
5556
5568
|
export interface ChunkPosition {
|
5557
5569
|
readonly x: int
|
@@ -5560,13 +5572,13 @@ declare module "factorio:runtime" {
|
|
5560
5572
|
/**
|
5561
5573
|
* Array form of {@link ChunkPosition}.
|
5562
5574
|
* @see ChunkPosition
|
5563
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5575
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/ChunkPosition.html Online documentation}
|
5564
5576
|
*/
|
5565
5577
|
export type ChunkPositionArray = readonly [int, int]
|
5566
5578
|
/**
|
5567
5579
|
* 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.
|
5568
5580
|
* @see TilePositionArray
|
5569
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5581
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/TilePosition.html Online documentation}
|
5570
5582
|
*/
|
5571
5583
|
export interface TilePosition {
|
5572
5584
|
readonly x: int
|
@@ -5575,7 +5587,7 @@ declare module "factorio:runtime" {
|
|
5575
5587
|
/**
|
5576
5588
|
* Array form of {@link TilePosition}.
|
5577
5589
|
* @see TilePosition
|
5578
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5590
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/TilePosition.html Online documentation}
|
5579
5591
|
*/
|
5580
5592
|
export type TilePositionArray = readonly [int, int]
|
5581
5593
|
/**
|
@@ -5588,7 +5600,7 @@ declare module "factorio:runtime" {
|
|
5588
5600
|
* @example
|
5589
5601
|
* -- Shorthand
|
5590
5602
|
* {1, 2}
|
5591
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5603
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/EquipmentPosition.html Online documentation}
|
5592
5604
|
*/
|
5593
5605
|
export interface EquipmentPosition {
|
5594
5606
|
readonly x: int
|
@@ -5597,13 +5609,13 @@ declare module "factorio:runtime" {
|
|
5597
5609
|
/**
|
5598
5610
|
* Array form of {@link EquipmentPosition}.
|
5599
5611
|
* @see EquipmentPosition
|
5600
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5612
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/EquipmentPosition.html Online documentation}
|
5601
5613
|
*/
|
5602
5614
|
export type EquipmentPositionArray = readonly [int, int]
|
5603
5615
|
/**
|
5604
5616
|
* 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.
|
5605
5617
|
* @see GuiLocationArray
|
5606
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5618
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/GuiLocation.html Online documentation}
|
5607
5619
|
*/
|
5608
5620
|
export interface GuiLocation {
|
5609
5621
|
readonly x: int
|
@@ -5612,12 +5624,12 @@ declare module "factorio:runtime" {
|
|
5612
5624
|
/**
|
5613
5625
|
* Array form of {@link GuiLocation}.
|
5614
5626
|
* @see GuiLocation
|
5615
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5627
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/GuiLocation.html Online documentation}
|
5616
5628
|
*/
|
5617
5629
|
export type GuiLocationArray = readonly [int, int]
|
5618
5630
|
/**
|
5619
5631
|
* A {@link ChunkPosition} with an added bounding box for the area of the chunk.
|
5620
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5632
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/ChunkPositionAndArea.html Online documentation}
|
5621
5633
|
*/
|
5622
5634
|
export interface ChunkPositionAndArea {
|
5623
5635
|
readonly x: int
|
@@ -5626,7 +5638,7 @@ declare module "factorio:runtime" {
|
|
5626
5638
|
}
|
5627
5639
|
/**
|
5628
5640
|
* A table used to define a manual shape for a piece of equipment.
|
5629
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5641
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/EquipmentPoint.html Online documentation}
|
5630
5642
|
*/
|
5631
5643
|
export interface EquipmentPoint {
|
5632
5644
|
readonly x: uint
|
@@ -5662,7 +5674,7 @@ declare module "factorio:runtime" {
|
|
5662
5674
|
* 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.
|
5663
5675
|
* @example
|
5664
5676
|
* {a = 1, b = true, c = "three", d = {e = "f"}}
|
5665
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5677
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/Tags.html Online documentation}
|
5666
5678
|
*/
|
5667
5679
|
export type Tags = Record<string, AnyBasic>
|
5668
5680
|
export interface SurfaceCondition {
|
@@ -5696,13 +5708,13 @@ declare module "factorio:runtime" {
|
|
5696
5708
|
* 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.
|
5697
5709
|
* @example
|
5698
5710
|
* right = {1.0, 0.0}
|
5699
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5711
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/Vector.html Online documentation}
|
5700
5712
|
*/
|
5701
5713
|
export type Vector = MapPositionArray
|
5702
5714
|
/**
|
5703
5715
|
* An area defined using the map editor.
|
5704
5716
|
* @see ScriptAreaWrite
|
5705
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5717
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/ScriptArea.html Online documentation}
|
5706
5718
|
*/
|
5707
5719
|
export interface ScriptArea {
|
5708
5720
|
readonly area: BoundingBox
|
@@ -5712,7 +5724,7 @@ declare module "factorio:runtime" {
|
|
5712
5724
|
}
|
5713
5725
|
/**
|
5714
5726
|
* Write form of {@link ScriptArea}, where some properties allow additional values as input compared to the read form.
|
5715
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5727
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/ScriptArea.html Online documentation}
|
5716
5728
|
*/
|
5717
5729
|
export interface ScriptAreaWrite {
|
5718
5730
|
readonly area: BoundingBoxWrite | BoundingBoxArray
|
@@ -5723,7 +5735,7 @@ declare module "factorio:runtime" {
|
|
5723
5735
|
/**
|
5724
5736
|
* A position defined using the map editor.
|
5725
5737
|
* @see ScriptPositionWrite
|
5726
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5738
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/ScriptPosition.html Online documentation}
|
5727
5739
|
*/
|
5728
5740
|
export interface ScriptPosition {
|
5729
5741
|
readonly position: MapPosition
|
@@ -5733,7 +5745,7 @@ declare module "factorio:runtime" {
|
|
5733
5745
|
}
|
5734
5746
|
/**
|
5735
5747
|
* Write form of {@link ScriptPosition}, where some properties allow additional values as input compared to the read form.
|
5736
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5748
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/ScriptPosition.html Online documentation}
|
5737
5749
|
*/
|
5738
5750
|
export interface ScriptPositionWrite {
|
5739
5751
|
readonly position: MapPosition | MapPositionArray
|
@@ -5751,7 +5763,7 @@ declare module "factorio:runtime" {
|
|
5751
5763
|
* red2 = {r = 0.5, a = 0.5} -- Same color as red1
|
5752
5764
|
* black = {} -- All channels omitted: black
|
5753
5765
|
* red1_short = {0.5, 0, 0, 0.5} -- Same color as red1 in short-hand notation
|
5754
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5766
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/Color.html Online documentation}
|
5755
5767
|
*/
|
5756
5768
|
export interface Color {
|
5757
5769
|
readonly r?: float
|
@@ -5762,13 +5774,13 @@ declare module "factorio:runtime" {
|
|
5762
5774
|
/**
|
5763
5775
|
* Array form of {@link Color}.
|
5764
5776
|
* @see Color
|
5765
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5777
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/Color.html Online documentation}
|
5766
5778
|
*/
|
5767
5779
|
export type ColorArray = readonly [r: double, g: double, b: double, a?: double]
|
5768
5780
|
/**
|
5769
5781
|
* 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].
|
5770
5782
|
* @see ColorModifierArray
|
5771
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5783
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/ColorModifier.html Online documentation}
|
5772
5784
|
*/
|
5773
5785
|
export interface ColorModifier {
|
5774
5786
|
readonly r?: float
|
@@ -5779,7 +5791,7 @@ declare module "factorio:runtime" {
|
|
5779
5791
|
/**
|
5780
5792
|
* Array form of {@link ColorModifier}.
|
5781
5793
|
* @see ColorModifier
|
5782
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5794
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/ColorModifier.html Online documentation}
|
5783
5795
|
*/
|
5784
5796
|
export type ColorModifierArray = readonly [r: double, g: double, b: double, a?: double]
|
5785
5797
|
export interface CraftingQueueItem {
|
@@ -5922,7 +5934,7 @@ declare module "factorio:runtime" {
|
|
5922
5934
|
}
|
5923
5935
|
/**
|
5924
5936
|
* @see AsteroidChunkWrite
|
5925
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5937
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/AsteroidChunk.html Online documentation}
|
5926
5938
|
*/
|
5927
5939
|
export interface AsteroidChunk {
|
5928
5940
|
/**
|
@@ -5934,7 +5946,7 @@ declare module "factorio:runtime" {
|
|
5934
5946
|
}
|
5935
5947
|
/**
|
5936
5948
|
* Write form of {@link AsteroidChunk}, where some properties allow additional values as input compared to the read form.
|
5937
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5949
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/AsteroidChunk.html Online documentation}
|
5938
5950
|
*/
|
5939
5951
|
export interface AsteroidChunkWrite {
|
5940
5952
|
/**
|
@@ -5956,7 +5968,7 @@ declare module "factorio:runtime" {
|
|
5956
5968
|
}
|
5957
5969
|
/**
|
5958
5970
|
* Either `icon`, `text`, or both must be provided.
|
5959
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5971
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/ChartTagSpec.html Online documentation}
|
5960
5972
|
*/
|
5961
5973
|
export interface ChartTagSpec {
|
5962
5974
|
readonly position: MapPosition | MapPositionArray
|
@@ -5966,93 +5978,93 @@ declare module "factorio:runtime" {
|
|
5966
5978
|
}
|
5967
5979
|
/**
|
5968
5980
|
* 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.
|
5969
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5981
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/GameViewSettings.html Online documentation}
|
5970
5982
|
*/
|
5971
5983
|
export interface GameViewSettings {
|
5972
5984
|
/**
|
5973
5985
|
* Show the controller GUI elements. This includes the toolbar, the selected tool slot, the armour slot, and the gun and ammunition slots.
|
5974
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5986
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/GameViewSettings.show_controller_gui.html Online documentation}
|
5975
5987
|
*/
|
5976
5988
|
show_controller_gui: boolean
|
5977
5989
|
/**
|
5978
5990
|
* Show the chart in the upper right-hand corner of the screen.
|
5979
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5991
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/GameViewSettings.show_minimap.html Online documentation}
|
5980
5992
|
*/
|
5981
5993
|
show_minimap: boolean
|
5982
5994
|
/**
|
5983
5995
|
* Show research progress and name in the upper right-hand corner of the screen.
|
5984
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5996
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/GameViewSettings.show_research_info.html Online documentation}
|
5985
5997
|
*/
|
5986
5998
|
show_research_info: boolean
|
5987
5999
|
/**
|
5988
6000
|
* Show overlay icons on entities. Also known as "alt-mode".
|
5989
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6001
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/GameViewSettings.show_entity_info.html Online documentation}
|
5990
6002
|
*/
|
5991
6003
|
show_entity_info: boolean
|
5992
6004
|
/**
|
5993
6005
|
* Show the flashing alert icons next to the player's toolbar.
|
5994
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6006
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/GameViewSettings.show_alert_gui.html Online documentation}
|
5995
6007
|
*/
|
5996
6008
|
show_alert_gui: boolean
|
5997
6009
|
/**
|
5998
6010
|
* When `true` (the default), mousing over an entity will select it. Otherwise, moving the mouse won't update entity selection.
|
5999
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6011
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/GameViewSettings.update_entity_selection.html Online documentation}
|
6000
6012
|
*/
|
6001
6013
|
update_entity_selection: boolean
|
6002
6014
|
/**
|
6003
6015
|
* When `true` (`false` is default), the rails will always show the rail block visualisation.
|
6004
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6016
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/GameViewSettings.show_rail_block_visualisation.html Online documentation}
|
6005
6017
|
*/
|
6006
6018
|
show_rail_block_visualisation: boolean
|
6007
6019
|
/**
|
6008
6020
|
* Shows or hides the buttons row.
|
6009
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6021
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/GameViewSettings.show_side_menu.html Online documentation}
|
6010
6022
|
*/
|
6011
6023
|
show_side_menu: boolean
|
6012
6024
|
/**
|
6013
6025
|
* Shows or hides the view options when map is opened.
|
6014
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6026
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/GameViewSettings.show_map_view_options.html Online documentation}
|
6015
6027
|
*/
|
6016
6028
|
show_map_view_options: boolean
|
6017
6029
|
/**
|
6018
6030
|
* Shows or hides the tooltip that is displayed when selecting an entity.
|
6019
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6031
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/GameViewSettings.show_entity_tooltip.html Online documentation}
|
6020
6032
|
*/
|
6021
6033
|
show_entity_tooltip: boolean
|
6022
6034
|
/**
|
6023
6035
|
* Shows or hides quickbar of shortcuts.
|
6024
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6036
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/GameViewSettings.show_quickbar.html Online documentation}
|
6025
6037
|
*/
|
6026
6038
|
show_quickbar: boolean
|
6027
6039
|
/**
|
6028
6040
|
* Shows or hides the shortcut bar.
|
6029
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6041
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/GameViewSettings.show_shortcut_bar.html Online documentation}
|
6030
6042
|
*/
|
6031
6043
|
show_shortcut_bar: boolean
|
6032
6044
|
/**
|
6033
6045
|
* Shows or hides the crafting queue.
|
6034
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6046
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/GameViewSettings.show_crafting_queue.html Online documentation}
|
6035
6047
|
*/
|
6036
6048
|
show_crafting_queue: boolean
|
6037
6049
|
/**
|
6038
6050
|
* Shows or hides the tool window with the weapons and armor.
|
6039
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6051
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/GameViewSettings.show_tool_bar.html Online documentation}
|
6040
6052
|
*/
|
6041
6053
|
show_tool_bar: boolean
|
6042
6054
|
/**
|
6043
6055
|
* Shows or hides the mouse and keyboard/controller button hints in the bottom left corner if they are enabled in the interface settings.
|
6044
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6056
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/GameViewSettings.show_hotkey_suggestions.html Online documentation}
|
6045
6057
|
*/
|
6046
6058
|
show_hotkey_suggestions: boolean
|
6047
6059
|
/**
|
6048
6060
|
* Shows or hides the surface list while in Remote View.
|
6049
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6061
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/GameViewSettings.show_surface_list.html Online documentation}
|
6050
6062
|
*/
|
6051
6063
|
show_surface_list: boolean
|
6052
6064
|
}
|
6053
6065
|
/**
|
6054
6066
|
* The data that can be extracted from a map exchange string, as a plain table.
|
6055
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6067
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/MapExchangeStringData.html Online documentation}
|
6056
6068
|
*/
|
6057
6069
|
export interface MapExchangeStringData {
|
6058
6070
|
readonly map_settings: MapAndDifficultySettings
|
@@ -6060,7 +6072,7 @@ declare module "factorio:runtime" {
|
|
6060
6072
|
}
|
6061
6073
|
/**
|
6062
6074
|
* @see BlueprintSignalIconWrite
|
6063
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6075
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/BlueprintSignalIcon.html Online documentation}
|
6064
6076
|
*/
|
6065
6077
|
export interface BlueprintSignalIcon {
|
6066
6078
|
/**
|
@@ -6074,7 +6086,7 @@ declare module "factorio:runtime" {
|
|
6074
6086
|
}
|
6075
6087
|
/**
|
6076
6088
|
* Write form of {@link BlueprintSignalIcon}, where some properties allow additional values as input compared to the read form.
|
6077
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6089
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/BlueprintSignalIcon.html Online documentation}
|
6078
6090
|
*/
|
6079
6091
|
export interface BlueprintSignalIconWrite {
|
6080
6092
|
/**
|
@@ -6103,12 +6115,12 @@ declare module "factorio:runtime" {
|
|
6103
6115
|
* - `target_entity_number`
|
6104
6116
|
*
|
6105
6117
|
* - `target_wire_connector_id`
|
6106
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6118
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/BlueprintWire.html Online documentation}
|
6107
6119
|
*/
|
6108
6120
|
export type BlueprintWire = readonly [uint, defines.wire_connector_id, uint, defines.wire_connector_id]
|
6109
6121
|
/**
|
6110
6122
|
* @see TileWrite
|
6111
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6123
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/Tile.html Online documentation}
|
6112
6124
|
*/
|
6113
6125
|
export interface Tile {
|
6114
6126
|
/**
|
@@ -6122,7 +6134,7 @@ declare module "factorio:runtime" {
|
|
6122
6134
|
}
|
6123
6135
|
/**
|
6124
6136
|
* Write form of {@link Tile}, where some properties allow additional values as input compared to the read form.
|
6125
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6137
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/Tile.html Online documentation}
|
6126
6138
|
*/
|
6127
6139
|
export interface TileWrite {
|
6128
6140
|
/**
|
@@ -6177,7 +6189,7 @@ declare module "factorio:runtime" {
|
|
6177
6189
|
*
|
6178
6190
|
* Other attributes may be specified depending on `type`:
|
6179
6191
|
* - `"fluid"`: {@link FluidIngredient}
|
6180
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6192
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/Ingredient.html Online documentation}
|
6181
6193
|
*/
|
6182
6194
|
export type Ingredient = FluidIngredient | OtherIngredient
|
6183
6195
|
export interface Loot {
|
@@ -6343,7 +6355,7 @@ declare module "factorio:runtime" {
|
|
6343
6355
|
* - `"unlock-recipe"`: {@link UnlockRecipeTechnologyModifier}
|
6344
6356
|
* - `"nothing"`: {@link NothingTechnologyModifier}
|
6345
6357
|
* - Other types: {@link OtherTechnologyModifier}
|
6346
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6358
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/TechnologyModifier.html Online documentation}
|
6347
6359
|
*/
|
6348
6360
|
export type TechnologyModifier =
|
6349
6361
|
| GunSpeedTechnologyModifier
|
@@ -6355,7 +6367,7 @@ declare module "factorio:runtime" {
|
|
6355
6367
|
| OtherTechnologyModifier
|
6356
6368
|
/**
|
6357
6369
|
* 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}.
|
6358
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6370
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/NoiseExpression.html Online documentation}
|
6359
6371
|
*/
|
6360
6372
|
export interface NoiseExpression {
|
6361
6373
|
/**
|
@@ -6408,7 +6420,7 @@ declare module "factorio:runtime" {
|
|
6408
6420
|
* - `"very-high"`: equivalent to `2`.
|
6409
6421
|
* - `"very-big"`: equivalent to `2`.
|
6410
6422
|
* - `"very-good"`: equivalent to `2`.
|
6411
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6423
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/MapGenSize.html Online documentation}
|
6412
6424
|
*/
|
6413
6425
|
export type MapGenSize =
|
6414
6426
|
| float
|
@@ -6430,7 +6442,7 @@ declare module "factorio:runtime" {
|
|
6430
6442
|
| "very-good"
|
6431
6443
|
/**
|
6432
6444
|
* @see AutoplaceControlWrite
|
6433
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6445
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/AutoplaceControl.html Online documentation}
|
6434
6446
|
*/
|
6435
6447
|
export interface AutoplaceControl {
|
6436
6448
|
/**
|
@@ -6448,7 +6460,7 @@ declare module "factorio:runtime" {
|
|
6448
6460
|
}
|
6449
6461
|
/**
|
6450
6462
|
* Write form of {@link AutoplaceControl}, where some properties allow additional values as input compared to the read form.
|
6451
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6463
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/AutoplaceControl.html Online documentation}
|
6452
6464
|
*/
|
6453
6465
|
export interface AutoplaceControlWrite {
|
6454
6466
|
/**
|
@@ -6467,10 +6479,10 @@ declare module "factorio:runtime" {
|
|
6467
6479
|
/**
|
6468
6480
|
* 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}`.
|
6469
6481
|
*
|
6470
|
-
* {@link https://lua-api.factorio.com/2.0.
|
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:}
|
6471
6483
|
*
|
6472
|
-
* {@link https://lua-api.factorio.com/2.0.
|
6473
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
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}
|
6474
6486
|
*/
|
6475
6487
|
export type PropertyExpressionNames = Record<string, string>
|
6476
6488
|
export interface AdvancedMapGenSettings {
|
@@ -6493,7 +6505,7 @@ declare module "factorio:runtime" {
|
|
6493
6505
|
}
|
6494
6506
|
/**
|
6495
6507
|
* An actual signal transmitted by the network.
|
6496
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6508
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/Signal.html Online documentation}
|
6497
6509
|
*/
|
6498
6510
|
export interface Signal {
|
6499
6511
|
/**
|
@@ -6507,7 +6519,7 @@ declare module "factorio:runtime" {
|
|
6507
6519
|
}
|
6508
6520
|
/**
|
6509
6521
|
* @see UpgradeMapperSourceWrite
|
6510
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6522
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/UpgradeMapperSource.html Online documentation}
|
6511
6523
|
*/
|
6512
6524
|
export interface UpgradeMapperSource {
|
6513
6525
|
readonly type: "item" | "entity"
|
@@ -6526,7 +6538,7 @@ declare module "factorio:runtime" {
|
|
6526
6538
|
}
|
6527
6539
|
/**
|
6528
6540
|
* Write form of {@link UpgradeMapperSource}, where some properties allow additional values as input compared to the read form.
|
6529
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6541
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/UpgradeMapperSource.html Online documentation}
|
6530
6542
|
*/
|
6531
6543
|
export interface UpgradeMapperSourceWrite {
|
6532
6544
|
readonly type: "item" | "entity"
|
@@ -6563,7 +6575,7 @@ declare module "factorio:runtime" {
|
|
6563
6575
|
}
|
6564
6576
|
/**
|
6565
6577
|
* A single filter used by an infinity-filters instance.
|
6566
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6578
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/InfinityInventoryFilter.html Online documentation}
|
6567
6579
|
*/
|
6568
6580
|
export interface InfinityInventoryFilter {
|
6569
6581
|
/**
|
@@ -6585,7 +6597,7 @@ declare module "factorio:runtime" {
|
|
6585
6597
|
}
|
6586
6598
|
/**
|
6587
6599
|
* A single filter used by an infinity-pipe type entity.
|
6588
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6600
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/InfinityPipeFilter.html Online documentation}
|
6589
6601
|
*/
|
6590
6602
|
export interface InfinityPipeFilter {
|
6591
6603
|
/**
|
@@ -6639,7 +6651,7 @@ declare module "factorio:runtime" {
|
|
6639
6651
|
}
|
6640
6652
|
/**
|
6641
6653
|
* The settings used by a heat-interface type entity.
|
6642
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6654
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/HeatSetting.html Online documentation}
|
6643
6655
|
*/
|
6644
6656
|
export interface HeatSetting {
|
6645
6657
|
/**
|
@@ -6657,7 +6669,7 @@ declare module "factorio:runtime" {
|
|
6657
6669
|
}
|
6658
6670
|
/**
|
6659
6671
|
* @see ArithmeticCombinatorParametersWrite
|
6660
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6672
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/ArithmeticCombinatorParameters.html Online documentation}
|
6661
6673
|
*/
|
6662
6674
|
export interface ArithmeticCombinatorParameters {
|
6663
6675
|
/**
|
@@ -6687,7 +6699,7 @@ declare module "factorio:runtime" {
|
|
6687
6699
|
}
|
6688
6700
|
/**
|
6689
6701
|
* Write form of {@link ArithmeticCombinatorParameters}, where some properties allow additional values as input compared to the read form.
|
6690
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6702
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/ArithmeticCombinatorParameters.html Online documentation}
|
6691
6703
|
*/
|
6692
6704
|
export interface ArithmeticCombinatorParametersWrite {
|
6693
6705
|
/**
|
@@ -6717,7 +6729,7 @@ declare module "factorio:runtime" {
|
|
6717
6729
|
}
|
6718
6730
|
/**
|
6719
6731
|
* @see SelectorCombinatorParametersWrite
|
6720
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6732
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/SelectorCombinatorParameters.html Online documentation}
|
6721
6733
|
*/
|
6722
6734
|
export interface SelectorCombinatorParameters {
|
6723
6735
|
/**
|
@@ -6743,7 +6755,7 @@ declare module "factorio:runtime" {
|
|
6743
6755
|
}
|
6744
6756
|
/**
|
6745
6757
|
* Write form of {@link SelectorCombinatorParameters}, where some properties allow additional values as input compared to the read form.
|
6746
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6758
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/SelectorCombinatorParameters.html Online documentation}
|
6747
6759
|
*/
|
6748
6760
|
export interface SelectorCombinatorParametersWrite {
|
6749
6761
|
/**
|
@@ -6785,7 +6797,7 @@ declare module "factorio:runtime" {
|
|
6785
6797
|
}
|
6786
6798
|
/**
|
6787
6799
|
* @see CircuitConditionWrite
|
6788
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6800
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/CircuitCondition.html Online documentation}
|
6789
6801
|
*/
|
6790
6802
|
export interface CircuitCondition {
|
6791
6803
|
/**
|
@@ -6807,7 +6819,7 @@ declare module "factorio:runtime" {
|
|
6807
6819
|
}
|
6808
6820
|
/**
|
6809
6821
|
* Write form of {@link CircuitCondition}, where some properties allow additional values as input compared to the read form.
|
6810
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6822
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/CircuitCondition.html Online documentation}
|
6811
6823
|
*/
|
6812
6824
|
export interface CircuitConditionWrite {
|
6813
6825
|
/**
|
@@ -6829,7 +6841,7 @@ declare module "factorio:runtime" {
|
|
6829
6841
|
}
|
6830
6842
|
/**
|
6831
6843
|
* @see CircuitConditionDefinitionWrite
|
6832
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6844
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/CircuitConditionDefinition.html Online documentation}
|
6833
6845
|
*/
|
6834
6846
|
export interface CircuitConditionDefinition {
|
6835
6847
|
/**
|
@@ -6843,7 +6855,7 @@ declare module "factorio:runtime" {
|
|
6843
6855
|
}
|
6844
6856
|
/**
|
6845
6857
|
* Write form of {@link CircuitConditionDefinition}, where some properties allow additional values as input compared to the read form.
|
6846
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6858
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/CircuitConditionDefinition.html Online documentation}
|
6847
6859
|
*/
|
6848
6860
|
export interface CircuitConditionDefinitionWrite {
|
6849
6861
|
/**
|
@@ -7118,7 +7130,7 @@ declare module "factorio:runtime" {
|
|
7118
7130
|
* - {@link defines.command.stop}: {@link StopCommand}
|
7119
7131
|
* - {@link defines.command.flee}: {@link FleeCommand}
|
7120
7132
|
* - {@link defines.command.build_base}: {@link BuildBaseCommand}
|
7121
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7133
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/Command.html Online documentation}
|
7122
7134
|
*/
|
7123
7135
|
export type Command =
|
7124
7136
|
| AttackCommand
|
@@ -7132,7 +7144,7 @@ declare module "factorio:runtime" {
|
|
7132
7144
|
| BuildBaseCommand
|
7133
7145
|
/**
|
7134
7146
|
* Write form of {@link Command}, where some properties allow additional values as input compared to the read form.
|
7135
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7147
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/Command.html Online documentation}
|
7136
7148
|
*/
|
7137
7149
|
export type CommandWrite =
|
7138
7150
|
| AttackCommand
|
@@ -7217,7 +7229,7 @@ declare module "factorio:runtime" {
|
|
7217
7229
|
* These are both full stacks of iron plates (for iron-plate, a full stack is 100 plates)
|
7218
7230
|
* "iron-plate"
|
7219
7231
|
* {name="iron-plate", count=100}
|
7220
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7232
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/SimpleItemStack.html Online documentation}
|
7221
7233
|
*/
|
7222
7234
|
export type SimpleItemStack = string | ItemStackDefinition
|
7223
7235
|
/**
|
@@ -7227,7 +7239,7 @@ declare module "factorio:runtime" {
|
|
7227
7239
|
* - 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.
|
7228
7240
|
* - `string`: It will be the surface name. E.g. `"nauvis"`.
|
7229
7241
|
* - {@link LuaSurface}: A reference to {@link LuaSurface} may be passed directly.
|
7230
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7242
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/SurfaceIdentification.html Online documentation}
|
7231
7243
|
*/
|
7232
7244
|
export type SurfaceIdentification = SurfaceIndex | string | LuaSurface
|
7233
7245
|
/**
|
@@ -7237,7 +7249,7 @@ declare module "factorio:runtime" {
|
|
7237
7249
|
* - PlayerIndex: The player index.
|
7238
7250
|
* - `string`: The player name.
|
7239
7251
|
* - {@link LuaPlayer}: A reference to {@link LuaPlayer} may be passed directly.
|
7240
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7252
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/PlayerIdentification.html Online documentation}
|
7241
7253
|
*/
|
7242
7254
|
export type PlayerIdentification = PlayerIndex | string | LuaPlayer
|
7243
7255
|
/**
|
@@ -7246,7 +7258,7 @@ declare module "factorio:runtime" {
|
|
7246
7258
|
* ## Union members
|
7247
7259
|
* - {@link SimpleItemStack}
|
7248
7260
|
* - {@link LuaItemStack}
|
7249
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7261
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/ItemStackIdentification.html Online documentation}
|
7250
7262
|
*/
|
7251
7263
|
export type ItemStackIdentification = SimpleItemStack | LuaItemStack
|
7252
7264
|
/**
|
@@ -7256,7 +7268,7 @@ declare module "factorio:runtime" {
|
|
7256
7268
|
* - `"entity"`: Fires at an entity.
|
7257
7269
|
* - `"position"`: Fires directly at a position.
|
7258
7270
|
* - `"direction"`: Fires in a direction.
|
7259
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7271
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/TargetType.html Online documentation}
|
7260
7272
|
*/
|
7261
7273
|
export type TargetType = "entity" | "position" | "direction"
|
7262
7274
|
export interface BeamTarget {
|
@@ -7293,8 +7305,8 @@ declare module "factorio:runtime" {
|
|
7293
7305
|
*
|
7294
7306
|
* The validity of a SoundPath can be verified at runtime using {@link LuaHelpers#is_valid_sound_path LuaHelpers::is_valid_sound_path}.
|
7295
7307
|
*
|
7296
|
-
* {@link https://lua-api.factorio.com/2.0.
|
7297
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
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}
|
7298
7310
|
*/
|
7299
7311
|
export type SoundPath = (string & { _?: never }) | `${SoundCategory}/${string}`
|
7300
7312
|
export interface CircularParticleCreationSpecification {
|
@@ -7426,7 +7438,7 @@ declare module "factorio:runtime" {
|
|
7426
7438
|
* Other attributes may be specified depending on `type`:
|
7427
7439
|
* - `"projectile"`: {@link ProjectileAttackParameters}
|
7428
7440
|
* - `"stream"`: {@link StreamAttackParameters}
|
7429
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7441
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/AttackParameters.html Online documentation}
|
7430
7442
|
*/
|
7431
7443
|
export type AttackParameters = ProjectileAttackParameters | StreamAttackParameters | OtherAttackParameters
|
7432
7444
|
export interface GunShift4Way {
|
@@ -7492,7 +7504,7 @@ declare module "factorio:runtime" {
|
|
7492
7504
|
* - `"use-on-self"`: {@link UseOnSelfCapsuleAction}
|
7493
7505
|
* - `"artillery-remote"`: {@link ArtilleryRemoteCapsuleAction}
|
7494
7506
|
* - `"destroy-cliffs"`: {@link DestroyCliffsCapsuleAction}
|
7495
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7507
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/CapsuleAction.html Online documentation}
|
7496
7508
|
*/
|
7497
7509
|
export type CapsuleAction =
|
7498
7510
|
| ThrowCapsuleAction
|
@@ -7532,12 +7544,12 @@ declare module "factorio:runtime" {
|
|
7532
7544
|
}
|
7533
7545
|
/**
|
7534
7546
|
* Any basic type (string, number, boolean) or table.
|
7535
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7547
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/AnyBasic.html Online documentation}
|
7536
7548
|
*/
|
7537
7549
|
export type AnyBasic = string | boolean | number | table
|
7538
7550
|
/**
|
7539
7551
|
* Any basic type (string, number, boolean), table, or LuaObject.
|
7540
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7552
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/Any.html Online documentation}
|
7541
7553
|
*/
|
7542
7554
|
export type Any = string | boolean | number | table | LuaObject
|
7543
7555
|
export interface ProgrammableSpeakerParameters {
|
@@ -7547,7 +7559,7 @@ declare module "factorio:runtime" {
|
|
7547
7559
|
}
|
7548
7560
|
/**
|
7549
7561
|
* @see ProgrammableSpeakerAlertParametersWrite
|
7550
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7562
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/ProgrammableSpeakerAlertParameters.html Online documentation}
|
7551
7563
|
*/
|
7552
7564
|
export interface ProgrammableSpeakerAlertParameters {
|
7553
7565
|
readonly show_alert: boolean
|
@@ -7557,7 +7569,7 @@ declare module "factorio:runtime" {
|
|
7557
7569
|
}
|
7558
7570
|
/**
|
7559
7571
|
* Write form of {@link ProgrammableSpeakerAlertParameters}, where some properties allow additional values as input compared to the read form.
|
7560
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7572
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/ProgrammableSpeakerAlertParameters.html Online documentation}
|
7561
7573
|
*/
|
7562
7574
|
export interface ProgrammableSpeakerAlertParametersWrite {
|
7563
7575
|
readonly show_alert: boolean
|
@@ -7589,7 +7601,7 @@ declare module "factorio:runtime" {
|
|
7589
7601
|
* - `"top-right"`
|
7590
7602
|
* - `"right"`: The same as `"middle-right"`
|
7591
7603
|
* - `"bottom-right"`
|
7592
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7604
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/Alignment.html Online documentation}
|
7593
7605
|
*/
|
7594
7606
|
export type Alignment =
|
7595
7607
|
| "top-left"
|
@@ -7622,8 +7634,8 @@ declare module "factorio:runtime" {
|
|
7622
7634
|
_customEventIdBrand: any
|
7623
7635
|
}
|
7624
7636
|
/**
|
7625
|
-
* Information about the event that has been raised. The table can also contain other fields depending on the type of event. See {@linkplain https://lua-api.factorio.com/2.0.
|
7626
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
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}
|
7627
7639
|
*/
|
7628
7640
|
export interface EventData {
|
7629
7641
|
/**
|
@@ -7732,7 +7744,7 @@ declare module "factorio:runtime" {
|
|
7732
7744
|
* - `"button-7"`
|
7733
7745
|
* - `"button-8"`
|
7734
7746
|
* - `"button-9"`
|
7735
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7747
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/MouseButtonFlags.html Online documentation}
|
7736
7748
|
*/
|
7737
7749
|
export interface MouseButtonFlags {
|
7738
7750
|
readonly left?: true
|
@@ -7755,7 +7767,7 @@ declare module "factorio:runtime" {
|
|
7755
7767
|
* - `"not-friend"`: Forces which are not friends pass.
|
7756
7768
|
* - `"same"`: The same force pass.
|
7757
7769
|
* - `"not-same"`: The non-same forces pass.
|
7758
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7770
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/ForceCondition.html Online documentation}
|
7759
7771
|
*/
|
7760
7772
|
export type ForceCondition = "all" | "enemy" | "ally" | "friend" | "not-friend" | "same" | "not-same"
|
7761
7773
|
export interface ItemStackLocation {
|
@@ -7793,7 +7805,7 @@ declare module "factorio:runtime" {
|
|
7793
7805
|
* - `"tabbed-pane"`: A collection of `tab`s and their contents. Relevant event: {@link OnGuiSelectedTabChangedEvent on_gui_selected_tab_changed}
|
7794
7806
|
* - `"tab"`: A tab for use in a `tabbed-pane`.
|
7795
7807
|
* - `"switch"`: A switch with three possible states. Can have labels attached to either side. Relevant event: {@link OnGuiSwitchStateChangedEvent on_gui_switch_state_changed}
|
7796
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7808
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/GuiElementType.html Online documentation}
|
7797
7809
|
*/
|
7798
7810
|
export type GuiElementType =
|
7799
7811
|
| "button"
|
@@ -7833,7 +7845,7 @@ declare module "factorio:runtime" {
|
|
7833
7845
|
* - `"position"`
|
7834
7846
|
* - `"crafting_queue"`
|
7835
7847
|
* - `"item_stack"`: Will point to a given item stack in an inventory.
|
7836
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7848
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/GuiArrowType.html Online documentation}
|
7837
7849
|
*/
|
7838
7850
|
export type GuiArrowType =
|
7839
7851
|
| "nowhere"
|
@@ -7850,7 +7862,7 @@ declare module "factorio:runtime" {
|
|
7850
7862
|
* ## Union members
|
7851
7863
|
* - `"horizontal"`
|
7852
7864
|
* - `"vertical"`
|
7853
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7865
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/GuiDirection.html Online documentation}
|
7854
7866
|
*/
|
7855
7867
|
export type GuiDirection = "horizontal" | "vertical"
|
7856
7868
|
/**
|
@@ -7862,7 +7874,7 @@ declare module "factorio:runtime" {
|
|
7862
7874
|
* - `"always"`
|
7863
7875
|
* - `"auto"`
|
7864
7876
|
* - `"auto-and-reserve-space"`
|
7865
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7877
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/ScrollPolicy.html Online documentation}
|
7866
7878
|
*/
|
7867
7879
|
export type ScrollPolicy = "never" | "dont-show-but-allow-scrolling" | "always" | "auto" | "auto-and-reserve-space"
|
7868
7880
|
export interface RailLocation {
|
@@ -7879,71 +7891,71 @@ declare module "factorio:runtime" {
|
|
7879
7891
|
}
|
7880
7892
|
/**
|
7881
7893
|
* 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.
|
7882
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7894
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/float.html Online documentation}
|
7883
7895
|
*/
|
7884
7896
|
export type float = number
|
7885
7897
|
/**
|
7886
7898
|
* A double-precision floating-point number. This is the same data type as all Lua numbers use.
|
7887
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7899
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/double.html Online documentation}
|
7888
7900
|
*/
|
7889
7901
|
export type double = number
|
7890
7902
|
/**
|
7891
7903
|
* 32-bit signed integer. Possible values are `-2 147 483 648` to `2 147 483 647`.
|
7892
7904
|
*
|
7893
7905
|
* Since Lua 5.2 only uses doubles, any API that asks for `int` will floor the given double.
|
7894
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7906
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/int.html Online documentation}
|
7895
7907
|
*/
|
7896
7908
|
export type int = number
|
7897
7909
|
/**
|
7898
7910
|
* 8-bit signed integer. Possible values are `-128` to `127`.
|
7899
7911
|
*
|
7900
7912
|
* Since Lua 5.2 only uses doubles, any API that asks for `int8` will floor the given double.
|
7901
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7913
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/int8.html Online documentation}
|
7902
7914
|
*/
|
7903
7915
|
export type int8 = number
|
7904
7916
|
/**
|
7905
7917
|
* 32-bit unsigned integer. Possible values are `0` to `4 294 967 295`.
|
7906
7918
|
*
|
7907
7919
|
* Since Lua 5.2 only uses doubles, any API that asks for `uint` will floor the given double.
|
7908
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7920
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/uint.html Online documentation}
|
7909
7921
|
*/
|
7910
7922
|
export type uint = number
|
7911
7923
|
/**
|
7912
7924
|
* 8-bit unsigned integer. Possible values are `0` to `255`.
|
7913
7925
|
*
|
7914
7926
|
* Since Lua 5.2 only uses doubles, any API that asks for `uint8` will floor the given double.
|
7915
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7927
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/uint8.html Online documentation}
|
7916
7928
|
*/
|
7917
7929
|
export type uint8 = number
|
7918
7930
|
/**
|
7919
7931
|
* 16-bit unsigned integer. Possible values are `0` to `65 535`.
|
7920
7932
|
*
|
7921
7933
|
* Since Lua 5.2 only uses doubles, any API that asks for `uint16` will floor the given double.
|
7922
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7934
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/uint16.html Online documentation}
|
7923
7935
|
*/
|
7924
7936
|
export type uint16 = number
|
7925
7937
|
/**
|
7926
7938
|
* 64-bit unsigned integer. Possible values are `0` to `18 446 744 073 709 551 615`.
|
7927
7939
|
*
|
7928
7940
|
* Since Lua 5.2 only uses doubles, any API that asks for `uint64` will floor the given double.
|
7929
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7941
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/uint64.html Online documentation}
|
7930
7942
|
*/
|
7931
7943
|
export type uint64 = number
|
7932
7944
|
/**
|
7933
7945
|
* 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.
|
7934
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7946
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/nil.html Online documentation}
|
7935
7947
|
*/
|
7936
7948
|
export type nil = undefined
|
7937
7949
|
/**
|
7938
7950
|
* Tables are enclosed in curly brackets, like this `{}`.
|
7939
7951
|
*
|
7940
7952
|
* 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.
|
7941
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7953
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/table.html Online documentation}
|
7942
7954
|
*/
|
7943
7955
|
export type table = object
|
7944
7956
|
/**
|
7945
|
-
* Any LuaObject listed on the {@linkplain https://lua-api.factorio.com/2.0.
|
7946
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
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}
|
7947
7959
|
*/
|
7948
7960
|
export interface LuaObject {
|
7949
7961
|
readonly object_name: string
|
@@ -8002,7 +8014,7 @@ declare module "factorio:runtime" {
|
|
8002
8014
|
* - `"type"`: {@link TypeModSettingPrototypeFilter}
|
8003
8015
|
* - `"mod"`: {@link ModModSettingPrototypeFilter}
|
8004
8016
|
* - `"setting-type"`: {@link SettingTypeModSettingPrototypeFilter}
|
8005
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
8017
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/ModSettingPrototypeFilter.html Online documentation}
|
8006
8018
|
*/
|
8007
8019
|
export type ModSettingPrototypeFilter =
|
8008
8020
|
| TypeModSettingPrototypeFilter
|
@@ -8147,7 +8159,7 @@ declare module "factorio:runtime" {
|
|
8147
8159
|
* - `"vehicle-friction-modifier"`: {@link VehicleFrictionModifierTilePrototypeFilter}
|
8148
8160
|
* - `"decorative-removal-probability"`: {@link DecorativeRemovalProbabilityTilePrototypeFilter}
|
8149
8161
|
* - `"absorptions-per-second"`: {@link AbsorptionsPerSecondTilePrototypeFilter}
|
8150
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
8162
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/TilePrototypeFilter.html Online documentation}
|
8151
8163
|
*/
|
8152
8164
|
export type TilePrototypeFilter =
|
8153
8165
|
| CollisionMaskTilePrototypeFilter
|
@@ -8158,7 +8170,7 @@ declare module "factorio:runtime" {
|
|
8158
8170
|
| OtherTilePrototypeFilter
|
8159
8171
|
/**
|
8160
8172
|
* Write form of {@link TilePrototypeFilter}, where some properties allow additional values as input compared to the read form.
|
8161
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
8173
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/TilePrototypeFilter.html Online documentation}
|
8162
8174
|
*/
|
8163
8175
|
export type TilePrototypeFilterWrite =
|
8164
8176
|
| CollisionMaskTilePrototypeFilter
|
@@ -8209,7 +8221,7 @@ declare module "factorio:runtime" {
|
|
8209
8221
|
*
|
8210
8222
|
* Other attributes may be specified depending on `filter`:
|
8211
8223
|
* - `"collision-mask"`: {@link CollisionMaskDecorativePrototypeFilter}
|
8212
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
8224
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/DecorativePrototypeFilter.html Online documentation}
|
8213
8225
|
*/
|
8214
8226
|
export type DecorativePrototypeFilter = CollisionMaskDecorativePrototypeFilter | OtherDecorativePrototypeFilter
|
8215
8227
|
/**
|
@@ -8463,7 +8475,7 @@ declare module "factorio:runtime" {
|
|
8463
8475
|
* - `"emissions-multiplier"`: {@link EmissionsMultiplierRecipePrototypeFilter}
|
8464
8476
|
* - `"request-paste-multiplier"`: {@link RequestPasteMultiplierRecipePrototypeFilter}
|
8465
8477
|
* - `"overload-multiplier"`: {@link OverloadMultiplierRecipePrototypeFilter}
|
8466
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
8478
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/RecipePrototypeFilter.html Online documentation}
|
8467
8479
|
*/
|
8468
8480
|
export type RecipePrototypeFilter =
|
8469
8481
|
| HasIngredientItemRecipePrototypeFilter
|
@@ -8479,7 +8491,7 @@ declare module "factorio:runtime" {
|
|
8479
8491
|
| OtherRecipePrototypeFilter
|
8480
8492
|
/**
|
8481
8493
|
* Write form of {@link RecipePrototypeFilter}, where some properties allow additional values as input compared to the read form.
|
8482
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
8494
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/RecipePrototypeFilter.html Online documentation}
|
8483
8495
|
*/
|
8484
8496
|
export type RecipePrototypeFilterWrite =
|
8485
8497
|
| HasIngredientItemRecipePrototypeFilterWrite
|
@@ -8531,7 +8543,7 @@ declare module "factorio:runtime" {
|
|
8531
8543
|
*
|
8532
8544
|
* Other attributes may be specified depending on `filter`:
|
8533
8545
|
* - `"type"`: {@link TypeAchievementPrototypeFilter}
|
8534
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
8546
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/AchievementPrototypeFilter.html Online documentation}
|
8535
8547
|
*/
|
8536
8548
|
export type AchievementPrototypeFilter = TypeAchievementPrototypeFilter | OtherAchievementPrototypeFilter
|
8537
8549
|
/**
|
@@ -8654,7 +8666,7 @@ declare module "factorio:runtime" {
|
|
8654
8666
|
* - `"level"`: {@link LevelTechnologyPrototypeFilter}
|
8655
8667
|
* - `"max-level"`: {@link MaxLevelTechnologyPrototypeFilter}
|
8656
8668
|
* - `"time"`: {@link TimeTechnologyPrototypeFilter}
|
8657
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
8669
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/TechnologyPrototypeFilter.html Online documentation}
|
8658
8670
|
*/
|
8659
8671
|
export type TechnologyPrototypeFilter =
|
8660
8672
|
| ResearchUnitIngredientTechnologyPrototypeFilter
|
@@ -8665,7 +8677,7 @@ declare module "factorio:runtime" {
|
|
8665
8677
|
| OtherTechnologyPrototypeFilter
|
8666
8678
|
/**
|
8667
8679
|
* Write form of {@link TechnologyPrototypeFilter}, where some properties allow additional values as input compared to the read form.
|
8668
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
8680
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/TechnologyPrototypeFilter.html Online documentation}
|
8669
8681
|
*/
|
8670
8682
|
export type TechnologyPrototypeFilterWrite =
|
8671
8683
|
| ResearchUnitIngredientTechnologyPrototypeFilter
|
@@ -8982,7 +8994,7 @@ declare module "factorio:runtime" {
|
|
8982
8994
|
* - `"fuel-acceleration-multiplier"`: {@link FuelAccelerationMultiplierItemPrototypeFilter}
|
8983
8995
|
* - `"fuel-top-speed-multiplier"`: {@link FuelTopSpeedMultiplierItemPrototypeFilter}
|
8984
8996
|
* - `"fuel-emissions-multiplier"`: {@link FuelEmissionsMultiplierItemPrototypeFilter}
|
8985
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
8997
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/ItemPrototypeFilter.html Online documentation}
|
8986
8998
|
*/
|
8987
8999
|
export type ItemPrototypeFilter =
|
8988
9000
|
| PlaceResultItemPrototypeFilter
|
@@ -9002,7 +9014,7 @@ declare module "factorio:runtime" {
|
|
9002
9014
|
| OtherItemPrototypeFilter
|
9003
9015
|
/**
|
9004
9016
|
* Write form of {@link ItemPrototypeFilter}, where some properties allow additional values as input compared to the read form.
|
9005
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
9017
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/ItemPrototypeFilter.html Online documentation}
|
9006
9018
|
*/
|
9007
9019
|
export type ItemPrototypeFilterWrite =
|
9008
9020
|
| PlaceResultItemPrototypeFilterWrite
|
@@ -9058,7 +9070,7 @@ declare module "factorio:runtime" {
|
|
9058
9070
|
*
|
9059
9071
|
* Other attributes may be specified depending on `filter`:
|
9060
9072
|
* - `"type"`: {@link TypeEquipmentPrototypeFilter}
|
9061
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
9073
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/EquipmentPrototypeFilter.html Online documentation}
|
9062
9074
|
*/
|
9063
9075
|
export type EquipmentPrototypeFilter = TypeEquipmentPrototypeFilter | OtherEquipmentPrototypeFilter
|
9064
9076
|
/**
|
@@ -9289,7 +9301,7 @@ declare module "factorio:runtime" {
|
|
9289
9301
|
* - `"selection-priority"`: {@link SelectionPriorityEntityPrototypeFilter}
|
9290
9302
|
* - `"emissions-per-second"`: {@link EmissionsPerSecondEntityPrototypeFilter}
|
9291
9303
|
* - `"crafting-category"`: {@link CraftingCategoryEntityPrototypeFilter}
|
9292
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
9304
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/EntityPrototypeFilter.html Online documentation}
|
9293
9305
|
*/
|
9294
9306
|
export type EntityPrototypeFilter =
|
9295
9307
|
| NameEntityPrototypeFilter
|
@@ -9303,7 +9315,7 @@ declare module "factorio:runtime" {
|
|
9303
9315
|
| OtherEntityPrototypeFilter
|
9304
9316
|
/**
|
9305
9317
|
* Write form of {@link EntityPrototypeFilter}, where some properties allow additional values as input compared to the read form.
|
9306
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
9318
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/EntityPrototypeFilter.html Online documentation}
|
9307
9319
|
*/
|
9308
9320
|
export type EntityPrototypeFilterWrite =
|
9309
9321
|
| NameEntityPrototypeFilter
|
@@ -9373,7 +9385,7 @@ declare module "factorio:runtime" {
|
|
9373
9385
|
* Other attributes may be specified depending on `filter`:
|
9374
9386
|
* - `"type"`: {@link TypeSpaceLocationPrototypeFilter}
|
9375
9387
|
* - `"solar-power-in-space"`: {@link SolarPowerInSpaceSpaceLocationPrototypeFilter}
|
9376
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
9388
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/SpaceLocationPrototypeFilter.html Online documentation}
|
9377
9389
|
*/
|
9378
9390
|
export type SpaceLocationPrototypeFilter =
|
9379
9391
|
| TypeSpaceLocationPrototypeFilter
|
@@ -9381,7 +9393,7 @@ declare module "factorio:runtime" {
|
|
9381
9393
|
| OtherSpaceLocationPrototypeFilter
|
9382
9394
|
/**
|
9383
9395
|
* Write form of {@link SpaceLocationPrototypeFilter}, where some properties allow additional values as input compared to the read form.
|
9384
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
9396
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/SpaceLocationPrototypeFilter.html Online documentation}
|
9385
9397
|
*/
|
9386
9398
|
export type SpaceLocationPrototypeFilterWrite =
|
9387
9399
|
| TypeSpaceLocationPrototypeFilter
|
@@ -9569,7 +9581,7 @@ declare module "factorio:runtime" {
|
|
9569
9581
|
* - `"fuel-value"`: {@link FuelValueFluidPrototypeFilter}
|
9570
9582
|
* - `"emissions-multiplier"`: {@link EmissionsMultiplierFluidPrototypeFilter}
|
9571
9583
|
* - `"gas-temperature"`: {@link GasTemperatureFluidPrototypeFilter}
|
9572
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
9584
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/FluidPrototypeFilter.html Online documentation}
|
9573
9585
|
*/
|
9574
9586
|
export type FluidPrototypeFilter =
|
9575
9587
|
| NameFluidPrototypeFilter
|
@@ -9583,7 +9595,7 @@ declare module "factorio:runtime" {
|
|
9583
9595
|
| OtherFluidPrototypeFilter
|
9584
9596
|
/**
|
9585
9597
|
* Write form of {@link FluidPrototypeFilter}, where some properties allow additional values as input compared to the read form.
|
9586
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
9598
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/FluidPrototypeFilter.html Online documentation}
|
9587
9599
|
*/
|
9588
9600
|
export type FluidPrototypeFilterWrite =
|
9589
9601
|
| NameFluidPrototypeFilter
|
@@ -9692,7 +9704,7 @@ declare module "factorio:runtime" {
|
|
9692
9704
|
* - `"name"`: {@link NamePrePlatformMinedEntityEventFilter}
|
9693
9705
|
* - `"ghost_type"`: {@link GhostTypePrePlatformMinedEntityEventFilter}
|
9694
9706
|
* - `"ghost_name"`: {@link GhostNamePrePlatformMinedEntityEventFilter}
|
9695
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
9707
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaPrePlatformMinedEntityEventFilter.html Online documentation}
|
9696
9708
|
*/
|
9697
9709
|
export type LuaPrePlatformMinedEntityEventFilter =
|
9698
9710
|
| TypePrePlatformMinedEntityEventFilter
|
@@ -9797,7 +9809,7 @@ declare module "factorio:runtime" {
|
|
9797
9809
|
* - `"name"`: {@link NameRobotMinedEntityEventFilter}
|
9798
9810
|
* - `"ghost_type"`: {@link GhostTypeRobotMinedEntityEventFilter}
|
9799
9811
|
* - `"ghost_name"`: {@link GhostNameRobotMinedEntityEventFilter}
|
9800
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
9812
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaRobotMinedEntityEventFilter.html Online documentation}
|
9801
9813
|
*/
|
9802
9814
|
export type LuaRobotMinedEntityEventFilter =
|
9803
9815
|
| TypeRobotMinedEntityEventFilter
|
@@ -9902,7 +9914,7 @@ declare module "factorio:runtime" {
|
|
9902
9914
|
* - `"name"`: {@link NameEntityMarkedForUpgradeEventFilter}
|
9903
9915
|
* - `"ghost_type"`: {@link GhostTypeEntityMarkedForUpgradeEventFilter}
|
9904
9916
|
* - `"ghost_name"`: {@link GhostNameEntityMarkedForUpgradeEventFilter}
|
9905
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
9917
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaEntityMarkedForUpgradeEventFilter.html Online documentation}
|
9906
9918
|
*/
|
9907
9919
|
export type LuaEntityMarkedForUpgradeEventFilter =
|
9908
9920
|
| TypeEntityMarkedForUpgradeEventFilter
|
@@ -10007,7 +10019,7 @@ declare module "factorio:runtime" {
|
|
10007
10019
|
* - `"name"`: {@link NamePreGhostUpgradedEventFilter}
|
10008
10020
|
* - `"ghost_type"`: {@link GhostTypePreGhostUpgradedEventFilter}
|
10009
10021
|
* - `"ghost_name"`: {@link GhostNamePreGhostUpgradedEventFilter}
|
10010
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
10022
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaPreGhostUpgradedEventFilter.html Online documentation}
|
10011
10023
|
*/
|
10012
10024
|
export type LuaPreGhostUpgradedEventFilter =
|
10013
10025
|
| TypePreGhostUpgradedEventFilter
|
@@ -10112,7 +10124,7 @@ declare module "factorio:runtime" {
|
|
10112
10124
|
* - `"name"`: {@link NamePlatformMinedEntityEventFilter}
|
10113
10125
|
* - `"ghost_type"`: {@link GhostTypePlatformMinedEntityEventFilter}
|
10114
10126
|
* - `"ghost_name"`: {@link GhostNamePlatformMinedEntityEventFilter}
|
10115
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
10127
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaPlatformMinedEntityEventFilter.html Online documentation}
|
10116
10128
|
*/
|
10117
10129
|
export type LuaPlatformMinedEntityEventFilter =
|
10118
10130
|
| TypePlatformMinedEntityEventFilter
|
@@ -10217,7 +10229,7 @@ declare module "factorio:runtime" {
|
|
10217
10229
|
* - `"name"`: {@link NameScriptRaisedDestroyEventFilter}
|
10218
10230
|
* - `"ghost_type"`: {@link GhostTypeScriptRaisedDestroyEventFilter}
|
10219
10231
|
* - `"ghost_name"`: {@link GhostNameScriptRaisedDestroyEventFilter}
|
10220
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
10232
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaScriptRaisedDestroyEventFilter.html Online documentation}
|
10221
10233
|
*/
|
10222
10234
|
export type LuaScriptRaisedDestroyEventFilter =
|
10223
10235
|
| TypeScriptRaisedDestroyEventFilter
|
@@ -10334,7 +10346,7 @@ declare module "factorio:runtime" {
|
|
10334
10346
|
* - `"ghost_type"`: {@link GhostTypePlayerBuiltEntityEventFilter}
|
10335
10347
|
* - `"ghost_name"`: {@link GhostNamePlayerBuiltEntityEventFilter}
|
10336
10348
|
* - `"force"`: {@link ForcePlayerBuiltEntityEventFilter}
|
10337
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
10349
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaPlayerBuiltEntityEventFilter.html Online documentation}
|
10338
10350
|
*/
|
10339
10351
|
export type LuaPlayerBuiltEntityEventFilter =
|
10340
10352
|
| TypePlayerBuiltEntityEventFilter
|
@@ -10452,7 +10464,7 @@ declare module "factorio:runtime" {
|
|
10452
10464
|
* - `"ghost_type"`: {@link GhostTypePlatformBuiltEntityEventFilter}
|
10453
10465
|
* - `"ghost_name"`: {@link GhostNamePlatformBuiltEntityEventFilter}
|
10454
10466
|
* - `"force"`: {@link ForcePlatformBuiltEntityEventFilter}
|
10455
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
10467
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaPlatformBuiltEntityEventFilter.html Online documentation}
|
10456
10468
|
*/
|
10457
10469
|
export type LuaPlatformBuiltEntityEventFilter =
|
10458
10470
|
| TypePlatformBuiltEntityEventFilter
|
@@ -10558,7 +10570,7 @@ declare module "factorio:runtime" {
|
|
10558
10570
|
* - `"name"`: {@link NamePreGhostDeconstructedEventFilter}
|
10559
10571
|
* - `"ghost_type"`: {@link GhostTypePreGhostDeconstructedEventFilter}
|
10560
10572
|
* - `"ghost_name"`: {@link GhostNamePreGhostDeconstructedEventFilter}
|
10561
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
10573
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaPreGhostDeconstructedEventFilter.html Online documentation}
|
10562
10574
|
*/
|
10563
10575
|
export type LuaPreGhostDeconstructedEventFilter =
|
10564
10576
|
| TypePreGhostDeconstructedEventFilter
|
@@ -10663,7 +10675,7 @@ declare module "factorio:runtime" {
|
|
10663
10675
|
* - `"name"`: {@link NameEntityClonedEventFilter}
|
10664
10676
|
* - `"ghost_type"`: {@link GhostTypeEntityClonedEventFilter}
|
10665
10677
|
* - `"ghost_name"`: {@link GhostNameEntityClonedEventFilter}
|
10666
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
10678
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaEntityClonedEventFilter.html Online documentation}
|
10667
10679
|
*/
|
10668
10680
|
export type LuaEntityClonedEventFilter =
|
10669
10681
|
| TypeEntityClonedEventFilter
|
@@ -10768,7 +10780,7 @@ declare module "factorio:runtime" {
|
|
10768
10780
|
* - `"name"`: {@link NameScriptRaisedTeleportedEventFilter}
|
10769
10781
|
* - `"ghost_type"`: {@link GhostTypeScriptRaisedTeleportedEventFilter}
|
10770
10782
|
* - `"ghost_name"`: {@link GhostNameScriptRaisedTeleportedEventFilter}
|
10771
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
10783
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaScriptRaisedTeleportedEventFilter.html Online documentation}
|
10772
10784
|
*/
|
10773
10785
|
export type LuaScriptRaisedTeleportedEventFilter =
|
10774
10786
|
| TypeScriptRaisedTeleportedEventFilter
|
@@ -10875,7 +10887,7 @@ declare module "factorio:runtime" {
|
|
10875
10887
|
* - `"name"`: {@link NameEntityDeconstructionCancelledEventFilter}
|
10876
10888
|
* - `"ghost_type"`: {@link GhostTypeEntityDeconstructionCancelledEventFilter}
|
10877
10889
|
* - `"ghost_name"`: {@link GhostNameEntityDeconstructionCancelledEventFilter}
|
10878
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
10890
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaEntityDeconstructionCancelledEventFilter.html Online documentation}
|
10879
10891
|
*/
|
10880
10892
|
export type LuaEntityDeconstructionCancelledEventFilter =
|
10881
10893
|
| TypeEntityDeconstructionCancelledEventFilter
|
@@ -10992,7 +11004,7 @@ declare module "factorio:runtime" {
|
|
10992
11004
|
* - `"ghost_type"`: {@link GhostTypeRobotBuiltEntityEventFilter}
|
10993
11005
|
* - `"ghost_name"`: {@link GhostNameRobotBuiltEntityEventFilter}
|
10994
11006
|
* - `"force"`: {@link ForceRobotBuiltEntityEventFilter}
|
10995
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
11007
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaRobotBuiltEntityEventFilter.html Online documentation}
|
10996
11008
|
*/
|
10997
11009
|
export type LuaRobotBuiltEntityEventFilter =
|
10998
11010
|
| TypeRobotBuiltEntityEventFilter
|
@@ -11098,7 +11110,7 @@ declare module "factorio:runtime" {
|
|
11098
11110
|
* - `"name"`: {@link NameScriptRaisedBuiltEventFilter}
|
11099
11111
|
* - `"ghost_type"`: {@link GhostTypeScriptRaisedBuiltEventFilter}
|
11100
11112
|
* - `"ghost_name"`: {@link GhostNameScriptRaisedBuiltEventFilter}
|
11101
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
11113
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaScriptRaisedBuiltEventFilter.html Online documentation}
|
11102
11114
|
*/
|
11103
11115
|
export type LuaScriptRaisedBuiltEventFilter =
|
11104
11116
|
| TypeScriptRaisedBuiltEventFilter
|
@@ -11203,7 +11215,7 @@ declare module "factorio:runtime" {
|
|
11203
11215
|
* - `"name"`: {@link NamePrePlayerMinedEntityEventFilter}
|
11204
11216
|
* - `"ghost_type"`: {@link GhostTypePrePlayerMinedEntityEventFilter}
|
11205
11217
|
* - `"ghost_name"`: {@link GhostNamePrePlayerMinedEntityEventFilter}
|
11206
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
11218
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaPrePlayerMinedEntityEventFilter.html Online documentation}
|
11207
11219
|
*/
|
11208
11220
|
export type LuaPrePlayerMinedEntityEventFilter =
|
11209
11221
|
| TypePrePlayerMinedEntityEventFilter
|
@@ -11308,7 +11320,7 @@ declare module "factorio:runtime" {
|
|
11308
11320
|
* - `"name"`: {@link NamePlayerRepairedEntityEventFilter}
|
11309
11321
|
* - `"ghost_type"`: {@link GhostTypePlayerRepairedEntityEventFilter}
|
11310
11322
|
* - `"ghost_name"`: {@link GhostNamePlayerRepairedEntityEventFilter}
|
11311
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
11323
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaPlayerRepairedEntityEventFilter.html Online documentation}
|
11312
11324
|
*/
|
11313
11325
|
export type LuaPlayerRepairedEntityEventFilter =
|
11314
11326
|
| TypePlayerRepairedEntityEventFilter
|
@@ -11413,7 +11425,7 @@ declare module "factorio:runtime" {
|
|
11413
11425
|
* - `"name"`: {@link NameUpgradeCancelledEventFilter}
|
11414
11426
|
* - `"ghost_type"`: {@link GhostTypeUpgradeCancelledEventFilter}
|
11415
11427
|
* - `"ghost_name"`: {@link GhostNameUpgradeCancelledEventFilter}
|
11416
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
11428
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaUpgradeCancelledEventFilter.html Online documentation}
|
11417
11429
|
*/
|
11418
11430
|
export type LuaUpgradeCancelledEventFilter =
|
11419
11431
|
| TypeUpgradeCancelledEventFilter
|
@@ -11518,7 +11530,7 @@ declare module "factorio:runtime" {
|
|
11518
11530
|
* - `"name"`: {@link NameSectorScannedEventFilter}
|
11519
11531
|
* - `"ghost_type"`: {@link GhostTypeSectorScannedEventFilter}
|
11520
11532
|
* - `"ghost_name"`: {@link GhostNameSectorScannedEventFilter}
|
11521
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
11533
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaSectorScannedEventFilter.html Online documentation}
|
11522
11534
|
*/
|
11523
11535
|
export type LuaSectorScannedEventFilter =
|
11524
11536
|
| TypeSectorScannedEventFilter
|
@@ -11564,7 +11576,7 @@ declare module "factorio:runtime" {
|
|
11564
11576
|
*
|
11565
11577
|
* Other attributes may be specified depending on `filter`:
|
11566
11578
|
* - `"type"`: {@link TypePostEntityDiedEventFilter}
|
11567
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
11579
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaPostEntityDiedEventFilter.html Online documentation}
|
11568
11580
|
*/
|
11569
11581
|
export type LuaPostEntityDiedEventFilter = TypePostEntityDiedEventFilter | OtherPostEntityDiedEventFilter
|
11570
11582
|
/**
|
@@ -11666,7 +11678,7 @@ declare module "factorio:runtime" {
|
|
11666
11678
|
* - `"name"`: {@link NameEntityMarkedForDeconstructionEventFilter}
|
11667
11679
|
* - `"ghost_type"`: {@link GhostTypeEntityMarkedForDeconstructionEventFilter}
|
11668
11680
|
* - `"ghost_name"`: {@link GhostNameEntityMarkedForDeconstructionEventFilter}
|
11669
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
11681
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaEntityMarkedForDeconstructionEventFilter.html Online documentation}
|
11670
11682
|
*/
|
11671
11683
|
export type LuaEntityMarkedForDeconstructionEventFilter =
|
11672
11684
|
| TypeEntityMarkedForDeconstructionEventFilter
|
@@ -11771,7 +11783,7 @@ declare module "factorio:runtime" {
|
|
11771
11783
|
* - `"name"`: {@link NamePlayerMinedEntityEventFilter}
|
11772
11784
|
* - `"ghost_type"`: {@link GhostTypePlayerMinedEntityEventFilter}
|
11773
11785
|
* - `"ghost_name"`: {@link GhostNamePlayerMinedEntityEventFilter}
|
11774
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
11786
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaPlayerMinedEntityEventFilter.html Online documentation}
|
11775
11787
|
*/
|
11776
11788
|
export type LuaPlayerMinedEntityEventFilter =
|
11777
11789
|
| TypePlayerMinedEntityEventFilter
|
@@ -11951,7 +11963,7 @@ declare module "factorio:runtime" {
|
|
11951
11963
|
* - `"final-damage-amount"`: {@link FinalDamageAmountEntityDamagedEventFilter}
|
11952
11964
|
* - `"damage-type"`: {@link DamageTypeEntityDamagedEventFilter}
|
11953
11965
|
* - `"final-health"`: {@link FinalHealthEntityDamagedEventFilter}
|
11954
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
11966
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaEntityDamagedEventFilter.html Online documentation}
|
11955
11967
|
*/
|
11956
11968
|
export type LuaEntityDamagedEventFilter =
|
11957
11969
|
| TypeEntityDamagedEventFilter
|
@@ -11965,7 +11977,7 @@ declare module "factorio:runtime" {
|
|
11965
11977
|
| OtherEntityDamagedEventFilter
|
11966
11978
|
/**
|
11967
11979
|
* Write form of {@link LuaEntityDamagedEventFilter}, where some properties allow additional values as input compared to the read form.
|
11968
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
11980
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaEntityDamagedEventFilter.html Online documentation}
|
11969
11981
|
*/
|
11970
11982
|
export type LuaEntityDamagedEventFilterWrite =
|
11971
11983
|
| TypeEntityDamagedEventFilter
|
@@ -12074,7 +12086,7 @@ declare module "factorio:runtime" {
|
|
12074
12086
|
* - `"name"`: {@link NameScriptRaisedReviveEventFilter}
|
12075
12087
|
* - `"ghost_type"`: {@link GhostTypeScriptRaisedReviveEventFilter}
|
12076
12088
|
* - `"ghost_name"`: {@link GhostNameScriptRaisedReviveEventFilter}
|
12077
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
12089
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaScriptRaisedReviveEventFilter.html Online documentation}
|
12078
12090
|
*/
|
12079
12091
|
export type LuaScriptRaisedReviveEventFilter =
|
12080
12092
|
| TypeScriptRaisedReviveEventFilter
|
@@ -12179,7 +12191,7 @@ declare module "factorio:runtime" {
|
|
12179
12191
|
* - `"name"`: {@link NameEntityDiedEventFilter}
|
12180
12192
|
* - `"ghost_type"`: {@link GhostTypeEntityDiedEventFilter}
|
12181
12193
|
* - `"ghost_name"`: {@link GhostNameEntityDiedEventFilter}
|
12182
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
12194
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaEntityDiedEventFilter.html Online documentation}
|
12183
12195
|
*/
|
12184
12196
|
export type LuaEntityDiedEventFilter =
|
12185
12197
|
| TypeEntityDiedEventFilter
|
@@ -12284,7 +12296,7 @@ declare module "factorio:runtime" {
|
|
12284
12296
|
* - `"name"`: {@link NamePreRobotMinedEntityEventFilter}
|
12285
12297
|
* - `"ghost_type"`: {@link GhostTypePreRobotMinedEntityEventFilter}
|
12286
12298
|
* - `"ghost_name"`: {@link GhostNamePreRobotMinedEntityEventFilter}
|
12287
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
12299
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/LuaPreRobotMinedEntityEventFilter.html Online documentation}
|
12288
12300
|
*/
|
12289
12301
|
export type LuaPreRobotMinedEntityEventFilter =
|
12290
12302
|
| TypePreRobotMinedEntityEventFilter
|