typed-factorio 3.7.1 → 3.8.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 +2090 -2072
- package/prototype/generated/types.d.ts +2137 -2107
- package/runtime/generated/classes.d.ts +3642 -3581
- package/runtime/generated/concepts.d.ts +475 -334
- package/runtime/generated/defines.d.ts +177 -177
- package/runtime/generated/events.d.ts +207 -205
- package/runtime/generated/global-functions.d.ts +3 -3
- package/runtime/generated/global-objects.d.ts +8 -8
@@ -12,22 +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.24/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
|
+
* Quality values are divided by 10 internally, allowing for one more decimal of precision.
|
22
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ModuleEffectValue.html Online documentation}
|
21
23
|
*/
|
22
24
|
export type ModuleEffectValue = float
|
23
25
|
/**
|
24
26
|
* @example
|
25
|
-
* -- These are the effects of the vanilla
|
26
|
-
* {consumption=0.
|
27
|
-
*
|
28
|
-
* productivity=0.06,
|
29
|
-
* pollution=0.075}
|
30
|
-
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/ModuleEffects.html Online documentation}
|
27
|
+
* -- These are the effects of the vanilla Speed Module 3
|
28
|
+
* {speed = 0.5, consumption = 0.7, quality = -0.25}
|
29
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ModuleEffects.html Online documentation}
|
31
30
|
*/
|
32
31
|
export interface ModuleEffects {
|
33
32
|
readonly consumption?: ModuleEffectValue
|
@@ -51,7 +50,7 @@ declare module "factorio:runtime" {
|
|
51
50
|
* - `"<="`: "lesser than or equal to"
|
52
51
|
* - `"≠"`: "not equal to"
|
53
52
|
* - `"!="`: "not equal to"
|
54
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
53
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ComparatorString.html Online documentation}
|
55
54
|
*/
|
56
55
|
export type ComparatorString = "=" | ">" | "<" | "≥" | ">=" | "≤" | "<=" | "≠" | "!="
|
57
56
|
export type ComparatorStringRead = "=" | ">" | "<" | "≥" | "≤" | "≠"
|
@@ -82,8 +81,8 @@ declare module "factorio:runtime" {
|
|
82
81
|
*
|
83
82
|
* The validity of a SpritePath can be verified at runtime using {@link LuaHelpers#is_valid_sprite_path LuaHelpers::is_valid_sprite_path}.
|
84
83
|
*
|
85
|
-
* {@link https://lua-api.factorio.com/2.0.
|
86
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
84
|
+
* {@link https://lua-api.factorio.com/2.0.24/concepts/SpritePath.html > The supported types are:}
|
85
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/SpritePath.html Online documentation}
|
87
86
|
*/
|
88
87
|
export type SpritePath = (string & { _?: never }) | `${SpriteType}${"/" | "."}${string}`
|
89
88
|
/**
|
@@ -94,14 +93,14 @@ declare module "factorio:runtime" {
|
|
94
93
|
* - {@link FluidID}: Used with fluid production statistics.
|
95
94
|
* - {@link EntityWithQualityID}: Used with electric network, entity build count, and kill count statistics.
|
96
95
|
* - {@link EntityID}: Used with pollution statistics.
|
97
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
96
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/FlowStatisticsID.html Online documentation}
|
98
97
|
*/
|
99
98
|
export type FlowStatisticsID = ItemWithQualityID | FluidID | EntityWithQualityID | EntityID
|
100
99
|
/**
|
101
100
|
* @example
|
102
101
|
* -- Most common collision mask of buildings:
|
103
102
|
* collision_mask = {layers = {item = true, meltable = true, object = true, player = true, water_tile = true, is_object = true, is_lower_object = true}}
|
104
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
103
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/CollisionMask.html Online documentation}
|
105
104
|
*/
|
106
105
|
export interface CollisionMask {
|
107
106
|
/**
|
@@ -229,7 +228,7 @@ declare module "factorio:runtime" {
|
|
229
228
|
* - `"check-box"`
|
230
229
|
* - `"switch"`
|
231
230
|
* - `"label"`
|
232
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
231
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/SimulationWidgetType.html Online documentation}
|
233
232
|
*/
|
234
233
|
export type SimulationWidgetType =
|
235
234
|
| "signal-id"
|
@@ -351,7 +350,7 @@ declare module "factorio:runtime" {
|
|
351
350
|
* - `"any-goal-accessible"`: The method will return {@link TrainPathFinderOneGoalResult}.
|
352
351
|
* - `"all-goals-accessible"`: The method will return {@link TrainPathAllGoalsResult}.
|
353
352
|
* - `"all-goals-penalties"`: The method will return {@link TrainPathAllGoalsResult} with `penalties`.
|
354
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
353
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/TrainPathRequestType.html Online documentation}
|
355
354
|
*/
|
356
355
|
export type TrainPathRequestType = "path" | "any-goal-accessible" | "all-goals-accessible" | "all-goals-penalties"
|
357
356
|
/**
|
@@ -360,7 +359,7 @@ declare module "factorio:runtime" {
|
|
360
359
|
* - {@link RailEndGoal}
|
361
360
|
* - {@link LuaRailEnd}
|
362
361
|
* - {@link LuaEntity}: Only if it points at train-stop that is connected to a rail.
|
363
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
362
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/TrainPathFinderGoal.html Online documentation}
|
364
363
|
*/
|
365
364
|
export type TrainPathFinderGoal = TrainStopGoal | RailEndGoal | LuaRailEnd | LuaEntity
|
366
365
|
export interface TrainStopGoal {
|
@@ -465,7 +464,7 @@ declare module "factorio:runtime" {
|
|
465
464
|
}
|
466
465
|
/**
|
467
466
|
* A single pipe connection for a given fluidbox.
|
468
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
467
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/PipeConnection.html Online documentation}
|
469
468
|
*/
|
470
469
|
export interface PipeConnection {
|
471
470
|
readonly flow_direction: "input" | "output" | "input-output"
|
@@ -528,7 +527,7 @@ declare module "factorio:runtime" {
|
|
528
527
|
* - {@link LuaEntityDiedEventFilter}
|
529
528
|
* - {@link LuaPreRobotMinedEntityEventFilter}
|
530
529
|
* @see EventFilterWrite
|
531
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
530
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/EventFilter.html Online documentation}
|
532
531
|
*/
|
533
532
|
export type EventFilter =
|
534
533
|
| LuaPrePlatformMinedEntityEventFilter[]
|
@@ -558,7 +557,7 @@ declare module "factorio:runtime" {
|
|
558
557
|
| LuaPreRobotMinedEntityEventFilter[]
|
559
558
|
/**
|
560
559
|
* Write form of {@link EventFilter}, where some properties allow additional values as input compared to the read form.
|
561
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
560
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/EventFilter.html Online documentation}
|
562
561
|
*/
|
563
562
|
export type EventFilterWrite =
|
564
563
|
| readonly LuaPrePlatformMinedEntityEventFilter[]
|
@@ -608,7 +607,7 @@ declare module "factorio:runtime" {
|
|
608
607
|
* - {@link LuaCommandable}: Target type {@link defines.target_type.commandable commandable}; `useful_id` {@link LuaCommandable#unique_id LuaCommandable::unique_id}
|
609
608
|
* - {@link LuaCustomChartTag}: Target type {@link defines.target_type.custom_chart_tag custom_chart_tag}; `useful_id` {@link LuaCustomChartTag#tag_number LuaCustomChartTag::tag_number}
|
610
609
|
* - {@link LuaGuiElement}: Target type {@link defines.target_type.gui_element gui_element}; `useful_id` {@link LuaGuiElement#index LuaGuiElement::index}
|
611
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
610
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/RegistrationTarget.html Online documentation}
|
612
611
|
*/
|
613
612
|
export type RegistrationTarget =
|
614
613
|
| LuaEntity
|
@@ -809,7 +808,7 @@ declare module "factorio:runtime" {
|
|
809
808
|
* - `"wire-removed"`: {@link WireRemovedUndoRedoAction}
|
810
809
|
* - `"rotated-entity"`: {@link RotatedEntityUndoRedoAction}
|
811
810
|
* - `"copy-entity-settings"`: {@link CopyEntitySettingsUndoRedoAction}
|
812
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
811
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/UndoRedoAction.html Online documentation}
|
813
812
|
*/
|
814
813
|
export type UndoRedoAction =
|
815
814
|
| BuiltEntityUndoRedoAction
|
@@ -841,7 +840,7 @@ declare module "factorio:runtime" {
|
|
841
840
|
* - `"weapon"`
|
842
841
|
* - `"explosion"`
|
843
842
|
* - `"enemy"`
|
844
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
843
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/SoundType.html Online documentation}
|
845
844
|
*/
|
846
845
|
export type SoundType =
|
847
846
|
| "game-effect"
|
@@ -924,7 +923,7 @@ declare module "factorio:runtime" {
|
|
924
923
|
* - `"controllable-remove"`
|
925
924
|
* - `"entity-ghost"`: Selects entities that are `entity-ghost`s.
|
926
925
|
* - `"tile-ghost"`: Selects entities that are `tile-ghost`s.
|
927
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
926
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/SelectionModeFlags.html Online documentation}
|
928
927
|
*/
|
929
928
|
export interface SelectionModeFlags {
|
930
929
|
/**
|
@@ -1043,7 +1042,7 @@ declare module "factorio:runtime" {
|
|
1043
1042
|
* A set of flags. Active flags are in the dictionary as `true`, while inactive flags aren't present at all.
|
1044
1043
|
*
|
1045
1044
|
* By default, none of these flags are set.
|
1046
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1045
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ItemPrototypeFlags.html Online documentation}
|
1047
1046
|
*/
|
1048
1047
|
export type ItemPrototypeFlags = {
|
1049
1048
|
readonly [T in ItemPrototypeFlag]?: true
|
@@ -1064,7 +1063,7 @@ declare module "factorio:runtime" {
|
|
1064
1063
|
* - `"spawnable"`: Allows the item to be spawned by a quickbar shortcut or custom input.
|
1065
1064
|
* - `"spoil-result"`
|
1066
1065
|
* - `"ignore-spoil-time-modifier"`: Controls whether the spoil time ignores the spoil time modifier in the {@link DifficultySettings}.
|
1067
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1066
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ItemPrototypeFlag.html Online documentation}
|
1068
1067
|
*/
|
1069
1068
|
export type ItemPrototypeFlag =
|
1070
1069
|
| "draw-logistic-overlay"
|
@@ -1084,7 +1083,7 @@ declare module "factorio:runtime" {
|
|
1084
1083
|
* - `"none"`
|
1085
1084
|
* - `"whitelist"`
|
1086
1085
|
* - `"blacklist"`
|
1087
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1086
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/PrototypeFilterMode.html Online documentation}
|
1088
1087
|
*/
|
1089
1088
|
export type PrototypeFilterMode = "none" | "whitelist" | "blacklist"
|
1090
1089
|
export interface PipeConnectionDefinition {
|
@@ -1108,7 +1107,7 @@ declare module "factorio:runtime" {
|
|
1108
1107
|
* The name of a {@link LuaCollisionLayerPrototype}.
|
1109
1108
|
* @example
|
1110
1109
|
* "is_lower_object"
|
1111
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1110
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/CollisionLayerID.html Online documentation}
|
1112
1111
|
*/
|
1113
1112
|
export type CollisionLayerID = string
|
1114
1113
|
export interface ItemIDFilter {
|
@@ -1158,7 +1157,7 @@ declare module "factorio:runtime" {
|
|
1158
1157
|
* - {@link SpaceLocationPrototypeFilter}
|
1159
1158
|
* - {@link FluidPrototypeFilter}
|
1160
1159
|
* @see PrototypeFilterWrite
|
1161
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1160
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/PrototypeFilter.html Online documentation}
|
1162
1161
|
*/
|
1163
1162
|
export type PrototypeFilter =
|
1164
1163
|
| ModSettingPrototypeFilter[]
|
@@ -1175,7 +1174,7 @@ declare module "factorio:runtime" {
|
|
1175
1174
|
| FluidPrototypeFilter[]
|
1176
1175
|
/**
|
1177
1176
|
* 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.
|
1177
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/PrototypeFilter.html Online documentation}
|
1179
1178
|
*/
|
1180
1179
|
export type PrototypeFilterWrite =
|
1181
1180
|
| readonly ModSettingPrototypeFilter[]
|
@@ -1192,7 +1191,7 @@ declare module "factorio:runtime" {
|
|
1192
1191
|
| readonly FluidPrototypeFilterWrite[]
|
1193
1192
|
/**
|
1194
1193
|
* @see DisplayPanelMessageDefinitionWrite
|
1195
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1194
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/DisplayPanelMessageDefinition.html Online documentation}
|
1196
1195
|
*/
|
1197
1196
|
export interface DisplayPanelMessageDefinition {
|
1198
1197
|
/**
|
@@ -1210,7 +1209,7 @@ declare module "factorio:runtime" {
|
|
1210
1209
|
}
|
1211
1210
|
/**
|
1212
1211
|
* 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.
|
1212
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/DisplayPanelMessageDefinition.html Online documentation}
|
1214
1213
|
*/
|
1215
1214
|
export interface DisplayPanelMessageDefinitionWrite {
|
1216
1215
|
/**
|
@@ -1220,7 +1219,7 @@ declare module "factorio:runtime" {
|
|
1220
1219
|
/**
|
1221
1220
|
* The icon to show alongside the message.
|
1222
1221
|
*/
|
1223
|
-
readonly icon:
|
1222
|
+
readonly icon: SignalIDWrite
|
1224
1223
|
/**
|
1225
1224
|
* The circuit condition under which to show the message.
|
1226
1225
|
*/
|
@@ -1236,7 +1235,7 @@ declare module "factorio:runtime" {
|
|
1236
1235
|
* - `"space-location"`
|
1237
1236
|
* - `"asteroid-chunk"`
|
1238
1237
|
* - `"quality"`
|
1239
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1238
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/SignalIDType.html Online documentation}
|
1240
1239
|
*/
|
1241
1240
|
export type SignalIDType =
|
1242
1241
|
| "item"
|
@@ -1247,6 +1246,42 @@ declare module "factorio:runtime" {
|
|
1247
1246
|
| "space-location"
|
1248
1247
|
| "asteroid-chunk"
|
1249
1248
|
| "quality"
|
1249
|
+
/**
|
1250
|
+
* @see SignalIDWrite
|
1251
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/SignalID.html Online documentation}
|
1252
|
+
*/
|
1253
|
+
export interface SignalID {
|
1254
|
+
/**
|
1255
|
+
* The type of the signal. If the type is `"item"`, this will be `nil` when reading.
|
1256
|
+
*/
|
1257
|
+
readonly type?: SignalIDType
|
1258
|
+
/**
|
1259
|
+
* Name of the prototype.
|
1260
|
+
*/
|
1261
|
+
readonly name?: string
|
1262
|
+
/**
|
1263
|
+
* The prototype name of the signal's quality. Defaults to `normal`.
|
1264
|
+
*/
|
1265
|
+
readonly quality?: LuaQualityPrototype
|
1266
|
+
}
|
1267
|
+
/**
|
1268
|
+
* Write form of {@link SignalID}, where some properties allow additional values as input compared to the read form.
|
1269
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/SignalID.html Online documentation}
|
1270
|
+
*/
|
1271
|
+
export interface SignalIDWrite {
|
1272
|
+
/**
|
1273
|
+
* The type of the signal. If the type is `"item"`, this will be `nil` when reading.
|
1274
|
+
*/
|
1275
|
+
readonly type?: SignalIDType
|
1276
|
+
/**
|
1277
|
+
* Name of the prototype.
|
1278
|
+
*/
|
1279
|
+
readonly name?: string
|
1280
|
+
/**
|
1281
|
+
* The prototype name of the signal's quality. Defaults to `normal`.
|
1282
|
+
*/
|
1283
|
+
readonly quality?: QualityID
|
1284
|
+
}
|
1250
1285
|
/**
|
1251
1286
|
* The internal name of a game control (key binding).
|
1252
1287
|
*
|
@@ -1437,7 +1472,7 @@ declare module "factorio:runtime" {
|
|
1437
1472
|
* - `"play-next-track"`
|
1438
1473
|
* - `"play-previous-track"`
|
1439
1474
|
* - `"pause-resume-music"`
|
1440
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1475
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/LinkedGameControl.html Online documentation}
|
1441
1476
|
*/
|
1442
1477
|
export type LinkedGameControl =
|
1443
1478
|
| "move-up"
|
@@ -1688,7 +1723,7 @@ declare module "factorio:runtime" {
|
|
1688
1723
|
* - `"create-ghost-on-entity-death"`
|
1689
1724
|
* - `"belt-stack-size-bonus"`
|
1690
1725
|
* - `"vehicle-logistics"`
|
1691
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1726
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ModifierType.html Online documentation}
|
1692
1727
|
*/
|
1693
1728
|
export type ModifierType =
|
1694
1729
|
| "inserter-stack-size-bonus"
|
@@ -1807,7 +1842,7 @@ declare module "factorio:runtime" {
|
|
1807
1842
|
* - `"capture-spawner"`: {@link CaptureSpawnerResearchTrigger}
|
1808
1843
|
* - `"build-entity"`: {@link BuildEntityResearchTrigger}
|
1809
1844
|
* - `"send-item-to-orbit"`: {@link SendItemToOrbitResearchTrigger}
|
1810
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1845
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ResearchTrigger.html Online documentation}
|
1811
1846
|
*/
|
1812
1847
|
export type ResearchTrigger =
|
1813
1848
|
| CraftItemResearchTrigger
|
@@ -1821,7 +1856,7 @@ declare module "factorio:runtime" {
|
|
1821
1856
|
* A set of flags. Active flags are in the dictionary as `true`, while inactive flags aren't present at all.
|
1822
1857
|
*
|
1823
1858
|
* By default, none of these flags are set.
|
1824
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1859
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/EntityPrototypeFlags.html Online documentation}
|
1825
1860
|
*/
|
1826
1861
|
export type EntityPrototypeFlags = {
|
1827
1862
|
readonly [T in EntityPrototypeFlag]?: true
|
@@ -1856,7 +1891,7 @@ declare module "factorio:runtime" {
|
|
1856
1891
|
* - `"building-direction-16-way"`
|
1857
1892
|
* - `"snap-to-rail-support-spot"`
|
1858
1893
|
* - `"not-in-made-in"`: Prevents the entity from being shown in the "made in" list in recipe tooltips.
|
1859
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1894
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/EntityPrototypeFlag.html Online documentation}
|
1860
1895
|
*/
|
1861
1896
|
export type EntityPrototypeFlag =
|
1862
1897
|
| "not-rotatable"
|
@@ -1926,7 +1961,7 @@ declare module "factorio:runtime" {
|
|
1926
1961
|
* - `"local"`: The sound can be heard within the audible range around the speaker.
|
1927
1962
|
* - `"surface"`: The sound can be heard anywhere on the speaker's surface.
|
1928
1963
|
* - `"global"`: The sound can be heard everywhere.
|
1929
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1964
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ProgrammableSpeakerPlaybackMode.html Online documentation}
|
1930
1965
|
*/
|
1931
1966
|
export type ProgrammableSpeakerPlaybackMode = "local" | "surface" | "global"
|
1932
1967
|
/**
|
@@ -1951,7 +1986,7 @@ declare module "factorio:runtime" {
|
|
1951
1986
|
* - `"none-to-south"`
|
1952
1987
|
* - `"south-to-none"`
|
1953
1988
|
* - `"none-to-north"`
|
1954
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1989
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/CliffOrientation.html Online documentation}
|
1955
1990
|
*/
|
1956
1991
|
export type CliffOrientation =
|
1957
1992
|
| "west-to-east"
|
@@ -1977,7 +2012,7 @@ declare module "factorio:runtime" {
|
|
1977
2012
|
/**
|
1978
2013
|
* Defines an item type that a blueprint entity will request.
|
1979
2014
|
* @see BlueprintInsertPlanWrite
|
1980
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2015
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/BlueprintInsertPlan.html Online documentation}
|
1981
2016
|
*/
|
1982
2017
|
export interface BlueprintInsertPlan {
|
1983
2018
|
/**
|
@@ -1991,7 +2026,7 @@ declare module "factorio:runtime" {
|
|
1991
2026
|
}
|
1992
2027
|
/**
|
1993
2028
|
* Write form of {@link BlueprintInsertPlan}, where some properties allow additional values as input compared to the read form.
|
1994
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2029
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/BlueprintInsertPlan.html Online documentation}
|
1995
2030
|
*/
|
1996
2031
|
export interface BlueprintInsertPlanWrite {
|
1997
2032
|
/**
|
@@ -2019,7 +2054,7 @@ declare module "factorio:runtime" {
|
|
2019
2054
|
}
|
2020
2055
|
/**
|
2021
2056
|
* A single offer on a market entity.
|
2022
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2057
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/Offer.html Online documentation}
|
2023
2058
|
*/
|
2024
2059
|
export interface Offer {
|
2025
2060
|
/**
|
@@ -2034,7 +2069,7 @@ declare module "factorio:runtime" {
|
|
2034
2069
|
/**
|
2035
2070
|
* An item filter may be specified in two ways, either as a string which is an item prototype name or as a table.
|
2036
2071
|
* @see ItemFilterWrite
|
2037
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2072
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ItemFilter.html Online documentation}
|
2038
2073
|
*/
|
2039
2074
|
export type ItemFilter =
|
2040
2075
|
| {
|
@@ -2054,7 +2089,7 @@ declare module "factorio:runtime" {
|
|
2054
2089
|
| string
|
2055
2090
|
/**
|
2056
2091
|
* Write form of {@link ItemFilter}, where some properties allow additional values as input compared to the read form.
|
2057
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2092
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ItemFilter.html Online documentation}
|
2058
2093
|
*/
|
2059
2094
|
export type ItemFilterWrite =
|
2060
2095
|
| {
|
@@ -2074,7 +2109,7 @@ declare module "factorio:runtime" {
|
|
2074
2109
|
| string
|
2075
2110
|
/**
|
2076
2111
|
* @see ScheduleRecordWrite
|
2077
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2112
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ScheduleRecord.html Online documentation}
|
2078
2113
|
*/
|
2079
2114
|
export interface ScheduleRecord {
|
2080
2115
|
/**
|
@@ -2097,7 +2132,7 @@ declare module "factorio:runtime" {
|
|
2097
2132
|
}
|
2098
2133
|
/**
|
2099
2134
|
* Write form of {@link ScheduleRecord}, where some properties allow additional values as input compared to the read form.
|
2100
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2135
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ScheduleRecord.html Online documentation}
|
2101
2136
|
*/
|
2102
2137
|
export interface ScheduleRecordWrite {
|
2103
2138
|
/**
|
@@ -2183,7 +2218,7 @@ declare module "factorio:runtime" {
|
|
2183
2218
|
* - `"position"`: {@link PositionGuiArrowSpecification}
|
2184
2219
|
* - `"crafting_queue"`: {@link CraftingQueueGuiArrowSpecification}
|
2185
2220
|
* - `"item_stack"`: {@link ItemStackGuiArrowSpecification}
|
2186
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2221
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/GuiArrowSpecification.html Online documentation}
|
2187
2222
|
*/
|
2188
2223
|
export type GuiArrowSpecification =
|
2189
2224
|
| EntityGuiArrowSpecification
|
@@ -2196,7 +2231,7 @@ declare module "factorio:runtime" {
|
|
2196
2231
|
*
|
2197
2232
|
* If this is specified as a three-element array then the array items are x, y and z, in that order.
|
2198
2233
|
* @see Vector3DArray
|
2199
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2234
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/Vector3D.html Online documentation}
|
2200
2235
|
*/
|
2201
2236
|
export interface Vector3D {
|
2202
2237
|
readonly x: float
|
@@ -2206,7 +2241,7 @@ declare module "factorio:runtime" {
|
|
2206
2241
|
/**
|
2207
2242
|
* Array form of {@link Vector3D}.
|
2208
2243
|
* @see Vector3D
|
2209
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2244
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/Vector3D.html Online documentation}
|
2210
2245
|
*/
|
2211
2246
|
export type Vector3DArray = readonly [float, float, float]
|
2212
2247
|
export interface ItemWithQualityCounts {
|
@@ -2239,7 +2274,7 @@ declare module "factorio:runtime" {
|
|
2239
2274
|
}
|
2240
2275
|
/**
|
2241
2276
|
* @see TrainScheduleWrite
|
2242
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2277
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/TrainSchedule.html Online documentation}
|
2243
2278
|
*/
|
2244
2279
|
export interface TrainSchedule {
|
2245
2280
|
/**
|
@@ -2250,7 +2285,7 @@ declare module "factorio:runtime" {
|
|
2250
2285
|
}
|
2251
2286
|
/**
|
2252
2287
|
* Write form of {@link TrainSchedule}, where some properties allow additional values as input compared to the read form.
|
2253
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2288
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/TrainSchedule.html Online documentation}
|
2254
2289
|
*/
|
2255
2290
|
export interface TrainScheduleWrite {
|
2256
2291
|
/**
|
@@ -2261,7 +2296,7 @@ declare module "factorio:runtime" {
|
|
2261
2296
|
}
|
2262
2297
|
/**
|
2263
2298
|
* @see PlatformScheduleWrite
|
2264
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2299
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/PlatformSchedule.html Online documentation}
|
2265
2300
|
*/
|
2266
2301
|
export interface PlatformSchedule {
|
2267
2302
|
/**
|
@@ -2272,7 +2307,7 @@ declare module "factorio:runtime" {
|
|
2272
2307
|
}
|
2273
2308
|
/**
|
2274
2309
|
* Write form of {@link PlatformSchedule}, where some properties allow additional values as input compared to the read form.
|
2275
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2310
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/PlatformSchedule.html Online documentation}
|
2276
2311
|
*/
|
2277
2312
|
export interface PlatformScheduleWrite {
|
2278
2313
|
/**
|
@@ -2289,7 +2324,7 @@ declare module "factorio:runtime" {
|
|
2289
2324
|
}
|
2290
2325
|
/**
|
2291
2326
|
* A recipe prototype with optional quality specification.
|
2292
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2327
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/RecipeIDAndQualityIDPair.html Online documentation}
|
2293
2328
|
*/
|
2294
2329
|
export interface RecipeIDAndQualityIDPair {
|
2295
2330
|
/**
|
@@ -2338,7 +2373,7 @@ declare module "factorio:runtime" {
|
|
2338
2373
|
* - `string`: Name of the force, same as {@link LuaForce#name LuaForce::name}.
|
2339
2374
|
* - {@link uint8}: Index of the force, same as {@link LuaForce#index LuaForce::index}.
|
2340
2375
|
* - {@link LuaForce}: A reference to {@link LuaForce} may be passed directly.
|
2341
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2376
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ForceID.html Online documentation}
|
2342
2377
|
*/
|
2343
2378
|
export type ForceID = string | uint8 | LuaForce
|
2344
2379
|
/**
|
@@ -2348,7 +2383,7 @@ declare module "factorio:runtime" {
|
|
2348
2383
|
* - `string`: The fluid name.
|
2349
2384
|
* - {@link LuaFluidPrototype}: The fluid prototype.
|
2350
2385
|
* - {@link Fluid}: The fluid.
|
2351
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2386
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/FluidID.html Online documentation}
|
2352
2387
|
*/
|
2353
2388
|
export type FluidID = string | LuaFluidPrototype | Fluid
|
2354
2389
|
/**
|
@@ -2359,12 +2394,12 @@ declare module "factorio:runtime" {
|
|
2359
2394
|
* - {@link LuaEntityPrototype}: The entity prototype. Normal quality will be used.
|
2360
2395
|
* - `string`: The prototype name. Normal quality will be used.
|
2361
2396
|
* - {@link EntityIDAndQualityIDPair}: A table of entity prototype and quality.
|
2362
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2397
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/EntityWithQualityID.html Online documentation}
|
2363
2398
|
*/
|
2364
2399
|
export type EntityWithQualityID = LuaEntity | LuaEntityPrototype | string | EntityIDAndQualityIDPair
|
2365
2400
|
/**
|
2366
2401
|
* An entity prototype with optional quality specification.
|
2367
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2402
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/EntityIDAndQualityIDPair.html Online documentation}
|
2368
2403
|
*/
|
2369
2404
|
export interface EntityIDAndQualityIDPair {
|
2370
2405
|
/**
|
@@ -2383,14 +2418,14 @@ declare module "factorio:runtime" {
|
|
2383
2418
|
* - {@link LuaItemStack}: The item stack. Both prototype and quality of the item stack will be used.
|
2384
2419
|
* - {@link LuaItemPrototype}: The item prototype. Normal quality will be used.
|
2385
2420
|
* - `string`: The prototype name. Normal quality will be used.
|
2386
|
-
* -
|
2387
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2421
|
+
* - {@link ItemIDAndQualityIDPair}: A table of entity prototype and quality.
|
2422
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ItemWithQualityID.html Online documentation}
|
2388
2423
|
*/
|
2389
2424
|
export type ItemWithQualityID = LuaItemStack | LuaItemPrototype | string | ItemIDAndQualityIDPairWrite
|
2390
2425
|
/**
|
2391
2426
|
* An item prototype with optional quality specification.
|
2392
2427
|
* @see ItemIDAndQualityIDPairWrite
|
2393
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2428
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ItemIDAndQualityIDPair.html Online documentation}
|
2394
2429
|
*/
|
2395
2430
|
export interface ItemIDAndQualityIDPair {
|
2396
2431
|
/**
|
@@ -2404,7 +2439,7 @@ declare module "factorio:runtime" {
|
|
2404
2439
|
}
|
2405
2440
|
/**
|
2406
2441
|
* Write form of {@link ItemIDAndQualityIDPair}, where some properties allow additional values as input compared to the read form.
|
2407
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2442
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ItemIDAndQualityIDPair.html Online documentation}
|
2408
2443
|
*/
|
2409
2444
|
export interface ItemIDAndQualityIDPairWrite {
|
2410
2445
|
/**
|
@@ -2424,7 +2459,7 @@ declare module "factorio:runtime" {
|
|
2424
2459
|
* - {@link LuaItemStack}: Non empty item stack.
|
2425
2460
|
* - {@link LuaItem}: The item.
|
2426
2461
|
* - `string`: The prototype name.
|
2427
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2462
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ItemID.html Online documentation}
|
2428
2463
|
*/
|
2429
2464
|
export type ItemID = LuaItemPrototype | LuaItemStack | LuaItem | string
|
2430
2465
|
/**
|
@@ -2434,7 +2469,7 @@ declare module "factorio:runtime" {
|
|
2434
2469
|
* - {@link LuaEntityPrototype}: The entity prototype.
|
2435
2470
|
* - {@link LuaEntity}: The entity.
|
2436
2471
|
* - `string`: The prototype name.
|
2437
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2472
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/EntityID.html Online documentation}
|
2438
2473
|
*/
|
2439
2474
|
export type EntityID = LuaEntityPrototype | LuaEntity | string
|
2440
2475
|
/**
|
@@ -2444,7 +2479,7 @@ declare module "factorio:runtime" {
|
|
2444
2479
|
* - {@link LuaTechnologyPrototype}: The technology prototype.
|
2445
2480
|
* - {@link LuaTechnology}: Instance of the technology.
|
2446
2481
|
* - `string`: The prototype name.
|
2447
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2482
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/TechnologyID.html Online documentation}
|
2448
2483
|
*/
|
2449
2484
|
export type TechnologyID = LuaTechnologyPrototype | LuaTechnology | string
|
2450
2485
|
/**
|
@@ -2453,7 +2488,7 @@ declare module "factorio:runtime" {
|
|
2453
2488
|
* ## Union members
|
2454
2489
|
* - {@link LuaParticlePrototype}: The particle prototype.
|
2455
2490
|
* - `string`: The prototype name.
|
2456
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2491
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ParticleID.html Online documentation}
|
2457
2492
|
*/
|
2458
2493
|
export type ParticleID = LuaParticlePrototype | string
|
2459
2494
|
/**
|
@@ -2462,7 +2497,7 @@ declare module "factorio:runtime" {
|
|
2462
2497
|
* ## Union members
|
2463
2498
|
* - {@link LuaDamagePrototype}: The damage type prototype.
|
2464
2499
|
* - `string`: The prototype name.
|
2465
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2500
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/DamageTypeID.html Online documentation}
|
2466
2501
|
*/
|
2467
2502
|
export type DamageTypeID = LuaDamagePrototype | string
|
2468
2503
|
/**
|
@@ -2471,7 +2506,7 @@ declare module "factorio:runtime" {
|
|
2471
2506
|
* ## Union members
|
2472
2507
|
* - {@link LuaTrivialSmokePrototype}: The trivial smoke prototype.
|
2473
2508
|
* - `string`: The prototype name.
|
2474
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2509
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/TrivialSmokeID.html Online documentation}
|
2475
2510
|
*/
|
2476
2511
|
export type TrivialSmokeID = LuaTrivialSmokePrototype | string
|
2477
2512
|
/**
|
@@ -2483,7 +2518,7 @@ declare module "factorio:runtime" {
|
|
2483
2518
|
* - `"left"`
|
2484
2519
|
* - `"right"`
|
2485
2520
|
* - `"center"`
|
2486
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2521
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/TextAlign.html Online documentation}
|
2487
2522
|
*/
|
2488
2523
|
export type TextAlign = "left" | "right" | "center"
|
2489
2524
|
/**
|
@@ -2496,7 +2531,7 @@ declare module "factorio:runtime" {
|
|
2496
2531
|
* - `"middle"`
|
2497
2532
|
* - `"baseline"`
|
2498
2533
|
* - `"bottom"`
|
2499
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2534
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/VerticalTextAlign.html Online documentation}
|
2500
2535
|
*/
|
2501
2536
|
export type VerticalTextAlign = "top" | "middle" | "baseline" | "bottom"
|
2502
2537
|
/**
|
@@ -2505,7 +2540,7 @@ declare module "factorio:runtime" {
|
|
2505
2540
|
* ## Union members
|
2506
2541
|
* - {@link LuaQualityPrototype}: The quality prototype.
|
2507
2542
|
* - `string`: The prototype name.
|
2508
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2543
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/QualityID.html Online documentation}
|
2509
2544
|
*/
|
2510
2545
|
export type QualityID = LuaQualityPrototype | string
|
2511
2546
|
/**
|
@@ -2515,7 +2550,7 @@ declare module "factorio:runtime" {
|
|
2515
2550
|
* - {@link LuaRecipePrototype}: By recipe prototype.
|
2516
2551
|
* - {@link LuaRecipe}: By instance of recipe.
|
2517
2552
|
* - `string`: By name of the recipe prototype.
|
2518
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2553
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/RecipeID.html Online documentation}
|
2519
2554
|
*/
|
2520
2555
|
export type RecipeID = LuaRecipePrototype | LuaRecipe | string
|
2521
2556
|
/**
|
@@ -2525,7 +2560,7 @@ declare module "factorio:runtime" {
|
|
2525
2560
|
* - {@link LuaTilePrototype}: By tile prototype.
|
2526
2561
|
* - {@link LuaTile}: By instance of tile.
|
2527
2562
|
* - `string`: By name of the tile prototype.
|
2528
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2563
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/TileID.html Online documentation}
|
2529
2564
|
*/
|
2530
2565
|
export type TileID = LuaTilePrototype | LuaTile | string
|
2531
2566
|
export interface Fluid {
|
@@ -2549,7 +2584,7 @@ declare module "factorio:runtime" {
|
|
2549
2584
|
* - {@link LuaEquipmentPrototype}: The equipment prototype.
|
2550
2585
|
* - {@link LuaEquipment}: The equipment.
|
2551
2586
|
* - `string`: The prototype name.
|
2552
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2587
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/EquipmentID.html Online documentation}
|
2553
2588
|
*/
|
2554
2589
|
export type EquipmentID = LuaEquipmentPrototype | LuaEquipment | string
|
2555
2590
|
/**
|
@@ -2560,12 +2595,12 @@ declare module "factorio:runtime" {
|
|
2560
2595
|
* - {@link LuaEquipment}: The equipment. Both prototype and quality of the provided equipment will be used.
|
2561
2596
|
* - `string`: The prototype name. Normal quality will be used.
|
2562
2597
|
* - {@link EquipmentIDAndQualityIDPair}: A table of equipment prototype and quality.
|
2563
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2598
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/EquipmentWithQualityID.html Online documentation}
|
2564
2599
|
*/
|
2565
2600
|
export type EquipmentWithQualityID = LuaEquipmentPrototype | LuaEquipment | string | EquipmentIDAndQualityIDPair
|
2566
2601
|
/**
|
2567
2602
|
* An equipment prototype with optional quality specification.
|
2568
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2603
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/EquipmentIDAndQualityIDPair.html Online documentation}
|
2569
2604
|
*/
|
2570
2605
|
export interface EquipmentIDAndQualityIDPair {
|
2571
2606
|
/**
|
@@ -2586,7 +2621,7 @@ declare module "factorio:runtime" {
|
|
2586
2621
|
* @example
|
2587
2622
|
* -- Shorthand
|
2588
2623
|
* {{-2, -3}, {5, 8}}
|
2589
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2624
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/BoundingBox.html Online documentation}
|
2590
2625
|
*/
|
2591
2626
|
export interface BoundingBox {
|
2592
2627
|
readonly left_top: MapPosition
|
@@ -2596,7 +2631,7 @@ declare module "factorio:runtime" {
|
|
2596
2631
|
/**
|
2597
2632
|
* Array form of {@link BoundingBox}.
|
2598
2633
|
* @see BoundingBox
|
2599
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2634
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/BoundingBox.html Online documentation}
|
2600
2635
|
*/
|
2601
2636
|
export type BoundingBoxArray = readonly [MapPosition | MapPositionArray, MapPosition | MapPositionArray]
|
2602
2637
|
export interface BoundingBoxWrite {
|
@@ -2609,7 +2644,7 @@ declare module "factorio:runtime" {
|
|
2609
2644
|
*
|
2610
2645
|
* ## Union members
|
2611
2646
|
* - {@link LuaSpacePlatform}
|
2612
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2647
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/SpacePlatformIdentification.html Online documentation}
|
2613
2648
|
*/
|
2614
2649
|
export type SpacePlatformIdentification = LuaSpacePlatform
|
2615
2650
|
/**
|
@@ -2619,12 +2654,12 @@ declare module "factorio:runtime" {
|
|
2619
2654
|
* - {@link LuaForce}[]: Array of many forces.
|
2620
2655
|
* - {@link LuaForce}: A single force.
|
2621
2656
|
* @see ForceSetWrite
|
2622
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2657
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ForceSet.html Online documentation}
|
2623
2658
|
*/
|
2624
2659
|
export type ForceSet = LuaForce[] | LuaForce
|
2625
2660
|
/**
|
2626
2661
|
* Write form of {@link ForceSet}, where some properties allow additional values as input compared to the read form.
|
2627
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2662
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ForceSet.html Online documentation}
|
2628
2663
|
*/
|
2629
2664
|
export type ForceSetWrite = readonly ForceID[] | ForceID
|
2630
2665
|
/**
|
@@ -2633,7 +2668,7 @@ declare module "factorio:runtime" {
|
|
2633
2668
|
* ## Union members
|
2634
2669
|
* - {@link LuaDecorativePrototype}: The decorative prototype.
|
2635
2670
|
* - `string`: The prototype name.
|
2636
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2671
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/DecorativeID.html Online documentation}
|
2637
2672
|
*/
|
2638
2673
|
export type DecorativeID = LuaDecorativePrototype | string
|
2639
2674
|
/**
|
@@ -2642,7 +2677,7 @@ declare module "factorio:runtime" {
|
|
2642
2677
|
* ## Union members
|
2643
2678
|
* - {@link LuaAsteroidChunkPrototype}: The asteroid chunk prototype.
|
2644
2679
|
* - `string`: The prototype name.
|
2645
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2680
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/AsteroidChunkID.html Online documentation}
|
2646
2681
|
*/
|
2647
2682
|
export type AsteroidChunkID = LuaAsteroidChunkPrototype | string
|
2648
2683
|
/**
|
@@ -2651,13 +2686,13 @@ declare module "factorio:runtime" {
|
|
2651
2686
|
* ## Union members
|
2652
2687
|
* - {@link LuaSpaceLocationPrototype}: The space location prototype.
|
2653
2688
|
* - `string`: The prototype name.
|
2654
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2689
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/SpaceLocationID.html Online documentation}
|
2655
2690
|
*/
|
2656
2691
|
export type SpaceLocationID = LuaSpaceLocationPrototype | string
|
2657
2692
|
/**
|
2658
2693
|
* A signal filter may be specified in two ways, either as a string which is a virtual signal name or item prototype name or as a table.
|
2659
2694
|
* @see SignalFilterWrite
|
2660
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2695
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/SignalFilter.html Online documentation}
|
2661
2696
|
*/
|
2662
2697
|
export type SignalFilter =
|
2663
2698
|
| {
|
@@ -2681,7 +2716,7 @@ declare module "factorio:runtime" {
|
|
2681
2716
|
| string
|
2682
2717
|
/**
|
2683
2718
|
* Write form of {@link SignalFilter}, where some properties allow additional values as input compared to the read form.
|
2684
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2719
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/SignalFilter.html Online documentation}
|
2685
2720
|
*/
|
2686
2721
|
export type SignalFilterWrite =
|
2687
2722
|
| {
|
@@ -2705,7 +2740,7 @@ declare module "factorio:runtime" {
|
|
2705
2740
|
| string
|
2706
2741
|
/**
|
2707
2742
|
* @see LogisticFilterWrite
|
2708
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2743
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/LogisticFilter.html Online documentation}
|
2709
2744
|
*/
|
2710
2745
|
export interface LogisticFilter {
|
2711
2746
|
/**
|
@@ -2731,7 +2766,7 @@ declare module "factorio:runtime" {
|
|
2731
2766
|
}
|
2732
2767
|
/**
|
2733
2768
|
* Write form of {@link LogisticFilter}, where some properties allow additional values as input compared to the read form.
|
2734
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2769
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/LogisticFilter.html Online documentation}
|
2735
2770
|
*/
|
2736
2771
|
export interface LogisticFilterWrite {
|
2737
2772
|
/**
|
@@ -2787,23 +2822,23 @@ declare module "factorio:runtime" {
|
|
2787
2822
|
* ## Union members
|
2788
2823
|
* - {@link LuaSurfacePropertyPrototype}: The surface property prototype.
|
2789
2824
|
* - `string`: The prototype name.
|
2790
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2825
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/SurfacePropertyID.html Online documentation}
|
2791
2826
|
*/
|
2792
2827
|
export type SurfacePropertyID = LuaSurfacePropertyPrototype | string
|
2793
2828
|
/**
|
2794
2829
|
* When writing it is possible to give LuaEntity or MapPosition directly. However, reading always returns the full ScriptRenderTargetTable.
|
2795
2830
|
* @see ScriptRenderTargetWrite
|
2796
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2831
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ScriptRenderTarget.html Online documentation}
|
2797
2832
|
*/
|
2798
2833
|
export type ScriptRenderTarget = LuaEntity | MapPosition | ScriptRenderTargetTable
|
2799
2834
|
/**
|
2800
2835
|
* Write form of {@link ScriptRenderTarget}, where some properties allow additional values as input compared to the read form.
|
2801
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2836
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ScriptRenderTarget.html Online documentation}
|
2802
2837
|
*/
|
2803
2838
|
export type ScriptRenderTargetWrite = LuaEntity | (MapPosition | MapPositionArray) | ScriptRenderTargetTableWrite
|
2804
2839
|
/**
|
2805
2840
|
* @see ScriptRenderTargetTableWrite
|
2806
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2841
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ScriptRenderTargetTable.html Online documentation}
|
2807
2842
|
*/
|
2808
2843
|
export interface ScriptRenderTargetTable {
|
2809
2844
|
readonly entity?: LuaEntity
|
@@ -2818,7 +2853,7 @@ declare module "factorio:runtime" {
|
|
2818
2853
|
}
|
2819
2854
|
/**
|
2820
2855
|
* Write form of {@link ScriptRenderTargetTable}, where some properties allow additional values as input compared to the read form.
|
2821
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2856
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ScriptRenderTargetTable.html Online documentation}
|
2822
2857
|
*/
|
2823
2858
|
export interface ScriptRenderTargetTableWrite {
|
2824
2859
|
readonly entity?: LuaEntity
|
@@ -2833,7 +2868,7 @@ declare module "factorio:runtime" {
|
|
2833
2868
|
}
|
2834
2869
|
/**
|
2835
2870
|
* An item filter may be specified in two ways, either as a string which is a quality prototype name or as a table.
|
2836
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2871
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/QualityCondition.html Online documentation}
|
2837
2872
|
*/
|
2838
2873
|
export type QualityCondition =
|
2839
2874
|
| {
|
@@ -2847,18 +2882,29 @@ declare module "factorio:runtime" {
|
|
2847
2882
|
readonly comparator?: ComparatorString
|
2848
2883
|
}
|
2849
2884
|
| string
|
2885
|
+
/**
|
2886
|
+
* Event name may be specified in one of four ways.
|
2887
|
+
*
|
2888
|
+
* ## Union members
|
2889
|
+
* - {@link LuaCustomEventPrototype}: Custom event prototype.
|
2890
|
+
* - {@link LuaCustomInputPrototype}: Custom input prototype.
|
2891
|
+
* - {@link defines.events}: Event identifier.
|
2892
|
+
* - `string`: Name of the event.
|
2893
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/LuaEventType.html Online documentation}
|
2894
|
+
*/
|
2895
|
+
export type LuaEventType = LuaCustomEventPrototype | LuaCustomInputPrototype | defines.events | string | EventId<any>
|
2850
2896
|
/**
|
2851
2897
|
* ## Union members
|
2852
2898
|
* - `"center-to-center"`
|
2853
2899
|
* - `"bounding-box-to-bounding-box"`
|
2854
2900
|
* - `"center-to-bounding-box"`
|
2855
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2901
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/RangeMode.html Online documentation}
|
2856
2902
|
*/
|
2857
2903
|
export type RangeMode = "center-to-center" | "bounding-box-to-bounding-box" | "center-to-bounding-box"
|
2858
2904
|
/**
|
2859
2905
|
* The representation of an entity inside of a blueprint. It has at least these fields, but can contain additional ones depending on the kind of entity.
|
2860
2906
|
* @see BlueprintEntityWrite
|
2861
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2907
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/BlueprintEntity.html Online documentation}
|
2862
2908
|
*/
|
2863
2909
|
export interface BlueprintEntity {
|
2864
2910
|
/**
|
@@ -3072,7 +3118,7 @@ declare module "factorio:runtime" {
|
|
3072
3118
|
}
|
3073
3119
|
/**
|
3074
3120
|
* Write form of {@link BlueprintEntity}, where some properties allow additional values as input compared to the read form.
|
3075
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3121
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/BlueprintEntity.html Online documentation}
|
3076
3122
|
*/
|
3077
3123
|
export interface BlueprintEntityWrite {
|
3078
3124
|
/**
|
@@ -3198,7 +3244,7 @@ declare module "factorio:runtime" {
|
|
3198
3244
|
/**
|
3199
3245
|
* Used by programmable speakers.
|
3200
3246
|
*/
|
3201
|
-
readonly alert_parameters?:
|
3247
|
+
readonly alert_parameters?: ProgrammableSpeakerAlertParametersWrite
|
3202
3248
|
/**
|
3203
3249
|
* Used by rocket silos. I have no idea what this is.
|
3204
3250
|
*/
|
@@ -3267,7 +3313,7 @@ declare module "factorio:runtime" {
|
|
3267
3313
|
/**
|
3268
3314
|
* Display panel icon.
|
3269
3315
|
*/
|
3270
|
-
readonly icon?:
|
3316
|
+
readonly icon?: SignalIDWrite
|
3271
3317
|
/**
|
3272
3318
|
* Display panel text.
|
3273
3319
|
*/
|
@@ -3293,7 +3339,7 @@ declare module "factorio:runtime" {
|
|
3293
3339
|
}
|
3294
3340
|
/**
|
3295
3341
|
* @see BlueprintEquipmentWrite
|
3296
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3342
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/BlueprintEquipment.html Online documentation}
|
3297
3343
|
*/
|
3298
3344
|
export interface BlueprintEquipment {
|
3299
3345
|
readonly equipment: ItemIDAndQualityIDPair
|
@@ -3301,7 +3347,7 @@ declare module "factorio:runtime" {
|
|
3301
3347
|
}
|
3302
3348
|
/**
|
3303
3349
|
* Write form of {@link BlueprintEquipment}, where some properties allow additional values as input compared to the read form.
|
3304
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3350
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/BlueprintEquipment.html Online documentation}
|
3305
3351
|
*/
|
3306
3352
|
export interface BlueprintEquipmentWrite {
|
3307
3353
|
readonly equipment: ItemIDAndQualityIDPairWrite
|
@@ -3309,7 +3355,7 @@ declare module "factorio:runtime" {
|
|
3309
3355
|
}
|
3310
3356
|
/**
|
3311
3357
|
* @see BlueprintInventoryWrite
|
3312
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3358
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/BlueprintInventory.html Online documentation}
|
3313
3359
|
*/
|
3314
3360
|
export interface BlueprintInventory {
|
3315
3361
|
readonly filters?: BlueprintLogisticFilter[]
|
@@ -3320,7 +3366,7 @@ declare module "factorio:runtime" {
|
|
3320
3366
|
}
|
3321
3367
|
/**
|
3322
3368
|
* Write form of {@link BlueprintInventory}, where some properties allow additional values as input compared to the read form.
|
3323
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3369
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/BlueprintInventory.html Online documentation}
|
3324
3370
|
*/
|
3325
3371
|
export interface BlueprintInventoryWrite {
|
3326
3372
|
readonly filters?: readonly BlueprintLogisticFilterWrite[]
|
@@ -3341,7 +3387,7 @@ declare module "factorio:runtime" {
|
|
3341
3387
|
}
|
3342
3388
|
/**
|
3343
3389
|
* @see BlueprintControlBehaviorWrite
|
3344
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3390
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/BlueprintControlBehavior.html Online documentation}
|
3345
3391
|
*/
|
3346
3392
|
export interface BlueprintControlBehavior {
|
3347
3393
|
/**
|
@@ -3594,7 +3640,7 @@ declare module "factorio:runtime" {
|
|
3594
3640
|
}
|
3595
3641
|
/**
|
3596
3642
|
* Write form of {@link BlueprintControlBehavior}, where some properties allow additional values as input compared to the read form.
|
3597
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3643
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/BlueprintControlBehavior.html Online documentation}
|
3598
3644
|
*/
|
3599
3645
|
export interface BlueprintControlBehaviorWrite {
|
3600
3646
|
/**
|
@@ -3661,7 +3707,7 @@ declare module "factorio:runtime" {
|
|
3661
3707
|
/**
|
3662
3708
|
* Accumulator or gate output signal.
|
3663
3709
|
*/
|
3664
|
-
readonly output_signal?:
|
3710
|
+
readonly output_signal?: SignalIDWrite
|
3665
3711
|
/**
|
3666
3712
|
* If the accumulator sends its charge to the circuit network. Default true.
|
3667
3713
|
*/
|
@@ -3702,16 +3748,16 @@ declare module "factorio:runtime" {
|
|
3702
3748
|
* If this inserter has its stack size set by the circuit network.
|
3703
3749
|
*/
|
3704
3750
|
readonly circuit_set_stack_size?: boolean
|
3705
|
-
readonly stack_control_input_signal?:
|
3751
|
+
readonly stack_control_input_signal?: SignalIDWrite
|
3706
3752
|
/**
|
3707
3753
|
* Used by assembling machines.
|
3708
3754
|
*/
|
3709
3755
|
readonly set_recipe?: boolean
|
3710
3756
|
readonly read_ingredients?: boolean
|
3711
3757
|
readonly read_recipe_finished?: boolean
|
3712
|
-
readonly read_recipe_finished_signal?:
|
3758
|
+
readonly read_recipe_finished_signal?: SignalIDWrite
|
3713
3759
|
readonly read_working?: boolean
|
3714
|
-
readonly read_working_signal?:
|
3760
|
+
readonly read_working_signal?: SignalIDWrite
|
3715
3761
|
/**
|
3716
3762
|
* If this mining drill reads its resources to the circuit network.
|
3717
3763
|
*/
|
@@ -3725,12 +3771,12 @@ declare module "factorio:runtime" {
|
|
3725
3771
|
* Used by constant combinators.
|
3726
3772
|
*/
|
3727
3773
|
readonly sections?: LogisticSectionsWrite
|
3728
|
-
readonly arithmetic_conditions?:
|
3774
|
+
readonly arithmetic_conditions?: ArithmeticCombinatorParametersWrite
|
3729
3775
|
readonly decider_conditions?: DeciderCombinatorParameters
|
3730
3776
|
/**
|
3731
3777
|
* Used by selector combinators.
|
3732
3778
|
*/
|
3733
|
-
readonly index_signal?:
|
3779
|
+
readonly index_signal?: SignalIDWrite
|
3734
3780
|
/**
|
3735
3781
|
* Used by selector combinators.
|
3736
3782
|
*/
|
@@ -3738,7 +3784,7 @@ declare module "factorio:runtime" {
|
|
3738
3784
|
/**
|
3739
3785
|
* Used by selector combinators.
|
3740
3786
|
*/
|
3741
|
-
readonly count_signal?:
|
3787
|
+
readonly count_signal?: SignalIDWrite
|
3742
3788
|
/**
|
3743
3789
|
* Used by selector combinators. When not specified, defaults to "select".
|
3744
3790
|
*/
|
@@ -3753,13 +3799,13 @@ declare module "factorio:runtime" {
|
|
3753
3799
|
readonly send_to_train?: boolean
|
3754
3800
|
readonly read_from_train?: boolean
|
3755
3801
|
readonly set_trains_limit?: boolean
|
3756
|
-
readonly trains_limit_signal?:
|
3802
|
+
readonly trains_limit_signal?: SignalIDWrite
|
3757
3803
|
readonly read_stopped_train?: boolean
|
3758
|
-
readonly train_stopped_signal?:
|
3804
|
+
readonly train_stopped_signal?: SignalIDWrite
|
3759
3805
|
readonly read_trains_count?: boolean
|
3760
|
-
readonly trains_count_signal?:
|
3806
|
+
readonly trains_count_signal?: SignalIDWrite
|
3761
3807
|
readonly set_priority?: boolean
|
3762
|
-
readonly priority_signal?:
|
3808
|
+
readonly priority_signal?: SignalIDWrite
|
3763
3809
|
/**
|
3764
3810
|
* Used by lamps.
|
3765
3811
|
*/
|
@@ -3768,19 +3814,19 @@ declare module "factorio:runtime" {
|
|
3768
3814
|
/**
|
3769
3815
|
* Used by **lamps**. For rail signals, see {@link red_output_signal }.
|
3770
3816
|
*/
|
3771
|
-
readonly red_signal?:
|
3817
|
+
readonly red_signal?: SignalIDWrite
|
3772
3818
|
/**
|
3773
3819
|
* Used by **lamps**. For rail signals, see {@link green_output_signal }.
|
3774
3820
|
*/
|
3775
|
-
readonly green_signal?:
|
3821
|
+
readonly green_signal?: SignalIDWrite
|
3776
3822
|
/**
|
3777
3823
|
* Used by **lamps**. For rail signals, see {@link orange_output_signal }.
|
3778
3824
|
*/
|
3779
|
-
readonly blue_signal?:
|
3825
|
+
readonly blue_signal?: SignalIDWrite
|
3780
3826
|
/**
|
3781
3827
|
* Used by lamps.
|
3782
3828
|
*/
|
3783
|
-
readonly rgb_signal?:
|
3829
|
+
readonly rgb_signal?: SignalIDWrite
|
3784
3830
|
/**
|
3785
3831
|
* Used by roboports.
|
3786
3832
|
*/
|
@@ -3788,11 +3834,11 @@ declare module "factorio:runtime" {
|
|
3788
3834
|
| defines.control_behavior.roboport.read_items_mode
|
3789
3835
|
| defines.control_behavior.rocket_silo.read_mode
|
3790
3836
|
readonly read_robot_stats?: boolean
|
3791
|
-
readonly available_logistic_output_signal?:
|
3792
|
-
readonly total_logistic_output_signal?:
|
3793
|
-
readonly available_construction_output_signal?:
|
3794
|
-
readonly total_construction_output_signal?:
|
3795
|
-
readonly roboport_count_output_signal?:
|
3837
|
+
readonly available_logistic_output_signal?: SignalIDWrite
|
3838
|
+
readonly total_logistic_output_signal?: SignalIDWrite
|
3839
|
+
readonly available_construction_output_signal?: SignalIDWrite
|
3840
|
+
readonly total_construction_output_signal?: SignalIDWrite
|
3841
|
+
readonly roboport_count_output_signal?: SignalIDWrite
|
3796
3842
|
/**
|
3797
3843
|
* Used by train signals.
|
3798
3844
|
*/
|
@@ -3804,19 +3850,19 @@ declare module "factorio:runtime" {
|
|
3804
3850
|
/**
|
3805
3851
|
* Used by **train signals**. For lamps, seed {@link red_signal }.
|
3806
3852
|
*/
|
3807
|
-
readonly red_output_signal?:
|
3853
|
+
readonly red_output_signal?: SignalIDWrite
|
3808
3854
|
/**
|
3809
3855
|
* used by train signals.
|
3810
3856
|
*/
|
3811
|
-
readonly orange_output_signal?:
|
3857
|
+
readonly orange_output_signal?: SignalIDWrite
|
3812
3858
|
/**
|
3813
3859
|
* Used by **train signals**. For lamps, seed {@link green_signal }.
|
3814
3860
|
*/
|
3815
|
-
readonly green_output_signal?:
|
3861
|
+
readonly green_output_signal?: SignalIDWrite
|
3816
3862
|
/**
|
3817
3863
|
* Used by **train signals**. For lamps, seed {@link blue_signal }.
|
3818
3864
|
*/
|
3819
|
-
readonly blue_output_signal?:
|
3865
|
+
readonly blue_output_signal?: SignalIDWrite
|
3820
3866
|
/**
|
3821
3867
|
* Used by programmable speakers.
|
3822
3868
|
*/
|
@@ -3833,7 +3879,7 @@ declare module "factorio:runtime" {
|
|
3833
3879
|
* If this reads the temperature of this reactor.
|
3834
3880
|
*/
|
3835
3881
|
readonly read_temperature?: boolean
|
3836
|
-
readonly temperature_signal?:
|
3882
|
+
readonly temperature_signal?: SignalIDWrite
|
3837
3883
|
/**
|
3838
3884
|
* Used by space platform hub.
|
3839
3885
|
*/
|
@@ -3841,9 +3887,9 @@ declare module "factorio:runtime" {
|
|
3841
3887
|
readonly read_moving_from?: boolean
|
3842
3888
|
readonly read_moving_to?: boolean
|
3843
3889
|
readonly read_speed?: boolean
|
3844
|
-
readonly speed_signal?:
|
3890
|
+
readonly speed_signal?: SignalIDWrite
|
3845
3891
|
readonly read_damage_taken?: boolean
|
3846
|
-
readonly damage_taken_signal?:
|
3892
|
+
readonly damage_taken_signal?: SignalIDWrite
|
3847
3893
|
}
|
3848
3894
|
/**
|
3849
3895
|
* A string that represents a math expression. The expression parser recognizes four basic token types (with their regex):
|
@@ -3875,7 +3921,7 @@ declare module "factorio:runtime" {
|
|
3875
3921
|
* "2500 * (L - 3)"
|
3876
3922
|
* @example
|
3877
3923
|
* "(4e5 * (abs(speed) + 10.5)) / weight"
|
3878
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3924
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/MathExpression.html Online documentation}
|
3879
3925
|
*/
|
3880
3926
|
export type MathExpression = string
|
3881
3927
|
/**
|
@@ -3897,7 +3943,7 @@ declare module "factorio:runtime" {
|
|
3897
3943
|
* -- What a custom recipe would look like that had a probability of 0.5 to return a
|
3898
3944
|
* -- minimum amount of 1 and a maximum amount of 5
|
3899
3945
|
* {{type="item", name="custom-item", probability=0.5, amount_min=1, amount_max=5}}
|
3900
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3946
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/Product.html Online documentation}
|
3901
3947
|
*/
|
3902
3948
|
export type Product = ItemProduct | FluidProduct | ResearchProgressProduct
|
3903
3949
|
/**
|
@@ -3908,7 +3954,7 @@ declare module "factorio:runtime" {
|
|
3908
3954
|
* -- What a custom recipe would look like that had a probability of 0.5 to return a
|
3909
3955
|
* -- minimum amount of 1 and a maximum amount of 5
|
3910
3956
|
* {{type="item", name="custom-item", probability=0.5, amount_min=1, amount_max=5}}
|
3911
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3957
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ItemProduct.html Online documentation}
|
3912
3958
|
*/
|
3913
3959
|
export interface ItemProduct {
|
3914
3960
|
readonly type: "item"
|
@@ -3952,7 +3998,7 @@ declare module "factorio:runtime" {
|
|
3952
3998
|
* {{type="fluid", name="heavy-oil", amount=1},
|
3953
3999
|
* {type="fluid", name="light-oil", amount=4.5},
|
3954
4000
|
* {type="fluid", name="petroleum-gas", amount=5.5}}
|
3955
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4001
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/FluidProduct.html Online documentation}
|
3956
4002
|
*/
|
3957
4003
|
export interface FluidProduct {
|
3958
4004
|
readonly type: "fluid"
|
@@ -4000,7 +4046,7 @@ declare module "factorio:runtime" {
|
|
4000
4046
|
}
|
4001
4047
|
/**
|
4002
4048
|
* @see LogisticSectionsWrite
|
4003
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4049
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/LogisticSections.html Online documentation}
|
4004
4050
|
*/
|
4005
4051
|
export interface LogisticSections {
|
4006
4052
|
readonly sections?: LogisticSection[]
|
@@ -4011,7 +4057,7 @@ declare module "factorio:runtime" {
|
|
4011
4057
|
}
|
4012
4058
|
/**
|
4013
4059
|
* Write form of {@link LogisticSections}, where some properties allow additional values as input compared to the read form.
|
4014
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4060
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/LogisticSections.html Online documentation}
|
4015
4061
|
*/
|
4016
4062
|
export interface LogisticSectionsWrite {
|
4017
4063
|
readonly sections?: readonly LogisticSectionWrite[]
|
@@ -4047,7 +4093,7 @@ declare module "factorio:runtime" {
|
|
4047
4093
|
}
|
4048
4094
|
/**
|
4049
4095
|
* @see LogisticSectionWrite
|
4050
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4096
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/LogisticSection.html Online documentation}
|
4051
4097
|
*/
|
4052
4098
|
export interface LogisticSection {
|
4053
4099
|
readonly index: uint8
|
@@ -4064,7 +4110,7 @@ declare module "factorio:runtime" {
|
|
4064
4110
|
}
|
4065
4111
|
/**
|
4066
4112
|
* Write form of {@link LogisticSection}, where some properties allow additional values as input compared to the read form.
|
4067
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4113
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/LogisticSection.html Online documentation}
|
4068
4114
|
*/
|
4069
4115
|
export interface LogisticSectionWrite {
|
4070
4116
|
readonly index: uint8
|
@@ -4081,7 +4127,7 @@ declare module "factorio:runtime" {
|
|
4081
4127
|
}
|
4082
4128
|
/**
|
4083
4129
|
* @see BlueprintLogisticFilterWrite
|
4084
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4130
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/BlueprintLogisticFilter.html Online documentation}
|
4085
4131
|
*/
|
4086
4132
|
export interface BlueprintLogisticFilter {
|
4087
4133
|
readonly index: LogisticFilterIndex
|
@@ -4111,7 +4157,7 @@ declare module "factorio:runtime" {
|
|
4111
4157
|
}
|
4112
4158
|
/**
|
4113
4159
|
* Write form of {@link BlueprintLogisticFilter}, where some properties allow additional values as input compared to the read form.
|
4114
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4160
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/BlueprintLogisticFilter.html Online documentation}
|
4115
4161
|
*/
|
4116
4162
|
export interface BlueprintLogisticFilterWrite {
|
4117
4163
|
readonly index: LogisticFilterIndex
|
@@ -4141,7 +4187,7 @@ declare module "factorio:runtime" {
|
|
4141
4187
|
}
|
4142
4188
|
/**
|
4143
4189
|
* Specifies how probability and richness are calculated when placing something on the map.
|
4144
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4190
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/AutoplaceSpecification.html Online documentation}
|
4145
4191
|
*/
|
4146
4192
|
export interface AutoplaceSpecification {
|
4147
4193
|
/**
|
@@ -4158,7 +4204,7 @@ declare module "factorio:runtime" {
|
|
4158
4204
|
}
|
4159
4205
|
/**
|
4160
4206
|
* @see CliffPlacementSettingsWrite
|
4161
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4207
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/CliffPlacementSettings.html Online documentation}
|
4162
4208
|
*/
|
4163
4209
|
export interface CliffPlacementSettings {
|
4164
4210
|
/**
|
@@ -4188,7 +4234,7 @@ declare module "factorio:runtime" {
|
|
4188
4234
|
}
|
4189
4235
|
/**
|
4190
4236
|
* Write form of {@link CliffPlacementSettings}, where some properties allow additional values as input compared to the read form.
|
4191
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4237
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/CliffPlacementSettings.html Online documentation}
|
4192
4238
|
*/
|
4193
4239
|
export interface CliffPlacementSettingsWrite {
|
4194
4240
|
/**
|
@@ -4218,7 +4264,7 @@ declare module "factorio:runtime" {
|
|
4218
4264
|
}
|
4219
4265
|
/**
|
4220
4266
|
* @see AutoplaceSettingsWrite
|
4221
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4267
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/AutoplaceSettings.html Online documentation}
|
4222
4268
|
*/
|
4223
4269
|
export interface AutoplaceSettings {
|
4224
4270
|
/**
|
@@ -4232,7 +4278,7 @@ declare module "factorio:runtime" {
|
|
4232
4278
|
}
|
4233
4279
|
/**
|
4234
4280
|
* Write form of {@link AutoplaceSettings}, where some properties allow additional values as input compared to the read form.
|
4235
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4281
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/AutoplaceSettings.html Online documentation}
|
4236
4282
|
*/
|
4237
4283
|
export interface AutoplaceSettingsWrite {
|
4238
4284
|
/**
|
@@ -4267,7 +4313,7 @@ declare module "factorio:runtime" {
|
|
4267
4313
|
* surface.map_gen_settings = mgs
|
4268
4314
|
* -- This does not require a NamedNoiseExpression to be defined, since literal numbers (and strings naming literal
|
4269
4315
|
* -- numbers, e.g. `"123"`) are understood to stand for constant value expressions.
|
4270
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4316
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/MapGenSettings.html Online documentation}
|
4271
4317
|
*/
|
4272
4318
|
export interface MapGenSettings {
|
4273
4319
|
/**
|
@@ -4322,7 +4368,7 @@ declare module "factorio:runtime" {
|
|
4322
4368
|
}
|
4323
4369
|
/**
|
4324
4370
|
* Write form of {@link MapGenSettings}, where some properties allow additional values as input compared to the read form.
|
4325
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4371
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/MapGenSettings.html Online documentation}
|
4326
4372
|
*/
|
4327
4373
|
export interface MapGenSettingsWrite {
|
4328
4374
|
/**
|
@@ -4381,7 +4427,7 @@ declare module "factorio:runtime" {
|
|
4381
4427
|
}
|
4382
4428
|
/**
|
4383
4429
|
* These values are for the time frame of one second (60 ticks).
|
4384
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4430
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/PollutionMapSettings.html Online documentation}
|
4385
4431
|
*/
|
4386
4432
|
export interface PollutionMapSettings {
|
4387
4433
|
/**
|
@@ -4435,7 +4481,7 @@ declare module "factorio:runtime" {
|
|
4435
4481
|
}
|
4436
4482
|
/**
|
4437
4483
|
* These values represent a percentual increase in evolution. This means a value of `0.1` would increase evolution by 10%.
|
4438
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4484
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/EnemyEvolutionMapSettings.html Online documentation}
|
4439
4485
|
*/
|
4440
4486
|
export interface EnemyEvolutionMapSettings {
|
4441
4487
|
/**
|
@@ -4473,7 +4519,7 @@ declare module "factorio:runtime" {
|
|
4473
4519
|
* * neighbouring_base_chunk_coefficient^distance(chunk, neighbour)
|
4474
4520
|
* score(chunk) = 1 / (1 + player + base)
|
4475
4521
|
* ```
|
4476
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4522
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/EnemyExpansionMapSettings.html Online documentation}
|
4477
4523
|
*/
|
4478
4524
|
export interface EnemyExpansionMapSettings {
|
4479
4525
|
/**
|
@@ -4732,17 +4778,17 @@ declare module "factorio:runtime" {
|
|
4732
4778
|
}
|
4733
4779
|
/**
|
4734
4780
|
* Technology difficulty settings. Updating any of the attributes will immediately take effect in the game engine.
|
4735
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4781
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/DifficultySettings.html Online documentation}
|
4736
4782
|
*/
|
4737
4783
|
export interface DifficultySettings {
|
4738
4784
|
/**
|
4739
4785
|
* A value in range [0.001, 1000].
|
4740
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4786
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/DifficultySettings.technology_price_multiplier.html Online documentation}
|
4741
4787
|
*/
|
4742
4788
|
technology_price_multiplier: double
|
4743
4789
|
/**
|
4744
4790
|
* A value in range [0.01, 100].
|
4745
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4791
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/DifficultySettings.spoil_time_modifier.html Online documentation}
|
4746
4792
|
*/
|
4747
4793
|
spoil_time_modifier: double
|
4748
4794
|
}
|
@@ -4758,7 +4804,7 @@ declare module "factorio:runtime" {
|
|
4758
4804
|
}
|
4759
4805
|
/**
|
4760
4806
|
* A standard table containing all {@link MapSettings} attributes plus an additional table that contains all {@link DifficultySettings} properties.
|
4761
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4807
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/MapAndDifficultySettings.html Online documentation}
|
4762
4808
|
*/
|
4763
4809
|
export interface MapAndDifficultySettings {
|
4764
4810
|
readonly pollution: PollutionMapSettings
|
@@ -4779,7 +4825,7 @@ declare module "factorio:runtime" {
|
|
4779
4825
|
* @example
|
4780
4826
|
* -- Increase the number of short paths the pathfinder can cache.
|
4781
4827
|
* game.map_settings.path_finder.short_cache_size = 15
|
4782
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4828
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/MapSettings.html Online documentation}
|
4783
4829
|
*/
|
4784
4830
|
export interface MapSettings {
|
4785
4831
|
pollution: PollutionMapSettings
|
@@ -4791,13 +4837,13 @@ declare module "factorio:runtime" {
|
|
4791
4837
|
asteroids: AsteroidMapSettings
|
4792
4838
|
/**
|
4793
4839
|
* If a behavior fails this many times, the enemy (or enemy group) is destroyed. This solves biters getting stuck within their own base.
|
4794
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4840
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/MapSettings.max_failed_behavior_count.html Online documentation}
|
4795
4841
|
*/
|
4796
4842
|
max_failed_behavior_count: uint
|
4797
4843
|
}
|
4798
4844
|
/**
|
4799
4845
|
* @see BlueprintScheduleRecordWrite
|
4800
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4846
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/BlueprintScheduleRecord.html Online documentation}
|
4801
4847
|
*/
|
4802
4848
|
export interface BlueprintScheduleRecord {
|
4803
4849
|
/**
|
@@ -4814,7 +4860,7 @@ declare module "factorio:runtime" {
|
|
4814
4860
|
}
|
4815
4861
|
/**
|
4816
4862
|
* Write form of {@link BlueprintScheduleRecord}, where some properties allow additional values as input compared to the read form.
|
4817
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4863
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/BlueprintScheduleRecord.html Online documentation}
|
4818
4864
|
*/
|
4819
4865
|
export interface BlueprintScheduleRecordWrite {
|
4820
4866
|
/**
|
@@ -4831,7 +4877,7 @@ declare module "factorio:runtime" {
|
|
4831
4877
|
}
|
4832
4878
|
/**
|
4833
4879
|
* @see BlueprintScheduleInterruptWrite
|
4834
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4880
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/BlueprintScheduleInterrupt.html Online documentation}
|
4835
4881
|
*/
|
4836
4882
|
export interface BlueprintScheduleInterrupt {
|
4837
4883
|
readonly name?: string
|
@@ -4841,7 +4887,7 @@ declare module "factorio:runtime" {
|
|
4841
4887
|
}
|
4842
4888
|
/**
|
4843
4889
|
* Write form of {@link BlueprintScheduleInterrupt}, where some properties allow additional values as input compared to the read form.
|
4844
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4890
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/BlueprintScheduleInterrupt.html Online documentation}
|
4845
4891
|
*/
|
4846
4892
|
export interface BlueprintScheduleInterruptWrite {
|
4847
4893
|
readonly name?: string
|
@@ -4851,7 +4897,7 @@ declare module "factorio:runtime" {
|
|
4851
4897
|
}
|
4852
4898
|
/**
|
4853
4899
|
* @see BlueprintScheduleWrite
|
4854
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4900
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/BlueprintSchedule.html Online documentation}
|
4855
4901
|
*/
|
4856
4902
|
export interface BlueprintSchedule {
|
4857
4903
|
readonly records?: BlueprintScheduleRecord[]
|
@@ -4860,7 +4906,7 @@ declare module "factorio:runtime" {
|
|
4860
4906
|
}
|
4861
4907
|
/**
|
4862
4908
|
* Write form of {@link BlueprintSchedule}, where some properties allow additional values as input compared to the read form.
|
4863
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4909
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/BlueprintSchedule.html Online documentation}
|
4864
4910
|
*/
|
4865
4911
|
export interface BlueprintScheduleWrite {
|
4866
4912
|
readonly records?: readonly BlueprintScheduleRecordWrite[]
|
@@ -4869,7 +4915,7 @@ declare module "factorio:runtime" {
|
|
4869
4915
|
}
|
4870
4916
|
/**
|
4871
4917
|
* @see WaitConditionWrite
|
4872
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4918
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/WaitCondition.html Online documentation}
|
4873
4919
|
*/
|
4874
4920
|
export interface WaitCondition {
|
4875
4921
|
readonly type: WaitConditionType
|
@@ -4900,7 +4946,7 @@ declare module "factorio:runtime" {
|
|
4900
4946
|
}
|
4901
4947
|
/**
|
4902
4948
|
* Write form of {@link WaitCondition}, where some properties allow additional values as input compared to the read form.
|
4903
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4949
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/WaitCondition.html Online documentation}
|
4904
4950
|
*/
|
4905
4951
|
export interface WaitConditionWrite {
|
4906
4952
|
readonly type: WaitConditionType
|
@@ -4959,7 +5005,7 @@ declare module "factorio:runtime" {
|
|
4959
5005
|
* - `"at_station"`
|
4960
5006
|
* - `"not_at_station"`
|
4961
5007
|
* - `"damage_taken"`
|
4962
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5008
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/WaitConditionType.html Online documentation}
|
4963
5009
|
*/
|
4964
5010
|
export type WaitConditionType =
|
4965
5011
|
| "time"
|
@@ -5001,7 +5047,7 @@ declare module "factorio:runtime" {
|
|
5001
5047
|
* - `"blueprint-snap-rectangle"`: Green by default.
|
5002
5048
|
* - `"spidertron-remote-selected"`
|
5003
5049
|
* - `"spidertron-remote-to-be-selected"`
|
5004
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5050
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/CursorBoxRenderType.html Online documentation}
|
5005
5051
|
*/
|
5006
5052
|
export type CursorBoxRenderType =
|
5007
5053
|
| "entity"
|
@@ -5017,7 +5063,7 @@ declare module "factorio:runtime" {
|
|
5017
5063
|
| "spidertron-remote-to-be-selected"
|
5018
5064
|
/**
|
5019
5065
|
* What is shown in the map view. If a field is not given, that setting will not be changed.
|
5020
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5066
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/MapViewSettings.html Online documentation}
|
5021
5067
|
*/
|
5022
5068
|
export interface MapViewSettings {
|
5023
5069
|
readonly "show-logistic-network"?: boolean
|
@@ -5110,7 +5156,7 @@ declare module "factorio:runtime" {
|
|
5110
5156
|
* - `"collision-selection-box"`: 189
|
5111
5157
|
* - `"arrow"`: 190
|
5112
5158
|
* - `"cursor"`: 226
|
5113
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5159
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/RenderLayer.html Online documentation}
|
5114
5160
|
*/
|
5115
5161
|
export type RenderLayer =
|
5116
5162
|
| `${bigint}`
|
@@ -5206,7 +5252,7 @@ declare module "factorio:runtime" {
|
|
5206
5252
|
* - `"entity-with-quality"`
|
5207
5253
|
* - `"recipe-with-quality"`
|
5208
5254
|
* - `"equipment-with-quality"`
|
5209
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5255
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ElemType.html Online documentation}
|
5210
5256
|
*/
|
5211
5257
|
export type ElemType =
|
5212
5258
|
| "achievement"
|
@@ -5233,7 +5279,7 @@ declare module "factorio:runtime" {
|
|
5233
5279
|
* - `"left"`
|
5234
5280
|
* - `"right"`
|
5235
5281
|
* - `"none"`
|
5236
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5282
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/SwitchState.html Online documentation}
|
5237
5283
|
*/
|
5238
5284
|
export type SwitchState = "left" | "right" | "none"
|
5239
5285
|
export interface ElemID {
|
@@ -5252,6 +5298,7 @@ declare module "factorio:runtime" {
|
|
5252
5298
|
*
|
5253
5299
|
* ## Union members
|
5254
5300
|
* - `"damage"`
|
5301
|
+
* - `"damage-tile"`
|
5255
5302
|
* - `"create-entity"`
|
5256
5303
|
* - `"create-explosion"`
|
5257
5304
|
* - `"create-fire"`
|
@@ -5273,10 +5320,11 @@ declare module "factorio:runtime" {
|
|
5273
5320
|
* - `"destroy-decoratives"`
|
5274
5321
|
* - `"camera-effect"`
|
5275
5322
|
* - `"activate-impact"`
|
5276
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5323
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/TriggerEffectItemType.html Online documentation}
|
5277
5324
|
*/
|
5278
5325
|
export type TriggerEffectItemType =
|
5279
5326
|
| "damage"
|
5327
|
+
| "damage-tile"
|
5280
5328
|
| "create-entity"
|
5281
5329
|
| "create-explosion"
|
5282
5330
|
| "create-fire"
|
@@ -5309,7 +5357,7 @@ declare module "factorio:runtime" {
|
|
5309
5357
|
}
|
5310
5358
|
/**
|
5311
5359
|
* A set of trigger target masks.
|
5312
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5360
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/TriggerTargetMask.html Online documentation}
|
5313
5361
|
*/
|
5314
5362
|
export type TriggerTargetMask = Record<string, true>
|
5315
5363
|
export interface TriggerItem {
|
@@ -5376,7 +5424,7 @@ declare module "factorio:runtime" {
|
|
5376
5424
|
* -- If 'entity-description.furnace' exists, it is concatenated with "\n" and returned. Otherwise, if 'item-description.furnace'
|
5377
5425
|
* -- exists, it is returned as-is. Otherwise, "optional fallback" is returned. If this value wasn't specified, the
|
5378
5426
|
* -- translation result would be "Unknown key: 'item-description.furnace'".
|
5379
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5427
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/LocalisedString.html Online documentation}
|
5380
5428
|
*/
|
5381
5429
|
export type LocalisedString = string | number | boolean | LuaObject | nil | [string, ...LocalisedString[]]
|
5382
5430
|
export interface DisplayResolution {
|
@@ -5387,7 +5435,7 @@ declare module "factorio:runtime" {
|
|
5387
5435
|
* The smooth orientation. It is a {@link float} in the range `[0, 1)` that covers a full circle, starting at the top and going clockwise. This means a value of `0` indicates "north", a value of `0.5` indicates "south".
|
5388
5436
|
*
|
5389
5437
|
* For example then, a value of `0.625` would indicate "south-west", and a value of `0.875` would indicate "north-west".
|
5390
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5438
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/RealOrientation.html Online documentation}
|
5391
5439
|
*/
|
5392
5440
|
export type RealOrientation = float
|
5393
5441
|
/**
|
@@ -5402,7 +5450,7 @@ declare module "factorio:runtime" {
|
|
5402
5450
|
* @example
|
5403
5451
|
* -- Shorthand
|
5404
5452
|
* {1.625, 2.375}
|
5405
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5453
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/MapPosition.html Online documentation}
|
5406
5454
|
*/
|
5407
5455
|
export interface MapPosition {
|
5408
5456
|
readonly x: double
|
@@ -5411,13 +5459,13 @@ declare module "factorio:runtime" {
|
|
5411
5459
|
/**
|
5412
5460
|
* Array form of {@link MapPosition}.
|
5413
5461
|
* @see MapPosition
|
5414
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5462
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/MapPosition.html Online documentation}
|
5415
5463
|
*/
|
5416
5464
|
export type MapPositionArray = readonly [double, double]
|
5417
5465
|
/**
|
5418
5466
|
* Coordinates of a chunk in a {@link LuaSurface} where each integer `x`/`y` represents a different chunk. This uses the same format as {@link MapPosition}, meaning it can be specified either with or without explicit keys. A {@link MapPosition} can be translated to a ChunkPosition by dividing the `x`/`y` values by 32.
|
5419
5467
|
* @see ChunkPositionArray
|
5420
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5468
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ChunkPosition.html Online documentation}
|
5421
5469
|
*/
|
5422
5470
|
export interface ChunkPosition {
|
5423
5471
|
readonly x: int
|
@@ -5426,13 +5474,13 @@ declare module "factorio:runtime" {
|
|
5426
5474
|
/**
|
5427
5475
|
* Array form of {@link ChunkPosition}.
|
5428
5476
|
* @see ChunkPosition
|
5429
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5477
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ChunkPosition.html Online documentation}
|
5430
5478
|
*/
|
5431
5479
|
export type ChunkPositionArray = readonly [int, int]
|
5432
5480
|
/**
|
5433
5481
|
* Coordinates of a tile on a {@link LuaSurface} where each integer `x`/`y` represents a different tile. This uses the same format as {@link MapPosition}, except it rounds any non-integer `x`/`y` down to whole numbers. It can be specified either with or without explicit keys.
|
5434
5482
|
* @see TilePositionArray
|
5435
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5483
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/TilePosition.html Online documentation}
|
5436
5484
|
*/
|
5437
5485
|
export interface TilePosition {
|
5438
5486
|
readonly x: int
|
@@ -5441,7 +5489,7 @@ declare module "factorio:runtime" {
|
|
5441
5489
|
/**
|
5442
5490
|
* Array form of {@link TilePosition}.
|
5443
5491
|
* @see TilePosition
|
5444
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5492
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/TilePosition.html Online documentation}
|
5445
5493
|
*/
|
5446
5494
|
export type TilePositionArray = readonly [int, int]
|
5447
5495
|
/**
|
@@ -5454,7 +5502,7 @@ declare module "factorio:runtime" {
|
|
5454
5502
|
* @example
|
5455
5503
|
* -- Shorthand
|
5456
5504
|
* {1, 2}
|
5457
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5505
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/EquipmentPosition.html Online documentation}
|
5458
5506
|
*/
|
5459
5507
|
export interface EquipmentPosition {
|
5460
5508
|
readonly x: int
|
@@ -5463,13 +5511,13 @@ declare module "factorio:runtime" {
|
|
5463
5511
|
/**
|
5464
5512
|
* Array form of {@link EquipmentPosition}.
|
5465
5513
|
* @see EquipmentPosition
|
5466
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5514
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/EquipmentPosition.html Online documentation}
|
5467
5515
|
*/
|
5468
5516
|
export type EquipmentPositionArray = readonly [int, int]
|
5469
5517
|
/**
|
5470
5518
|
* Screen coordinates of a GUI element in a {@link LuaGui}. This uses the same format as {@link TilePosition}, meaning it can be specified either with or without explicit keys.
|
5471
5519
|
* @see GuiLocationArray
|
5472
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5520
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/GuiLocation.html Online documentation}
|
5473
5521
|
*/
|
5474
5522
|
export interface GuiLocation {
|
5475
5523
|
readonly x: int
|
@@ -5478,12 +5526,12 @@ declare module "factorio:runtime" {
|
|
5478
5526
|
/**
|
5479
5527
|
* Array form of {@link GuiLocation}.
|
5480
5528
|
* @see GuiLocation
|
5481
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5529
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/GuiLocation.html Online documentation}
|
5482
5530
|
*/
|
5483
5531
|
export type GuiLocationArray = readonly [int, int]
|
5484
5532
|
/**
|
5485
5533
|
* A {@link ChunkPosition} with an added bounding box for the area of the chunk.
|
5486
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5534
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ChunkPositionAndArea.html Online documentation}
|
5487
5535
|
*/
|
5488
5536
|
export interface ChunkPositionAndArea {
|
5489
5537
|
readonly x: int
|
@@ -5492,7 +5540,7 @@ declare module "factorio:runtime" {
|
|
5492
5540
|
}
|
5493
5541
|
/**
|
5494
5542
|
* A table used to define a manual shape for a piece of equipment.
|
5495
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5543
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/EquipmentPoint.html Online documentation}
|
5496
5544
|
*/
|
5497
5545
|
export interface EquipmentPoint {
|
5498
5546
|
readonly x: uint
|
@@ -5528,7 +5576,7 @@ declare module "factorio:runtime" {
|
|
5528
5576
|
* Note that the API returns tags as a simple table, meaning any modifications to it will not propagate back to the game. Thus, to modify a set of tags, the whole table needs to be written back to the respective property.
|
5529
5577
|
* @example
|
5530
5578
|
* {a = 1, b = true, c = "three", d = {e = "f"}}
|
5531
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5579
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/Tags.html Online documentation}
|
5532
5580
|
*/
|
5533
5581
|
export type Tags = Record<string, AnyBasic>
|
5534
5582
|
export interface SurfaceCondition {
|
@@ -5562,13 +5610,13 @@ declare module "factorio:runtime" {
|
|
5562
5610
|
* A vector is a two-element array or dictionary containing the `x` and `y` components. The game will always provide the array format. Positive x goes east, positive y goes south.
|
5563
5611
|
* @example
|
5564
5612
|
* right = {1.0, 0.0}
|
5565
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5613
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/Vector.html Online documentation}
|
5566
5614
|
*/
|
5567
5615
|
export type Vector = MapPositionArray
|
5568
5616
|
/**
|
5569
5617
|
* An area defined using the map editor.
|
5570
5618
|
* @see ScriptAreaWrite
|
5571
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5619
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ScriptArea.html Online documentation}
|
5572
5620
|
*/
|
5573
5621
|
export interface ScriptArea {
|
5574
5622
|
readonly area: BoundingBox
|
@@ -5578,7 +5626,7 @@ declare module "factorio:runtime" {
|
|
5578
5626
|
}
|
5579
5627
|
/**
|
5580
5628
|
* Write form of {@link ScriptArea}, where some properties allow additional values as input compared to the read form.
|
5581
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5629
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ScriptArea.html Online documentation}
|
5582
5630
|
*/
|
5583
5631
|
export interface ScriptAreaWrite {
|
5584
5632
|
readonly area: BoundingBoxWrite | BoundingBoxArray
|
@@ -5589,7 +5637,7 @@ declare module "factorio:runtime" {
|
|
5589
5637
|
/**
|
5590
5638
|
* A position defined using the map editor.
|
5591
5639
|
* @see ScriptPositionWrite
|
5592
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5640
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ScriptPosition.html Online documentation}
|
5593
5641
|
*/
|
5594
5642
|
export interface ScriptPosition {
|
5595
5643
|
readonly position: MapPosition
|
@@ -5599,7 +5647,7 @@ declare module "factorio:runtime" {
|
|
5599
5647
|
}
|
5600
5648
|
/**
|
5601
5649
|
* Write form of {@link ScriptPosition}, where some properties allow additional values as input compared to the read form.
|
5602
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5650
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ScriptPosition.html Online documentation}
|
5603
5651
|
*/
|
5604
5652
|
export interface ScriptPositionWrite {
|
5605
5653
|
readonly position: MapPosition | MapPositionArray
|
@@ -5617,7 +5665,7 @@ declare module "factorio:runtime" {
|
|
5617
5665
|
* red2 = {r = 0.5, a = 0.5} -- Same color as red1
|
5618
5666
|
* black = {} -- All channels omitted: black
|
5619
5667
|
* red1_short = {0.5, 0, 0, 0.5} -- Same color as red1 in short-hand notation
|
5620
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5668
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/Color.html Online documentation}
|
5621
5669
|
*/
|
5622
5670
|
export interface Color {
|
5623
5671
|
readonly r?: float
|
@@ -5628,13 +5676,13 @@ declare module "factorio:runtime" {
|
|
5628
5676
|
/**
|
5629
5677
|
* Array form of {@link Color}.
|
5630
5678
|
* @see Color
|
5631
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5679
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/Color.html Online documentation}
|
5632
5680
|
*/
|
5633
5681
|
export type ColorArray = readonly [r: double, g: double, b: double, a?: double]
|
5634
5682
|
/**
|
5635
5683
|
* Same as {@link Color}, but red, green, blue and alpha values can be any floating point number, without any special handling of the range [1, 255].
|
5636
5684
|
* @see ColorModifierArray
|
5637
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5685
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ColorModifier.html Online documentation}
|
5638
5686
|
*/
|
5639
5687
|
export interface ColorModifier {
|
5640
5688
|
readonly r?: float
|
@@ -5645,7 +5693,7 @@ declare module "factorio:runtime" {
|
|
5645
5693
|
/**
|
5646
5694
|
* Array form of {@link ColorModifier}.
|
5647
5695
|
* @see ColorModifier
|
5648
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5696
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ColorModifier.html Online documentation}
|
5649
5697
|
*/
|
5650
5698
|
export type ColorModifierArray = readonly [r: double, g: double, b: double, a?: double]
|
5651
5699
|
export interface CraftingQueueItem {
|
@@ -5788,7 +5836,7 @@ declare module "factorio:runtime" {
|
|
5788
5836
|
}
|
5789
5837
|
/**
|
5790
5838
|
* @see AsteroidChunkWrite
|
5791
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5839
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/AsteroidChunk.html Online documentation}
|
5792
5840
|
*/
|
5793
5841
|
export interface AsteroidChunk {
|
5794
5842
|
/**
|
@@ -5800,7 +5848,7 @@ declare module "factorio:runtime" {
|
|
5800
5848
|
}
|
5801
5849
|
/**
|
5802
5850
|
* Write form of {@link AsteroidChunk}, where some properties allow additional values as input compared to the read form.
|
5803
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5851
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/AsteroidChunk.html Online documentation}
|
5804
5852
|
*/
|
5805
5853
|
export interface AsteroidChunkWrite {
|
5806
5854
|
/**
|
@@ -5822,108 +5870,112 @@ declare module "factorio:runtime" {
|
|
5822
5870
|
}
|
5823
5871
|
/**
|
5824
5872
|
* Either `icon`, `text`, or both must be provided.
|
5825
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5873
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ChartTagSpec.html Online documentation}
|
5826
5874
|
*/
|
5827
5875
|
export interface ChartTagSpec {
|
5828
5876
|
readonly position: MapPosition | MapPositionArray
|
5829
|
-
readonly icon?:
|
5877
|
+
readonly icon?: SignalIDWrite
|
5830
5878
|
readonly text?: string
|
5831
5879
|
readonly last_user?: PlayerIdentification
|
5832
5880
|
}
|
5833
5881
|
/**
|
5834
5882
|
* Parameters that affect the look and control of the game. Updating any of the member attributes here will immediately take effect in the game engine.
|
5835
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5883
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/GameViewSettings.html Online documentation}
|
5836
5884
|
*/
|
5837
5885
|
export interface GameViewSettings {
|
5838
5886
|
/**
|
5839
5887
|
* Show the controller GUI elements. This includes the toolbar, the selected tool slot, the armour slot, and the gun and ammunition slots.
|
5840
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5888
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/GameViewSettings.show_controller_gui.html Online documentation}
|
5841
5889
|
*/
|
5842
5890
|
show_controller_gui: boolean
|
5843
5891
|
/**
|
5844
5892
|
* Show the chart in the upper right-hand corner of the screen.
|
5845
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5893
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/GameViewSettings.show_minimap.html Online documentation}
|
5846
5894
|
*/
|
5847
5895
|
show_minimap: boolean
|
5848
5896
|
/**
|
5849
5897
|
* Show research progress and name in the upper right-hand corner of the screen.
|
5850
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5898
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/GameViewSettings.show_research_info.html Online documentation}
|
5851
5899
|
*/
|
5852
5900
|
show_research_info: boolean
|
5853
5901
|
/**
|
5854
5902
|
* Show overlay icons on entities. Also known as "alt-mode".
|
5855
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5903
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/GameViewSettings.show_entity_info.html Online documentation}
|
5856
5904
|
*/
|
5857
5905
|
show_entity_info: boolean
|
5858
5906
|
/**
|
5859
5907
|
* Show the flashing alert icons next to the player's toolbar.
|
5860
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5908
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/GameViewSettings.show_alert_gui.html Online documentation}
|
5861
5909
|
*/
|
5862
5910
|
show_alert_gui: boolean
|
5863
5911
|
/**
|
5864
5912
|
* When `true` (the default), mousing over an entity will select it. Otherwise, moving the mouse won't update entity selection.
|
5865
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5913
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/GameViewSettings.update_entity_selection.html Online documentation}
|
5866
5914
|
*/
|
5867
5915
|
update_entity_selection: boolean
|
5868
5916
|
/**
|
5869
5917
|
* When `true` (`false` is default), the rails will always show the rail block visualisation.
|
5870
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5918
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/GameViewSettings.show_rail_block_visualisation.html Online documentation}
|
5871
5919
|
*/
|
5872
5920
|
show_rail_block_visualisation: boolean
|
5873
5921
|
/**
|
5874
5922
|
* Shows or hides the buttons row.
|
5875
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5923
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/GameViewSettings.show_side_menu.html Online documentation}
|
5876
5924
|
*/
|
5877
5925
|
show_side_menu: boolean
|
5878
5926
|
/**
|
5879
5927
|
* Shows or hides the view options when map is opened.
|
5880
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5928
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/GameViewSettings.show_map_view_options.html Online documentation}
|
5881
5929
|
*/
|
5882
5930
|
show_map_view_options: boolean
|
5883
5931
|
/**
|
5884
5932
|
* Shows or hides the tooltip that is displayed when selecting an entity.
|
5885
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5933
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/GameViewSettings.show_entity_tooltip.html Online documentation}
|
5886
5934
|
*/
|
5887
5935
|
show_entity_tooltip: boolean
|
5888
5936
|
/**
|
5889
5937
|
* Shows or hides quickbar of shortcuts.
|
5890
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5938
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/GameViewSettings.show_quickbar.html Online documentation}
|
5891
5939
|
*/
|
5892
5940
|
show_quickbar: boolean
|
5893
5941
|
/**
|
5894
5942
|
* Shows or hides the shortcut bar.
|
5895
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5943
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/GameViewSettings.show_shortcut_bar.html Online documentation}
|
5896
5944
|
*/
|
5897
5945
|
show_shortcut_bar: boolean
|
5898
5946
|
/**
|
5899
5947
|
* Shows or hides the crafting queue.
|
5900
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5948
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/GameViewSettings.show_crafting_queue.html Online documentation}
|
5901
5949
|
*/
|
5902
5950
|
show_crafting_queue: boolean
|
5903
5951
|
/**
|
5904
5952
|
* Shows or hides the tool window with the weapons and armor.
|
5905
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5953
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/GameViewSettings.show_tool_bar.html Online documentation}
|
5906
5954
|
*/
|
5907
5955
|
show_tool_bar: boolean
|
5908
5956
|
/**
|
5909
5957
|
* Shows or hides the mouse and keyboard/controller button hints in the bottom left corner if they are enabled in the interface settings.
|
5910
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5958
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/GameViewSettings.show_hotkey_suggestions.html Online documentation}
|
5911
5959
|
*/
|
5912
5960
|
show_hotkey_suggestions: boolean
|
5913
5961
|
/**
|
5914
5962
|
* Shows or hides the surface list while in Remote View.
|
5915
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5963
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/GameViewSettings.show_surface_list.html Online documentation}
|
5916
5964
|
*/
|
5917
5965
|
show_surface_list: boolean
|
5918
5966
|
}
|
5919
5967
|
/**
|
5920
5968
|
* The data that can be extracted from a map exchange string, as a plain table.
|
5921
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5969
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/MapExchangeStringData.html Online documentation}
|
5922
5970
|
*/
|
5923
5971
|
export interface MapExchangeStringData {
|
5924
5972
|
readonly map_settings: MapAndDifficultySettings
|
5925
5973
|
readonly map_gen_settings: MapGenSettings
|
5926
5974
|
}
|
5975
|
+
/**
|
5976
|
+
* @see BlueprintSignalIconWrite
|
5977
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/BlueprintSignalIcon.html Online documentation}
|
5978
|
+
*/
|
5927
5979
|
export interface BlueprintSignalIcon {
|
5928
5980
|
/**
|
5929
5981
|
* The icon to use.
|
@@ -5934,6 +5986,20 @@ declare module "factorio:runtime" {
|
|
5934
5986
|
*/
|
5935
5987
|
readonly index: uint
|
5936
5988
|
}
|
5989
|
+
/**
|
5990
|
+
* Write form of {@link BlueprintSignalIcon}, where some properties allow additional values as input compared to the read form.
|
5991
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/BlueprintSignalIcon.html Online documentation}
|
5992
|
+
*/
|
5993
|
+
export interface BlueprintSignalIconWrite {
|
5994
|
+
/**
|
5995
|
+
* The icon to use.
|
5996
|
+
*/
|
5997
|
+
readonly signal: SignalIDWrite
|
5998
|
+
/**
|
5999
|
+
* Index of the icon in the blueprint icons slots. An integer in the range [1, 4].
|
6000
|
+
*/
|
6001
|
+
readonly index: uint
|
6002
|
+
}
|
5937
6003
|
export interface ItemLocationData {
|
5938
6004
|
readonly surface: LuaSurface
|
5939
6005
|
readonly entity?: LuaEntity
|
@@ -5951,12 +6017,12 @@ declare module "factorio:runtime" {
|
|
5951
6017
|
* - `target_entity_number`
|
5952
6018
|
*
|
5953
6019
|
* - `target_wire_connector_id`
|
5954
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6020
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/BlueprintWire.html Online documentation}
|
5955
6021
|
*/
|
5956
6022
|
export type BlueprintWire = readonly [uint, defines.wire_connector_id, uint, defines.wire_connector_id]
|
5957
6023
|
/**
|
5958
6024
|
* @see TileWrite
|
5959
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6025
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/Tile.html Online documentation}
|
5960
6026
|
*/
|
5961
6027
|
export interface Tile {
|
5962
6028
|
/**
|
@@ -5970,7 +6036,7 @@ declare module "factorio:runtime" {
|
|
5970
6036
|
}
|
5971
6037
|
/**
|
5972
6038
|
* Write form of {@link Tile}, where some properties allow additional values as input compared to the read form.
|
5973
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6039
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/Tile.html Online documentation}
|
5974
6040
|
*/
|
5975
6041
|
export interface TileWrite {
|
5976
6042
|
/**
|
@@ -6025,7 +6091,7 @@ declare module "factorio:runtime" {
|
|
6025
6091
|
*
|
6026
6092
|
* Other attributes may be specified depending on `type`:
|
6027
6093
|
* - `"fluid"`: {@link FluidIngredient}
|
6028
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6094
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/Ingredient.html Online documentation}
|
6029
6095
|
*/
|
6030
6096
|
export type Ingredient = FluidIngredient | OtherIngredient
|
6031
6097
|
export interface Loot {
|
@@ -6191,7 +6257,7 @@ declare module "factorio:runtime" {
|
|
6191
6257
|
* - `"unlock-recipe"`: {@link UnlockRecipeTechnologyModifier}
|
6192
6258
|
* - `"nothing"`: {@link NothingTechnologyModifier}
|
6193
6259
|
* - Other types: {@link OtherTechnologyModifier}
|
6194
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6260
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/TechnologyModifier.html Online documentation}
|
6195
6261
|
*/
|
6196
6262
|
export type TechnologyModifier =
|
6197
6263
|
| GunSpeedTechnologyModifier
|
@@ -6203,7 +6269,7 @@ declare module "factorio:runtime" {
|
|
6203
6269
|
| OtherTechnologyModifier
|
6204
6270
|
/**
|
6205
6271
|
* A fragment of a functional program used to generate coherent noise, probably for purposes related to terrain generation. These can only be meaningfully written/modified during the data load phase. More detailed information is found on the {@link import("factorio:prototype").NamedNoiseExpression prototype docs}.
|
6206
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6272
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/NoiseExpression.html Online documentation}
|
6207
6273
|
*/
|
6208
6274
|
export interface NoiseExpression {
|
6209
6275
|
/**
|
@@ -6256,7 +6322,7 @@ declare module "factorio:runtime" {
|
|
6256
6322
|
* - `"very-high"`: equivalent to `2`.
|
6257
6323
|
* - `"very-big"`: equivalent to `2`.
|
6258
6324
|
* - `"very-good"`: equivalent to `2`.
|
6259
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6325
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/MapGenSize.html Online documentation}
|
6260
6326
|
*/
|
6261
6327
|
export type MapGenSize =
|
6262
6328
|
| float
|
@@ -6278,7 +6344,7 @@ declare module "factorio:runtime" {
|
|
6278
6344
|
| "very-good"
|
6279
6345
|
/**
|
6280
6346
|
* @see AutoplaceControlWrite
|
6281
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6347
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/AutoplaceControl.html Online documentation}
|
6282
6348
|
*/
|
6283
6349
|
export interface AutoplaceControl {
|
6284
6350
|
/**
|
@@ -6296,7 +6362,7 @@ declare module "factorio:runtime" {
|
|
6296
6362
|
}
|
6297
6363
|
/**
|
6298
6364
|
* Write form of {@link AutoplaceControl}, where some properties allow additional values as input compared to the read form.
|
6299
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6365
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/AutoplaceControl.html Online documentation}
|
6300
6366
|
*/
|
6301
6367
|
export interface AutoplaceControlWrite {
|
6302
6368
|
/**
|
@@ -6315,10 +6381,10 @@ declare module "factorio:runtime" {
|
|
6315
6381
|
/**
|
6316
6382
|
* All other MapGenSettings feed into named noise expressions, and therefore placement can be overridden by including the name of a property in this dictionary. The probability and richness functions for placing specific tiles, entities, and decoratives can be overridden by including an entry named `{tile|entity|decorative}:(prototype name):{probability|richness}`.
|
6317
6383
|
*
|
6318
|
-
* {@link https://lua-api.factorio.com/2.0.
|
6384
|
+
* {@link https://lua-api.factorio.com/2.0.24/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:}
|
6319
6385
|
*
|
6320
|
-
* {@link https://lua-api.factorio.com/2.0.
|
6321
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6386
|
+
* {@link https://lua-api.factorio.com/2.0.24/concepts/PropertyExpressionNames.html > Climate controls ('Moisture' and 'Terrain type' at the bottom of the Terrain tab in the map generator GUI) don't have their own dedicated structures in MapGenSettings. Instead, their values are stored as property expression overrides with long names:}
|
6387
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/PropertyExpressionNames.html Online documentation}
|
6322
6388
|
*/
|
6323
6389
|
export type PropertyExpressionNames = Record<string, string>
|
6324
6390
|
export interface AdvancedMapGenSettings {
|
@@ -6339,19 +6405,9 @@ declare module "factorio:runtime" {
|
|
6339
6405
|
readonly basic_settings?: MapGenSettings
|
6340
6406
|
readonly advanced_settings?: AdvancedMapGenSettings
|
6341
6407
|
}
|
6342
|
-
export interface SignalID {
|
6343
|
-
/**
|
6344
|
-
* The type of the signal. If the type is `"item"`, this will be `nil` when reading.
|
6345
|
-
*/
|
6346
|
-
readonly type?: SignalIDType
|
6347
|
-
/**
|
6348
|
-
* Name of the prototype.
|
6349
|
-
*/
|
6350
|
-
readonly name?: string
|
6351
|
-
}
|
6352
6408
|
/**
|
6353
6409
|
* An actual signal transmitted by the network.
|
6354
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6410
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/Signal.html Online documentation}
|
6355
6411
|
*/
|
6356
6412
|
export interface Signal {
|
6357
6413
|
/**
|
@@ -6365,7 +6421,7 @@ declare module "factorio:runtime" {
|
|
6365
6421
|
}
|
6366
6422
|
/**
|
6367
6423
|
* @see UpgradeMapperSourceWrite
|
6368
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6424
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/UpgradeMapperSource.html Online documentation}
|
6369
6425
|
*/
|
6370
6426
|
export interface UpgradeMapperSource {
|
6371
6427
|
readonly type: "item" | "entity"
|
@@ -6384,7 +6440,7 @@ declare module "factorio:runtime" {
|
|
6384
6440
|
}
|
6385
6441
|
/**
|
6386
6442
|
* Write form of {@link UpgradeMapperSource}, where some properties allow additional values as input compared to the read form.
|
6387
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6443
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/UpgradeMapperSource.html Online documentation}
|
6388
6444
|
*/
|
6389
6445
|
export interface UpgradeMapperSourceWrite {
|
6390
6446
|
readonly type: "item" | "entity"
|
@@ -6421,7 +6477,7 @@ declare module "factorio:runtime" {
|
|
6421
6477
|
}
|
6422
6478
|
/**
|
6423
6479
|
* A single filter used by an infinity-filters instance.
|
6424
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6480
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/InfinityInventoryFilter.html Online documentation}
|
6425
6481
|
*/
|
6426
6482
|
export interface InfinityInventoryFilter {
|
6427
6483
|
/**
|
@@ -6443,7 +6499,7 @@ declare module "factorio:runtime" {
|
|
6443
6499
|
}
|
6444
6500
|
/**
|
6445
6501
|
* A single filter used by an infinity-pipe type entity.
|
6446
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6502
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/InfinityPipeFilter.html Online documentation}
|
6447
6503
|
*/
|
6448
6504
|
export interface InfinityPipeFilter {
|
6449
6505
|
/**
|
@@ -6497,7 +6553,7 @@ declare module "factorio:runtime" {
|
|
6497
6553
|
}
|
6498
6554
|
/**
|
6499
6555
|
* The settings used by a heat-interface type entity.
|
6500
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6556
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/HeatSetting.html Online documentation}
|
6501
6557
|
*/
|
6502
6558
|
export interface HeatSetting {
|
6503
6559
|
/**
|
@@ -6513,6 +6569,10 @@ declare module "factorio:runtime" {
|
|
6513
6569
|
readonly position: Vector
|
6514
6570
|
readonly direction: defines.direction
|
6515
6571
|
}
|
6572
|
+
/**
|
6573
|
+
* @see ArithmeticCombinatorParametersWrite
|
6574
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ArithmeticCombinatorParameters.html Online documentation}
|
6575
|
+
*/
|
6516
6576
|
export interface ArithmeticCombinatorParameters {
|
6517
6577
|
/**
|
6518
6578
|
* First signal to use in an operation. If not specified, the second argument will be the value of `first_constant`.
|
@@ -6539,6 +6599,40 @@ declare module "factorio:runtime" {
|
|
6539
6599
|
*/
|
6540
6600
|
readonly output_signal?: SignalID
|
6541
6601
|
}
|
6602
|
+
/**
|
6603
|
+
* Write form of {@link ArithmeticCombinatorParameters}, where some properties allow additional values as input compared to the read form.
|
6604
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ArithmeticCombinatorParameters.html Online documentation}
|
6605
|
+
*/
|
6606
|
+
export interface ArithmeticCombinatorParametersWrite {
|
6607
|
+
/**
|
6608
|
+
* First signal to use in an operation. If not specified, the second argument will be the value of `first_constant`.
|
6609
|
+
*/
|
6610
|
+
readonly first_signal?: SignalIDWrite
|
6611
|
+
/**
|
6612
|
+
* Second signal to use in an operation. If not specified, the second argument will be the value of `second_constant`.
|
6613
|
+
*/
|
6614
|
+
readonly second_signal?: SignalIDWrite
|
6615
|
+
/**
|
6616
|
+
* Constant to use as the first argument of the operation. Has no effect when `first_signal` is set. Defaults to `0`.
|
6617
|
+
*/
|
6618
|
+
readonly first_constant?: int
|
6619
|
+
/**
|
6620
|
+
* Constant to use as the second argument of the operation. Has no effect when `second_signal` is set. Defaults to `0`.
|
6621
|
+
*/
|
6622
|
+
readonly second_constant?: int
|
6623
|
+
/**
|
6624
|
+
* When not specified, defaults to `"*"`.
|
6625
|
+
*/
|
6626
|
+
readonly operation?: "*" | "/" | "+" | "-" | "%" | "^" | "<<" | ">>" | "AND" | "OR" | "XOR"
|
6627
|
+
/**
|
6628
|
+
* Specifies the signal to output.
|
6629
|
+
*/
|
6630
|
+
readonly output_signal?: SignalIDWrite
|
6631
|
+
}
|
6632
|
+
/**
|
6633
|
+
* @see SelectorCombinatorParametersWrite
|
6634
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/SelectorCombinatorParameters.html Online documentation}
|
6635
|
+
*/
|
6542
6636
|
export interface SelectorCombinatorParameters {
|
6543
6637
|
/**
|
6544
6638
|
* The signal to use.
|
@@ -6561,6 +6655,32 @@ declare module "factorio:runtime" {
|
|
6561
6655
|
*/
|
6562
6656
|
readonly select_max: boolean
|
6563
6657
|
}
|
6658
|
+
/**
|
6659
|
+
* Write form of {@link SelectorCombinatorParameters}, where some properties allow additional values as input compared to the read form.
|
6660
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/SelectorCombinatorParameters.html Online documentation}
|
6661
|
+
*/
|
6662
|
+
export interface SelectorCombinatorParametersWrite {
|
6663
|
+
/**
|
6664
|
+
* The signal to use.
|
6665
|
+
*/
|
6666
|
+
readonly index_signal: SignalIDWrite
|
6667
|
+
/**
|
6668
|
+
* The signal index to use if not using a specific signal.
|
6669
|
+
*/
|
6670
|
+
readonly index_constant: uint
|
6671
|
+
/**
|
6672
|
+
* The signal to emit.
|
6673
|
+
*/
|
6674
|
+
readonly count_signal: SignalIDWrite
|
6675
|
+
/**
|
6676
|
+
* Must be one of `"select"`, `"count"`, `"random"`. When not specified, defaults to `"select"`.
|
6677
|
+
*/
|
6678
|
+
readonly operation?: "select" | "count" | "random"
|
6679
|
+
/**
|
6680
|
+
* If the maximum value is used.
|
6681
|
+
*/
|
6682
|
+
readonly select_max: boolean
|
6683
|
+
}
|
6564
6684
|
export interface DeciderCombinatorParameters {
|
6565
6685
|
/**
|
6566
6686
|
* List of conditions.
|
@@ -6579,7 +6699,7 @@ declare module "factorio:runtime" {
|
|
6579
6699
|
}
|
6580
6700
|
/**
|
6581
6701
|
* @see CircuitConditionWrite
|
6582
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6702
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/CircuitCondition.html Online documentation}
|
6583
6703
|
*/
|
6584
6704
|
export interface CircuitCondition {
|
6585
6705
|
/**
|
@@ -6601,7 +6721,7 @@ declare module "factorio:runtime" {
|
|
6601
6721
|
}
|
6602
6722
|
/**
|
6603
6723
|
* Write form of {@link CircuitCondition}, where some properties allow additional values as input compared to the read form.
|
6604
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6724
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/CircuitCondition.html Online documentation}
|
6605
6725
|
*/
|
6606
6726
|
export interface CircuitConditionWrite {
|
6607
6727
|
/**
|
@@ -6611,11 +6731,11 @@ declare module "factorio:runtime" {
|
|
6611
6731
|
/**
|
6612
6732
|
* Defaults to blank
|
6613
6733
|
*/
|
6614
|
-
readonly first_signal?:
|
6734
|
+
readonly first_signal?: SignalIDWrite
|
6615
6735
|
/**
|
6616
6736
|
* What to compare `first_signal` to. If not specified, `first_signal` will be compared to `constant`.
|
6617
6737
|
*/
|
6618
|
-
readonly second_signal?:
|
6738
|
+
readonly second_signal?: SignalIDWrite
|
6619
6739
|
/**
|
6620
6740
|
* Constant to compare `first_signal` to. Has no effect when `second_signal` is set. When neither `second_signal` nor `constant` are specified, the effect is as though `constant` were specified with the value `0`.
|
6621
6741
|
*/
|
@@ -6623,7 +6743,7 @@ declare module "factorio:runtime" {
|
|
6623
6743
|
}
|
6624
6744
|
/**
|
6625
6745
|
* @see CircuitConditionDefinitionWrite
|
6626
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6746
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/CircuitConditionDefinition.html Online documentation}
|
6627
6747
|
*/
|
6628
6748
|
export interface CircuitConditionDefinition {
|
6629
6749
|
/**
|
@@ -6637,7 +6757,7 @@ declare module "factorio:runtime" {
|
|
6637
6757
|
}
|
6638
6758
|
/**
|
6639
6759
|
* Write form of {@link CircuitConditionDefinition}, where some properties allow additional values as input compared to the read form.
|
6640
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6760
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/CircuitConditionDefinition.html Online documentation}
|
6641
6761
|
*/
|
6642
6762
|
export interface CircuitConditionDefinitionWrite {
|
6643
6763
|
/**
|
@@ -6912,7 +7032,7 @@ declare module "factorio:runtime" {
|
|
6912
7032
|
* - {@link defines.command.stop}: {@link StopCommand}
|
6913
7033
|
* - {@link defines.command.flee}: {@link FleeCommand}
|
6914
7034
|
* - {@link defines.command.build_base}: {@link BuildBaseCommand}
|
6915
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7035
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/Command.html Online documentation}
|
6916
7036
|
*/
|
6917
7037
|
export type Command =
|
6918
7038
|
| AttackCommand
|
@@ -6926,7 +7046,7 @@ declare module "factorio:runtime" {
|
|
6926
7046
|
| BuildBaseCommand
|
6927
7047
|
/**
|
6928
7048
|
* Write form of {@link Command}, where some properties allow additional values as input compared to the read form.
|
6929
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7049
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/Command.html Online documentation}
|
6930
7050
|
*/
|
6931
7051
|
export type CommandWrite =
|
6932
7052
|
| AttackCommand
|
@@ -7011,7 +7131,7 @@ declare module "factorio:runtime" {
|
|
7011
7131
|
* These are both full stacks of iron plates (for iron-plate, a full stack is 100 plates)
|
7012
7132
|
* "iron-plate"
|
7013
7133
|
* {name="iron-plate", count=100}
|
7014
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7134
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/SimpleItemStack.html Online documentation}
|
7015
7135
|
*/
|
7016
7136
|
export type SimpleItemStack = string | ItemStackDefinition
|
7017
7137
|
/**
|
@@ -7021,7 +7141,7 @@ declare module "factorio:runtime" {
|
|
7021
7141
|
* - SurfaceIndex: It will be the index of the surface. `nauvis` has index `1`, the first surface-created surface will have index `2` and so on.
|
7022
7142
|
* - `string`: It will be the surface name. E.g. `"nauvis"`.
|
7023
7143
|
* - {@link LuaSurface}: A reference to {@link LuaSurface} may be passed directly.
|
7024
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7144
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/SurfaceIdentification.html Online documentation}
|
7025
7145
|
*/
|
7026
7146
|
export type SurfaceIdentification = SurfaceIndex | string | LuaSurface
|
7027
7147
|
/**
|
@@ -7031,7 +7151,7 @@ declare module "factorio:runtime" {
|
|
7031
7151
|
* - PlayerIndex: The player index.
|
7032
7152
|
* - `string`: The player name.
|
7033
7153
|
* - {@link LuaPlayer}: A reference to {@link LuaPlayer} may be passed directly.
|
7034
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7154
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/PlayerIdentification.html Online documentation}
|
7035
7155
|
*/
|
7036
7156
|
export type PlayerIdentification = PlayerIndex | string | LuaPlayer
|
7037
7157
|
/**
|
@@ -7040,7 +7160,7 @@ declare module "factorio:runtime" {
|
|
7040
7160
|
* ## Union members
|
7041
7161
|
* - {@link SimpleItemStack}
|
7042
7162
|
* - {@link LuaItemStack}
|
7043
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7163
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ItemStackIdentification.html Online documentation}
|
7044
7164
|
*/
|
7045
7165
|
export type ItemStackIdentification = SimpleItemStack | LuaItemStack
|
7046
7166
|
/**
|
@@ -7050,7 +7170,7 @@ declare module "factorio:runtime" {
|
|
7050
7170
|
* - `"entity"`: Fires at an entity.
|
7051
7171
|
* - `"position"`: Fires directly at a position.
|
7052
7172
|
* - `"direction"`: Fires in a direction.
|
7053
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7173
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/TargetType.html Online documentation}
|
7054
7174
|
*/
|
7055
7175
|
export type TargetType = "entity" | "position" | "direction"
|
7056
7176
|
export interface BeamTarget {
|
@@ -7087,8 +7207,8 @@ declare module "factorio:runtime" {
|
|
7087
7207
|
*
|
7088
7208
|
* The validity of a SoundPath can be verified at runtime using {@link LuaHelpers#is_valid_sound_path LuaHelpers::is_valid_sound_path}.
|
7089
7209
|
*
|
7090
|
-
* {@link https://lua-api.factorio.com/2.0.
|
7091
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7210
|
+
* {@link https://lua-api.factorio.com/2.0.24/concepts/SoundPath.html > The utility and ambient types each contain general use sound prototypes defined by the game itself.}
|
7211
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/SoundPath.html Online documentation}
|
7092
7212
|
*/
|
7093
7213
|
export type SoundPath = (string & { _?: never }) | `${SoundCategory}/${string}`
|
7094
7214
|
export interface CircularParticleCreationSpecification {
|
@@ -7220,7 +7340,7 @@ declare module "factorio:runtime" {
|
|
7220
7340
|
* Other attributes may be specified depending on `type`:
|
7221
7341
|
* - `"projectile"`: {@link ProjectileAttackParameters}
|
7222
7342
|
* - `"stream"`: {@link StreamAttackParameters}
|
7223
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7343
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/AttackParameters.html Online documentation}
|
7224
7344
|
*/
|
7225
7345
|
export type AttackParameters = ProjectileAttackParameters | StreamAttackParameters | OtherAttackParameters
|
7226
7346
|
export interface GunShift4Way {
|
@@ -7286,7 +7406,7 @@ declare module "factorio:runtime" {
|
|
7286
7406
|
* - `"use-on-self"`: {@link UseOnSelfCapsuleAction}
|
7287
7407
|
* - `"artillery-remote"`: {@link ArtilleryRemoteCapsuleAction}
|
7288
7408
|
* - `"destroy-cliffs"`: {@link DestroyCliffsCapsuleAction}
|
7289
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7409
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/CapsuleAction.html Online documentation}
|
7290
7410
|
*/
|
7291
7411
|
export type CapsuleAction =
|
7292
7412
|
| ThrowCapsuleAction
|
@@ -7326,12 +7446,12 @@ declare module "factorio:runtime" {
|
|
7326
7446
|
}
|
7327
7447
|
/**
|
7328
7448
|
* Any basic type (string, number, boolean) or table.
|
7329
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7449
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/AnyBasic.html Online documentation}
|
7330
7450
|
*/
|
7331
7451
|
export type AnyBasic = string | boolean | number | table
|
7332
7452
|
/**
|
7333
7453
|
* Any basic type (string, number, boolean), table, or LuaObject.
|
7334
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7454
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/Any.html Online documentation}
|
7335
7455
|
*/
|
7336
7456
|
export type Any = string | boolean | number | table | LuaObject
|
7337
7457
|
export interface ProgrammableSpeakerParameters {
|
@@ -7339,12 +7459,26 @@ declare module "factorio:runtime" {
|
|
7339
7459
|
readonly playback_mode: ProgrammableSpeakerPlaybackMode
|
7340
7460
|
readonly allow_polyphony: boolean
|
7341
7461
|
}
|
7462
|
+
/**
|
7463
|
+
* @see ProgrammableSpeakerAlertParametersWrite
|
7464
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ProgrammableSpeakerAlertParameters.html Online documentation}
|
7465
|
+
*/
|
7342
7466
|
export interface ProgrammableSpeakerAlertParameters {
|
7343
7467
|
readonly show_alert: boolean
|
7344
7468
|
readonly show_on_map: boolean
|
7345
7469
|
readonly icon_signal_id: SignalID
|
7346
7470
|
readonly alert_message: string
|
7347
7471
|
}
|
7472
|
+
/**
|
7473
|
+
* Write form of {@link ProgrammableSpeakerAlertParameters}, where some properties allow additional values as input compared to the read form.
|
7474
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ProgrammableSpeakerAlertParameters.html Online documentation}
|
7475
|
+
*/
|
7476
|
+
export interface ProgrammableSpeakerAlertParametersWrite {
|
7477
|
+
readonly show_alert: boolean
|
7478
|
+
readonly show_on_map: boolean
|
7479
|
+
readonly icon_signal_id: SignalIDWrite
|
7480
|
+
readonly alert_message: string
|
7481
|
+
}
|
7348
7482
|
export interface ProgrammableSpeakerCircuitParameters {
|
7349
7483
|
readonly signal_value_is_pitch: boolean
|
7350
7484
|
readonly instrument_id: uint
|
@@ -7369,7 +7503,7 @@ declare module "factorio:runtime" {
|
|
7369
7503
|
* - `"top-right"`
|
7370
7504
|
* - `"right"`: The same as `"middle-right"`
|
7371
7505
|
* - `"bottom-right"`
|
7372
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7506
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/Alignment.html Online documentation}
|
7373
7507
|
*/
|
7374
7508
|
export type Alignment =
|
7375
7509
|
| "top-left"
|
@@ -7395,15 +7529,15 @@ declare module "factorio:runtime" {
|
|
7395
7529
|
| typeof defines.events.script_raised_teleported
|
7396
7530
|
| typeof defines.events.script_raised_set_tiles
|
7397
7531
|
export type EventId<T extends object, F = unknown> = uint & {
|
7398
|
-
readonly _eventData: T
|
7532
|
+
readonly _eventData: T & EventData
|
7399
7533
|
readonly _filter: F
|
7400
7534
|
}
|
7401
7535
|
export type CustomEventId<T extends table> = EventId<T> & {
|
7402
7536
|
_customEventIdBrand: any
|
7403
7537
|
}
|
7404
7538
|
/**
|
7405
|
-
* 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.
|
7406
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7539
|
+
* Information about the event that has been raised. The table can also contain other fields depending on the type of event. See {@linkplain https://lua-api.factorio.com/2.0.24/events.html the list of Factorio events} for more information on these.
|
7540
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/EventData.html Online documentation}
|
7407
7541
|
*/
|
7408
7542
|
export interface EventData {
|
7409
7543
|
/**
|
@@ -7512,7 +7646,7 @@ declare module "factorio:runtime" {
|
|
7512
7646
|
* - `"button-7"`
|
7513
7647
|
* - `"button-8"`
|
7514
7648
|
* - `"button-9"`
|
7515
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7649
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/MouseButtonFlags.html Online documentation}
|
7516
7650
|
*/
|
7517
7651
|
export interface MouseButtonFlags {
|
7518
7652
|
readonly left?: true
|
@@ -7535,7 +7669,7 @@ declare module "factorio:runtime" {
|
|
7535
7669
|
* - `"not-friend"`: Forces which are not friends pass.
|
7536
7670
|
* - `"same"`: The same force pass.
|
7537
7671
|
* - `"not-same"`: The non-same forces pass.
|
7538
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7672
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ForceCondition.html Online documentation}
|
7539
7673
|
*/
|
7540
7674
|
export type ForceCondition = "all" | "enemy" | "ally" | "friend" | "not-friend" | "same" | "not-same"
|
7541
7675
|
export interface ItemStackLocation {
|
@@ -7573,7 +7707,7 @@ declare module "factorio:runtime" {
|
|
7573
7707
|
* - `"tabbed-pane"`: A collection of `tab`s and their contents. Relevant event: {@link OnGuiSelectedTabChangedEvent on_gui_selected_tab_changed}
|
7574
7708
|
* - `"tab"`: A tab for use in a `tabbed-pane`.
|
7575
7709
|
* - `"switch"`: A switch with three possible states. Can have labels attached to either side. Relevant event: {@link OnGuiSwitchStateChangedEvent on_gui_switch_state_changed}
|
7576
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7710
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/GuiElementType.html Online documentation}
|
7577
7711
|
*/
|
7578
7712
|
export type GuiElementType =
|
7579
7713
|
| "button"
|
@@ -7613,7 +7747,7 @@ declare module "factorio:runtime" {
|
|
7613
7747
|
* - `"position"`
|
7614
7748
|
* - `"crafting_queue"`
|
7615
7749
|
* - `"item_stack"`: Will point to a given item stack in an inventory.
|
7616
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7750
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/GuiArrowType.html Online documentation}
|
7617
7751
|
*/
|
7618
7752
|
export type GuiArrowType =
|
7619
7753
|
| "nowhere"
|
@@ -7630,7 +7764,7 @@ declare module "factorio:runtime" {
|
|
7630
7764
|
* ## Union members
|
7631
7765
|
* - `"horizontal"`
|
7632
7766
|
* - `"vertical"`
|
7633
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7767
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/GuiDirection.html Online documentation}
|
7634
7768
|
*/
|
7635
7769
|
export type GuiDirection = "horizontal" | "vertical"
|
7636
7770
|
/**
|
@@ -7642,7 +7776,7 @@ declare module "factorio:runtime" {
|
|
7642
7776
|
* - `"always"`
|
7643
7777
|
* - `"auto"`
|
7644
7778
|
* - `"auto-and-reserve-space"`
|
7645
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7779
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ScrollPolicy.html Online documentation}
|
7646
7780
|
*/
|
7647
7781
|
export type ScrollPolicy = "never" | "dont-show-but-allow-scrolling" | "always" | "auto" | "auto-and-reserve-space"
|
7648
7782
|
export interface RailLocation {
|
@@ -7659,71 +7793,71 @@ declare module "factorio:runtime" {
|
|
7659
7793
|
}
|
7660
7794
|
/**
|
7661
7795
|
* A floating-point number. This is a single-precision floating point number. Whilst Lua only uses double-precision numbers, when a function takes a float, the game engine will immediately convert the double-precision number to single-precision.
|
7662
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7796
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/float.html Online documentation}
|
7663
7797
|
*/
|
7664
7798
|
export type float = number
|
7665
7799
|
/**
|
7666
7800
|
* A double-precision floating-point number. This is the same data type as all Lua numbers use.
|
7667
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7801
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/double.html Online documentation}
|
7668
7802
|
*/
|
7669
7803
|
export type double = number
|
7670
7804
|
/**
|
7671
7805
|
* 32-bit signed integer. Possible values are `-2 147 483 648` to `2 147 483 647`.
|
7672
7806
|
*
|
7673
7807
|
* Since Lua 5.2 only uses doubles, any API that asks for `int` will floor the given double.
|
7674
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7808
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/int.html Online documentation}
|
7675
7809
|
*/
|
7676
7810
|
export type int = number
|
7677
7811
|
/**
|
7678
7812
|
* 8-bit signed integer. Possible values are `-128` to `127`.
|
7679
7813
|
*
|
7680
7814
|
* Since Lua 5.2 only uses doubles, any API that asks for `int8` will floor the given double.
|
7681
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7815
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/int8.html Online documentation}
|
7682
7816
|
*/
|
7683
7817
|
export type int8 = number
|
7684
7818
|
/**
|
7685
7819
|
* 32-bit unsigned integer. Possible values are `0` to `4 294 967 295`.
|
7686
7820
|
*
|
7687
7821
|
* Since Lua 5.2 only uses doubles, any API that asks for `uint` will floor the given double.
|
7688
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7822
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/uint.html Online documentation}
|
7689
7823
|
*/
|
7690
7824
|
export type uint = number
|
7691
7825
|
/**
|
7692
7826
|
* 8-bit unsigned integer. Possible values are `0` to `255`.
|
7693
7827
|
*
|
7694
7828
|
* Since Lua 5.2 only uses doubles, any API that asks for `uint8` will floor the given double.
|
7695
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7829
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/uint8.html Online documentation}
|
7696
7830
|
*/
|
7697
7831
|
export type uint8 = number
|
7698
7832
|
/**
|
7699
7833
|
* 16-bit unsigned integer. Possible values are `0` to `65 535`.
|
7700
7834
|
*
|
7701
7835
|
* Since Lua 5.2 only uses doubles, any API that asks for `uint16` will floor the given double.
|
7702
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7836
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/uint16.html Online documentation}
|
7703
7837
|
*/
|
7704
7838
|
export type uint16 = number
|
7705
7839
|
/**
|
7706
7840
|
* 64-bit unsigned integer. Possible values are `0` to `18 446 744 073 709 551 615`.
|
7707
7841
|
*
|
7708
7842
|
* Since Lua 5.2 only uses doubles, any API that asks for `uint64` will floor the given double.
|
7709
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7843
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/uint64.html Online documentation}
|
7710
7844
|
*/
|
7711
7845
|
export type uint64 = number
|
7712
7846
|
/**
|
7713
7847
|
* Nil is the type of the value `nil`, whose main property is to be different from any other value. It usually represents the absence of a useful value.
|
7714
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7848
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/nil.html Online documentation}
|
7715
7849
|
*/
|
7716
7850
|
export type nil = undefined
|
7717
7851
|
/**
|
7718
7852
|
* Tables are enclosed in curly brackets, like this `{}`.
|
7719
7853
|
*
|
7720
7854
|
* Throughout the API docs, the terms "array" and "dictionary" are used. These are fundamentally just {@linkplain http://www.lua.org/pil/2.5.html Lua tables}, but have a limitation on which kind of table keys can be used. An array is a table that uses continuous integer keys starting at `1`, while a dictionary can use numeric or string keys in any order or combination.
|
7721
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7855
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/table.html Online documentation}
|
7722
7856
|
*/
|
7723
7857
|
export type table = object
|
7724
7858
|
/**
|
7725
|
-
* Any LuaObject listed on the {@linkplain https://lua-api.factorio.com/2.0.
|
7726
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7859
|
+
* Any LuaObject listed on the {@linkplain https://lua-api.factorio.com/2.0.24/classes.html Classes} page.
|
7860
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/LuaObject.html Online documentation}
|
7727
7861
|
*/
|
7728
7862
|
export interface LuaObject {
|
7729
7863
|
readonly object_name: string
|
@@ -7782,7 +7916,7 @@ declare module "factorio:runtime" {
|
|
7782
7916
|
* - `"type"`: {@link TypeModSettingPrototypeFilter}
|
7783
7917
|
* - `"mod"`: {@link ModModSettingPrototypeFilter}
|
7784
7918
|
* - `"setting-type"`: {@link SettingTypeModSettingPrototypeFilter}
|
7785
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7919
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ModSettingPrototypeFilter.html Online documentation}
|
7786
7920
|
*/
|
7787
7921
|
export type ModSettingPrototypeFilter =
|
7788
7922
|
| TypeModSettingPrototypeFilter
|
@@ -7927,7 +8061,7 @@ declare module "factorio:runtime" {
|
|
7927
8061
|
* - `"vehicle-friction-modifier"`: {@link VehicleFrictionModifierTilePrototypeFilter}
|
7928
8062
|
* - `"decorative-removal-probability"`: {@link DecorativeRemovalProbabilityTilePrototypeFilter}
|
7929
8063
|
* - `"absorptions-per-second"`: {@link AbsorptionsPerSecondTilePrototypeFilter}
|
7930
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
8064
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/TilePrototypeFilter.html Online documentation}
|
7931
8065
|
*/
|
7932
8066
|
export type TilePrototypeFilter =
|
7933
8067
|
| CollisionMaskTilePrototypeFilter
|
@@ -7938,7 +8072,7 @@ declare module "factorio:runtime" {
|
|
7938
8072
|
| OtherTilePrototypeFilter
|
7939
8073
|
/**
|
7940
8074
|
* Write form of {@link TilePrototypeFilter}, where some properties allow additional values as input compared to the read form.
|
7941
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
8075
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/TilePrototypeFilter.html Online documentation}
|
7942
8076
|
*/
|
7943
8077
|
export type TilePrototypeFilterWrite =
|
7944
8078
|
| CollisionMaskTilePrototypeFilter
|
@@ -7989,7 +8123,7 @@ declare module "factorio:runtime" {
|
|
7989
8123
|
*
|
7990
8124
|
* Other attributes may be specified depending on `filter`:
|
7991
8125
|
* - `"collision-mask"`: {@link CollisionMaskDecorativePrototypeFilter}
|
7992
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
8126
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/DecorativePrototypeFilter.html Online documentation}
|
7993
8127
|
*/
|
7994
8128
|
export type DecorativePrototypeFilter = CollisionMaskDecorativePrototypeFilter | OtherDecorativePrototypeFilter
|
7995
8129
|
/**
|
@@ -8243,7 +8377,7 @@ declare module "factorio:runtime" {
|
|
8243
8377
|
* - `"emissions-multiplier"`: {@link EmissionsMultiplierRecipePrototypeFilter}
|
8244
8378
|
* - `"request-paste-multiplier"`: {@link RequestPasteMultiplierRecipePrototypeFilter}
|
8245
8379
|
* - `"overload-multiplier"`: {@link OverloadMultiplierRecipePrototypeFilter}
|
8246
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
8380
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/RecipePrototypeFilter.html Online documentation}
|
8247
8381
|
*/
|
8248
8382
|
export type RecipePrototypeFilter =
|
8249
8383
|
| HasIngredientItemRecipePrototypeFilter
|
@@ -8259,7 +8393,7 @@ declare module "factorio:runtime" {
|
|
8259
8393
|
| OtherRecipePrototypeFilter
|
8260
8394
|
/**
|
8261
8395
|
* Write form of {@link RecipePrototypeFilter}, where some properties allow additional values as input compared to the read form.
|
8262
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
8396
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/RecipePrototypeFilter.html Online documentation}
|
8263
8397
|
*/
|
8264
8398
|
export type RecipePrototypeFilterWrite =
|
8265
8399
|
| HasIngredientItemRecipePrototypeFilterWrite
|
@@ -8311,7 +8445,7 @@ declare module "factorio:runtime" {
|
|
8311
8445
|
*
|
8312
8446
|
* Other attributes may be specified depending on `filter`:
|
8313
8447
|
* - `"type"`: {@link TypeAchievementPrototypeFilter}
|
8314
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
8448
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/AchievementPrototypeFilter.html Online documentation}
|
8315
8449
|
*/
|
8316
8450
|
export type AchievementPrototypeFilter = TypeAchievementPrototypeFilter | OtherAchievementPrototypeFilter
|
8317
8451
|
/**
|
@@ -8434,7 +8568,7 @@ declare module "factorio:runtime" {
|
|
8434
8568
|
* - `"level"`: {@link LevelTechnologyPrototypeFilter}
|
8435
8569
|
* - `"max-level"`: {@link MaxLevelTechnologyPrototypeFilter}
|
8436
8570
|
* - `"time"`: {@link TimeTechnologyPrototypeFilter}
|
8437
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
8571
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/TechnologyPrototypeFilter.html Online documentation}
|
8438
8572
|
*/
|
8439
8573
|
export type TechnologyPrototypeFilter =
|
8440
8574
|
| ResearchUnitIngredientTechnologyPrototypeFilter
|
@@ -8445,7 +8579,7 @@ declare module "factorio:runtime" {
|
|
8445
8579
|
| OtherTechnologyPrototypeFilter
|
8446
8580
|
/**
|
8447
8581
|
* Write form of {@link TechnologyPrototypeFilter}, where some properties allow additional values as input compared to the read form.
|
8448
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
8582
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/TechnologyPrototypeFilter.html Online documentation}
|
8449
8583
|
*/
|
8450
8584
|
export type TechnologyPrototypeFilterWrite =
|
8451
8585
|
| ResearchUnitIngredientTechnologyPrototypeFilter
|
@@ -8762,7 +8896,7 @@ declare module "factorio:runtime" {
|
|
8762
8896
|
* - `"fuel-acceleration-multiplier"`: {@link FuelAccelerationMultiplierItemPrototypeFilter}
|
8763
8897
|
* - `"fuel-top-speed-multiplier"`: {@link FuelTopSpeedMultiplierItemPrototypeFilter}
|
8764
8898
|
* - `"fuel-emissions-multiplier"`: {@link FuelEmissionsMultiplierItemPrototypeFilter}
|
8765
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
8899
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ItemPrototypeFilter.html Online documentation}
|
8766
8900
|
*/
|
8767
8901
|
export type ItemPrototypeFilter =
|
8768
8902
|
| PlaceResultItemPrototypeFilter
|
@@ -8782,7 +8916,7 @@ declare module "factorio:runtime" {
|
|
8782
8916
|
| OtherItemPrototypeFilter
|
8783
8917
|
/**
|
8784
8918
|
* Write form of {@link ItemPrototypeFilter}, where some properties allow additional values as input compared to the read form.
|
8785
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
8919
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/ItemPrototypeFilter.html Online documentation}
|
8786
8920
|
*/
|
8787
8921
|
export type ItemPrototypeFilterWrite =
|
8788
8922
|
| PlaceResultItemPrototypeFilterWrite
|
@@ -8838,7 +8972,7 @@ declare module "factorio:runtime" {
|
|
8838
8972
|
*
|
8839
8973
|
* Other attributes may be specified depending on `filter`:
|
8840
8974
|
* - `"type"`: {@link TypeEquipmentPrototypeFilter}
|
8841
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
8975
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/EquipmentPrototypeFilter.html Online documentation}
|
8842
8976
|
*/
|
8843
8977
|
export type EquipmentPrototypeFilter = TypeEquipmentPrototypeFilter | OtherEquipmentPrototypeFilter
|
8844
8978
|
/**
|
@@ -9069,7 +9203,7 @@ declare module "factorio:runtime" {
|
|
9069
9203
|
* - `"selection-priority"`: {@link SelectionPriorityEntityPrototypeFilter}
|
9070
9204
|
* - `"emissions-per-second"`: {@link EmissionsPerSecondEntityPrototypeFilter}
|
9071
9205
|
* - `"crafting-category"`: {@link CraftingCategoryEntityPrototypeFilter}
|
9072
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
9206
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/EntityPrototypeFilter.html Online documentation}
|
9073
9207
|
*/
|
9074
9208
|
export type EntityPrototypeFilter =
|
9075
9209
|
| NameEntityPrototypeFilter
|
@@ -9083,7 +9217,7 @@ declare module "factorio:runtime" {
|
|
9083
9217
|
| OtherEntityPrototypeFilter
|
9084
9218
|
/**
|
9085
9219
|
* Write form of {@link EntityPrototypeFilter}, where some properties allow additional values as input compared to the read form.
|
9086
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
9220
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/EntityPrototypeFilter.html Online documentation}
|
9087
9221
|
*/
|
9088
9222
|
export type EntityPrototypeFilterWrite =
|
9089
9223
|
| NameEntityPrototypeFilter
|
@@ -9153,7 +9287,7 @@ declare module "factorio:runtime" {
|
|
9153
9287
|
* Other attributes may be specified depending on `filter`:
|
9154
9288
|
* - `"type"`: {@link TypeSpaceLocationPrototypeFilter}
|
9155
9289
|
* - `"solar-power-in-space"`: {@link SolarPowerInSpaceSpaceLocationPrototypeFilter}
|
9156
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
9290
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/SpaceLocationPrototypeFilter.html Online documentation}
|
9157
9291
|
*/
|
9158
9292
|
export type SpaceLocationPrototypeFilter =
|
9159
9293
|
| TypeSpaceLocationPrototypeFilter
|
@@ -9161,7 +9295,7 @@ declare module "factorio:runtime" {
|
|
9161
9295
|
| OtherSpaceLocationPrototypeFilter
|
9162
9296
|
/**
|
9163
9297
|
* Write form of {@link SpaceLocationPrototypeFilter}, where some properties allow additional values as input compared to the read form.
|
9164
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
9298
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/SpaceLocationPrototypeFilter.html Online documentation}
|
9165
9299
|
*/
|
9166
9300
|
export type SpaceLocationPrototypeFilterWrite =
|
9167
9301
|
| TypeSpaceLocationPrototypeFilter
|
@@ -9349,7 +9483,7 @@ declare module "factorio:runtime" {
|
|
9349
9483
|
* - `"fuel-value"`: {@link FuelValueFluidPrototypeFilter}
|
9350
9484
|
* - `"emissions-multiplier"`: {@link EmissionsMultiplierFluidPrototypeFilter}
|
9351
9485
|
* - `"gas-temperature"`: {@link GasTemperatureFluidPrototypeFilter}
|
9352
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
9486
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/FluidPrototypeFilter.html Online documentation}
|
9353
9487
|
*/
|
9354
9488
|
export type FluidPrototypeFilter =
|
9355
9489
|
| NameFluidPrototypeFilter
|
@@ -9363,7 +9497,7 @@ declare module "factorio:runtime" {
|
|
9363
9497
|
| OtherFluidPrototypeFilter
|
9364
9498
|
/**
|
9365
9499
|
* Write form of {@link FluidPrototypeFilter}, where some properties allow additional values as input compared to the read form.
|
9366
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
9500
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/FluidPrototypeFilter.html Online documentation}
|
9367
9501
|
*/
|
9368
9502
|
export type FluidPrototypeFilterWrite =
|
9369
9503
|
| NameFluidPrototypeFilter
|
@@ -9472,7 +9606,7 @@ declare module "factorio:runtime" {
|
|
9472
9606
|
* - `"name"`: {@link NamePrePlatformMinedEntityEventFilter}
|
9473
9607
|
* - `"ghost_type"`: {@link GhostTypePrePlatformMinedEntityEventFilter}
|
9474
9608
|
* - `"ghost_name"`: {@link GhostNamePrePlatformMinedEntityEventFilter}
|
9475
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
9609
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/LuaPrePlatformMinedEntityEventFilter.html Online documentation}
|
9476
9610
|
*/
|
9477
9611
|
export type LuaPrePlatformMinedEntityEventFilter =
|
9478
9612
|
| TypePrePlatformMinedEntityEventFilter
|
@@ -9577,7 +9711,7 @@ declare module "factorio:runtime" {
|
|
9577
9711
|
* - `"name"`: {@link NameRobotMinedEntityEventFilter}
|
9578
9712
|
* - `"ghost_type"`: {@link GhostTypeRobotMinedEntityEventFilter}
|
9579
9713
|
* - `"ghost_name"`: {@link GhostNameRobotMinedEntityEventFilter}
|
9580
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
9714
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/LuaRobotMinedEntityEventFilter.html Online documentation}
|
9581
9715
|
*/
|
9582
9716
|
export type LuaRobotMinedEntityEventFilter =
|
9583
9717
|
| TypeRobotMinedEntityEventFilter
|
@@ -9682,7 +9816,7 @@ declare module "factorio:runtime" {
|
|
9682
9816
|
* - `"name"`: {@link NameEntityMarkedForUpgradeEventFilter}
|
9683
9817
|
* - `"ghost_type"`: {@link GhostTypeEntityMarkedForUpgradeEventFilter}
|
9684
9818
|
* - `"ghost_name"`: {@link GhostNameEntityMarkedForUpgradeEventFilter}
|
9685
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
9819
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/LuaEntityMarkedForUpgradeEventFilter.html Online documentation}
|
9686
9820
|
*/
|
9687
9821
|
export type LuaEntityMarkedForUpgradeEventFilter =
|
9688
9822
|
| TypeEntityMarkedForUpgradeEventFilter
|
@@ -9787,7 +9921,7 @@ declare module "factorio:runtime" {
|
|
9787
9921
|
* - `"name"`: {@link NamePreGhostUpgradedEventFilter}
|
9788
9922
|
* - `"ghost_type"`: {@link GhostTypePreGhostUpgradedEventFilter}
|
9789
9923
|
* - `"ghost_name"`: {@link GhostNamePreGhostUpgradedEventFilter}
|
9790
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
9924
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/LuaPreGhostUpgradedEventFilter.html Online documentation}
|
9791
9925
|
*/
|
9792
9926
|
export type LuaPreGhostUpgradedEventFilter =
|
9793
9927
|
| TypePreGhostUpgradedEventFilter
|
@@ -9892,7 +10026,7 @@ declare module "factorio:runtime" {
|
|
9892
10026
|
* - `"name"`: {@link NamePlatformMinedEntityEventFilter}
|
9893
10027
|
* - `"ghost_type"`: {@link GhostTypePlatformMinedEntityEventFilter}
|
9894
10028
|
* - `"ghost_name"`: {@link GhostNamePlatformMinedEntityEventFilter}
|
9895
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
10029
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/LuaPlatformMinedEntityEventFilter.html Online documentation}
|
9896
10030
|
*/
|
9897
10031
|
export type LuaPlatformMinedEntityEventFilter =
|
9898
10032
|
| TypePlatformMinedEntityEventFilter
|
@@ -9997,7 +10131,7 @@ declare module "factorio:runtime" {
|
|
9997
10131
|
* - `"name"`: {@link NameScriptRaisedDestroyEventFilter}
|
9998
10132
|
* - `"ghost_type"`: {@link GhostTypeScriptRaisedDestroyEventFilter}
|
9999
10133
|
* - `"ghost_name"`: {@link GhostNameScriptRaisedDestroyEventFilter}
|
10000
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
10134
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/LuaScriptRaisedDestroyEventFilter.html Online documentation}
|
10001
10135
|
*/
|
10002
10136
|
export type LuaScriptRaisedDestroyEventFilter =
|
10003
10137
|
| TypeScriptRaisedDestroyEventFilter
|
@@ -10114,7 +10248,7 @@ declare module "factorio:runtime" {
|
|
10114
10248
|
* - `"ghost_type"`: {@link GhostTypePlayerBuiltEntityEventFilter}
|
10115
10249
|
* - `"ghost_name"`: {@link GhostNamePlayerBuiltEntityEventFilter}
|
10116
10250
|
* - `"force"`: {@link ForcePlayerBuiltEntityEventFilter}
|
10117
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
10251
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/LuaPlayerBuiltEntityEventFilter.html Online documentation}
|
10118
10252
|
*/
|
10119
10253
|
export type LuaPlayerBuiltEntityEventFilter =
|
10120
10254
|
| TypePlayerBuiltEntityEventFilter
|
@@ -10232,7 +10366,7 @@ declare module "factorio:runtime" {
|
|
10232
10366
|
* - `"ghost_type"`: {@link GhostTypePlatformBuiltEntityEventFilter}
|
10233
10367
|
* - `"ghost_name"`: {@link GhostNamePlatformBuiltEntityEventFilter}
|
10234
10368
|
* - `"force"`: {@link ForcePlatformBuiltEntityEventFilter}
|
10235
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
10369
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/LuaPlatformBuiltEntityEventFilter.html Online documentation}
|
10236
10370
|
*/
|
10237
10371
|
export type LuaPlatformBuiltEntityEventFilter =
|
10238
10372
|
| TypePlatformBuiltEntityEventFilter
|
@@ -10338,7 +10472,7 @@ declare module "factorio:runtime" {
|
|
10338
10472
|
* - `"name"`: {@link NamePreGhostDeconstructedEventFilter}
|
10339
10473
|
* - `"ghost_type"`: {@link GhostTypePreGhostDeconstructedEventFilter}
|
10340
10474
|
* - `"ghost_name"`: {@link GhostNamePreGhostDeconstructedEventFilter}
|
10341
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
10475
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/LuaPreGhostDeconstructedEventFilter.html Online documentation}
|
10342
10476
|
*/
|
10343
10477
|
export type LuaPreGhostDeconstructedEventFilter =
|
10344
10478
|
| TypePreGhostDeconstructedEventFilter
|
@@ -10443,7 +10577,7 @@ declare module "factorio:runtime" {
|
|
10443
10577
|
* - `"name"`: {@link NameEntityClonedEventFilter}
|
10444
10578
|
* - `"ghost_type"`: {@link GhostTypeEntityClonedEventFilter}
|
10445
10579
|
* - `"ghost_name"`: {@link GhostNameEntityClonedEventFilter}
|
10446
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
10580
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/LuaEntityClonedEventFilter.html Online documentation}
|
10447
10581
|
*/
|
10448
10582
|
export type LuaEntityClonedEventFilter =
|
10449
10583
|
| TypeEntityClonedEventFilter
|
@@ -10548,7 +10682,7 @@ declare module "factorio:runtime" {
|
|
10548
10682
|
* - `"name"`: {@link NameScriptRaisedTeleportedEventFilter}
|
10549
10683
|
* - `"ghost_type"`: {@link GhostTypeScriptRaisedTeleportedEventFilter}
|
10550
10684
|
* - `"ghost_name"`: {@link GhostNameScriptRaisedTeleportedEventFilter}
|
10551
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
10685
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/LuaScriptRaisedTeleportedEventFilter.html Online documentation}
|
10552
10686
|
*/
|
10553
10687
|
export type LuaScriptRaisedTeleportedEventFilter =
|
10554
10688
|
| TypeScriptRaisedTeleportedEventFilter
|
@@ -10655,7 +10789,7 @@ declare module "factorio:runtime" {
|
|
10655
10789
|
* - `"name"`: {@link NameEntityDeconstructionCancelledEventFilter}
|
10656
10790
|
* - `"ghost_type"`: {@link GhostTypeEntityDeconstructionCancelledEventFilter}
|
10657
10791
|
* - `"ghost_name"`: {@link GhostNameEntityDeconstructionCancelledEventFilter}
|
10658
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
10792
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/LuaEntityDeconstructionCancelledEventFilter.html Online documentation}
|
10659
10793
|
*/
|
10660
10794
|
export type LuaEntityDeconstructionCancelledEventFilter =
|
10661
10795
|
| TypeEntityDeconstructionCancelledEventFilter
|
@@ -10772,7 +10906,7 @@ declare module "factorio:runtime" {
|
|
10772
10906
|
* - `"ghost_type"`: {@link GhostTypeRobotBuiltEntityEventFilter}
|
10773
10907
|
* - `"ghost_name"`: {@link GhostNameRobotBuiltEntityEventFilter}
|
10774
10908
|
* - `"force"`: {@link ForceRobotBuiltEntityEventFilter}
|
10775
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
10909
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/LuaRobotBuiltEntityEventFilter.html Online documentation}
|
10776
10910
|
*/
|
10777
10911
|
export type LuaRobotBuiltEntityEventFilter =
|
10778
10912
|
| TypeRobotBuiltEntityEventFilter
|
@@ -10878,7 +11012,7 @@ declare module "factorio:runtime" {
|
|
10878
11012
|
* - `"name"`: {@link NameScriptRaisedBuiltEventFilter}
|
10879
11013
|
* - `"ghost_type"`: {@link GhostTypeScriptRaisedBuiltEventFilter}
|
10880
11014
|
* - `"ghost_name"`: {@link GhostNameScriptRaisedBuiltEventFilter}
|
10881
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
11015
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/LuaScriptRaisedBuiltEventFilter.html Online documentation}
|
10882
11016
|
*/
|
10883
11017
|
export type LuaScriptRaisedBuiltEventFilter =
|
10884
11018
|
| TypeScriptRaisedBuiltEventFilter
|
@@ -10983,7 +11117,7 @@ declare module "factorio:runtime" {
|
|
10983
11117
|
* - `"name"`: {@link NamePrePlayerMinedEntityEventFilter}
|
10984
11118
|
* - `"ghost_type"`: {@link GhostTypePrePlayerMinedEntityEventFilter}
|
10985
11119
|
* - `"ghost_name"`: {@link GhostNamePrePlayerMinedEntityEventFilter}
|
10986
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
11120
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/LuaPrePlayerMinedEntityEventFilter.html Online documentation}
|
10987
11121
|
*/
|
10988
11122
|
export type LuaPrePlayerMinedEntityEventFilter =
|
10989
11123
|
| TypePrePlayerMinedEntityEventFilter
|
@@ -11088,7 +11222,7 @@ declare module "factorio:runtime" {
|
|
11088
11222
|
* - `"name"`: {@link NamePlayerRepairedEntityEventFilter}
|
11089
11223
|
* - `"ghost_type"`: {@link GhostTypePlayerRepairedEntityEventFilter}
|
11090
11224
|
* - `"ghost_name"`: {@link GhostNamePlayerRepairedEntityEventFilter}
|
11091
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
11225
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/LuaPlayerRepairedEntityEventFilter.html Online documentation}
|
11092
11226
|
*/
|
11093
11227
|
export type LuaPlayerRepairedEntityEventFilter =
|
11094
11228
|
| TypePlayerRepairedEntityEventFilter
|
@@ -11193,7 +11327,7 @@ declare module "factorio:runtime" {
|
|
11193
11327
|
* - `"name"`: {@link NameUpgradeCancelledEventFilter}
|
11194
11328
|
* - `"ghost_type"`: {@link GhostTypeUpgradeCancelledEventFilter}
|
11195
11329
|
* - `"ghost_name"`: {@link GhostNameUpgradeCancelledEventFilter}
|
11196
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
11330
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/LuaUpgradeCancelledEventFilter.html Online documentation}
|
11197
11331
|
*/
|
11198
11332
|
export type LuaUpgradeCancelledEventFilter =
|
11199
11333
|
| TypeUpgradeCancelledEventFilter
|
@@ -11298,7 +11432,7 @@ declare module "factorio:runtime" {
|
|
11298
11432
|
* - `"name"`: {@link NameSectorScannedEventFilter}
|
11299
11433
|
* - `"ghost_type"`: {@link GhostTypeSectorScannedEventFilter}
|
11300
11434
|
* - `"ghost_name"`: {@link GhostNameSectorScannedEventFilter}
|
11301
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
11435
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/LuaSectorScannedEventFilter.html Online documentation}
|
11302
11436
|
*/
|
11303
11437
|
export type LuaSectorScannedEventFilter =
|
11304
11438
|
| TypeSectorScannedEventFilter
|
@@ -11344,7 +11478,7 @@ declare module "factorio:runtime" {
|
|
11344
11478
|
*
|
11345
11479
|
* Other attributes may be specified depending on `filter`:
|
11346
11480
|
* - `"type"`: {@link TypePostEntityDiedEventFilter}
|
11347
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
11481
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/LuaPostEntityDiedEventFilter.html Online documentation}
|
11348
11482
|
*/
|
11349
11483
|
export type LuaPostEntityDiedEventFilter = TypePostEntityDiedEventFilter | OtherPostEntityDiedEventFilter
|
11350
11484
|
/**
|
@@ -11446,7 +11580,7 @@ declare module "factorio:runtime" {
|
|
11446
11580
|
* - `"name"`: {@link NameEntityMarkedForDeconstructionEventFilter}
|
11447
11581
|
* - `"ghost_type"`: {@link GhostTypeEntityMarkedForDeconstructionEventFilter}
|
11448
11582
|
* - `"ghost_name"`: {@link GhostNameEntityMarkedForDeconstructionEventFilter}
|
11449
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
11583
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/LuaEntityMarkedForDeconstructionEventFilter.html Online documentation}
|
11450
11584
|
*/
|
11451
11585
|
export type LuaEntityMarkedForDeconstructionEventFilter =
|
11452
11586
|
| TypeEntityMarkedForDeconstructionEventFilter
|
@@ -11551,7 +11685,7 @@ declare module "factorio:runtime" {
|
|
11551
11685
|
* - `"name"`: {@link NamePlayerMinedEntityEventFilter}
|
11552
11686
|
* - `"ghost_type"`: {@link GhostTypePlayerMinedEntityEventFilter}
|
11553
11687
|
* - `"ghost_name"`: {@link GhostNamePlayerMinedEntityEventFilter}
|
11554
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
11688
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/LuaPlayerMinedEntityEventFilter.html Online documentation}
|
11555
11689
|
*/
|
11556
11690
|
export type LuaPlayerMinedEntityEventFilter =
|
11557
11691
|
| TypePlayerMinedEntityEventFilter
|
@@ -11731,7 +11865,7 @@ declare module "factorio:runtime" {
|
|
11731
11865
|
* - `"final-damage-amount"`: {@link FinalDamageAmountEntityDamagedEventFilter}
|
11732
11866
|
* - `"damage-type"`: {@link DamageTypeEntityDamagedEventFilter}
|
11733
11867
|
* - `"final-health"`: {@link FinalHealthEntityDamagedEventFilter}
|
11734
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
11868
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/LuaEntityDamagedEventFilter.html Online documentation}
|
11735
11869
|
*/
|
11736
11870
|
export type LuaEntityDamagedEventFilter =
|
11737
11871
|
| TypeEntityDamagedEventFilter
|
@@ -11745,7 +11879,7 @@ declare module "factorio:runtime" {
|
|
11745
11879
|
| OtherEntityDamagedEventFilter
|
11746
11880
|
/**
|
11747
11881
|
* Write form of {@link LuaEntityDamagedEventFilter}, where some properties allow additional values as input compared to the read form.
|
11748
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
11882
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/LuaEntityDamagedEventFilter.html Online documentation}
|
11749
11883
|
*/
|
11750
11884
|
export type LuaEntityDamagedEventFilterWrite =
|
11751
11885
|
| TypeEntityDamagedEventFilter
|
@@ -11854,7 +11988,7 @@ declare module "factorio:runtime" {
|
|
11854
11988
|
* - `"name"`: {@link NameScriptRaisedReviveEventFilter}
|
11855
11989
|
* - `"ghost_type"`: {@link GhostTypeScriptRaisedReviveEventFilter}
|
11856
11990
|
* - `"ghost_name"`: {@link GhostNameScriptRaisedReviveEventFilter}
|
11857
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
11991
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/LuaScriptRaisedReviveEventFilter.html Online documentation}
|
11858
11992
|
*/
|
11859
11993
|
export type LuaScriptRaisedReviveEventFilter =
|
11860
11994
|
| TypeScriptRaisedReviveEventFilter
|
@@ -11959,7 +12093,7 @@ declare module "factorio:runtime" {
|
|
11959
12093
|
* - `"name"`: {@link NameEntityDiedEventFilter}
|
11960
12094
|
* - `"ghost_type"`: {@link GhostTypeEntityDiedEventFilter}
|
11961
12095
|
* - `"ghost_name"`: {@link GhostNameEntityDiedEventFilter}
|
11962
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
12096
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/LuaEntityDiedEventFilter.html Online documentation}
|
11963
12097
|
*/
|
11964
12098
|
export type LuaEntityDiedEventFilter =
|
11965
12099
|
| TypeEntityDiedEventFilter
|
@@ -12064,7 +12198,7 @@ declare module "factorio:runtime" {
|
|
12064
12198
|
* - `"name"`: {@link NamePreRobotMinedEntityEventFilter}
|
12065
12199
|
* - `"ghost_type"`: {@link GhostTypePreRobotMinedEntityEventFilter}
|
12066
12200
|
* - `"ghost_name"`: {@link GhostNamePreRobotMinedEntityEventFilter}
|
12067
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
12201
|
+
* @see {@link https://lua-api.factorio.com/2.0.24/concepts/LuaPreRobotMinedEntityEventFilter.html Online documentation}
|
12068
12202
|
*/
|
12069
12203
|
export type LuaPreRobotMinedEntityEventFilter =
|
12070
12204
|
| TypePreRobotMinedEntityEventFilter
|
@@ -12074,4 +12208,11 @@ declare module "factorio:runtime" {
|
|
12074
12208
|
| OtherPreRobotMinedEntityEventFilter
|
12075
12209
|
export type StyleValuesArray = [topBottom: int, leftRight: int] | [top: int, right: int, bottom: int, left: int]
|
12076
12210
|
export type SizeArray = [width: int, height: int]
|
12211
|
+
export type EventTypeOf<T extends LuaEventType> = T extends string | LuaCustomInputPrototype
|
12212
|
+
? CustomInputEvent
|
12213
|
+
: T extends EventId<infer E, any>
|
12214
|
+
? E
|
12215
|
+
: T extends LuaCustomEventPrototype
|
12216
|
+
? EventData
|
12217
|
+
: never
|
12077
12218
|
}
|