typed-factorio 3.13.1 → 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 +2151 -2092
- package/prototype/generated/types.d.ts +2158 -2144
- package/runtime/generated/classes.d.ts +3956 -3599
- package/runtime/generated/concepts.d.ts +378 -295
- package/runtime/generated/defines.d.ts +253 -177
- package/runtime/generated/events.d.ts +284 -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[]
|
@@ -607,7 +611,8 @@ declare module "factorio:runtime" {
|
|
607
611
|
* - {@link LuaCommandable}: Target type {@link defines.target_type.commandable commandable}; `useful_id` {@link LuaCommandable#unique_id LuaCommandable::unique_id}
|
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}
|
615
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/RegistrationTarget.html Online documentation}
|
611
616
|
*/
|
612
617
|
export type RegistrationTarget =
|
613
618
|
| LuaEntity
|
@@ -628,6 +633,7 @@ declare module "factorio:runtime" {
|
|
628
633
|
| LuaCommandable
|
629
634
|
| LuaCustomChartTag
|
630
635
|
| LuaGuiElement
|
636
|
+
| LuaCargoHatch
|
631
637
|
/**
|
632
638
|
* Common attributes to all variants of {@link UndoRedoAction}.
|
633
639
|
*/
|
@@ -808,7 +814,7 @@ declare module "factorio:runtime" {
|
|
808
814
|
* - `"wire-removed"`: {@link WireRemovedUndoRedoAction}
|
809
815
|
* - `"rotated-entity"`: {@link RotatedEntityUndoRedoAction}
|
810
816
|
* - `"copy-entity-settings"`: {@link CopyEntitySettingsUndoRedoAction}
|
811
|
-
* @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}
|
812
818
|
*/
|
813
819
|
export type UndoRedoAction =
|
814
820
|
| BuiltEntityUndoRedoAction
|
@@ -840,7 +846,7 @@ declare module "factorio:runtime" {
|
|
840
846
|
* - `"weapon"`
|
841
847
|
* - `"explosion"`
|
842
848
|
* - `"enemy"`
|
843
|
-
* @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}
|
844
850
|
*/
|
845
851
|
export type SoundType =
|
846
852
|
| "game-effect"
|
@@ -923,7 +929,7 @@ declare module "factorio:runtime" {
|
|
923
929
|
* - `"controllable-remove"`
|
924
930
|
* - `"entity-ghost"`: Selects entities that are `entity-ghost`s.
|
925
931
|
* - `"tile-ghost"`: Selects entities that are `tile-ghost`s.
|
926
|
-
* @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}
|
927
933
|
*/
|
928
934
|
export interface SelectionModeFlags {
|
929
935
|
/**
|
@@ -1042,7 +1048,7 @@ declare module "factorio:runtime" {
|
|
1042
1048
|
* A set of flags. Active flags are in the dictionary as `true`, while inactive flags aren't present at all.
|
1043
1049
|
*
|
1044
1050
|
* By default, none of these flags are set.
|
1045
|
-
* @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}
|
1046
1052
|
*/
|
1047
1053
|
export type ItemPrototypeFlags = {
|
1048
1054
|
readonly [T in ItemPrototypeFlag]?: true
|
@@ -1063,7 +1069,7 @@ declare module "factorio:runtime" {
|
|
1063
1069
|
* - `"spawnable"`: Allows the item to be spawned by a quickbar shortcut or custom input.
|
1064
1070
|
* - `"spoil-result"`
|
1065
1071
|
* - `"ignore-spoil-time-modifier"`: Controls whether the spoil time ignores the spoil time modifier in the {@link DifficultySettings}.
|
1066
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1072
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/ItemPrototypeFlag.html Online documentation}
|
1067
1073
|
*/
|
1068
1074
|
export type ItemPrototypeFlag =
|
1069
1075
|
| "draw-logistic-overlay"
|
@@ -1083,7 +1089,7 @@ declare module "factorio:runtime" {
|
|
1083
1089
|
* - `"none"`
|
1084
1090
|
* - `"whitelist"`
|
1085
1091
|
* - `"blacklist"`
|
1086
|
-
* @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}
|
1087
1093
|
*/
|
1088
1094
|
export type PrototypeFilterMode = "none" | "whitelist" | "blacklist"
|
1089
1095
|
export interface PipeConnectionDefinition {
|
@@ -1108,7 +1114,7 @@ declare module "factorio:runtime" {
|
|
1108
1114
|
* The name of a {@link LuaCollisionLayerPrototype}.
|
1109
1115
|
* @example
|
1110
1116
|
* "is_lower_object"
|
1111
|
-
* @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}
|
1112
1118
|
*/
|
1113
1119
|
export type CollisionLayerID = string
|
1114
1120
|
export interface ItemIDFilter {
|
@@ -1158,7 +1164,7 @@ declare module "factorio:runtime" {
|
|
1158
1164
|
* - {@link SpaceLocationPrototypeFilter}
|
1159
1165
|
* - {@link FluidPrototypeFilter}
|
1160
1166
|
* @see PrototypeFilterWrite
|
1161
|
-
* @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}
|
1162
1168
|
*/
|
1163
1169
|
export type PrototypeFilter =
|
1164
1170
|
| ModSettingPrototypeFilter[]
|
@@ -1175,7 +1181,7 @@ declare module "factorio:runtime" {
|
|
1175
1181
|
| FluidPrototypeFilter[]
|
1176
1182
|
/**
|
1177
1183
|
* Write form of {@link PrototypeFilter}, where some properties allow additional values as input compared to the read form.
|
1178
|
-
* @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}
|
1179
1185
|
*/
|
1180
1186
|
export type PrototypeFilterWrite =
|
1181
1187
|
| readonly ModSettingPrototypeFilter[]
|
@@ -1192,7 +1198,7 @@ declare module "factorio:runtime" {
|
|
1192
1198
|
| readonly FluidPrototypeFilterWrite[]
|
1193
1199
|
/**
|
1194
1200
|
* @see DisplayPanelMessageDefinitionWrite
|
1195
|
-
* @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}
|
1196
1202
|
*/
|
1197
1203
|
export interface DisplayPanelMessageDefinition {
|
1198
1204
|
/**
|
@@ -1210,7 +1216,7 @@ declare module "factorio:runtime" {
|
|
1210
1216
|
}
|
1211
1217
|
/**
|
1212
1218
|
* Write form of {@link DisplayPanelMessageDefinition}, where some properties allow additional values as input compared to the read form.
|
1213
|
-
* @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}
|
1214
1220
|
*/
|
1215
1221
|
export interface DisplayPanelMessageDefinitionWrite {
|
1216
1222
|
/**
|
@@ -1236,7 +1242,7 @@ declare module "factorio:runtime" {
|
|
1236
1242
|
* - `"space-location"`
|
1237
1243
|
* - `"asteroid-chunk"`
|
1238
1244
|
* - `"quality"`
|
1239
|
-
* @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}
|
1240
1246
|
*/
|
1241
1247
|
export type SignalIDType =
|
1242
1248
|
| "item"
|
@@ -1249,7 +1255,7 @@ declare module "factorio:runtime" {
|
|
1249
1255
|
| "quality"
|
1250
1256
|
/**
|
1251
1257
|
* @see SignalIDWrite
|
1252
|
-
* @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}
|
1253
1259
|
*/
|
1254
1260
|
export interface SignalID {
|
1255
1261
|
/**
|
@@ -1267,7 +1273,7 @@ declare module "factorio:runtime" {
|
|
1267
1273
|
}
|
1268
1274
|
/**
|
1269
1275
|
* Write form of {@link SignalID}, where some properties allow additional values as input compared to the read form.
|
1270
|
-
* @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}
|
1271
1277
|
*/
|
1272
1278
|
export interface SignalIDWrite {
|
1273
1279
|
/**
|
@@ -1473,7 +1479,7 @@ declare module "factorio:runtime" {
|
|
1473
1479
|
* - `"play-next-track"`
|
1474
1480
|
* - `"play-previous-track"`
|
1475
1481
|
* - `"pause-resume-music"`
|
1476
|
-
* @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}
|
1477
1483
|
*/
|
1478
1484
|
export type LinkedGameControl =
|
1479
1485
|
| "move-up"
|
@@ -1724,7 +1730,7 @@ declare module "factorio:runtime" {
|
|
1724
1730
|
* - `"create-ghost-on-entity-death"`
|
1725
1731
|
* - `"belt-stack-size-bonus"`
|
1726
1732
|
* - `"vehicle-logistics"`
|
1727
|
-
* @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}
|
1728
1734
|
*/
|
1729
1735
|
export type ModifierType =
|
1730
1736
|
| "inserter-stack-size-bonus"
|
@@ -1843,7 +1849,7 @@ declare module "factorio:runtime" {
|
|
1843
1849
|
* - `"capture-spawner"`: {@link CaptureSpawnerResearchTrigger}
|
1844
1850
|
* - `"build-entity"`: {@link BuildEntityResearchTrigger}
|
1845
1851
|
* - `"send-item-to-orbit"`: {@link SendItemToOrbitResearchTrigger}
|
1846
|
-
* @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}
|
1847
1853
|
*/
|
1848
1854
|
export type ResearchTrigger =
|
1849
1855
|
| CraftItemResearchTrigger
|
@@ -1857,7 +1863,7 @@ declare module "factorio:runtime" {
|
|
1857
1863
|
* A set of flags. Active flags are in the dictionary as `true`, while inactive flags aren't present at all.
|
1858
1864
|
*
|
1859
1865
|
* By default, none of these flags are set.
|
1860
|
-
* @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}
|
1861
1867
|
*/
|
1862
1868
|
export type EntityPrototypeFlags = {
|
1863
1869
|
readonly [T in EntityPrototypeFlag]?: true
|
@@ -1892,7 +1898,7 @@ declare module "factorio:runtime" {
|
|
1892
1898
|
* - `"building-direction-16-way"`
|
1893
1899
|
* - `"snap-to-rail-support-spot"`
|
1894
1900
|
* - `"not-in-made-in"`: Prevents the entity from being shown in the "made in" list in recipe tooltips.
|
1895
|
-
* @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}
|
1896
1902
|
*/
|
1897
1903
|
export type EntityPrototypeFlag =
|
1898
1904
|
| "not-rotatable"
|
@@ -1962,7 +1968,7 @@ declare module "factorio:runtime" {
|
|
1962
1968
|
* - `"local"`: The sound can be heard within the audible range around the speaker.
|
1963
1969
|
* - `"surface"`: The sound can be heard anywhere on the speaker's surface.
|
1964
1970
|
* - `"global"`: The sound can be heard everywhere.
|
1965
|
-
* @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}
|
1966
1972
|
*/
|
1967
1973
|
export type ProgrammableSpeakerPlaybackMode = "local" | "surface" | "global"
|
1968
1974
|
/**
|
@@ -1987,7 +1993,7 @@ declare module "factorio:runtime" {
|
|
1987
1993
|
* - `"none-to-south"`
|
1988
1994
|
* - `"south-to-none"`
|
1989
1995
|
* - `"none-to-north"`
|
1990
|
-
* @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}
|
1991
1997
|
*/
|
1992
1998
|
export type CliffOrientation =
|
1993
1999
|
| "west-to-east"
|
@@ -2013,7 +2019,7 @@ declare module "factorio:runtime" {
|
|
2013
2019
|
/**
|
2014
2020
|
* Defines an item type that a blueprint entity will request.
|
2015
2021
|
* @see BlueprintInsertPlanWrite
|
2016
|
-
* @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}
|
2017
2023
|
*/
|
2018
2024
|
export interface BlueprintInsertPlan {
|
2019
2025
|
/**
|
@@ -2027,7 +2033,7 @@ declare module "factorio:runtime" {
|
|
2027
2033
|
}
|
2028
2034
|
/**
|
2029
2035
|
* Write form of {@link BlueprintInsertPlan}, where some properties allow additional values as input compared to the read form.
|
2030
|
-
* @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}
|
2031
2037
|
*/
|
2032
2038
|
export interface BlueprintInsertPlanWrite {
|
2033
2039
|
/**
|
@@ -2055,7 +2061,7 @@ declare module "factorio:runtime" {
|
|
2055
2061
|
}
|
2056
2062
|
/**
|
2057
2063
|
* A single offer on a market entity.
|
2058
|
-
* @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}
|
2059
2065
|
*/
|
2060
2066
|
export interface Offer {
|
2061
2067
|
/**
|
@@ -2070,7 +2076,7 @@ declare module "factorio:runtime" {
|
|
2070
2076
|
/**
|
2071
2077
|
* An item filter may be specified in two ways, either as a string which is an item prototype name or as a table.
|
2072
2078
|
* @see ItemFilterWrite
|
2073
|
-
* @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}
|
2074
2080
|
*/
|
2075
2081
|
export type ItemFilter =
|
2076
2082
|
| {
|
@@ -2090,7 +2096,7 @@ declare module "factorio:runtime" {
|
|
2090
2096
|
| string
|
2091
2097
|
/**
|
2092
2098
|
* Write form of {@link ItemFilter}, where some properties allow additional values as input compared to the read form.
|
2093
|
-
* @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}
|
2094
2100
|
*/
|
2095
2101
|
export type ItemFilterWrite =
|
2096
2102
|
| {
|
@@ -2110,7 +2116,7 @@ declare module "factorio:runtime" {
|
|
2110
2116
|
| string
|
2111
2117
|
/**
|
2112
2118
|
* @see ScheduleRecordWrite
|
2113
|
-
* @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}
|
2114
2120
|
*/
|
2115
2121
|
export interface ScheduleRecord {
|
2116
2122
|
/**
|
@@ -2133,7 +2139,7 @@ declare module "factorio:runtime" {
|
|
2133
2139
|
}
|
2134
2140
|
/**
|
2135
2141
|
* Write form of {@link ScheduleRecord}, where some properties allow additional values as input compared to the read form.
|
2136
|
-
* @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}
|
2137
2143
|
*/
|
2138
2144
|
export interface ScheduleRecordWrite {
|
2139
2145
|
/**
|
@@ -2219,7 +2225,7 @@ declare module "factorio:runtime" {
|
|
2219
2225
|
* - `"position"`: {@link PositionGuiArrowSpecification}
|
2220
2226
|
* - `"crafting_queue"`: {@link CraftingQueueGuiArrowSpecification}
|
2221
2227
|
* - `"item_stack"`: {@link ItemStackGuiArrowSpecification}
|
2222
|
-
* @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}
|
2223
2229
|
*/
|
2224
2230
|
export type GuiArrowSpecification =
|
2225
2231
|
| EntityGuiArrowSpecification
|
@@ -2232,7 +2238,7 @@ declare module "factorio:runtime" {
|
|
2232
2238
|
*
|
2233
2239
|
* If this is specified as a three-element array then the array items are x, y and z, in that order.
|
2234
2240
|
* @see Vector3DArray
|
2235
|
-
* @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}
|
2236
2242
|
*/
|
2237
2243
|
export interface Vector3D {
|
2238
2244
|
readonly x: float
|
@@ -2242,7 +2248,7 @@ declare module "factorio:runtime" {
|
|
2242
2248
|
/**
|
2243
2249
|
* Array form of {@link Vector3D}.
|
2244
2250
|
* @see Vector3D
|
2245
|
-
* @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}
|
2246
2252
|
*/
|
2247
2253
|
export type Vector3DArray = readonly [float, float, float]
|
2248
2254
|
export interface ItemWithQualityCounts {
|
@@ -2275,7 +2281,7 @@ declare module "factorio:runtime" {
|
|
2275
2281
|
}
|
2276
2282
|
/**
|
2277
2283
|
* @see TrainScheduleWrite
|
2278
|
-
* @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}
|
2279
2285
|
*/
|
2280
2286
|
export interface TrainSchedule {
|
2281
2287
|
/**
|
@@ -2286,7 +2292,7 @@ declare module "factorio:runtime" {
|
|
2286
2292
|
}
|
2287
2293
|
/**
|
2288
2294
|
* Write form of {@link TrainSchedule}, where some properties allow additional values as input compared to the read form.
|
2289
|
-
* @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}
|
2290
2296
|
*/
|
2291
2297
|
export interface TrainScheduleWrite {
|
2292
2298
|
/**
|
@@ -2297,7 +2303,7 @@ declare module "factorio:runtime" {
|
|
2297
2303
|
}
|
2298
2304
|
/**
|
2299
2305
|
* @see PlatformScheduleWrite
|
2300
|
-
* @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}
|
2301
2307
|
*/
|
2302
2308
|
export interface PlatformSchedule {
|
2303
2309
|
/**
|
@@ -2308,7 +2314,7 @@ declare module "factorio:runtime" {
|
|
2308
2314
|
}
|
2309
2315
|
/**
|
2310
2316
|
* Write form of {@link PlatformSchedule}, where some properties allow additional values as input compared to the read form.
|
2311
|
-
* @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}
|
2312
2318
|
*/
|
2313
2319
|
export interface PlatformScheduleWrite {
|
2314
2320
|
/**
|
@@ -2325,7 +2331,7 @@ declare module "factorio:runtime" {
|
|
2325
2331
|
}
|
2326
2332
|
/**
|
2327
2333
|
* A recipe prototype with optional quality specification.
|
2328
|
-
* @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}
|
2329
2335
|
*/
|
2330
2336
|
export interface RecipeIDAndQualityIDPair {
|
2331
2337
|
/**
|
@@ -2374,7 +2380,7 @@ declare module "factorio:runtime" {
|
|
2374
2380
|
* - `string`: Name of the force, same as {@link LuaForce#name LuaForce::name}.
|
2375
2381
|
* - {@link uint8}: Index of the force, same as {@link LuaForce#index LuaForce::index}.
|
2376
2382
|
* - {@link LuaForce}: A reference to {@link LuaForce} may be passed directly.
|
2377
|
-
* @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}
|
2378
2384
|
*/
|
2379
2385
|
export type ForceID = string | uint8 | LuaForce
|
2380
2386
|
/**
|
@@ -2384,7 +2390,7 @@ declare module "factorio:runtime" {
|
|
2384
2390
|
* - `string`: The fluid name.
|
2385
2391
|
* - {@link LuaFluidPrototype}: The fluid prototype.
|
2386
2392
|
* - {@link Fluid}: The fluid.
|
2387
|
-
* @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}
|
2388
2394
|
*/
|
2389
2395
|
export type FluidID = string | LuaFluidPrototype | Fluid
|
2390
2396
|
/**
|
@@ -2395,12 +2401,12 @@ declare module "factorio:runtime" {
|
|
2395
2401
|
* - {@link LuaEntityPrototype}: The entity prototype. Normal quality will be used.
|
2396
2402
|
* - `string`: The prototype name. Normal quality will be used.
|
2397
2403
|
* - {@link EntityIDAndQualityIDPair}: A table of entity prototype and quality.
|
2398
|
-
* @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}
|
2399
2405
|
*/
|
2400
2406
|
export type EntityWithQualityID = LuaEntity | LuaEntityPrototype | string | EntityIDAndQualityIDPair
|
2401
2407
|
/**
|
2402
2408
|
* An entity prototype with optional quality specification.
|
2403
|
-
* @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}
|
2404
2410
|
*/
|
2405
2411
|
export interface EntityIDAndQualityIDPair {
|
2406
2412
|
/**
|
@@ -2420,13 +2426,13 @@ declare module "factorio:runtime" {
|
|
2420
2426
|
* - {@link LuaItemPrototype}: The item prototype. Normal quality will be used.
|
2421
2427
|
* - `string`: The prototype name. Normal quality will be used.
|
2422
2428
|
* - {@link ItemIDAndQualityIDPair}: A table of entity prototype and quality.
|
2423
|
-
* @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}
|
2424
2430
|
*/
|
2425
2431
|
export type ItemWithQualityID = LuaItemStack | LuaItemPrototype | string | ItemIDAndQualityIDPairWrite
|
2426
2432
|
/**
|
2427
2433
|
* An item prototype with optional quality specification.
|
2428
2434
|
* @see ItemIDAndQualityIDPairWrite
|
2429
|
-
* @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}
|
2430
2436
|
*/
|
2431
2437
|
export interface ItemIDAndQualityIDPair {
|
2432
2438
|
/**
|
@@ -2440,7 +2446,7 @@ declare module "factorio:runtime" {
|
|
2440
2446
|
}
|
2441
2447
|
/**
|
2442
2448
|
* Write form of {@link ItemIDAndQualityIDPair}, where some properties allow additional values as input compared to the read form.
|
2443
|
-
* @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}
|
2444
2450
|
*/
|
2445
2451
|
export interface ItemIDAndQualityIDPairWrite {
|
2446
2452
|
/**
|
@@ -2460,7 +2466,7 @@ declare module "factorio:runtime" {
|
|
2460
2466
|
* - {@link LuaItemStack}: Non empty item stack.
|
2461
2467
|
* - {@link LuaItem}: The item.
|
2462
2468
|
* - `string`: The prototype name.
|
2463
|
-
* @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}
|
2464
2470
|
*/
|
2465
2471
|
export type ItemID = LuaItemPrototype | LuaItemStack | LuaItem | string
|
2466
2472
|
/**
|
@@ -2470,7 +2476,7 @@ declare module "factorio:runtime" {
|
|
2470
2476
|
* - {@link LuaEntityPrototype}: The entity prototype.
|
2471
2477
|
* - {@link LuaEntity}: The entity.
|
2472
2478
|
* - `string`: The prototype name.
|
2473
|
-
* @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}
|
2474
2480
|
*/
|
2475
2481
|
export type EntityID = LuaEntityPrototype | LuaEntity | string
|
2476
2482
|
/**
|
@@ -2480,7 +2486,7 @@ declare module "factorio:runtime" {
|
|
2480
2486
|
* - {@link LuaTechnologyPrototype}: The technology prototype.
|
2481
2487
|
* - {@link LuaTechnology}: Instance of the technology.
|
2482
2488
|
* - `string`: The prototype name.
|
2483
|
-
* @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}
|
2484
2490
|
*/
|
2485
2491
|
export type TechnologyID = LuaTechnologyPrototype | LuaTechnology | string
|
2486
2492
|
/**
|
@@ -2489,7 +2495,7 @@ declare module "factorio:runtime" {
|
|
2489
2495
|
* ## Union members
|
2490
2496
|
* - {@link LuaParticlePrototype}: The particle prototype.
|
2491
2497
|
* - `string`: The prototype name.
|
2492
|
-
* @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}
|
2493
2499
|
*/
|
2494
2500
|
export type ParticleID = LuaParticlePrototype | string
|
2495
2501
|
/**
|
@@ -2498,7 +2504,7 @@ declare module "factorio:runtime" {
|
|
2498
2504
|
* ## Union members
|
2499
2505
|
* - {@link LuaDamagePrototype}: The damage type prototype.
|
2500
2506
|
* - `string`: The prototype name.
|
2501
|
-
* @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}
|
2502
2508
|
*/
|
2503
2509
|
export type DamageTypeID = LuaDamagePrototype | string
|
2504
2510
|
/**
|
@@ -2507,7 +2513,7 @@ declare module "factorio:runtime" {
|
|
2507
2513
|
* ## Union members
|
2508
2514
|
* - {@link LuaTrivialSmokePrototype}: The trivial smoke prototype.
|
2509
2515
|
* - `string`: The prototype name.
|
2510
|
-
* @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}
|
2511
2517
|
*/
|
2512
2518
|
export type TrivialSmokeID = LuaTrivialSmokePrototype | string
|
2513
2519
|
/**
|
@@ -2519,7 +2525,7 @@ declare module "factorio:runtime" {
|
|
2519
2525
|
* - `"left"`
|
2520
2526
|
* - `"right"`
|
2521
2527
|
* - `"center"`
|
2522
|
-
* @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}
|
2523
2529
|
*/
|
2524
2530
|
export type TextAlign = "left" | "right" | "center"
|
2525
2531
|
/**
|
@@ -2532,7 +2538,7 @@ declare module "factorio:runtime" {
|
|
2532
2538
|
* - `"middle"`
|
2533
2539
|
* - `"baseline"`
|
2534
2540
|
* - `"bottom"`
|
2535
|
-
* @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}
|
2536
2542
|
*/
|
2537
2543
|
export type VerticalTextAlign = "top" | "middle" | "baseline" | "bottom"
|
2538
2544
|
/**
|
@@ -2541,7 +2547,7 @@ declare module "factorio:runtime" {
|
|
2541
2547
|
* ## Union members
|
2542
2548
|
* - {@link LuaQualityPrototype}: The quality prototype.
|
2543
2549
|
* - `string`: The prototype name.
|
2544
|
-
* @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}
|
2545
2551
|
*/
|
2546
2552
|
export type QualityID = LuaQualityPrototype | string
|
2547
2553
|
/**
|
@@ -2551,7 +2557,7 @@ declare module "factorio:runtime" {
|
|
2551
2557
|
* - {@link LuaRecipePrototype}: By recipe prototype.
|
2552
2558
|
* - {@link LuaRecipe}: By instance of recipe.
|
2553
2559
|
* - `string`: By name of the recipe prototype.
|
2554
|
-
* @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}
|
2555
2561
|
*/
|
2556
2562
|
export type RecipeID = LuaRecipePrototype | LuaRecipe | string
|
2557
2563
|
/**
|
@@ -2561,7 +2567,7 @@ declare module "factorio:runtime" {
|
|
2561
2567
|
* - {@link LuaTilePrototype}: By tile prototype.
|
2562
2568
|
* - {@link LuaTile}: By instance of tile.
|
2563
2569
|
* - `string`: By name of the tile prototype.
|
2564
|
-
* @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}
|
2565
2571
|
*/
|
2566
2572
|
export type TileID = LuaTilePrototype | LuaTile | string
|
2567
2573
|
export interface Fluid {
|
@@ -2585,7 +2591,7 @@ declare module "factorio:runtime" {
|
|
2585
2591
|
* - {@link LuaEquipmentPrototype}: The equipment prototype.
|
2586
2592
|
* - {@link LuaEquipment}: The equipment.
|
2587
2593
|
* - `string`: The prototype name.
|
2588
|
-
* @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}
|
2589
2595
|
*/
|
2590
2596
|
export type EquipmentID = LuaEquipmentPrototype | LuaEquipment | string
|
2591
2597
|
/**
|
@@ -2596,12 +2602,12 @@ declare module "factorio:runtime" {
|
|
2596
2602
|
* - {@link LuaEquipment}: The equipment. Both prototype and quality of the provided equipment will be used.
|
2597
2603
|
* - `string`: The prototype name. Normal quality will be used.
|
2598
2604
|
* - {@link EquipmentIDAndQualityIDPair}: A table of equipment prototype and quality.
|
2599
|
-
* @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}
|
2600
2606
|
*/
|
2601
2607
|
export type EquipmentWithQualityID = LuaEquipmentPrototype | LuaEquipment | string | EquipmentIDAndQualityIDPair
|
2602
2608
|
/**
|
2603
2609
|
* An equipment prototype with optional quality specification.
|
2604
|
-
* @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}
|
2605
2611
|
*/
|
2606
2612
|
export interface EquipmentIDAndQualityIDPair {
|
2607
2613
|
/**
|
@@ -2622,7 +2628,7 @@ declare module "factorio:runtime" {
|
|
2622
2628
|
* @example
|
2623
2629
|
* -- Shorthand
|
2624
2630
|
* {{-2, -3}, {5, 8}}
|
2625
|
-
* @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}
|
2626
2632
|
*/
|
2627
2633
|
export interface BoundingBox {
|
2628
2634
|
readonly left_top: MapPosition
|
@@ -2632,7 +2638,7 @@ declare module "factorio:runtime" {
|
|
2632
2638
|
/**
|
2633
2639
|
* Array form of {@link BoundingBox}.
|
2634
2640
|
* @see BoundingBox
|
2635
|
-
* @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}
|
2636
2642
|
*/
|
2637
2643
|
export type BoundingBoxArray = readonly [MapPosition | MapPositionArray, MapPosition | MapPositionArray]
|
2638
2644
|
export interface BoundingBoxWrite {
|
@@ -2645,7 +2651,7 @@ declare module "factorio:runtime" {
|
|
2645
2651
|
*
|
2646
2652
|
* ## Union members
|
2647
2653
|
* - {@link LuaSpacePlatform}
|
2648
|
-
* @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}
|
2649
2655
|
*/
|
2650
2656
|
export type SpacePlatformIdentification = LuaSpacePlatform
|
2651
2657
|
/**
|
@@ -2655,12 +2661,12 @@ declare module "factorio:runtime" {
|
|
2655
2661
|
* - {@link LuaForce}[]: Array of many forces.
|
2656
2662
|
* - {@link LuaForce}: A single force.
|
2657
2663
|
* @see ForceSetWrite
|
2658
|
-
* @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}
|
2659
2665
|
*/
|
2660
2666
|
export type ForceSet = LuaForce[] | LuaForce
|
2661
2667
|
/**
|
2662
2668
|
* Write form of {@link ForceSet}, where some properties allow additional values as input compared to the read form.
|
2663
|
-
* @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}
|
2664
2670
|
*/
|
2665
2671
|
export type ForceSetWrite = readonly ForceID[] | ForceID
|
2666
2672
|
/**
|
@@ -2669,7 +2675,7 @@ declare module "factorio:runtime" {
|
|
2669
2675
|
* ## Union members
|
2670
2676
|
* - {@link LuaDecorativePrototype}: The decorative prototype.
|
2671
2677
|
* - `string`: The prototype name.
|
2672
|
-
* @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}
|
2673
2679
|
*/
|
2674
2680
|
export type DecorativeID = LuaDecorativePrototype | string
|
2675
2681
|
/**
|
@@ -2678,7 +2684,7 @@ declare module "factorio:runtime" {
|
|
2678
2684
|
* ## Union members
|
2679
2685
|
* - {@link LuaAsteroidChunkPrototype}: The asteroid chunk prototype.
|
2680
2686
|
* - `string`: The prototype name.
|
2681
|
-
* @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}
|
2682
2688
|
*/
|
2683
2689
|
export type AsteroidChunkID = LuaAsteroidChunkPrototype | string
|
2684
2690
|
/**
|
@@ -2687,13 +2693,13 @@ declare module "factorio:runtime" {
|
|
2687
2693
|
* ## Union members
|
2688
2694
|
* - {@link LuaSpaceLocationPrototype}: The space location prototype.
|
2689
2695
|
* - `string`: The prototype name.
|
2690
|
-
* @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}
|
2691
2697
|
*/
|
2692
2698
|
export type SpaceLocationID = LuaSpaceLocationPrototype | string
|
2693
2699
|
/**
|
2694
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.
|
2695
2701
|
* @see SignalFilterWrite
|
2696
|
-
* @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}
|
2697
2703
|
*/
|
2698
2704
|
export type SignalFilter =
|
2699
2705
|
| {
|
@@ -2717,7 +2723,7 @@ declare module "factorio:runtime" {
|
|
2717
2723
|
| string
|
2718
2724
|
/**
|
2719
2725
|
* Write form of {@link SignalFilter}, where some properties allow additional values as input compared to the read form.
|
2720
|
-
* @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}
|
2721
2727
|
*/
|
2722
2728
|
export type SignalFilterWrite =
|
2723
2729
|
| {
|
@@ -2741,7 +2747,7 @@ declare module "factorio:runtime" {
|
|
2741
2747
|
| string
|
2742
2748
|
/**
|
2743
2749
|
* @see LogisticFilterWrite
|
2744
|
-
* @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}
|
2745
2751
|
*/
|
2746
2752
|
export interface LogisticFilter {
|
2747
2753
|
/**
|
@@ -2767,7 +2773,7 @@ declare module "factorio:runtime" {
|
|
2767
2773
|
}
|
2768
2774
|
/**
|
2769
2775
|
* Write form of {@link LogisticFilter}, where some properties allow additional values as input compared to the read form.
|
2770
|
-
* @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}
|
2771
2777
|
*/
|
2772
2778
|
export interface LogisticFilterWrite {
|
2773
2779
|
/**
|
@@ -2823,23 +2829,23 @@ declare module "factorio:runtime" {
|
|
2823
2829
|
* ## Union members
|
2824
2830
|
* - {@link LuaSurfacePropertyPrototype}: The surface property prototype.
|
2825
2831
|
* - `string`: The prototype name.
|
2826
|
-
* @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}
|
2827
2833
|
*/
|
2828
2834
|
export type SurfacePropertyID = LuaSurfacePropertyPrototype | string
|
2829
2835
|
/**
|
2830
2836
|
* When writing it is possible to give LuaEntity or MapPosition directly. However, reading always returns the full ScriptRenderTargetTable.
|
2831
2837
|
* @see ScriptRenderTargetWrite
|
2832
|
-
* @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}
|
2833
2839
|
*/
|
2834
2840
|
export type ScriptRenderTarget = LuaEntity | MapPosition | ScriptRenderTargetTable
|
2835
2841
|
/**
|
2836
2842
|
* Write form of {@link ScriptRenderTarget}, where some properties allow additional values as input compared to the read form.
|
2837
|
-
* @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}
|
2838
2844
|
*/
|
2839
2845
|
export type ScriptRenderTargetWrite = LuaEntity | (MapPosition | MapPositionArray) | ScriptRenderTargetTableWrite
|
2840
2846
|
/**
|
2841
2847
|
* @see ScriptRenderTargetTableWrite
|
2842
|
-
* @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}
|
2843
2849
|
*/
|
2844
2850
|
export interface ScriptRenderTargetTable {
|
2845
2851
|
readonly entity?: LuaEntity
|
@@ -2854,7 +2860,7 @@ declare module "factorio:runtime" {
|
|
2854
2860
|
}
|
2855
2861
|
/**
|
2856
2862
|
* Write form of {@link ScriptRenderTargetTable}, where some properties allow additional values as input compared to the read form.
|
2857
|
-
* @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}
|
2858
2864
|
*/
|
2859
2865
|
export interface ScriptRenderTargetTableWrite {
|
2860
2866
|
readonly entity?: LuaEntity
|
@@ -2869,7 +2875,7 @@ declare module "factorio:runtime" {
|
|
2869
2875
|
}
|
2870
2876
|
/**
|
2871
2877
|
* An item filter may be specified in two ways, either as a string which is a quality prototype name or as a table.
|
2872
|
-
* @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}
|
2873
2879
|
*/
|
2874
2880
|
export type QualityCondition =
|
2875
2881
|
| {
|
@@ -2883,6 +2889,83 @@ declare module "factorio:runtime" {
|
|
2883
2889
|
readonly comparator?: ComparatorString
|
2884
2890
|
}
|
2885
2891
|
| string
|
2892
|
+
/**
|
2893
|
+
* The destination of a cargo pod.
|
2894
|
+
* @see CargoDestinationWrite
|
2895
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/CargoDestination.html Online documentation}
|
2896
|
+
*/
|
2897
|
+
export interface CargoDestination {
|
2898
|
+
/**
|
2899
|
+
* The type of destination.
|
2900
|
+
*/
|
2901
|
+
readonly type: defines.cargo_destination
|
2902
|
+
/**
|
2903
|
+
* Only used if `type` is {@link defines.cargo_destination.station station}. Must be entity of type `cargo-landing-pad` or `space-platform-hub`.
|
2904
|
+
*/
|
2905
|
+
readonly station?: LuaEntity
|
2906
|
+
/**
|
2907
|
+
* Only used if `type` is {@link defines.cargo_destination.station station}. Must be connected to the station and not reserved.
|
2908
|
+
*/
|
2909
|
+
readonly hatch?: LuaCargoHatch
|
2910
|
+
/**
|
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`.
|
2912
|
+
*/
|
2913
|
+
readonly transform_launch_products?: boolean
|
2914
|
+
/**
|
2915
|
+
* Only used if `type` is {@link defines.cargo_destination.surface surface}.
|
2916
|
+
*/
|
2917
|
+
readonly surface?: SurfaceIdentification
|
2918
|
+
/**
|
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.
|
2920
|
+
*/
|
2921
|
+
readonly position?: MapPosition
|
2922
|
+
/**
|
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.
|
2928
|
+
*/
|
2929
|
+
readonly space_platform?: SpacePlatformIdentification
|
2930
|
+
}
|
2931
|
+
/**
|
2932
|
+
* Write form of {@link CargoDestination}, where some properties allow additional values as input compared to the read form.
|
2933
|
+
* @see {@link https://lua-api.factorio.com/2.0.35/concepts/CargoDestination.html Online documentation}
|
2934
|
+
*/
|
2935
|
+
export interface CargoDestinationWrite {
|
2936
|
+
/**
|
2937
|
+
* The type of destination.
|
2938
|
+
*/
|
2939
|
+
readonly type: defines.cargo_destination
|
2940
|
+
/**
|
2941
|
+
* Only used if `type` is {@link defines.cargo_destination.station station}. Must be entity of type `cargo-landing-pad` or `space-platform-hub`.
|
2942
|
+
*/
|
2943
|
+
readonly station?: LuaEntity
|
2944
|
+
/**
|
2945
|
+
* Only used if `type` is {@link defines.cargo_destination.station station}. Must be connected to the station and not reserved.
|
2946
|
+
*/
|
2947
|
+
readonly hatch?: LuaCargoHatch
|
2948
|
+
/**
|
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`.
|
2950
|
+
*/
|
2951
|
+
readonly transform_launch_products?: boolean
|
2952
|
+
/**
|
2953
|
+
* Only used if `type` is {@link defines.cargo_destination.surface surface}.
|
2954
|
+
*/
|
2955
|
+
readonly surface?: SurfaceIdentification
|
2956
|
+
/**
|
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.
|
2958
|
+
*/
|
2959
|
+
readonly position?: MapPosition | MapPositionArray
|
2960
|
+
/**
|
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.
|
2966
|
+
*/
|
2967
|
+
readonly space_platform?: SpacePlatformIdentification
|
2968
|
+
}
|
2886
2969
|
/**
|
2887
2970
|
* Event name may be specified in one of four ways.
|
2888
2971
|
*
|
@@ -2891,7 +2974,7 @@ declare module "factorio:runtime" {
|
|
2891
2974
|
* - {@link LuaCustomInputPrototype}: Custom input prototype.
|
2892
2975
|
* - {@link defines.events}: Event identifier.
|
2893
2976
|
* - `string`: Name of the event.
|
2894
|
-
* @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}
|
2895
2978
|
*/
|
2896
2979
|
export type LuaEventType = LuaCustomEventPrototype | LuaCustomInputPrototype | defines.events | string | EventId<any>
|
2897
2980
|
/**
|
@@ -2899,13 +2982,13 @@ declare module "factorio:runtime" {
|
|
2899
2982
|
* - `"center-to-center"`
|
2900
2983
|
* - `"bounding-box-to-bounding-box"`
|
2901
2984
|
* - `"center-to-bounding-box"`
|
2902
|
-
* @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}
|
2903
2986
|
*/
|
2904
2987
|
export type RangeMode = "center-to-center" | "bounding-box-to-bounding-box" | "center-to-bounding-box"
|
2905
2988
|
/**
|
2906
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.
|
2907
2990
|
* @see BlueprintEntityWrite
|
2908
|
-
* @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}
|
2909
2992
|
*/
|
2910
2993
|
export interface BlueprintEntity {
|
2911
2994
|
/**
|
@@ -3119,7 +3202,7 @@ declare module "factorio:runtime" {
|
|
3119
3202
|
}
|
3120
3203
|
/**
|
3121
3204
|
* Write form of {@link BlueprintEntity}, where some properties allow additional values as input compared to the read form.
|
3122
|
-
* @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}
|
3123
3206
|
*/
|
3124
3207
|
export interface BlueprintEntityWrite {
|
3125
3208
|
/**
|
@@ -3340,7 +3423,7 @@ declare module "factorio:runtime" {
|
|
3340
3423
|
}
|
3341
3424
|
/**
|
3342
3425
|
* @see BlueprintEquipmentWrite
|
3343
|
-
* @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}
|
3344
3427
|
*/
|
3345
3428
|
export interface BlueprintEquipment {
|
3346
3429
|
readonly equipment: ItemIDAndQualityIDPair
|
@@ -3348,7 +3431,7 @@ declare module "factorio:runtime" {
|
|
3348
3431
|
}
|
3349
3432
|
/**
|
3350
3433
|
* Write form of {@link BlueprintEquipment}, where some properties allow additional values as input compared to the read form.
|
3351
|
-
* @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}
|
3352
3435
|
*/
|
3353
3436
|
export interface BlueprintEquipmentWrite {
|
3354
3437
|
readonly equipment: ItemIDAndQualityIDPairWrite
|
@@ -3356,7 +3439,7 @@ declare module "factorio:runtime" {
|
|
3356
3439
|
}
|
3357
3440
|
/**
|
3358
3441
|
* @see BlueprintInventoryWrite
|
3359
|
-
* @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}
|
3360
3443
|
*/
|
3361
3444
|
export interface BlueprintInventory {
|
3362
3445
|
readonly filters?: BlueprintLogisticFilter[]
|
@@ -3367,7 +3450,7 @@ declare module "factorio:runtime" {
|
|
3367
3450
|
}
|
3368
3451
|
/**
|
3369
3452
|
* Write form of {@link BlueprintInventory}, where some properties allow additional values as input compared to the read form.
|
3370
|
-
* @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}
|
3371
3454
|
*/
|
3372
3455
|
export interface BlueprintInventoryWrite {
|
3373
3456
|
readonly filters?: readonly BlueprintLogisticFilterWrite[]
|
@@ -3388,7 +3471,7 @@ declare module "factorio:runtime" {
|
|
3388
3471
|
}
|
3389
3472
|
/**
|
3390
3473
|
* @see BlueprintControlBehaviorWrite
|
3391
|
-
* @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}
|
3392
3475
|
*/
|
3393
3476
|
export interface BlueprintControlBehavior {
|
3394
3477
|
/**
|
@@ -3641,7 +3724,7 @@ declare module "factorio:runtime" {
|
|
3641
3724
|
}
|
3642
3725
|
/**
|
3643
3726
|
* Write form of {@link BlueprintControlBehavior}, where some properties allow additional values as input compared to the read form.
|
3644
|
-
* @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}
|
3645
3728
|
*/
|
3646
3729
|
export interface BlueprintControlBehaviorWrite {
|
3647
3730
|
/**
|
@@ -3922,7 +4005,7 @@ declare module "factorio:runtime" {
|
|
3922
4005
|
* "2500 * (L - 3)"
|
3923
4006
|
* @example
|
3924
4007
|
* "(4e5 * (abs(speed) + 10.5)) / weight"
|
3925
|
-
* @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}
|
3926
4009
|
*/
|
3927
4010
|
export type MathExpression = string
|
3928
4011
|
/**
|
@@ -3944,7 +4027,7 @@ declare module "factorio:runtime" {
|
|
3944
4027
|
* -- What a custom recipe would look like that had a probability of 0.5 to return a
|
3945
4028
|
* -- minimum amount of 1 and a maximum amount of 5
|
3946
4029
|
* {{type="item", name="custom-item", probability=0.5, amount_min=1, amount_max=5}}
|
3947
|
-
* @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}
|
3948
4031
|
*/
|
3949
4032
|
export type Product = ItemProduct | FluidProduct | ResearchProgressProduct
|
3950
4033
|
/**
|
@@ -3955,7 +4038,7 @@ declare module "factorio:runtime" {
|
|
3955
4038
|
* -- What a custom recipe would look like that had a probability of 0.5 to return a
|
3956
4039
|
* -- minimum amount of 1 and a maximum amount of 5
|
3957
4040
|
* {{type="item", name="custom-item", probability=0.5, amount_min=1, amount_max=5}}
|
3958
|
-
* @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}
|
3959
4042
|
*/
|
3960
4043
|
export interface ItemProduct {
|
3961
4044
|
readonly type: "item"
|
@@ -3999,7 +4082,7 @@ declare module "factorio:runtime" {
|
|
3999
4082
|
* {{type="fluid", name="heavy-oil", amount=1},
|
4000
4083
|
* {type="fluid", name="light-oil", amount=4.5},
|
4001
4084
|
* {type="fluid", name="petroleum-gas", amount=5.5}}
|
4002
|
-
* @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}
|
4003
4086
|
*/
|
4004
4087
|
export interface FluidProduct {
|
4005
4088
|
readonly type: "fluid"
|
@@ -4047,7 +4130,7 @@ declare module "factorio:runtime" {
|
|
4047
4130
|
}
|
4048
4131
|
/**
|
4049
4132
|
* @see LogisticSectionsWrite
|
4050
|
-
* @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}
|
4051
4134
|
*/
|
4052
4135
|
export interface LogisticSections {
|
4053
4136
|
readonly sections?: LogisticSection[]
|
@@ -4058,7 +4141,7 @@ declare module "factorio:runtime" {
|
|
4058
4141
|
}
|
4059
4142
|
/**
|
4060
4143
|
* Write form of {@link LogisticSections}, where some properties allow additional values as input compared to the read form.
|
4061
|
-
* @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}
|
4062
4145
|
*/
|
4063
4146
|
export interface LogisticSectionsWrite {
|
4064
4147
|
readonly sections?: readonly LogisticSectionWrite[]
|
@@ -4094,7 +4177,7 @@ declare module "factorio:runtime" {
|
|
4094
4177
|
}
|
4095
4178
|
/**
|
4096
4179
|
* @see LogisticSectionWrite
|
4097
|
-
* @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}
|
4098
4181
|
*/
|
4099
4182
|
export interface LogisticSection {
|
4100
4183
|
readonly index: uint8
|
@@ -4111,7 +4194,7 @@ declare module "factorio:runtime" {
|
|
4111
4194
|
}
|
4112
4195
|
/**
|
4113
4196
|
* Write form of {@link LogisticSection}, where some properties allow additional values as input compared to the read form.
|
4114
|
-
* @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}
|
4115
4198
|
*/
|
4116
4199
|
export interface LogisticSectionWrite {
|
4117
4200
|
readonly index: uint8
|
@@ -4128,7 +4211,7 @@ declare module "factorio:runtime" {
|
|
4128
4211
|
}
|
4129
4212
|
/**
|
4130
4213
|
* @see BlueprintLogisticFilterWrite
|
4131
|
-
* @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}
|
4132
4215
|
*/
|
4133
4216
|
export interface BlueprintLogisticFilter {
|
4134
4217
|
readonly index: LogisticFilterIndex
|
@@ -4158,7 +4241,7 @@ declare module "factorio:runtime" {
|
|
4158
4241
|
}
|
4159
4242
|
/**
|
4160
4243
|
* Write form of {@link BlueprintLogisticFilter}, where some properties allow additional values as input compared to the read form.
|
4161
|
-
* @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}
|
4162
4245
|
*/
|
4163
4246
|
export interface BlueprintLogisticFilterWrite {
|
4164
4247
|
readonly index: LogisticFilterIndex
|
@@ -4188,7 +4271,7 @@ declare module "factorio:runtime" {
|
|
4188
4271
|
}
|
4189
4272
|
/**
|
4190
4273
|
* Specifies how probability and richness are calculated when placing something on the map.
|
4191
|
-
* @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}
|
4192
4275
|
*/
|
4193
4276
|
export interface AutoplaceSpecification {
|
4194
4277
|
/**
|
@@ -4205,7 +4288,7 @@ declare module "factorio:runtime" {
|
|
4205
4288
|
}
|
4206
4289
|
/**
|
4207
4290
|
* @see CliffPlacementSettingsWrite
|
4208
|
-
* @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}
|
4209
4292
|
*/
|
4210
4293
|
export interface CliffPlacementSettings {
|
4211
4294
|
/**
|
@@ -4235,7 +4318,7 @@ declare module "factorio:runtime" {
|
|
4235
4318
|
}
|
4236
4319
|
/**
|
4237
4320
|
* Write form of {@link CliffPlacementSettings}, where some properties allow additional values as input compared to the read form.
|
4238
|
-
* @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}
|
4239
4322
|
*/
|
4240
4323
|
export interface CliffPlacementSettingsWrite {
|
4241
4324
|
/**
|
@@ -4265,7 +4348,7 @@ declare module "factorio:runtime" {
|
|
4265
4348
|
}
|
4266
4349
|
/**
|
4267
4350
|
* @see AutoplaceSettingsWrite
|
4268
|
-
* @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}
|
4269
4352
|
*/
|
4270
4353
|
export interface AutoplaceSettings {
|
4271
4354
|
/**
|
@@ -4279,7 +4362,7 @@ declare module "factorio:runtime" {
|
|
4279
4362
|
}
|
4280
4363
|
/**
|
4281
4364
|
* Write form of {@link AutoplaceSettings}, where some properties allow additional values as input compared to the read form.
|
4282
|
-
* @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}
|
4283
4366
|
*/
|
4284
4367
|
export interface AutoplaceSettingsWrite {
|
4285
4368
|
/**
|
@@ -4314,7 +4397,7 @@ declare module "factorio:runtime" {
|
|
4314
4397
|
* surface.map_gen_settings = mgs
|
4315
4398
|
* -- This does not require a NamedNoiseExpression to be defined, since literal numbers (and strings naming literal
|
4316
4399
|
* -- numbers, e.g. `"123"`) are understood to stand for constant value expressions.
|
4317
|
-
* @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}
|
4318
4401
|
*/
|
4319
4402
|
export interface MapGenSettings {
|
4320
4403
|
/**
|
@@ -4369,7 +4452,7 @@ declare module "factorio:runtime" {
|
|
4369
4452
|
}
|
4370
4453
|
/**
|
4371
4454
|
* Write form of {@link MapGenSettings}, where some properties allow additional values as input compared to the read form.
|
4372
|
-
* @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}
|
4373
4456
|
*/
|
4374
4457
|
export interface MapGenSettingsWrite {
|
4375
4458
|
/**
|
@@ -4428,7 +4511,7 @@ declare module "factorio:runtime" {
|
|
4428
4511
|
}
|
4429
4512
|
/**
|
4430
4513
|
* These values are for the time frame of one second (60 ticks).
|
4431
|
-
* @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}
|
4432
4515
|
*/
|
4433
4516
|
export interface PollutionMapSettings {
|
4434
4517
|
/**
|
@@ -4482,7 +4565,7 @@ declare module "factorio:runtime" {
|
|
4482
4565
|
}
|
4483
4566
|
/**
|
4484
4567
|
* These values represent a percentual increase in evolution. This means a value of `0.1` would increase evolution by 10%.
|
4485
|
-
* @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}
|
4486
4569
|
*/
|
4487
4570
|
export interface EnemyEvolutionMapSettings {
|
4488
4571
|
/**
|
@@ -4520,7 +4603,7 @@ declare module "factorio:runtime" {
|
|
4520
4603
|
* * neighbouring_base_chunk_coefficient^distance(chunk, neighbour)
|
4521
4604
|
* score(chunk) = 1 / (1 + player + base)
|
4522
4605
|
* ```
|
4523
|
-
* @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}
|
4524
4607
|
*/
|
4525
4608
|
export interface EnemyExpansionMapSettings {
|
4526
4609
|
/**
|
@@ -4779,17 +4862,17 @@ declare module "factorio:runtime" {
|
|
4779
4862
|
}
|
4780
4863
|
/**
|
4781
4864
|
* Technology difficulty settings. Updating any of the attributes will immediately take effect in the game engine.
|
4782
|
-
* @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}
|
4783
4866
|
*/
|
4784
4867
|
export interface DifficultySettings {
|
4785
4868
|
/**
|
4786
4869
|
* A value in range [0.001, 1000].
|
4787
|
-
* @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}
|
4788
4871
|
*/
|
4789
4872
|
technology_price_multiplier: double
|
4790
4873
|
/**
|
4791
4874
|
* A value in range [0.01, 100].
|
4792
|
-
* @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}
|
4793
4876
|
*/
|
4794
4877
|
spoil_time_modifier: double
|
4795
4878
|
}
|
@@ -4805,7 +4888,7 @@ declare module "factorio:runtime" {
|
|
4805
4888
|
}
|
4806
4889
|
/**
|
4807
4890
|
* A standard table containing all {@link MapSettings} attributes plus an additional table that contains all {@link DifficultySettings} properties.
|
4808
|
-
* @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}
|
4809
4892
|
*/
|
4810
4893
|
export interface MapAndDifficultySettings {
|
4811
4894
|
readonly pollution: PollutionMapSettings
|
@@ -4826,7 +4909,7 @@ declare module "factorio:runtime" {
|
|
4826
4909
|
* @example
|
4827
4910
|
* -- Increase the number of short paths the pathfinder can cache.
|
4828
4911
|
* game.map_settings.path_finder.short_cache_size = 15
|
4829
|
-
* @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}
|
4830
4913
|
*/
|
4831
4914
|
export interface MapSettings {
|
4832
4915
|
pollution: PollutionMapSettings
|
@@ -4838,13 +4921,13 @@ declare module "factorio:runtime" {
|
|
4838
4921
|
asteroids: AsteroidMapSettings
|
4839
4922
|
/**
|
4840
4923
|
* If a behavior fails this many times, the enemy (or enemy group) is destroyed. This solves biters getting stuck within their own base.
|
4841
|
-
* @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}
|
4842
4925
|
*/
|
4843
4926
|
max_failed_behavior_count: uint
|
4844
4927
|
}
|
4845
4928
|
/**
|
4846
4929
|
* @see BlueprintScheduleRecordWrite
|
4847
|
-
* @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}
|
4848
4931
|
*/
|
4849
4932
|
export interface BlueprintScheduleRecord {
|
4850
4933
|
/**
|
@@ -4861,7 +4944,7 @@ declare module "factorio:runtime" {
|
|
4861
4944
|
}
|
4862
4945
|
/**
|
4863
4946
|
* Write form of {@link BlueprintScheduleRecord}, where some properties allow additional values as input compared to the read form.
|
4864
|
-
* @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}
|
4865
4948
|
*/
|
4866
4949
|
export interface BlueprintScheduleRecordWrite {
|
4867
4950
|
/**
|
@@ -4878,7 +4961,7 @@ declare module "factorio:runtime" {
|
|
4878
4961
|
}
|
4879
4962
|
/**
|
4880
4963
|
* @see BlueprintScheduleInterruptWrite
|
4881
|
-
* @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}
|
4882
4965
|
*/
|
4883
4966
|
export interface BlueprintScheduleInterrupt {
|
4884
4967
|
readonly name?: string
|
@@ -4888,7 +4971,7 @@ declare module "factorio:runtime" {
|
|
4888
4971
|
}
|
4889
4972
|
/**
|
4890
4973
|
* Write form of {@link BlueprintScheduleInterrupt}, where some properties allow additional values as input compared to the read form.
|
4891
|
-
* @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}
|
4892
4975
|
*/
|
4893
4976
|
export interface BlueprintScheduleInterruptWrite {
|
4894
4977
|
readonly name?: string
|
@@ -4898,7 +4981,7 @@ declare module "factorio:runtime" {
|
|
4898
4981
|
}
|
4899
4982
|
/**
|
4900
4983
|
* @see BlueprintScheduleWrite
|
4901
|
-
* @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}
|
4902
4985
|
*/
|
4903
4986
|
export interface BlueprintSchedule {
|
4904
4987
|
readonly records?: BlueprintScheduleRecord[]
|
@@ -4907,7 +4990,7 @@ declare module "factorio:runtime" {
|
|
4907
4990
|
}
|
4908
4991
|
/**
|
4909
4992
|
* Write form of {@link BlueprintSchedule}, where some properties allow additional values as input compared to the read form.
|
4910
|
-
* @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}
|
4911
4994
|
*/
|
4912
4995
|
export interface BlueprintScheduleWrite {
|
4913
4996
|
readonly records?: readonly BlueprintScheduleRecordWrite[]
|
@@ -4916,7 +4999,7 @@ declare module "factorio:runtime" {
|
|
4916
4999
|
}
|
4917
5000
|
/**
|
4918
5001
|
* @see WaitConditionWrite
|
4919
|
-
* @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}
|
4920
5003
|
*/
|
4921
5004
|
export interface WaitCondition {
|
4922
5005
|
readonly type: WaitConditionType
|
@@ -4947,7 +5030,7 @@ declare module "factorio:runtime" {
|
|
4947
5030
|
}
|
4948
5031
|
/**
|
4949
5032
|
* Write form of {@link WaitCondition}, where some properties allow additional values as input compared to the read form.
|
4950
|
-
* @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}
|
4951
5034
|
*/
|
4952
5035
|
export interface WaitConditionWrite {
|
4953
5036
|
readonly type: WaitConditionType
|
@@ -5006,7 +5089,7 @@ declare module "factorio:runtime" {
|
|
5006
5089
|
* - `"at_station"`
|
5007
5090
|
* - `"not_at_station"`
|
5008
5091
|
* - `"damage_taken"`
|
5009
|
-
* @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}
|
5010
5093
|
*/
|
5011
5094
|
export type WaitConditionType =
|
5012
5095
|
| "time"
|
@@ -5048,7 +5131,7 @@ declare module "factorio:runtime" {
|
|
5048
5131
|
* - `"blueprint-snap-rectangle"`: Green by default.
|
5049
5132
|
* - `"spidertron-remote-selected"`
|
5050
5133
|
* - `"spidertron-remote-to-be-selected"`
|
5051
|
-
* @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}
|
5052
5135
|
*/
|
5053
5136
|
export type CursorBoxRenderType =
|
5054
5137
|
| "entity"
|
@@ -5064,7 +5147,7 @@ declare module "factorio:runtime" {
|
|
5064
5147
|
| "spidertron-remote-to-be-selected"
|
5065
5148
|
/**
|
5066
5149
|
* What is shown in the map view. If a field is not given, that setting will not be changed.
|
5067
|
-
* @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}
|
5068
5151
|
*/
|
5069
5152
|
export interface MapViewSettings {
|
5070
5153
|
readonly "show-logistic-network"?: boolean
|
@@ -5157,7 +5240,7 @@ declare module "factorio:runtime" {
|
|
5157
5240
|
* - `"collision-selection-box"`: 189
|
5158
5241
|
* - `"arrow"`: 190
|
5159
5242
|
* - `"cursor"`: 226
|
5160
|
-
* @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}
|
5161
5244
|
*/
|
5162
5245
|
export type RenderLayer =
|
5163
5246
|
| `${bigint}`
|
@@ -5267,7 +5350,7 @@ declare module "factorio:runtime" {
|
|
5267
5350
|
* - `"entity-with-quality"`
|
5268
5351
|
* - `"recipe-with-quality"`
|
5269
5352
|
* - `"equipment-with-quality"`
|
5270
|
-
* @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}
|
5271
5354
|
*/
|
5272
5355
|
export type ElemType =
|
5273
5356
|
| "achievement"
|
@@ -5294,7 +5377,7 @@ declare module "factorio:runtime" {
|
|
5294
5377
|
* - `"left"`
|
5295
5378
|
* - `"right"`
|
5296
5379
|
* - `"none"`
|
5297
|
-
* @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}
|
5298
5381
|
*/
|
5299
5382
|
export type SwitchState = "left" | "right" | "none"
|
5300
5383
|
export interface ElemID {
|
@@ -5335,7 +5418,7 @@ declare module "factorio:runtime" {
|
|
5335
5418
|
* - `"destroy-decoratives"`
|
5336
5419
|
* - `"camera-effect"`
|
5337
5420
|
* - `"activate-impact"`
|
5338
|
-
* @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}
|
5339
5422
|
*/
|
5340
5423
|
export type TriggerEffectItemType =
|
5341
5424
|
| "damage"
|
@@ -5372,7 +5455,7 @@ declare module "factorio:runtime" {
|
|
5372
5455
|
}
|
5373
5456
|
/**
|
5374
5457
|
* A set of trigger target masks.
|
5375
|
-
* @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}
|
5376
5459
|
*/
|
5377
5460
|
export type TriggerTargetMask = Record<string, true>
|
5378
5461
|
export interface TriggerItem {
|
@@ -5439,7 +5522,7 @@ declare module "factorio:runtime" {
|
|
5439
5522
|
* -- If 'entity-description.furnace' exists, it is concatenated with "\n" and returned. Otherwise, if 'item-description.furnace'
|
5440
5523
|
* -- exists, it is returned as-is. Otherwise, "optional fallback" is returned. If this value wasn't specified, the
|
5441
5524
|
* -- translation result would be "Unknown key: 'item-description.furnace'".
|
5442
|
-
* @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}
|
5443
5526
|
*/
|
5444
5527
|
export type LocalisedString = string | number | boolean | LuaObject | nil | [string, ...LocalisedString[]]
|
5445
5528
|
export interface DisplayResolution {
|
@@ -5450,7 +5533,7 @@ declare module "factorio:runtime" {
|
|
5450
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".
|
5451
5534
|
*
|
5452
5535
|
* For example then, a value of `0.625` would indicate "south-west", and a value of `0.875` would indicate "north-west".
|
5453
|
-
* @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}
|
5454
5537
|
*/
|
5455
5538
|
export type RealOrientation = float
|
5456
5539
|
/**
|
@@ -5465,7 +5548,7 @@ declare module "factorio:runtime" {
|
|
5465
5548
|
* @example
|
5466
5549
|
* -- Shorthand
|
5467
5550
|
* {1.625, 2.375}
|
5468
|
-
* @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}
|
5469
5552
|
*/
|
5470
5553
|
export interface MapPosition {
|
5471
5554
|
readonly x: double
|
@@ -5474,13 +5557,13 @@ declare module "factorio:runtime" {
|
|
5474
5557
|
/**
|
5475
5558
|
* Array form of {@link MapPosition}.
|
5476
5559
|
* @see MapPosition
|
5477
|
-
* @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}
|
5478
5561
|
*/
|
5479
5562
|
export type MapPositionArray = readonly [double, double]
|
5480
5563
|
/**
|
5481
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.
|
5482
5565
|
* @see ChunkPositionArray
|
5483
|
-
* @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}
|
5484
5567
|
*/
|
5485
5568
|
export interface ChunkPosition {
|
5486
5569
|
readonly x: int
|
@@ -5489,13 +5572,13 @@ declare module "factorio:runtime" {
|
|
5489
5572
|
/**
|
5490
5573
|
* Array form of {@link ChunkPosition}.
|
5491
5574
|
* @see ChunkPosition
|
5492
|
-
* @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}
|
5493
5576
|
*/
|
5494
5577
|
export type ChunkPositionArray = readonly [int, int]
|
5495
5578
|
/**
|
5496
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.
|
5497
5580
|
* @see TilePositionArray
|
5498
|
-
* @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}
|
5499
5582
|
*/
|
5500
5583
|
export interface TilePosition {
|
5501
5584
|
readonly x: int
|
@@ -5504,7 +5587,7 @@ declare module "factorio:runtime" {
|
|
5504
5587
|
/**
|
5505
5588
|
* Array form of {@link TilePosition}.
|
5506
5589
|
* @see TilePosition
|
5507
|
-
* @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}
|
5508
5591
|
*/
|
5509
5592
|
export type TilePositionArray = readonly [int, int]
|
5510
5593
|
/**
|
@@ -5517,7 +5600,7 @@ declare module "factorio:runtime" {
|
|
5517
5600
|
* @example
|
5518
5601
|
* -- Shorthand
|
5519
5602
|
* {1, 2}
|
5520
|
-
* @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}
|
5521
5604
|
*/
|
5522
5605
|
export interface EquipmentPosition {
|
5523
5606
|
readonly x: int
|
@@ -5526,13 +5609,13 @@ declare module "factorio:runtime" {
|
|
5526
5609
|
/**
|
5527
5610
|
* Array form of {@link EquipmentPosition}.
|
5528
5611
|
* @see EquipmentPosition
|
5529
|
-
* @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}
|
5530
5613
|
*/
|
5531
5614
|
export type EquipmentPositionArray = readonly [int, int]
|
5532
5615
|
/**
|
5533
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.
|
5534
5617
|
* @see GuiLocationArray
|
5535
|
-
* @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}
|
5536
5619
|
*/
|
5537
5620
|
export interface GuiLocation {
|
5538
5621
|
readonly x: int
|
@@ -5541,12 +5624,12 @@ declare module "factorio:runtime" {
|
|
5541
5624
|
/**
|
5542
5625
|
* Array form of {@link GuiLocation}.
|
5543
5626
|
* @see GuiLocation
|
5544
|
-
* @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}
|
5545
5628
|
*/
|
5546
5629
|
export type GuiLocationArray = readonly [int, int]
|
5547
5630
|
/**
|
5548
5631
|
* A {@link ChunkPosition} with an added bounding box for the area of the chunk.
|
5549
|
-
* @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}
|
5550
5633
|
*/
|
5551
5634
|
export interface ChunkPositionAndArea {
|
5552
5635
|
readonly x: int
|
@@ -5555,7 +5638,7 @@ declare module "factorio:runtime" {
|
|
5555
5638
|
}
|
5556
5639
|
/**
|
5557
5640
|
* A table used to define a manual shape for a piece of equipment.
|
5558
|
-
* @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}
|
5559
5642
|
*/
|
5560
5643
|
export interface EquipmentPoint {
|
5561
5644
|
readonly x: uint
|
@@ -5591,7 +5674,7 @@ declare module "factorio:runtime" {
|
|
5591
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.
|
5592
5675
|
* @example
|
5593
5676
|
* {a = 1, b = true, c = "three", d = {e = "f"}}
|
5594
|
-
* @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}
|
5595
5678
|
*/
|
5596
5679
|
export type Tags = Record<string, AnyBasic>
|
5597
5680
|
export interface SurfaceCondition {
|
@@ -5625,13 +5708,13 @@ declare module "factorio:runtime" {
|
|
5625
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.
|
5626
5709
|
* @example
|
5627
5710
|
* right = {1.0, 0.0}
|
5628
|
-
* @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}
|
5629
5712
|
*/
|
5630
5713
|
export type Vector = MapPositionArray
|
5631
5714
|
/**
|
5632
5715
|
* An area defined using the map editor.
|
5633
5716
|
* @see ScriptAreaWrite
|
5634
|
-
* @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}
|
5635
5718
|
*/
|
5636
5719
|
export interface ScriptArea {
|
5637
5720
|
readonly area: BoundingBox
|
@@ -5641,7 +5724,7 @@ declare module "factorio:runtime" {
|
|
5641
5724
|
}
|
5642
5725
|
/**
|
5643
5726
|
* Write form of {@link ScriptArea}, where some properties allow additional values as input compared to the read form.
|
5644
|
-
* @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}
|
5645
5728
|
*/
|
5646
5729
|
export interface ScriptAreaWrite {
|
5647
5730
|
readonly area: BoundingBoxWrite | BoundingBoxArray
|
@@ -5652,7 +5735,7 @@ declare module "factorio:runtime" {
|
|
5652
5735
|
/**
|
5653
5736
|
* A position defined using the map editor.
|
5654
5737
|
* @see ScriptPositionWrite
|
5655
|
-
* @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}
|
5656
5739
|
*/
|
5657
5740
|
export interface ScriptPosition {
|
5658
5741
|
readonly position: MapPosition
|
@@ -5662,7 +5745,7 @@ declare module "factorio:runtime" {
|
|
5662
5745
|
}
|
5663
5746
|
/**
|
5664
5747
|
* Write form of {@link ScriptPosition}, where some properties allow additional values as input compared to the read form.
|
5665
|
-
* @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}
|
5666
5749
|
*/
|
5667
5750
|
export interface ScriptPositionWrite {
|
5668
5751
|
readonly position: MapPosition | MapPositionArray
|
@@ -5680,7 +5763,7 @@ declare module "factorio:runtime" {
|
|
5680
5763
|
* red2 = {r = 0.5, a = 0.5} -- Same color as red1
|
5681
5764
|
* black = {} -- All channels omitted: black
|
5682
5765
|
* red1_short = {0.5, 0, 0, 0.5} -- Same color as red1 in short-hand notation
|
5683
|
-
* @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}
|
5684
5767
|
*/
|
5685
5768
|
export interface Color {
|
5686
5769
|
readonly r?: float
|
@@ -5691,13 +5774,13 @@ declare module "factorio:runtime" {
|
|
5691
5774
|
/**
|
5692
5775
|
* Array form of {@link Color}.
|
5693
5776
|
* @see Color
|
5694
|
-
* @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}
|
5695
5778
|
*/
|
5696
5779
|
export type ColorArray = readonly [r: double, g: double, b: double, a?: double]
|
5697
5780
|
/**
|
5698
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].
|
5699
5782
|
* @see ColorModifierArray
|
5700
|
-
* @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}
|
5701
5784
|
*/
|
5702
5785
|
export interface ColorModifier {
|
5703
5786
|
readonly r?: float
|
@@ -5708,7 +5791,7 @@ declare module "factorio:runtime" {
|
|
5708
5791
|
/**
|
5709
5792
|
* Array form of {@link ColorModifier}.
|
5710
5793
|
* @see ColorModifier
|
5711
|
-
* @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}
|
5712
5795
|
*/
|
5713
5796
|
export type ColorModifierArray = readonly [r: double, g: double, b: double, a?: double]
|
5714
5797
|
export interface CraftingQueueItem {
|
@@ -5851,7 +5934,7 @@ declare module "factorio:runtime" {
|
|
5851
5934
|
}
|
5852
5935
|
/**
|
5853
5936
|
* @see AsteroidChunkWrite
|
5854
|
-
* @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}
|
5855
5938
|
*/
|
5856
5939
|
export interface AsteroidChunk {
|
5857
5940
|
/**
|
@@ -5863,7 +5946,7 @@ declare module "factorio:runtime" {
|
|
5863
5946
|
}
|
5864
5947
|
/**
|
5865
5948
|
* Write form of {@link AsteroidChunk}, where some properties allow additional values as input compared to the read form.
|
5866
|
-
* @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}
|
5867
5950
|
*/
|
5868
5951
|
export interface AsteroidChunkWrite {
|
5869
5952
|
/**
|
@@ -5885,7 +5968,7 @@ declare module "factorio:runtime" {
|
|
5885
5968
|
}
|
5886
5969
|
/**
|
5887
5970
|
* Either `icon`, `text`, or both must be provided.
|
5888
|
-
* @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}
|
5889
5972
|
*/
|
5890
5973
|
export interface ChartTagSpec {
|
5891
5974
|
readonly position: MapPosition | MapPositionArray
|
@@ -5895,93 +5978,93 @@ declare module "factorio:runtime" {
|
|
5895
5978
|
}
|
5896
5979
|
/**
|
5897
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.
|
5898
|
-
* @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}
|
5899
5982
|
*/
|
5900
5983
|
export interface GameViewSettings {
|
5901
5984
|
/**
|
5902
5985
|
* Show the controller GUI elements. This includes the toolbar, the selected tool slot, the armour slot, and the gun and ammunition slots.
|
5903
|
-
* @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}
|
5904
5987
|
*/
|
5905
5988
|
show_controller_gui: boolean
|
5906
5989
|
/**
|
5907
5990
|
* Show the chart in the upper right-hand corner of the screen.
|
5908
|
-
* @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}
|
5909
5992
|
*/
|
5910
5993
|
show_minimap: boolean
|
5911
5994
|
/**
|
5912
5995
|
* Show research progress and name in the upper right-hand corner of the screen.
|
5913
|
-
* @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}
|
5914
5997
|
*/
|
5915
5998
|
show_research_info: boolean
|
5916
5999
|
/**
|
5917
6000
|
* Show overlay icons on entities. Also known as "alt-mode".
|
5918
|
-
* @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}
|
5919
6002
|
*/
|
5920
6003
|
show_entity_info: boolean
|
5921
6004
|
/**
|
5922
6005
|
* Show the flashing alert icons next to the player's toolbar.
|
5923
|
-
* @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}
|
5924
6007
|
*/
|
5925
6008
|
show_alert_gui: boolean
|
5926
6009
|
/**
|
5927
6010
|
* When `true` (the default), mousing over an entity will select it. Otherwise, moving the mouse won't update entity selection.
|
5928
|
-
* @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}
|
5929
6012
|
*/
|
5930
6013
|
update_entity_selection: boolean
|
5931
6014
|
/**
|
5932
6015
|
* When `true` (`false` is default), the rails will always show the rail block visualisation.
|
5933
|
-
* @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}
|
5934
6017
|
*/
|
5935
6018
|
show_rail_block_visualisation: boolean
|
5936
6019
|
/**
|
5937
6020
|
* Shows or hides the buttons row.
|
5938
|
-
* @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}
|
5939
6022
|
*/
|
5940
6023
|
show_side_menu: boolean
|
5941
6024
|
/**
|
5942
6025
|
* Shows or hides the view options when map is opened.
|
5943
|
-
* @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}
|
5944
6027
|
*/
|
5945
6028
|
show_map_view_options: boolean
|
5946
6029
|
/**
|
5947
6030
|
* Shows or hides the tooltip that is displayed when selecting an entity.
|
5948
|
-
* @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}
|
5949
6032
|
*/
|
5950
6033
|
show_entity_tooltip: boolean
|
5951
6034
|
/**
|
5952
6035
|
* Shows or hides quickbar of shortcuts.
|
5953
|
-
* @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}
|
5954
6037
|
*/
|
5955
6038
|
show_quickbar: boolean
|
5956
6039
|
/**
|
5957
6040
|
* Shows or hides the shortcut bar.
|
5958
|
-
* @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}
|
5959
6042
|
*/
|
5960
6043
|
show_shortcut_bar: boolean
|
5961
6044
|
/**
|
5962
6045
|
* Shows or hides the crafting queue.
|
5963
|
-
* @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}
|
5964
6047
|
*/
|
5965
6048
|
show_crafting_queue: boolean
|
5966
6049
|
/**
|
5967
6050
|
* Shows or hides the tool window with the weapons and armor.
|
5968
|
-
* @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}
|
5969
6052
|
*/
|
5970
6053
|
show_tool_bar: boolean
|
5971
6054
|
/**
|
5972
6055
|
* Shows or hides the mouse and keyboard/controller button hints in the bottom left corner if they are enabled in the interface settings.
|
5973
|
-
* @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}
|
5974
6057
|
*/
|
5975
6058
|
show_hotkey_suggestions: boolean
|
5976
6059
|
/**
|
5977
6060
|
* Shows or hides the surface list while in Remote View.
|
5978
|
-
* @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}
|
5979
6062
|
*/
|
5980
6063
|
show_surface_list: boolean
|
5981
6064
|
}
|
5982
6065
|
/**
|
5983
6066
|
* The data that can be extracted from a map exchange string, as a plain table.
|
5984
|
-
* @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}
|
5985
6068
|
*/
|
5986
6069
|
export interface MapExchangeStringData {
|
5987
6070
|
readonly map_settings: MapAndDifficultySettings
|
@@ -5989,7 +6072,7 @@ declare module "factorio:runtime" {
|
|
5989
6072
|
}
|
5990
6073
|
/**
|
5991
6074
|
* @see BlueprintSignalIconWrite
|
5992
|
-
* @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}
|
5993
6076
|
*/
|
5994
6077
|
export interface BlueprintSignalIcon {
|
5995
6078
|
/**
|
@@ -6003,7 +6086,7 @@ declare module "factorio:runtime" {
|
|
6003
6086
|
}
|
6004
6087
|
/**
|
6005
6088
|
* Write form of {@link BlueprintSignalIcon}, where some properties allow additional values as input compared to the read form.
|
6006
|
-
* @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}
|
6007
6090
|
*/
|
6008
6091
|
export interface BlueprintSignalIconWrite {
|
6009
6092
|
/**
|
@@ -6032,12 +6115,12 @@ declare module "factorio:runtime" {
|
|
6032
6115
|
* - `target_entity_number`
|
6033
6116
|
*
|
6034
6117
|
* - `target_wire_connector_id`
|
6035
|
-
* @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}
|
6036
6119
|
*/
|
6037
6120
|
export type BlueprintWire = readonly [uint, defines.wire_connector_id, uint, defines.wire_connector_id]
|
6038
6121
|
/**
|
6039
6122
|
* @see TileWrite
|
6040
|
-
* @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}
|
6041
6124
|
*/
|
6042
6125
|
export interface Tile {
|
6043
6126
|
/**
|
@@ -6051,7 +6134,7 @@ declare module "factorio:runtime" {
|
|
6051
6134
|
}
|
6052
6135
|
/**
|
6053
6136
|
* Write form of {@link Tile}, where some properties allow additional values as input compared to the read form.
|
6054
|
-
* @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}
|
6055
6138
|
*/
|
6056
6139
|
export interface TileWrite {
|
6057
6140
|
/**
|
@@ -6106,7 +6189,7 @@ declare module "factorio:runtime" {
|
|
6106
6189
|
*
|
6107
6190
|
* Other attributes may be specified depending on `type`:
|
6108
6191
|
* - `"fluid"`: {@link FluidIngredient}
|
6109
|
-
* @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}
|
6110
6193
|
*/
|
6111
6194
|
export type Ingredient = FluidIngredient | OtherIngredient
|
6112
6195
|
export interface Loot {
|
@@ -6272,7 +6355,7 @@ declare module "factorio:runtime" {
|
|
6272
6355
|
* - `"unlock-recipe"`: {@link UnlockRecipeTechnologyModifier}
|
6273
6356
|
* - `"nothing"`: {@link NothingTechnologyModifier}
|
6274
6357
|
* - Other types: {@link OtherTechnologyModifier}
|
6275
|
-
* @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}
|
6276
6359
|
*/
|
6277
6360
|
export type TechnologyModifier =
|
6278
6361
|
| GunSpeedTechnologyModifier
|
@@ -6284,7 +6367,7 @@ declare module "factorio:runtime" {
|
|
6284
6367
|
| OtherTechnologyModifier
|
6285
6368
|
/**
|
6286
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}.
|
6287
|
-
* @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}
|
6288
6371
|
*/
|
6289
6372
|
export interface NoiseExpression {
|
6290
6373
|
/**
|
@@ -6337,7 +6420,7 @@ declare module "factorio:runtime" {
|
|
6337
6420
|
* - `"very-high"`: equivalent to `2`.
|
6338
6421
|
* - `"very-big"`: equivalent to `2`.
|
6339
6422
|
* - `"very-good"`: equivalent to `2`.
|
6340
|
-
* @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}
|
6341
6424
|
*/
|
6342
6425
|
export type MapGenSize =
|
6343
6426
|
| float
|
@@ -6359,7 +6442,7 @@ declare module "factorio:runtime" {
|
|
6359
6442
|
| "very-good"
|
6360
6443
|
/**
|
6361
6444
|
* @see AutoplaceControlWrite
|
6362
|
-
* @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}
|
6363
6446
|
*/
|
6364
6447
|
export interface AutoplaceControl {
|
6365
6448
|
/**
|
@@ -6377,7 +6460,7 @@ declare module "factorio:runtime" {
|
|
6377
6460
|
}
|
6378
6461
|
/**
|
6379
6462
|
* Write form of {@link AutoplaceControl}, where some properties allow additional values as input compared to the read form.
|
6380
|
-
* @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}
|
6381
6464
|
*/
|
6382
6465
|
export interface AutoplaceControlWrite {
|
6383
6466
|
/**
|
@@ -6396,10 +6479,10 @@ declare module "factorio:runtime" {
|
|
6396
6479
|
/**
|
6397
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}`.
|
6398
6481
|
*
|
6399
|
-
* {@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:}
|
6400
6483
|
*
|
6401
|
-
* {@link https://lua-api.factorio.com/2.0.
|
6402
|
-
* @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}
|
6403
6486
|
*/
|
6404
6487
|
export type PropertyExpressionNames = Record<string, string>
|
6405
6488
|
export interface AdvancedMapGenSettings {
|
@@ -6422,7 +6505,7 @@ declare module "factorio:runtime" {
|
|
6422
6505
|
}
|
6423
6506
|
/**
|
6424
6507
|
* An actual signal transmitted by the network.
|
6425
|
-
* @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}
|
6426
6509
|
*/
|
6427
6510
|
export interface Signal {
|
6428
6511
|
/**
|
@@ -6436,7 +6519,7 @@ declare module "factorio:runtime" {
|
|
6436
6519
|
}
|
6437
6520
|
/**
|
6438
6521
|
* @see UpgradeMapperSourceWrite
|
6439
|
-
* @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}
|
6440
6523
|
*/
|
6441
6524
|
export interface UpgradeMapperSource {
|
6442
6525
|
readonly type: "item" | "entity"
|
@@ -6455,7 +6538,7 @@ declare module "factorio:runtime" {
|
|
6455
6538
|
}
|
6456
6539
|
/**
|
6457
6540
|
* Write form of {@link UpgradeMapperSource}, where some properties allow additional values as input compared to the read form.
|
6458
|
-
* @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}
|
6459
6542
|
*/
|
6460
6543
|
export interface UpgradeMapperSourceWrite {
|
6461
6544
|
readonly type: "item" | "entity"
|
@@ -6492,7 +6575,7 @@ declare module "factorio:runtime" {
|
|
6492
6575
|
}
|
6493
6576
|
/**
|
6494
6577
|
* A single filter used by an infinity-filters instance.
|
6495
|
-
* @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}
|
6496
6579
|
*/
|
6497
6580
|
export interface InfinityInventoryFilter {
|
6498
6581
|
/**
|
@@ -6514,7 +6597,7 @@ declare module "factorio:runtime" {
|
|
6514
6597
|
}
|
6515
6598
|
/**
|
6516
6599
|
* A single filter used by an infinity-pipe type entity.
|
6517
|
-
* @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}
|
6518
6601
|
*/
|
6519
6602
|
export interface InfinityPipeFilter {
|
6520
6603
|
/**
|
@@ -6568,7 +6651,7 @@ declare module "factorio:runtime" {
|
|
6568
6651
|
}
|
6569
6652
|
/**
|
6570
6653
|
* The settings used by a heat-interface type entity.
|
6571
|
-
* @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}
|
6572
6655
|
*/
|
6573
6656
|
export interface HeatSetting {
|
6574
6657
|
/**
|
@@ -6586,7 +6669,7 @@ declare module "factorio:runtime" {
|
|
6586
6669
|
}
|
6587
6670
|
/**
|
6588
6671
|
* @see ArithmeticCombinatorParametersWrite
|
6589
|
-
* @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}
|
6590
6673
|
*/
|
6591
6674
|
export interface ArithmeticCombinatorParameters {
|
6592
6675
|
/**
|
@@ -6616,7 +6699,7 @@ declare module "factorio:runtime" {
|
|
6616
6699
|
}
|
6617
6700
|
/**
|
6618
6701
|
* Write form of {@link ArithmeticCombinatorParameters}, where some properties allow additional values as input compared to the read form.
|
6619
|
-
* @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}
|
6620
6703
|
*/
|
6621
6704
|
export interface ArithmeticCombinatorParametersWrite {
|
6622
6705
|
/**
|
@@ -6646,7 +6729,7 @@ declare module "factorio:runtime" {
|
|
6646
6729
|
}
|
6647
6730
|
/**
|
6648
6731
|
* @see SelectorCombinatorParametersWrite
|
6649
|
-
* @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}
|
6650
6733
|
*/
|
6651
6734
|
export interface SelectorCombinatorParameters {
|
6652
6735
|
/**
|
@@ -6672,7 +6755,7 @@ declare module "factorio:runtime" {
|
|
6672
6755
|
}
|
6673
6756
|
/**
|
6674
6757
|
* Write form of {@link SelectorCombinatorParameters}, where some properties allow additional values as input compared to the read form.
|
6675
|
-
* @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}
|
6676
6759
|
*/
|
6677
6760
|
export interface SelectorCombinatorParametersWrite {
|
6678
6761
|
/**
|
@@ -6714,7 +6797,7 @@ declare module "factorio:runtime" {
|
|
6714
6797
|
}
|
6715
6798
|
/**
|
6716
6799
|
* @see CircuitConditionWrite
|
6717
|
-
* @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}
|
6718
6801
|
*/
|
6719
6802
|
export interface CircuitCondition {
|
6720
6803
|
/**
|
@@ -6736,7 +6819,7 @@ declare module "factorio:runtime" {
|
|
6736
6819
|
}
|
6737
6820
|
/**
|
6738
6821
|
* Write form of {@link CircuitCondition}, where some properties allow additional values as input compared to the read form.
|
6739
|
-
* @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}
|
6740
6823
|
*/
|
6741
6824
|
export interface CircuitConditionWrite {
|
6742
6825
|
/**
|
@@ -6758,7 +6841,7 @@ declare module "factorio:runtime" {
|
|
6758
6841
|
}
|
6759
6842
|
/**
|
6760
6843
|
* @see CircuitConditionDefinitionWrite
|
6761
|
-
* @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}
|
6762
6845
|
*/
|
6763
6846
|
export interface CircuitConditionDefinition {
|
6764
6847
|
/**
|
@@ -6772,7 +6855,7 @@ declare module "factorio:runtime" {
|
|
6772
6855
|
}
|
6773
6856
|
/**
|
6774
6857
|
* Write form of {@link CircuitConditionDefinition}, where some properties allow additional values as input compared to the read form.
|
6775
|
-
* @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}
|
6776
6859
|
*/
|
6777
6860
|
export interface CircuitConditionDefinitionWrite {
|
6778
6861
|
/**
|
@@ -7047,7 +7130,7 @@ declare module "factorio:runtime" {
|
|
7047
7130
|
* - {@link defines.command.stop}: {@link StopCommand}
|
7048
7131
|
* - {@link defines.command.flee}: {@link FleeCommand}
|
7049
7132
|
* - {@link defines.command.build_base}: {@link BuildBaseCommand}
|
7050
|
-
* @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}
|
7051
7134
|
*/
|
7052
7135
|
export type Command =
|
7053
7136
|
| AttackCommand
|
@@ -7061,7 +7144,7 @@ declare module "factorio:runtime" {
|
|
7061
7144
|
| BuildBaseCommand
|
7062
7145
|
/**
|
7063
7146
|
* Write form of {@link Command}, where some properties allow additional values as input compared to the read form.
|
7064
|
-
* @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}
|
7065
7148
|
*/
|
7066
7149
|
export type CommandWrite =
|
7067
7150
|
| AttackCommand
|
@@ -7146,7 +7229,7 @@ declare module "factorio:runtime" {
|
|
7146
7229
|
* These are both full stacks of iron plates (for iron-plate, a full stack is 100 plates)
|
7147
7230
|
* "iron-plate"
|
7148
7231
|
* {name="iron-plate", count=100}
|
7149
|
-
* @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}
|
7150
7233
|
*/
|
7151
7234
|
export type SimpleItemStack = string | ItemStackDefinition
|
7152
7235
|
/**
|
@@ -7156,7 +7239,7 @@ declare module "factorio:runtime" {
|
|
7156
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.
|
7157
7240
|
* - `string`: It will be the surface name. E.g. `"nauvis"`.
|
7158
7241
|
* - {@link LuaSurface}: A reference to {@link LuaSurface} may be passed directly.
|
7159
|
-
* @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}
|
7160
7243
|
*/
|
7161
7244
|
export type SurfaceIdentification = SurfaceIndex | string | LuaSurface
|
7162
7245
|
/**
|
@@ -7166,7 +7249,7 @@ declare module "factorio:runtime" {
|
|
7166
7249
|
* - PlayerIndex: The player index.
|
7167
7250
|
* - `string`: The player name.
|
7168
7251
|
* - {@link LuaPlayer}: A reference to {@link LuaPlayer} may be passed directly.
|
7169
|
-
* @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}
|
7170
7253
|
*/
|
7171
7254
|
export type PlayerIdentification = PlayerIndex | string | LuaPlayer
|
7172
7255
|
/**
|
@@ -7175,7 +7258,7 @@ declare module "factorio:runtime" {
|
|
7175
7258
|
* ## Union members
|
7176
7259
|
* - {@link SimpleItemStack}
|
7177
7260
|
* - {@link LuaItemStack}
|
7178
|
-
* @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}
|
7179
7262
|
*/
|
7180
7263
|
export type ItemStackIdentification = SimpleItemStack | LuaItemStack
|
7181
7264
|
/**
|
@@ -7185,7 +7268,7 @@ declare module "factorio:runtime" {
|
|
7185
7268
|
* - `"entity"`: Fires at an entity.
|
7186
7269
|
* - `"position"`: Fires directly at a position.
|
7187
7270
|
* - `"direction"`: Fires in a direction.
|
7188
|
-
* @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}
|
7189
7272
|
*/
|
7190
7273
|
export type TargetType = "entity" | "position" | "direction"
|
7191
7274
|
export interface BeamTarget {
|
@@ -7222,8 +7305,8 @@ declare module "factorio:runtime" {
|
|
7222
7305
|
*
|
7223
7306
|
* The validity of a SoundPath can be verified at runtime using {@link LuaHelpers#is_valid_sound_path LuaHelpers::is_valid_sound_path}.
|
7224
7307
|
*
|
7225
|
-
* {@link https://lua-api.factorio.com/2.0.
|
7226
|
-
* @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}
|
7227
7310
|
*/
|
7228
7311
|
export type SoundPath = (string & { _?: never }) | `${SoundCategory}/${string}`
|
7229
7312
|
export interface CircularParticleCreationSpecification {
|
@@ -7355,7 +7438,7 @@ declare module "factorio:runtime" {
|
|
7355
7438
|
* Other attributes may be specified depending on `type`:
|
7356
7439
|
* - `"projectile"`: {@link ProjectileAttackParameters}
|
7357
7440
|
* - `"stream"`: {@link StreamAttackParameters}
|
7358
|
-
* @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}
|
7359
7442
|
*/
|
7360
7443
|
export type AttackParameters = ProjectileAttackParameters | StreamAttackParameters | OtherAttackParameters
|
7361
7444
|
export interface GunShift4Way {
|
@@ -7421,7 +7504,7 @@ declare module "factorio:runtime" {
|
|
7421
7504
|
* - `"use-on-self"`: {@link UseOnSelfCapsuleAction}
|
7422
7505
|
* - `"artillery-remote"`: {@link ArtilleryRemoteCapsuleAction}
|
7423
7506
|
* - `"destroy-cliffs"`: {@link DestroyCliffsCapsuleAction}
|
7424
|
-
* @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}
|
7425
7508
|
*/
|
7426
7509
|
export type CapsuleAction =
|
7427
7510
|
| ThrowCapsuleAction
|
@@ -7461,12 +7544,12 @@ declare module "factorio:runtime" {
|
|
7461
7544
|
}
|
7462
7545
|
/**
|
7463
7546
|
* Any basic type (string, number, boolean) or table.
|
7464
|
-
* @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}
|
7465
7548
|
*/
|
7466
7549
|
export type AnyBasic = string | boolean | number | table
|
7467
7550
|
/**
|
7468
7551
|
* Any basic type (string, number, boolean), table, or LuaObject.
|
7469
|
-
* @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}
|
7470
7553
|
*/
|
7471
7554
|
export type Any = string | boolean | number | table | LuaObject
|
7472
7555
|
export interface ProgrammableSpeakerParameters {
|
@@ -7476,7 +7559,7 @@ declare module "factorio:runtime" {
|
|
7476
7559
|
}
|
7477
7560
|
/**
|
7478
7561
|
* @see ProgrammableSpeakerAlertParametersWrite
|
7479
|
-
* @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}
|
7480
7563
|
*/
|
7481
7564
|
export interface ProgrammableSpeakerAlertParameters {
|
7482
7565
|
readonly show_alert: boolean
|
@@ -7486,7 +7569,7 @@ declare module "factorio:runtime" {
|
|
7486
7569
|
}
|
7487
7570
|
/**
|
7488
7571
|
* Write form of {@link ProgrammableSpeakerAlertParameters}, where some properties allow additional values as input compared to the read form.
|
7489
|
-
* @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}
|
7490
7573
|
*/
|
7491
7574
|
export interface ProgrammableSpeakerAlertParametersWrite {
|
7492
7575
|
readonly show_alert: boolean
|
@@ -7518,7 +7601,7 @@ declare module "factorio:runtime" {
|
|
7518
7601
|
* - `"top-right"`
|
7519
7602
|
* - `"right"`: The same as `"middle-right"`
|
7520
7603
|
* - `"bottom-right"`
|
7521
|
-
* @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}
|
7522
7605
|
*/
|
7523
7606
|
export type Alignment =
|
7524
7607
|
| "top-left"
|
@@ -7551,8 +7634,8 @@ declare module "factorio:runtime" {
|
|
7551
7634
|
_customEventIdBrand: any
|
7552
7635
|
}
|
7553
7636
|
/**
|
7554
|
-
* 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.
|
7555
|
-
* @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}
|
7556
7639
|
*/
|
7557
7640
|
export interface EventData {
|
7558
7641
|
/**
|
@@ -7661,7 +7744,7 @@ declare module "factorio:runtime" {
|
|
7661
7744
|
* - `"button-7"`
|
7662
7745
|
* - `"button-8"`
|
7663
7746
|
* - `"button-9"`
|
7664
|
-
* @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}
|
7665
7748
|
*/
|
7666
7749
|
export interface MouseButtonFlags {
|
7667
7750
|
readonly left?: true
|
@@ -7684,7 +7767,7 @@ declare module "factorio:runtime" {
|
|
7684
7767
|
* - `"not-friend"`: Forces which are not friends pass.
|
7685
7768
|
* - `"same"`: The same force pass.
|
7686
7769
|
* - `"not-same"`: The non-same forces pass.
|
7687
|
-
* @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}
|
7688
7771
|
*/
|
7689
7772
|
export type ForceCondition = "all" | "enemy" | "ally" | "friend" | "not-friend" | "same" | "not-same"
|
7690
7773
|
export interface ItemStackLocation {
|
@@ -7722,7 +7805,7 @@ declare module "factorio:runtime" {
|
|
7722
7805
|
* - `"tabbed-pane"`: A collection of `tab`s and their contents. Relevant event: {@link OnGuiSelectedTabChangedEvent on_gui_selected_tab_changed}
|
7723
7806
|
* - `"tab"`: A tab for use in a `tabbed-pane`.
|
7724
7807
|
* - `"switch"`: A switch with three possible states. Can have labels attached to either side. Relevant event: {@link OnGuiSwitchStateChangedEvent on_gui_switch_state_changed}
|
7725
|
-
* @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}
|
7726
7809
|
*/
|
7727
7810
|
export type GuiElementType =
|
7728
7811
|
| "button"
|
@@ -7762,7 +7845,7 @@ declare module "factorio:runtime" {
|
|
7762
7845
|
* - `"position"`
|
7763
7846
|
* - `"crafting_queue"`
|
7764
7847
|
* - `"item_stack"`: Will point to a given item stack in an inventory.
|
7765
|
-
* @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}
|
7766
7849
|
*/
|
7767
7850
|
export type GuiArrowType =
|
7768
7851
|
| "nowhere"
|
@@ -7779,7 +7862,7 @@ declare module "factorio:runtime" {
|
|
7779
7862
|
* ## Union members
|
7780
7863
|
* - `"horizontal"`
|
7781
7864
|
* - `"vertical"`
|
7782
|
-
* @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}
|
7783
7866
|
*/
|
7784
7867
|
export type GuiDirection = "horizontal" | "vertical"
|
7785
7868
|
/**
|
@@ -7791,7 +7874,7 @@ declare module "factorio:runtime" {
|
|
7791
7874
|
* - `"always"`
|
7792
7875
|
* - `"auto"`
|
7793
7876
|
* - `"auto-and-reserve-space"`
|
7794
|
-
* @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}
|
7795
7878
|
*/
|
7796
7879
|
export type ScrollPolicy = "never" | "dont-show-but-allow-scrolling" | "always" | "auto" | "auto-and-reserve-space"
|
7797
7880
|
export interface RailLocation {
|
@@ -7808,71 +7891,71 @@ declare module "factorio:runtime" {
|
|
7808
7891
|
}
|
7809
7892
|
/**
|
7810
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.
|
7811
|
-
* @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}
|
7812
7895
|
*/
|
7813
7896
|
export type float = number
|
7814
7897
|
/**
|
7815
7898
|
* A double-precision floating-point number. This is the same data type as all Lua numbers use.
|
7816
|
-
* @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}
|
7817
7900
|
*/
|
7818
7901
|
export type double = number
|
7819
7902
|
/**
|
7820
7903
|
* 32-bit signed integer. Possible values are `-2 147 483 648` to `2 147 483 647`.
|
7821
7904
|
*
|
7822
7905
|
* Since Lua 5.2 only uses doubles, any API that asks for `int` will floor the given double.
|
7823
|
-
* @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}
|
7824
7907
|
*/
|
7825
7908
|
export type int = number
|
7826
7909
|
/**
|
7827
7910
|
* 8-bit signed integer. Possible values are `-128` to `127`.
|
7828
7911
|
*
|
7829
7912
|
* Since Lua 5.2 only uses doubles, any API that asks for `int8` will floor the given double.
|
7830
|
-
* @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}
|
7831
7914
|
*/
|
7832
7915
|
export type int8 = number
|
7833
7916
|
/**
|
7834
7917
|
* 32-bit unsigned integer. Possible values are `0` to `4 294 967 295`.
|
7835
7918
|
*
|
7836
7919
|
* Since Lua 5.2 only uses doubles, any API that asks for `uint` will floor the given double.
|
7837
|
-
* @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}
|
7838
7921
|
*/
|
7839
7922
|
export type uint = number
|
7840
7923
|
/**
|
7841
7924
|
* 8-bit unsigned integer. Possible values are `0` to `255`.
|
7842
7925
|
*
|
7843
7926
|
* Since Lua 5.2 only uses doubles, any API that asks for `uint8` will floor the given double.
|
7844
|
-
* @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}
|
7845
7928
|
*/
|
7846
7929
|
export type uint8 = number
|
7847
7930
|
/**
|
7848
7931
|
* 16-bit unsigned integer. Possible values are `0` to `65 535`.
|
7849
7932
|
*
|
7850
7933
|
* Since Lua 5.2 only uses doubles, any API that asks for `uint16` will floor the given double.
|
7851
|
-
* @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}
|
7852
7935
|
*/
|
7853
7936
|
export type uint16 = number
|
7854
7937
|
/**
|
7855
7938
|
* 64-bit unsigned integer. Possible values are `0` to `18 446 744 073 709 551 615`.
|
7856
7939
|
*
|
7857
7940
|
* Since Lua 5.2 only uses doubles, any API that asks for `uint64` will floor the given double.
|
7858
|
-
* @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}
|
7859
7942
|
*/
|
7860
7943
|
export type uint64 = number
|
7861
7944
|
/**
|
7862
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.
|
7863
|
-
* @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}
|
7864
7947
|
*/
|
7865
7948
|
export type nil = undefined
|
7866
7949
|
/**
|
7867
7950
|
* Tables are enclosed in curly brackets, like this `{}`.
|
7868
7951
|
*
|
7869
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.
|
7870
|
-
* @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}
|
7871
7954
|
*/
|
7872
7955
|
export type table = object
|
7873
7956
|
/**
|
7874
|
-
* Any LuaObject listed on the {@linkplain https://lua-api.factorio.com/2.0.
|
7875
|
-
* @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}
|
7876
7959
|
*/
|
7877
7960
|
export interface LuaObject {
|
7878
7961
|
readonly object_name: string
|
@@ -7931,7 +8014,7 @@ declare module "factorio:runtime" {
|
|
7931
8014
|
* - `"type"`: {@link TypeModSettingPrototypeFilter}
|
7932
8015
|
* - `"mod"`: {@link ModModSettingPrototypeFilter}
|
7933
8016
|
* - `"setting-type"`: {@link SettingTypeModSettingPrototypeFilter}
|
7934
|
-
* @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}
|
7935
8018
|
*/
|
7936
8019
|
export type ModSettingPrototypeFilter =
|
7937
8020
|
| TypeModSettingPrototypeFilter
|
@@ -8076,7 +8159,7 @@ declare module "factorio:runtime" {
|
|
8076
8159
|
* - `"vehicle-friction-modifier"`: {@link VehicleFrictionModifierTilePrototypeFilter}
|
8077
8160
|
* - `"decorative-removal-probability"`: {@link DecorativeRemovalProbabilityTilePrototypeFilter}
|
8078
8161
|
* - `"absorptions-per-second"`: {@link AbsorptionsPerSecondTilePrototypeFilter}
|
8079
|
-
* @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}
|
8080
8163
|
*/
|
8081
8164
|
export type TilePrototypeFilter =
|
8082
8165
|
| CollisionMaskTilePrototypeFilter
|
@@ -8087,7 +8170,7 @@ declare module "factorio:runtime" {
|
|
8087
8170
|
| OtherTilePrototypeFilter
|
8088
8171
|
/**
|
8089
8172
|
* Write form of {@link TilePrototypeFilter}, where some properties allow additional values as input compared to the read form.
|
8090
|
-
* @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}
|
8091
8174
|
*/
|
8092
8175
|
export type TilePrototypeFilterWrite =
|
8093
8176
|
| CollisionMaskTilePrototypeFilter
|
@@ -8138,7 +8221,7 @@ declare module "factorio:runtime" {
|
|
8138
8221
|
*
|
8139
8222
|
* Other attributes may be specified depending on `filter`:
|
8140
8223
|
* - `"collision-mask"`: {@link CollisionMaskDecorativePrototypeFilter}
|
8141
|
-
* @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}
|
8142
8225
|
*/
|
8143
8226
|
export type DecorativePrototypeFilter = CollisionMaskDecorativePrototypeFilter | OtherDecorativePrototypeFilter
|
8144
8227
|
/**
|
@@ -8392,7 +8475,7 @@ declare module "factorio:runtime" {
|
|
8392
8475
|
* - `"emissions-multiplier"`: {@link EmissionsMultiplierRecipePrototypeFilter}
|
8393
8476
|
* - `"request-paste-multiplier"`: {@link RequestPasteMultiplierRecipePrototypeFilter}
|
8394
8477
|
* - `"overload-multiplier"`: {@link OverloadMultiplierRecipePrototypeFilter}
|
8395
|
-
* @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}
|
8396
8479
|
*/
|
8397
8480
|
export type RecipePrototypeFilter =
|
8398
8481
|
| HasIngredientItemRecipePrototypeFilter
|
@@ -8408,7 +8491,7 @@ declare module "factorio:runtime" {
|
|
8408
8491
|
| OtherRecipePrototypeFilter
|
8409
8492
|
/**
|
8410
8493
|
* Write form of {@link RecipePrototypeFilter}, where some properties allow additional values as input compared to the read form.
|
8411
|
-
* @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}
|
8412
8495
|
*/
|
8413
8496
|
export type RecipePrototypeFilterWrite =
|
8414
8497
|
| HasIngredientItemRecipePrototypeFilterWrite
|
@@ -8460,7 +8543,7 @@ declare module "factorio:runtime" {
|
|
8460
8543
|
*
|
8461
8544
|
* Other attributes may be specified depending on `filter`:
|
8462
8545
|
* - `"type"`: {@link TypeAchievementPrototypeFilter}
|
8463
|
-
* @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}
|
8464
8547
|
*/
|
8465
8548
|
export type AchievementPrototypeFilter = TypeAchievementPrototypeFilter | OtherAchievementPrototypeFilter
|
8466
8549
|
/**
|
@@ -8583,7 +8666,7 @@ declare module "factorio:runtime" {
|
|
8583
8666
|
* - `"level"`: {@link LevelTechnologyPrototypeFilter}
|
8584
8667
|
* - `"max-level"`: {@link MaxLevelTechnologyPrototypeFilter}
|
8585
8668
|
* - `"time"`: {@link TimeTechnologyPrototypeFilter}
|
8586
|
-
* @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}
|
8587
8670
|
*/
|
8588
8671
|
export type TechnologyPrototypeFilter =
|
8589
8672
|
| ResearchUnitIngredientTechnologyPrototypeFilter
|
@@ -8594,7 +8677,7 @@ declare module "factorio:runtime" {
|
|
8594
8677
|
| OtherTechnologyPrototypeFilter
|
8595
8678
|
/**
|
8596
8679
|
* Write form of {@link TechnologyPrototypeFilter}, where some properties allow additional values as input compared to the read form.
|
8597
|
-
* @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}
|
8598
8681
|
*/
|
8599
8682
|
export type TechnologyPrototypeFilterWrite =
|
8600
8683
|
| ResearchUnitIngredientTechnologyPrototypeFilter
|
@@ -8911,7 +8994,7 @@ declare module "factorio:runtime" {
|
|
8911
8994
|
* - `"fuel-acceleration-multiplier"`: {@link FuelAccelerationMultiplierItemPrototypeFilter}
|
8912
8995
|
* - `"fuel-top-speed-multiplier"`: {@link FuelTopSpeedMultiplierItemPrototypeFilter}
|
8913
8996
|
* - `"fuel-emissions-multiplier"`: {@link FuelEmissionsMultiplierItemPrototypeFilter}
|
8914
|
-
* @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}
|
8915
8998
|
*/
|
8916
8999
|
export type ItemPrototypeFilter =
|
8917
9000
|
| PlaceResultItemPrototypeFilter
|
@@ -8931,7 +9014,7 @@ declare module "factorio:runtime" {
|
|
8931
9014
|
| OtherItemPrototypeFilter
|
8932
9015
|
/**
|
8933
9016
|
* Write form of {@link ItemPrototypeFilter}, where some properties allow additional values as input compared to the read form.
|
8934
|
-
* @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}
|
8935
9018
|
*/
|
8936
9019
|
export type ItemPrototypeFilterWrite =
|
8937
9020
|
| PlaceResultItemPrototypeFilterWrite
|
@@ -8987,7 +9070,7 @@ declare module "factorio:runtime" {
|
|
8987
9070
|
*
|
8988
9071
|
* Other attributes may be specified depending on `filter`:
|
8989
9072
|
* - `"type"`: {@link TypeEquipmentPrototypeFilter}
|
8990
|
-
* @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}
|
8991
9074
|
*/
|
8992
9075
|
export type EquipmentPrototypeFilter = TypeEquipmentPrototypeFilter | OtherEquipmentPrototypeFilter
|
8993
9076
|
/**
|
@@ -9218,7 +9301,7 @@ declare module "factorio:runtime" {
|
|
9218
9301
|
* - `"selection-priority"`: {@link SelectionPriorityEntityPrototypeFilter}
|
9219
9302
|
* - `"emissions-per-second"`: {@link EmissionsPerSecondEntityPrototypeFilter}
|
9220
9303
|
* - `"crafting-category"`: {@link CraftingCategoryEntityPrototypeFilter}
|
9221
|
-
* @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}
|
9222
9305
|
*/
|
9223
9306
|
export type EntityPrototypeFilter =
|
9224
9307
|
| NameEntityPrototypeFilter
|
@@ -9232,7 +9315,7 @@ declare module "factorio:runtime" {
|
|
9232
9315
|
| OtherEntityPrototypeFilter
|
9233
9316
|
/**
|
9234
9317
|
* Write form of {@link EntityPrototypeFilter}, where some properties allow additional values as input compared to the read form.
|
9235
|
-
* @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}
|
9236
9319
|
*/
|
9237
9320
|
export type EntityPrototypeFilterWrite =
|
9238
9321
|
| NameEntityPrototypeFilter
|
@@ -9302,7 +9385,7 @@ declare module "factorio:runtime" {
|
|
9302
9385
|
* Other attributes may be specified depending on `filter`:
|
9303
9386
|
* - `"type"`: {@link TypeSpaceLocationPrototypeFilter}
|
9304
9387
|
* - `"solar-power-in-space"`: {@link SolarPowerInSpaceSpaceLocationPrototypeFilter}
|
9305
|
-
* @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}
|
9306
9389
|
*/
|
9307
9390
|
export type SpaceLocationPrototypeFilter =
|
9308
9391
|
| TypeSpaceLocationPrototypeFilter
|
@@ -9310,7 +9393,7 @@ declare module "factorio:runtime" {
|
|
9310
9393
|
| OtherSpaceLocationPrototypeFilter
|
9311
9394
|
/**
|
9312
9395
|
* Write form of {@link SpaceLocationPrototypeFilter}, where some properties allow additional values as input compared to the read form.
|
9313
|
-
* @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}
|
9314
9397
|
*/
|
9315
9398
|
export type SpaceLocationPrototypeFilterWrite =
|
9316
9399
|
| TypeSpaceLocationPrototypeFilter
|
@@ -9498,7 +9581,7 @@ declare module "factorio:runtime" {
|
|
9498
9581
|
* - `"fuel-value"`: {@link FuelValueFluidPrototypeFilter}
|
9499
9582
|
* - `"emissions-multiplier"`: {@link EmissionsMultiplierFluidPrototypeFilter}
|
9500
9583
|
* - `"gas-temperature"`: {@link GasTemperatureFluidPrototypeFilter}
|
9501
|
-
* @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}
|
9502
9585
|
*/
|
9503
9586
|
export type FluidPrototypeFilter =
|
9504
9587
|
| NameFluidPrototypeFilter
|
@@ -9512,7 +9595,7 @@ declare module "factorio:runtime" {
|
|
9512
9595
|
| OtherFluidPrototypeFilter
|
9513
9596
|
/**
|
9514
9597
|
* Write form of {@link FluidPrototypeFilter}, where some properties allow additional values as input compared to the read form.
|
9515
|
-
* @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}
|
9516
9599
|
*/
|
9517
9600
|
export type FluidPrototypeFilterWrite =
|
9518
9601
|
| NameFluidPrototypeFilter
|
@@ -9621,7 +9704,7 @@ declare module "factorio:runtime" {
|
|
9621
9704
|
* - `"name"`: {@link NamePrePlatformMinedEntityEventFilter}
|
9622
9705
|
* - `"ghost_type"`: {@link GhostTypePrePlatformMinedEntityEventFilter}
|
9623
9706
|
* - `"ghost_name"`: {@link GhostNamePrePlatformMinedEntityEventFilter}
|
9624
|
-
* @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}
|
9625
9708
|
*/
|
9626
9709
|
export type LuaPrePlatformMinedEntityEventFilter =
|
9627
9710
|
| TypePrePlatformMinedEntityEventFilter
|
@@ -9726,7 +9809,7 @@ declare module "factorio:runtime" {
|
|
9726
9809
|
* - `"name"`: {@link NameRobotMinedEntityEventFilter}
|
9727
9810
|
* - `"ghost_type"`: {@link GhostTypeRobotMinedEntityEventFilter}
|
9728
9811
|
* - `"ghost_name"`: {@link GhostNameRobotMinedEntityEventFilter}
|
9729
|
-
* @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}
|
9730
9813
|
*/
|
9731
9814
|
export type LuaRobotMinedEntityEventFilter =
|
9732
9815
|
| TypeRobotMinedEntityEventFilter
|
@@ -9831,7 +9914,7 @@ declare module "factorio:runtime" {
|
|
9831
9914
|
* - `"name"`: {@link NameEntityMarkedForUpgradeEventFilter}
|
9832
9915
|
* - `"ghost_type"`: {@link GhostTypeEntityMarkedForUpgradeEventFilter}
|
9833
9916
|
* - `"ghost_name"`: {@link GhostNameEntityMarkedForUpgradeEventFilter}
|
9834
|
-
* @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}
|
9835
9918
|
*/
|
9836
9919
|
export type LuaEntityMarkedForUpgradeEventFilter =
|
9837
9920
|
| TypeEntityMarkedForUpgradeEventFilter
|
@@ -9936,7 +10019,7 @@ declare module "factorio:runtime" {
|
|
9936
10019
|
* - `"name"`: {@link NamePreGhostUpgradedEventFilter}
|
9937
10020
|
* - `"ghost_type"`: {@link GhostTypePreGhostUpgradedEventFilter}
|
9938
10021
|
* - `"ghost_name"`: {@link GhostNamePreGhostUpgradedEventFilter}
|
9939
|
-
* @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}
|
9940
10023
|
*/
|
9941
10024
|
export type LuaPreGhostUpgradedEventFilter =
|
9942
10025
|
| TypePreGhostUpgradedEventFilter
|
@@ -10041,7 +10124,7 @@ declare module "factorio:runtime" {
|
|
10041
10124
|
* - `"name"`: {@link NamePlatformMinedEntityEventFilter}
|
10042
10125
|
* - `"ghost_type"`: {@link GhostTypePlatformMinedEntityEventFilter}
|
10043
10126
|
* - `"ghost_name"`: {@link GhostNamePlatformMinedEntityEventFilter}
|
10044
|
-
* @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}
|
10045
10128
|
*/
|
10046
10129
|
export type LuaPlatformMinedEntityEventFilter =
|
10047
10130
|
| TypePlatformMinedEntityEventFilter
|
@@ -10146,7 +10229,7 @@ declare module "factorio:runtime" {
|
|
10146
10229
|
* - `"name"`: {@link NameScriptRaisedDestroyEventFilter}
|
10147
10230
|
* - `"ghost_type"`: {@link GhostTypeScriptRaisedDestroyEventFilter}
|
10148
10231
|
* - `"ghost_name"`: {@link GhostNameScriptRaisedDestroyEventFilter}
|
10149
|
-
* @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}
|
10150
10233
|
*/
|
10151
10234
|
export type LuaScriptRaisedDestroyEventFilter =
|
10152
10235
|
| TypeScriptRaisedDestroyEventFilter
|
@@ -10263,7 +10346,7 @@ declare module "factorio:runtime" {
|
|
10263
10346
|
* - `"ghost_type"`: {@link GhostTypePlayerBuiltEntityEventFilter}
|
10264
10347
|
* - `"ghost_name"`: {@link GhostNamePlayerBuiltEntityEventFilter}
|
10265
10348
|
* - `"force"`: {@link ForcePlayerBuiltEntityEventFilter}
|
10266
|
-
* @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}
|
10267
10350
|
*/
|
10268
10351
|
export type LuaPlayerBuiltEntityEventFilter =
|
10269
10352
|
| TypePlayerBuiltEntityEventFilter
|
@@ -10381,7 +10464,7 @@ declare module "factorio:runtime" {
|
|
10381
10464
|
* - `"ghost_type"`: {@link GhostTypePlatformBuiltEntityEventFilter}
|
10382
10465
|
* - `"ghost_name"`: {@link GhostNamePlatformBuiltEntityEventFilter}
|
10383
10466
|
* - `"force"`: {@link ForcePlatformBuiltEntityEventFilter}
|
10384
|
-
* @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}
|
10385
10468
|
*/
|
10386
10469
|
export type LuaPlatformBuiltEntityEventFilter =
|
10387
10470
|
| TypePlatformBuiltEntityEventFilter
|
@@ -10487,7 +10570,7 @@ declare module "factorio:runtime" {
|
|
10487
10570
|
* - `"name"`: {@link NamePreGhostDeconstructedEventFilter}
|
10488
10571
|
* - `"ghost_type"`: {@link GhostTypePreGhostDeconstructedEventFilter}
|
10489
10572
|
* - `"ghost_name"`: {@link GhostNamePreGhostDeconstructedEventFilter}
|
10490
|
-
* @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}
|
10491
10574
|
*/
|
10492
10575
|
export type LuaPreGhostDeconstructedEventFilter =
|
10493
10576
|
| TypePreGhostDeconstructedEventFilter
|
@@ -10592,7 +10675,7 @@ declare module "factorio:runtime" {
|
|
10592
10675
|
* - `"name"`: {@link NameEntityClonedEventFilter}
|
10593
10676
|
* - `"ghost_type"`: {@link GhostTypeEntityClonedEventFilter}
|
10594
10677
|
* - `"ghost_name"`: {@link GhostNameEntityClonedEventFilter}
|
10595
|
-
* @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}
|
10596
10679
|
*/
|
10597
10680
|
export type LuaEntityClonedEventFilter =
|
10598
10681
|
| TypeEntityClonedEventFilter
|
@@ -10697,7 +10780,7 @@ declare module "factorio:runtime" {
|
|
10697
10780
|
* - `"name"`: {@link NameScriptRaisedTeleportedEventFilter}
|
10698
10781
|
* - `"ghost_type"`: {@link GhostTypeScriptRaisedTeleportedEventFilter}
|
10699
10782
|
* - `"ghost_name"`: {@link GhostNameScriptRaisedTeleportedEventFilter}
|
10700
|
-
* @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}
|
10701
10784
|
*/
|
10702
10785
|
export type LuaScriptRaisedTeleportedEventFilter =
|
10703
10786
|
| TypeScriptRaisedTeleportedEventFilter
|
@@ -10804,7 +10887,7 @@ declare module "factorio:runtime" {
|
|
10804
10887
|
* - `"name"`: {@link NameEntityDeconstructionCancelledEventFilter}
|
10805
10888
|
* - `"ghost_type"`: {@link GhostTypeEntityDeconstructionCancelledEventFilter}
|
10806
10889
|
* - `"ghost_name"`: {@link GhostNameEntityDeconstructionCancelledEventFilter}
|
10807
|
-
* @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}
|
10808
10891
|
*/
|
10809
10892
|
export type LuaEntityDeconstructionCancelledEventFilter =
|
10810
10893
|
| TypeEntityDeconstructionCancelledEventFilter
|
@@ -10921,7 +11004,7 @@ declare module "factorio:runtime" {
|
|
10921
11004
|
* - `"ghost_type"`: {@link GhostTypeRobotBuiltEntityEventFilter}
|
10922
11005
|
* - `"ghost_name"`: {@link GhostNameRobotBuiltEntityEventFilter}
|
10923
11006
|
* - `"force"`: {@link ForceRobotBuiltEntityEventFilter}
|
10924
|
-
* @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}
|
10925
11008
|
*/
|
10926
11009
|
export type LuaRobotBuiltEntityEventFilter =
|
10927
11010
|
| TypeRobotBuiltEntityEventFilter
|
@@ -11027,7 +11110,7 @@ declare module "factorio:runtime" {
|
|
11027
11110
|
* - `"name"`: {@link NameScriptRaisedBuiltEventFilter}
|
11028
11111
|
* - `"ghost_type"`: {@link GhostTypeScriptRaisedBuiltEventFilter}
|
11029
11112
|
* - `"ghost_name"`: {@link GhostNameScriptRaisedBuiltEventFilter}
|
11030
|
-
* @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}
|
11031
11114
|
*/
|
11032
11115
|
export type LuaScriptRaisedBuiltEventFilter =
|
11033
11116
|
| TypeScriptRaisedBuiltEventFilter
|
@@ -11132,7 +11215,7 @@ declare module "factorio:runtime" {
|
|
11132
11215
|
* - `"name"`: {@link NamePrePlayerMinedEntityEventFilter}
|
11133
11216
|
* - `"ghost_type"`: {@link GhostTypePrePlayerMinedEntityEventFilter}
|
11134
11217
|
* - `"ghost_name"`: {@link GhostNamePrePlayerMinedEntityEventFilter}
|
11135
|
-
* @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}
|
11136
11219
|
*/
|
11137
11220
|
export type LuaPrePlayerMinedEntityEventFilter =
|
11138
11221
|
| TypePrePlayerMinedEntityEventFilter
|
@@ -11237,7 +11320,7 @@ declare module "factorio:runtime" {
|
|
11237
11320
|
* - `"name"`: {@link NamePlayerRepairedEntityEventFilter}
|
11238
11321
|
* - `"ghost_type"`: {@link GhostTypePlayerRepairedEntityEventFilter}
|
11239
11322
|
* - `"ghost_name"`: {@link GhostNamePlayerRepairedEntityEventFilter}
|
11240
|
-
* @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}
|
11241
11324
|
*/
|
11242
11325
|
export type LuaPlayerRepairedEntityEventFilter =
|
11243
11326
|
| TypePlayerRepairedEntityEventFilter
|
@@ -11342,7 +11425,7 @@ declare module "factorio:runtime" {
|
|
11342
11425
|
* - `"name"`: {@link NameUpgradeCancelledEventFilter}
|
11343
11426
|
* - `"ghost_type"`: {@link GhostTypeUpgradeCancelledEventFilter}
|
11344
11427
|
* - `"ghost_name"`: {@link GhostNameUpgradeCancelledEventFilter}
|
11345
|
-
* @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}
|
11346
11429
|
*/
|
11347
11430
|
export type LuaUpgradeCancelledEventFilter =
|
11348
11431
|
| TypeUpgradeCancelledEventFilter
|
@@ -11447,7 +11530,7 @@ declare module "factorio:runtime" {
|
|
11447
11530
|
* - `"name"`: {@link NameSectorScannedEventFilter}
|
11448
11531
|
* - `"ghost_type"`: {@link GhostTypeSectorScannedEventFilter}
|
11449
11532
|
* - `"ghost_name"`: {@link GhostNameSectorScannedEventFilter}
|
11450
|
-
* @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}
|
11451
11534
|
*/
|
11452
11535
|
export type LuaSectorScannedEventFilter =
|
11453
11536
|
| TypeSectorScannedEventFilter
|
@@ -11493,7 +11576,7 @@ declare module "factorio:runtime" {
|
|
11493
11576
|
*
|
11494
11577
|
* Other attributes may be specified depending on `filter`:
|
11495
11578
|
* - `"type"`: {@link TypePostEntityDiedEventFilter}
|
11496
|
-
* @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}
|
11497
11580
|
*/
|
11498
11581
|
export type LuaPostEntityDiedEventFilter = TypePostEntityDiedEventFilter | OtherPostEntityDiedEventFilter
|
11499
11582
|
/**
|
@@ -11595,7 +11678,7 @@ declare module "factorio:runtime" {
|
|
11595
11678
|
* - `"name"`: {@link NameEntityMarkedForDeconstructionEventFilter}
|
11596
11679
|
* - `"ghost_type"`: {@link GhostTypeEntityMarkedForDeconstructionEventFilter}
|
11597
11680
|
* - `"ghost_name"`: {@link GhostNameEntityMarkedForDeconstructionEventFilter}
|
11598
|
-
* @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}
|
11599
11682
|
*/
|
11600
11683
|
export type LuaEntityMarkedForDeconstructionEventFilter =
|
11601
11684
|
| TypeEntityMarkedForDeconstructionEventFilter
|
@@ -11700,7 +11783,7 @@ declare module "factorio:runtime" {
|
|
11700
11783
|
* - `"name"`: {@link NamePlayerMinedEntityEventFilter}
|
11701
11784
|
* - `"ghost_type"`: {@link GhostTypePlayerMinedEntityEventFilter}
|
11702
11785
|
* - `"ghost_name"`: {@link GhostNamePlayerMinedEntityEventFilter}
|
11703
|
-
* @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}
|
11704
11787
|
*/
|
11705
11788
|
export type LuaPlayerMinedEntityEventFilter =
|
11706
11789
|
| TypePlayerMinedEntityEventFilter
|
@@ -11880,7 +11963,7 @@ declare module "factorio:runtime" {
|
|
11880
11963
|
* - `"final-damage-amount"`: {@link FinalDamageAmountEntityDamagedEventFilter}
|
11881
11964
|
* - `"damage-type"`: {@link DamageTypeEntityDamagedEventFilter}
|
11882
11965
|
* - `"final-health"`: {@link FinalHealthEntityDamagedEventFilter}
|
11883
|
-
* @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}
|
11884
11967
|
*/
|
11885
11968
|
export type LuaEntityDamagedEventFilter =
|
11886
11969
|
| TypeEntityDamagedEventFilter
|
@@ -11894,7 +11977,7 @@ declare module "factorio:runtime" {
|
|
11894
11977
|
| OtherEntityDamagedEventFilter
|
11895
11978
|
/**
|
11896
11979
|
* Write form of {@link LuaEntityDamagedEventFilter}, where some properties allow additional values as input compared to the read form.
|
11897
|
-
* @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}
|
11898
11981
|
*/
|
11899
11982
|
export type LuaEntityDamagedEventFilterWrite =
|
11900
11983
|
| TypeEntityDamagedEventFilter
|
@@ -12003,7 +12086,7 @@ declare module "factorio:runtime" {
|
|
12003
12086
|
* - `"name"`: {@link NameScriptRaisedReviveEventFilter}
|
12004
12087
|
* - `"ghost_type"`: {@link GhostTypeScriptRaisedReviveEventFilter}
|
12005
12088
|
* - `"ghost_name"`: {@link GhostNameScriptRaisedReviveEventFilter}
|
12006
|
-
* @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}
|
12007
12090
|
*/
|
12008
12091
|
export type LuaScriptRaisedReviveEventFilter =
|
12009
12092
|
| TypeScriptRaisedReviveEventFilter
|
@@ -12108,7 +12191,7 @@ declare module "factorio:runtime" {
|
|
12108
12191
|
* - `"name"`: {@link NameEntityDiedEventFilter}
|
12109
12192
|
* - `"ghost_type"`: {@link GhostTypeEntityDiedEventFilter}
|
12110
12193
|
* - `"ghost_name"`: {@link GhostNameEntityDiedEventFilter}
|
12111
|
-
* @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}
|
12112
12195
|
*/
|
12113
12196
|
export type LuaEntityDiedEventFilter =
|
12114
12197
|
| TypeEntityDiedEventFilter
|
@@ -12213,7 +12296,7 @@ declare module "factorio:runtime" {
|
|
12213
12296
|
* - `"name"`: {@link NamePreRobotMinedEntityEventFilter}
|
12214
12297
|
* - `"ghost_type"`: {@link GhostTypePreRobotMinedEntityEventFilter}
|
12215
12298
|
* - `"ghost_name"`: {@link GhostNamePreRobotMinedEntityEventFilter}
|
12216
|
-
* @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}
|
12217
12300
|
*/
|
12218
12301
|
export type LuaPreRobotMinedEntityEventFilter =
|
12219
12302
|
| TypePreRobotMinedEntityEventFilter
|