typed-factorio 3.14.0 → 3.16.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 +2231 -2095
- package/prototype/generated/types.d.ts +2177 -2150
- package/runtime/generated/classes.d.ts +4131 -3615
- package/runtime/generated/concepts.d.ts +405 -357
- package/runtime/generated/defines.d.ts +242 -184
- package/runtime/generated/events.d.ts +276 -202
- package/runtime/generated/global-functions.d.ts +3 -3
- package/runtime/generated/global-objects.d.ts +8 -8
@@ -12,21 +12,21 @@ import type { VersionString } from "factorio:common"
|
|
12
12
|
declare module "factorio:runtime" {
|
13
13
|
/**
|
14
14
|
* `math.huge` represents the maximum possible tick.
|
15
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
15
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/MapTick.html Online documentation}
|
16
16
|
*/
|
17
17
|
export type MapTick = uint64
|
18
18
|
/**
|
19
19
|
* The percentual increase of the attribute. A value of `0.6` means a 60% increase.
|
20
20
|
*
|
21
21
|
* Quality values are divided by 10 internally, allowing for one more decimal of precision.
|
22
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
22
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ModuleEffectValue.html Online documentation}
|
23
23
|
*/
|
24
24
|
export type ModuleEffectValue = float
|
25
25
|
/**
|
26
26
|
* @example
|
27
27
|
* -- These are the effects of the vanilla Speed Module 3
|
28
28
|
* {speed = 0.5, consumption = 0.7, quality = -0.25}
|
29
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
29
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ModuleEffects.html Online documentation}
|
30
30
|
*/
|
31
31
|
export interface ModuleEffects {
|
32
32
|
readonly consumption?: ModuleEffectValue
|
@@ -50,7 +50,7 @@ declare module "factorio:runtime" {
|
|
50
50
|
* - `"<="`: "lesser than or equal to"
|
51
51
|
* - `"≠"`: "not equal to"
|
52
52
|
* - `"!="`: "not equal to"
|
53
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
53
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ComparatorString.html Online documentation}
|
54
54
|
*/
|
55
55
|
export type ComparatorString = "=" | ">" | "<" | "≥" | ">=" | "≤" | "<=" | "≠" | "!="
|
56
56
|
export type ComparatorStringRead = "=" | ">" | "<" | "≥" | "≤" | "≠"
|
@@ -81,8 +81,8 @@ declare module "factorio:runtime" {
|
|
81
81
|
*
|
82
82
|
* The validity of a SpritePath can be verified at runtime using {@link LuaHelpers#is_valid_sprite_path LuaHelpers::is_valid_sprite_path}.
|
83
83
|
*
|
84
|
-
* {@link https://lua-api.factorio.com/2.0.
|
85
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
84
|
+
* {@link https://lua-api.factorio.com/2.0.39/concepts/SpritePath.html > The supported types are:}
|
85
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/SpritePath.html Online documentation}
|
86
86
|
*/
|
87
87
|
export type SpritePath = (string & { _?: never }) | `${SpriteType}${"/" | "."}${string}`
|
88
88
|
/**
|
@@ -93,14 +93,14 @@ declare module "factorio:runtime" {
|
|
93
93
|
* - {@link FluidID}: Used with fluid production statistics.
|
94
94
|
* - {@link EntityWithQualityID}: Used with electric network, entity build count, and kill count statistics.
|
95
95
|
* - {@link EntityID}: Used with pollution statistics.
|
96
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
96
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/FlowStatisticsID.html Online documentation}
|
97
97
|
*/
|
98
98
|
export type FlowStatisticsID = ItemWithQualityID | FluidID | EntityWithQualityID | EntityID
|
99
99
|
/**
|
100
100
|
* @example
|
101
101
|
* -- Most common collision mask of buildings:
|
102
102
|
* collision_mask = {layers = {item = true, meltable = true, object = true, player = true, water_tile = true, is_object = true, is_lower_object = true}}
|
103
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
103
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/CollisionMask.html Online documentation}
|
104
104
|
*/
|
105
105
|
export interface CollisionMask {
|
106
106
|
/**
|
@@ -228,7 +228,7 @@ declare module "factorio:runtime" {
|
|
228
228
|
* - `"check-box"`
|
229
229
|
* - `"switch"`
|
230
230
|
* - `"label"`
|
231
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
231
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/SimulationWidgetType.html Online documentation}
|
232
232
|
*/
|
233
233
|
export type SimulationWidgetType =
|
234
234
|
| "signal-id"
|
@@ -307,6 +307,10 @@ declare module "factorio:runtime" {
|
|
307
307
|
* Checks if train is in manual controller.
|
308
308
|
*/
|
309
309
|
readonly is_manual?: boolean
|
310
|
+
/**
|
311
|
+
* Train must belong to a group of a given name.
|
312
|
+
*/
|
313
|
+
readonly group?: string
|
310
314
|
}
|
311
315
|
export interface TrainStopFilter {
|
312
316
|
/**
|
@@ -350,7 +354,7 @@ declare module "factorio:runtime" {
|
|
350
354
|
* - `"any-goal-accessible"`: The method will return {@link TrainPathFinderOneGoalResult}.
|
351
355
|
* - `"all-goals-accessible"`: The method will return {@link TrainPathAllGoalsResult}.
|
352
356
|
* - `"all-goals-penalties"`: The method will return {@link TrainPathAllGoalsResult} with `penalties`.
|
353
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
357
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/TrainPathRequestType.html Online documentation}
|
354
358
|
*/
|
355
359
|
export type TrainPathRequestType = "path" | "any-goal-accessible" | "all-goals-accessible" | "all-goals-penalties"
|
356
360
|
/**
|
@@ -359,7 +363,7 @@ declare module "factorio:runtime" {
|
|
359
363
|
* - {@link RailEndGoal}
|
360
364
|
* - {@link LuaRailEnd}
|
361
365
|
* - {@link LuaEntity}: Only if it points at train-stop that is connected to a rail.
|
362
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
366
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/TrainPathFinderGoal.html Online documentation}
|
363
367
|
*/
|
364
368
|
export type TrainPathFinderGoal = TrainStopGoal | RailEndGoal | LuaRailEnd | LuaEntity
|
365
369
|
export interface TrainStopGoal {
|
@@ -451,6 +455,24 @@ declare module "factorio:runtime" {
|
|
451
455
|
*/
|
452
456
|
readonly steps_count: uint
|
453
457
|
}
|
458
|
+
export interface AddRecordData {
|
459
|
+
/**
|
460
|
+
* One of station or rail must be given.
|
461
|
+
*/
|
462
|
+
readonly station?: string
|
463
|
+
readonly rail?: LuaEntity
|
464
|
+
/**
|
465
|
+
* When `rail` is given, this can be provided to further narrow down direction from which that rail should be approached.
|
466
|
+
*/
|
467
|
+
readonly rail_direction?: defines.rail_direction
|
468
|
+
readonly wait_conditions?: readonly WaitConditionWrite[]
|
469
|
+
readonly temporary?: boolean
|
470
|
+
readonly allows_unloading?: boolean
|
471
|
+
/**
|
472
|
+
* If index is not given, the record is appended.
|
473
|
+
*/
|
474
|
+
readonly index?: ScheduleRecordPosition
|
475
|
+
}
|
454
476
|
export interface DetailedItemOnLine {
|
455
477
|
readonly stack: LuaItemStack
|
456
478
|
/**
|
@@ -464,7 +486,7 @@ declare module "factorio:runtime" {
|
|
464
486
|
}
|
465
487
|
/**
|
466
488
|
* A single pipe connection for a given fluidbox.
|
467
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
489
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/PipeConnection.html Online documentation}
|
468
490
|
*/
|
469
491
|
export interface PipeConnection {
|
470
492
|
readonly flow_direction: "input" | "output" | "input-output"
|
@@ -527,7 +549,7 @@ declare module "factorio:runtime" {
|
|
527
549
|
* - {@link LuaEntityDiedEventFilter}
|
528
550
|
* - {@link LuaPreRobotMinedEntityEventFilter}
|
529
551
|
* @see EventFilterWrite
|
530
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
552
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/EventFilter.html Online documentation}
|
531
553
|
*/
|
532
554
|
export type EventFilter =
|
533
555
|
| LuaPrePlatformMinedEntityEventFilter[]
|
@@ -557,7 +579,7 @@ declare module "factorio:runtime" {
|
|
557
579
|
| LuaPreRobotMinedEntityEventFilter[]
|
558
580
|
/**
|
559
581
|
* Write form of {@link EventFilter}, where some properties allow additional values as input compared to the read form.
|
560
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
582
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/EventFilter.html Online documentation}
|
561
583
|
*/
|
562
584
|
export type EventFilterWrite =
|
563
585
|
| readonly LuaPrePlatformMinedEntityEventFilter[]
|
@@ -608,7 +630,8 @@ declare module "factorio:runtime" {
|
|
608
630
|
* - {@link LuaCustomChartTag}: Target type {@link defines.target_type.custom_chart_tag custom_chart_tag}; `useful_id` {@link LuaCustomChartTag#tag_number LuaCustomChartTag::tag_number}
|
609
631
|
* - {@link LuaGuiElement}: Target type {@link defines.target_type.gui_element gui_element}; `useful_id` {@link LuaGuiElement#index LuaGuiElement::index}
|
610
632
|
* - {@link LuaCargoHatch}: Target type {@link defines.target_type.cargo_hatch cargo_hatch}
|
611
|
-
* @
|
633
|
+
* - {@link LuaSchedule}: Target type {@link defines.target_type.schedule schedule}
|
634
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/RegistrationTarget.html Online documentation}
|
612
635
|
*/
|
613
636
|
export type RegistrationTarget =
|
614
637
|
| LuaEntity
|
@@ -630,6 +653,7 @@ declare module "factorio:runtime" {
|
|
630
653
|
| LuaCustomChartTag
|
631
654
|
| LuaGuiElement
|
632
655
|
| LuaCargoHatch
|
656
|
+
| LuaSchedule
|
633
657
|
/**
|
634
658
|
* Common attributes to all variants of {@link UndoRedoAction}.
|
635
659
|
*/
|
@@ -810,7 +834,7 @@ declare module "factorio:runtime" {
|
|
810
834
|
* - `"wire-removed"`: {@link WireRemovedUndoRedoAction}
|
811
835
|
* - `"rotated-entity"`: {@link RotatedEntityUndoRedoAction}
|
812
836
|
* - `"copy-entity-settings"`: {@link CopyEntitySettingsUndoRedoAction}
|
813
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
837
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/UndoRedoAction.html Online documentation}
|
814
838
|
*/
|
815
839
|
export type UndoRedoAction =
|
816
840
|
| BuiltEntityUndoRedoAction
|
@@ -842,7 +866,7 @@ declare module "factorio:runtime" {
|
|
842
866
|
* - `"weapon"`
|
843
867
|
* - `"explosion"`
|
844
868
|
* - `"enemy"`
|
845
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
869
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/SoundType.html Online documentation}
|
846
870
|
*/
|
847
871
|
export type SoundType =
|
848
872
|
| "game-effect"
|
@@ -925,7 +949,7 @@ declare module "factorio:runtime" {
|
|
925
949
|
* - `"controllable-remove"`
|
926
950
|
* - `"entity-ghost"`: Selects entities that are `entity-ghost`s.
|
927
951
|
* - `"tile-ghost"`: Selects entities that are `tile-ghost`s.
|
928
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
952
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/SelectionModeFlags.html Online documentation}
|
929
953
|
*/
|
930
954
|
export interface SelectionModeFlags {
|
931
955
|
/**
|
@@ -1044,7 +1068,7 @@ declare module "factorio:runtime" {
|
|
1044
1068
|
* A set of flags. Active flags are in the dictionary as `true`, while inactive flags aren't present at all.
|
1045
1069
|
*
|
1046
1070
|
* By default, none of these flags are set.
|
1047
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1071
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ItemPrototypeFlags.html Online documentation}
|
1048
1072
|
*/
|
1049
1073
|
export type ItemPrototypeFlags = {
|
1050
1074
|
readonly [T in ItemPrototypeFlag]?: true
|
@@ -1065,7 +1089,7 @@ declare module "factorio:runtime" {
|
|
1065
1089
|
* - `"spawnable"`: Allows the item to be spawned by a quickbar shortcut or custom input.
|
1066
1090
|
* - `"spoil-result"`
|
1067
1091
|
* - `"ignore-spoil-time-modifier"`: Controls whether the spoil time ignores the spoil time modifier in the {@link DifficultySettings}.
|
1068
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1092
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ItemPrototypeFlag.html Online documentation}
|
1069
1093
|
*/
|
1070
1094
|
export type ItemPrototypeFlag =
|
1071
1095
|
| "draw-logistic-overlay"
|
@@ -1085,7 +1109,7 @@ declare module "factorio:runtime" {
|
|
1085
1109
|
* - `"none"`
|
1086
1110
|
* - `"whitelist"`
|
1087
1111
|
* - `"blacklist"`
|
1088
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1112
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/PrototypeFilterMode.html Online documentation}
|
1089
1113
|
*/
|
1090
1114
|
export type PrototypeFilterMode = "none" | "whitelist" | "blacklist"
|
1091
1115
|
export interface PipeConnectionDefinition {
|
@@ -1110,7 +1134,7 @@ declare module "factorio:runtime" {
|
|
1110
1134
|
* The name of a {@link LuaCollisionLayerPrototype}.
|
1111
1135
|
* @example
|
1112
1136
|
* "is_lower_object"
|
1113
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1137
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/CollisionLayerID.html Online documentation}
|
1114
1138
|
*/
|
1115
1139
|
export type CollisionLayerID = string
|
1116
1140
|
export interface ItemIDFilter {
|
@@ -1160,7 +1184,7 @@ declare module "factorio:runtime" {
|
|
1160
1184
|
* - {@link SpaceLocationPrototypeFilter}
|
1161
1185
|
* - {@link FluidPrototypeFilter}
|
1162
1186
|
* @see PrototypeFilterWrite
|
1163
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1187
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/PrototypeFilter.html Online documentation}
|
1164
1188
|
*/
|
1165
1189
|
export type PrototypeFilter =
|
1166
1190
|
| ModSettingPrototypeFilter[]
|
@@ -1177,7 +1201,7 @@ declare module "factorio:runtime" {
|
|
1177
1201
|
| FluidPrototypeFilter[]
|
1178
1202
|
/**
|
1179
1203
|
* Write form of {@link PrototypeFilter}, where some properties allow additional values as input compared to the read form.
|
1180
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1204
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/PrototypeFilter.html Online documentation}
|
1181
1205
|
*/
|
1182
1206
|
export type PrototypeFilterWrite =
|
1183
1207
|
| readonly ModSettingPrototypeFilter[]
|
@@ -1194,7 +1218,7 @@ declare module "factorio:runtime" {
|
|
1194
1218
|
| readonly FluidPrototypeFilterWrite[]
|
1195
1219
|
/**
|
1196
1220
|
* @see DisplayPanelMessageDefinitionWrite
|
1197
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1221
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/DisplayPanelMessageDefinition.html Online documentation}
|
1198
1222
|
*/
|
1199
1223
|
export interface DisplayPanelMessageDefinition {
|
1200
1224
|
/**
|
@@ -1212,7 +1236,7 @@ declare module "factorio:runtime" {
|
|
1212
1236
|
}
|
1213
1237
|
/**
|
1214
1238
|
* Write form of {@link DisplayPanelMessageDefinition}, where some properties allow additional values as input compared to the read form.
|
1215
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1239
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/DisplayPanelMessageDefinition.html Online documentation}
|
1216
1240
|
*/
|
1217
1241
|
export interface DisplayPanelMessageDefinitionWrite {
|
1218
1242
|
/**
|
@@ -1238,7 +1262,7 @@ declare module "factorio:runtime" {
|
|
1238
1262
|
* - `"space-location"`
|
1239
1263
|
* - `"asteroid-chunk"`
|
1240
1264
|
* - `"quality"`
|
1241
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1265
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/SignalIDType.html Online documentation}
|
1242
1266
|
*/
|
1243
1267
|
export type SignalIDType =
|
1244
1268
|
| "item"
|
@@ -1251,7 +1275,7 @@ declare module "factorio:runtime" {
|
|
1251
1275
|
| "quality"
|
1252
1276
|
/**
|
1253
1277
|
* @see SignalIDWrite
|
1254
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1278
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/SignalID.html Online documentation}
|
1255
1279
|
*/
|
1256
1280
|
export interface SignalID {
|
1257
1281
|
/**
|
@@ -1269,7 +1293,7 @@ declare module "factorio:runtime" {
|
|
1269
1293
|
}
|
1270
1294
|
/**
|
1271
1295
|
* Write form of {@link SignalID}, where some properties allow additional values as input compared to the read form.
|
1272
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1296
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/SignalID.html Online documentation}
|
1273
1297
|
*/
|
1274
1298
|
export interface SignalIDWrite {
|
1275
1299
|
/**
|
@@ -1475,7 +1499,7 @@ declare module "factorio:runtime" {
|
|
1475
1499
|
* - `"play-next-track"`
|
1476
1500
|
* - `"play-previous-track"`
|
1477
1501
|
* - `"pause-resume-music"`
|
1478
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1502
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/LinkedGameControl.html Online documentation}
|
1479
1503
|
*/
|
1480
1504
|
export type LinkedGameControl =
|
1481
1505
|
| "move-up"
|
@@ -1726,7 +1750,7 @@ declare module "factorio:runtime" {
|
|
1726
1750
|
* - `"create-ghost-on-entity-death"`
|
1727
1751
|
* - `"belt-stack-size-bonus"`
|
1728
1752
|
* - `"vehicle-logistics"`
|
1729
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1753
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ModifierType.html Online documentation}
|
1730
1754
|
*/
|
1731
1755
|
export type ModifierType =
|
1732
1756
|
| "inserter-stack-size-bonus"
|
@@ -1845,7 +1869,7 @@ declare module "factorio:runtime" {
|
|
1845
1869
|
* - `"capture-spawner"`: {@link CaptureSpawnerResearchTrigger}
|
1846
1870
|
* - `"build-entity"`: {@link BuildEntityResearchTrigger}
|
1847
1871
|
* - `"send-item-to-orbit"`: {@link SendItemToOrbitResearchTrigger}
|
1848
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1872
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ResearchTrigger.html Online documentation}
|
1849
1873
|
*/
|
1850
1874
|
export type ResearchTrigger =
|
1851
1875
|
| CraftItemResearchTrigger
|
@@ -1859,7 +1883,7 @@ declare module "factorio:runtime" {
|
|
1859
1883
|
* A set of flags. Active flags are in the dictionary as `true`, while inactive flags aren't present at all.
|
1860
1884
|
*
|
1861
1885
|
* By default, none of these flags are set.
|
1862
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1886
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/EntityPrototypeFlags.html Online documentation}
|
1863
1887
|
*/
|
1864
1888
|
export type EntityPrototypeFlags = {
|
1865
1889
|
readonly [T in EntityPrototypeFlag]?: true
|
@@ -1894,7 +1918,7 @@ declare module "factorio:runtime" {
|
|
1894
1918
|
* - `"building-direction-16-way"`
|
1895
1919
|
* - `"snap-to-rail-support-spot"`
|
1896
1920
|
* - `"not-in-made-in"`: Prevents the entity from being shown in the "made in" list in recipe tooltips.
|
1897
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1921
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/EntityPrototypeFlag.html Online documentation}
|
1898
1922
|
*/
|
1899
1923
|
export type EntityPrototypeFlag =
|
1900
1924
|
| "not-rotatable"
|
@@ -1964,7 +1988,7 @@ declare module "factorio:runtime" {
|
|
1964
1988
|
* - `"local"`: The sound can be heard within the audible range around the speaker.
|
1965
1989
|
* - `"surface"`: The sound can be heard anywhere on the speaker's surface.
|
1966
1990
|
* - `"global"`: The sound can be heard everywhere.
|
1967
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1991
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ProgrammableSpeakerPlaybackMode.html Online documentation}
|
1968
1992
|
*/
|
1969
1993
|
export type ProgrammableSpeakerPlaybackMode = "local" | "surface" | "global"
|
1970
1994
|
/**
|
@@ -1989,7 +2013,7 @@ declare module "factorio:runtime" {
|
|
1989
2013
|
* - `"none-to-south"`
|
1990
2014
|
* - `"south-to-none"`
|
1991
2015
|
* - `"none-to-north"`
|
1992
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2016
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/CliffOrientation.html Online documentation}
|
1993
2017
|
*/
|
1994
2018
|
export type CliffOrientation =
|
1995
2019
|
| "west-to-east"
|
@@ -2015,7 +2039,7 @@ declare module "factorio:runtime" {
|
|
2015
2039
|
/**
|
2016
2040
|
* Defines an item type that a blueprint entity will request.
|
2017
2041
|
* @see BlueprintInsertPlanWrite
|
2018
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2042
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/BlueprintInsertPlan.html Online documentation}
|
2019
2043
|
*/
|
2020
2044
|
export interface BlueprintInsertPlan {
|
2021
2045
|
/**
|
@@ -2029,7 +2053,7 @@ declare module "factorio:runtime" {
|
|
2029
2053
|
}
|
2030
2054
|
/**
|
2031
2055
|
* Write form of {@link BlueprintInsertPlan}, where some properties allow additional values as input compared to the read form.
|
2032
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2056
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/BlueprintInsertPlan.html Online documentation}
|
2033
2057
|
*/
|
2034
2058
|
export interface BlueprintInsertPlanWrite {
|
2035
2059
|
/**
|
@@ -2057,7 +2081,7 @@ declare module "factorio:runtime" {
|
|
2057
2081
|
}
|
2058
2082
|
/**
|
2059
2083
|
* A single offer on a market entity.
|
2060
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2084
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/Offer.html Online documentation}
|
2061
2085
|
*/
|
2062
2086
|
export interface Offer {
|
2063
2087
|
/**
|
@@ -2072,7 +2096,7 @@ declare module "factorio:runtime" {
|
|
2072
2096
|
/**
|
2073
2097
|
* An item filter may be specified in two ways, either as a string which is an item prototype name or as a table.
|
2074
2098
|
* @see ItemFilterWrite
|
2075
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2099
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ItemFilter.html Online documentation}
|
2076
2100
|
*/
|
2077
2101
|
export type ItemFilter =
|
2078
2102
|
| {
|
@@ -2092,7 +2116,7 @@ declare module "factorio:runtime" {
|
|
2092
2116
|
| string
|
2093
2117
|
/**
|
2094
2118
|
* Write form of {@link ItemFilter}, where some properties allow additional values as input compared to the read form.
|
2095
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2119
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ItemFilter.html Online documentation}
|
2096
2120
|
*/
|
2097
2121
|
export type ItemFilterWrite =
|
2098
2122
|
| {
|
@@ -2110,52 +2134,6 @@ declare module "factorio:runtime" {
|
|
2110
2134
|
readonly comparator?: ComparatorString
|
2111
2135
|
}
|
2112
2136
|
| string
|
2113
|
-
/**
|
2114
|
-
* @see ScheduleRecordWrite
|
2115
|
-
* @see {@link https://lua-api.factorio.com/2.0.34/concepts/ScheduleRecord.html Online documentation}
|
2116
|
-
*/
|
2117
|
-
export interface ScheduleRecord {
|
2118
|
-
/**
|
2119
|
-
* Name of the station.
|
2120
|
-
*/
|
2121
|
-
readonly station?: string
|
2122
|
-
/**
|
2123
|
-
* Rail to path to. Ignored if `station` is present.
|
2124
|
-
*/
|
2125
|
-
readonly rail?: LuaEntity
|
2126
|
-
/**
|
2127
|
-
* When a train is allowed to reach rail target from any direction it will be `nil`. If rail has to be reached from specific direction, this value allows to choose the direction. This value corresponds to {@link LuaEntity#connected_rail_direction LuaEntity::connected_rail_direction} of a TrainStop.
|
2128
|
-
*/
|
2129
|
-
readonly rail_direction?: defines.rail_direction
|
2130
|
-
readonly wait_conditions?: WaitCondition[]
|
2131
|
-
/**
|
2132
|
-
* Only present when the station is temporary, the value is then always `true`.
|
2133
|
-
*/
|
2134
|
-
readonly temporary?: boolean
|
2135
|
-
}
|
2136
|
-
/**
|
2137
|
-
* Write form of {@link ScheduleRecord}, where some properties allow additional values as input compared to the read form.
|
2138
|
-
* @see {@link https://lua-api.factorio.com/2.0.34/concepts/ScheduleRecord.html Online documentation}
|
2139
|
-
*/
|
2140
|
-
export interface ScheduleRecordWrite {
|
2141
|
-
/**
|
2142
|
-
* Name of the station.
|
2143
|
-
*/
|
2144
|
-
readonly station?: string
|
2145
|
-
/**
|
2146
|
-
* Rail to path to. Ignored if `station` is present.
|
2147
|
-
*/
|
2148
|
-
readonly rail?: LuaEntity
|
2149
|
-
/**
|
2150
|
-
* When a train is allowed to reach rail target from any direction it will be `nil`. If rail has to be reached from specific direction, this value allows to choose the direction. This value corresponds to {@link LuaEntity#connected_rail_direction LuaEntity::connected_rail_direction} of a TrainStop.
|
2151
|
-
*/
|
2152
|
-
readonly rail_direction?: defines.rail_direction
|
2153
|
-
readonly wait_conditions?: readonly WaitConditionWrite[]
|
2154
|
-
/**
|
2155
|
-
* Only present when the station is temporary, the value is then always `true`.
|
2156
|
-
*/
|
2157
|
-
readonly temporary?: boolean
|
2158
|
-
}
|
2159
2137
|
/**
|
2160
2138
|
* Common attributes to all variants of {@link GuiArrowSpecification}.
|
2161
2139
|
*/
|
@@ -2221,7 +2199,7 @@ declare module "factorio:runtime" {
|
|
2221
2199
|
* - `"position"`: {@link PositionGuiArrowSpecification}
|
2222
2200
|
* - `"crafting_queue"`: {@link CraftingQueueGuiArrowSpecification}
|
2223
2201
|
* - `"item_stack"`: {@link ItemStackGuiArrowSpecification}
|
2224
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2202
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/GuiArrowSpecification.html Online documentation}
|
2225
2203
|
*/
|
2226
2204
|
export type GuiArrowSpecification =
|
2227
2205
|
| EntityGuiArrowSpecification
|
@@ -2234,7 +2212,7 @@ declare module "factorio:runtime" {
|
|
2234
2212
|
*
|
2235
2213
|
* If this is specified as a three-element array then the array items are x, y and z, in that order.
|
2236
2214
|
* @see Vector3DArray
|
2237
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2215
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/Vector3D.html Online documentation}
|
2238
2216
|
*/
|
2239
2217
|
export interface Vector3D {
|
2240
2218
|
readonly x: float
|
@@ -2244,7 +2222,7 @@ declare module "factorio:runtime" {
|
|
2244
2222
|
/**
|
2245
2223
|
* Array form of {@link Vector3D}.
|
2246
2224
|
* @see Vector3D
|
2247
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2225
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/Vector3D.html Online documentation}
|
2248
2226
|
*/
|
2249
2227
|
export type Vector3DArray = readonly [float, float, float]
|
2250
2228
|
export interface ItemWithQualityCounts {
|
@@ -2277,7 +2255,7 @@ declare module "factorio:runtime" {
|
|
2277
2255
|
}
|
2278
2256
|
/**
|
2279
2257
|
* @see TrainScheduleWrite
|
2280
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2258
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/TrainSchedule.html Online documentation}
|
2281
2259
|
*/
|
2282
2260
|
export interface TrainSchedule {
|
2283
2261
|
/**
|
@@ -2288,7 +2266,7 @@ declare module "factorio:runtime" {
|
|
2288
2266
|
}
|
2289
2267
|
/**
|
2290
2268
|
* Write form of {@link TrainSchedule}, where some properties allow additional values as input compared to the read form.
|
2291
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2269
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/TrainSchedule.html Online documentation}
|
2292
2270
|
*/
|
2293
2271
|
export interface TrainScheduleWrite {
|
2294
2272
|
/**
|
@@ -2299,7 +2277,7 @@ declare module "factorio:runtime" {
|
|
2299
2277
|
}
|
2300
2278
|
/**
|
2301
2279
|
* @see PlatformScheduleWrite
|
2302
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2280
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/PlatformSchedule.html Online documentation}
|
2303
2281
|
*/
|
2304
2282
|
export interface PlatformSchedule {
|
2305
2283
|
/**
|
@@ -2310,7 +2288,7 @@ declare module "factorio:runtime" {
|
|
2310
2288
|
}
|
2311
2289
|
/**
|
2312
2290
|
* Write form of {@link PlatformSchedule}, where some properties allow additional values as input compared to the read form.
|
2313
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2291
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/PlatformSchedule.html Online documentation}
|
2314
2292
|
*/
|
2315
2293
|
export interface PlatformScheduleWrite {
|
2316
2294
|
/**
|
@@ -2327,7 +2305,7 @@ declare module "factorio:runtime" {
|
|
2327
2305
|
}
|
2328
2306
|
/**
|
2329
2307
|
* A recipe prototype with optional quality specification.
|
2330
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2308
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/RecipeIDAndQualityIDPair.html Online documentation}
|
2331
2309
|
*/
|
2332
2310
|
export interface RecipeIDAndQualityIDPair {
|
2333
2311
|
/**
|
@@ -2376,7 +2354,7 @@ declare module "factorio:runtime" {
|
|
2376
2354
|
* - `string`: Name of the force, same as {@link LuaForce#name LuaForce::name}.
|
2377
2355
|
* - {@link uint8}: Index of the force, same as {@link LuaForce#index LuaForce::index}.
|
2378
2356
|
* - {@link LuaForce}: A reference to {@link LuaForce} may be passed directly.
|
2379
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2357
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ForceID.html Online documentation}
|
2380
2358
|
*/
|
2381
2359
|
export type ForceID = string | uint8 | LuaForce
|
2382
2360
|
/**
|
@@ -2386,7 +2364,7 @@ declare module "factorio:runtime" {
|
|
2386
2364
|
* - `string`: The fluid name.
|
2387
2365
|
* - {@link LuaFluidPrototype}: The fluid prototype.
|
2388
2366
|
* - {@link Fluid}: The fluid.
|
2389
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2367
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/FluidID.html Online documentation}
|
2390
2368
|
*/
|
2391
2369
|
export type FluidID = string | LuaFluidPrototype | Fluid
|
2392
2370
|
/**
|
@@ -2397,12 +2375,12 @@ declare module "factorio:runtime" {
|
|
2397
2375
|
* - {@link LuaEntityPrototype}: The entity prototype. Normal quality will be used.
|
2398
2376
|
* - `string`: The prototype name. Normal quality will be used.
|
2399
2377
|
* - {@link EntityIDAndQualityIDPair}: A table of entity prototype and quality.
|
2400
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2378
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/EntityWithQualityID.html Online documentation}
|
2401
2379
|
*/
|
2402
2380
|
export type EntityWithQualityID = LuaEntity | LuaEntityPrototype | string | EntityIDAndQualityIDPair
|
2403
2381
|
/**
|
2404
2382
|
* An entity prototype with optional quality specification.
|
2405
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2383
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/EntityIDAndQualityIDPair.html Online documentation}
|
2406
2384
|
*/
|
2407
2385
|
export interface EntityIDAndQualityIDPair {
|
2408
2386
|
/**
|
@@ -2422,13 +2400,13 @@ declare module "factorio:runtime" {
|
|
2422
2400
|
* - {@link LuaItemPrototype}: The item prototype. Normal quality will be used.
|
2423
2401
|
* - `string`: The prototype name. Normal quality will be used.
|
2424
2402
|
* - {@link ItemIDAndQualityIDPair}: A table of entity prototype and quality.
|
2425
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2403
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ItemWithQualityID.html Online documentation}
|
2426
2404
|
*/
|
2427
2405
|
export type ItemWithQualityID = LuaItemStack | LuaItemPrototype | string | ItemIDAndQualityIDPairWrite
|
2428
2406
|
/**
|
2429
2407
|
* An item prototype with optional quality specification.
|
2430
2408
|
* @see ItemIDAndQualityIDPairWrite
|
2431
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2409
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ItemIDAndQualityIDPair.html Online documentation}
|
2432
2410
|
*/
|
2433
2411
|
export interface ItemIDAndQualityIDPair {
|
2434
2412
|
/**
|
@@ -2442,7 +2420,7 @@ declare module "factorio:runtime" {
|
|
2442
2420
|
}
|
2443
2421
|
/**
|
2444
2422
|
* Write form of {@link ItemIDAndQualityIDPair}, where some properties allow additional values as input compared to the read form.
|
2445
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2423
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ItemIDAndQualityIDPair.html Online documentation}
|
2446
2424
|
*/
|
2447
2425
|
export interface ItemIDAndQualityIDPairWrite {
|
2448
2426
|
/**
|
@@ -2462,7 +2440,7 @@ declare module "factorio:runtime" {
|
|
2462
2440
|
* - {@link LuaItemStack}: Non empty item stack.
|
2463
2441
|
* - {@link LuaItem}: The item.
|
2464
2442
|
* - `string`: The prototype name.
|
2465
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2443
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ItemID.html Online documentation}
|
2466
2444
|
*/
|
2467
2445
|
export type ItemID = LuaItemPrototype | LuaItemStack | LuaItem | string
|
2468
2446
|
/**
|
@@ -2472,7 +2450,7 @@ declare module "factorio:runtime" {
|
|
2472
2450
|
* - {@link LuaEntityPrototype}: The entity prototype.
|
2473
2451
|
* - {@link LuaEntity}: The entity.
|
2474
2452
|
* - `string`: The prototype name.
|
2475
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2453
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/EntityID.html Online documentation}
|
2476
2454
|
*/
|
2477
2455
|
export type EntityID = LuaEntityPrototype | LuaEntity | string
|
2478
2456
|
/**
|
@@ -2482,7 +2460,7 @@ declare module "factorio:runtime" {
|
|
2482
2460
|
* - {@link LuaTechnologyPrototype}: The technology prototype.
|
2483
2461
|
* - {@link LuaTechnology}: Instance of the technology.
|
2484
2462
|
* - `string`: The prototype name.
|
2485
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2463
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/TechnologyID.html Online documentation}
|
2486
2464
|
*/
|
2487
2465
|
export type TechnologyID = LuaTechnologyPrototype | LuaTechnology | string
|
2488
2466
|
/**
|
@@ -2491,7 +2469,7 @@ declare module "factorio:runtime" {
|
|
2491
2469
|
* ## Union members
|
2492
2470
|
* - {@link LuaParticlePrototype}: The particle prototype.
|
2493
2471
|
* - `string`: The prototype name.
|
2494
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2472
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ParticleID.html Online documentation}
|
2495
2473
|
*/
|
2496
2474
|
export type ParticleID = LuaParticlePrototype | string
|
2497
2475
|
/**
|
@@ -2500,7 +2478,7 @@ declare module "factorio:runtime" {
|
|
2500
2478
|
* ## Union members
|
2501
2479
|
* - {@link LuaDamagePrototype}: The damage type prototype.
|
2502
2480
|
* - `string`: The prototype name.
|
2503
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2481
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/DamageTypeID.html Online documentation}
|
2504
2482
|
*/
|
2505
2483
|
export type DamageTypeID = LuaDamagePrototype | string
|
2506
2484
|
/**
|
@@ -2509,7 +2487,7 @@ declare module "factorio:runtime" {
|
|
2509
2487
|
* ## Union members
|
2510
2488
|
* - {@link LuaTrivialSmokePrototype}: The trivial smoke prototype.
|
2511
2489
|
* - `string`: The prototype name.
|
2512
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2490
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/TrivialSmokeID.html Online documentation}
|
2513
2491
|
*/
|
2514
2492
|
export type TrivialSmokeID = LuaTrivialSmokePrototype | string
|
2515
2493
|
/**
|
@@ -2521,7 +2499,7 @@ declare module "factorio:runtime" {
|
|
2521
2499
|
* - `"left"`
|
2522
2500
|
* - `"right"`
|
2523
2501
|
* - `"center"`
|
2524
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2502
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/TextAlign.html Online documentation}
|
2525
2503
|
*/
|
2526
2504
|
export type TextAlign = "left" | "right" | "center"
|
2527
2505
|
/**
|
@@ -2534,7 +2512,7 @@ declare module "factorio:runtime" {
|
|
2534
2512
|
* - `"middle"`
|
2535
2513
|
* - `"baseline"`
|
2536
2514
|
* - `"bottom"`
|
2537
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2515
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/VerticalTextAlign.html Online documentation}
|
2538
2516
|
*/
|
2539
2517
|
export type VerticalTextAlign = "top" | "middle" | "baseline" | "bottom"
|
2540
2518
|
/**
|
@@ -2543,7 +2521,7 @@ declare module "factorio:runtime" {
|
|
2543
2521
|
* ## Union members
|
2544
2522
|
* - {@link LuaQualityPrototype}: The quality prototype.
|
2545
2523
|
* - `string`: The prototype name.
|
2546
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2524
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/QualityID.html Online documentation}
|
2547
2525
|
*/
|
2548
2526
|
export type QualityID = LuaQualityPrototype | string
|
2549
2527
|
/**
|
@@ -2553,7 +2531,7 @@ declare module "factorio:runtime" {
|
|
2553
2531
|
* - {@link LuaRecipePrototype}: By recipe prototype.
|
2554
2532
|
* - {@link LuaRecipe}: By instance of recipe.
|
2555
2533
|
* - `string`: By name of the recipe prototype.
|
2556
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2534
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/RecipeID.html Online documentation}
|
2557
2535
|
*/
|
2558
2536
|
export type RecipeID = LuaRecipePrototype | LuaRecipe | string
|
2559
2537
|
/**
|
@@ -2563,7 +2541,7 @@ declare module "factorio:runtime" {
|
|
2563
2541
|
* - {@link LuaTilePrototype}: By tile prototype.
|
2564
2542
|
* - {@link LuaTile}: By instance of tile.
|
2565
2543
|
* - `string`: By name of the tile prototype.
|
2566
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2544
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/TileID.html Online documentation}
|
2567
2545
|
*/
|
2568
2546
|
export type TileID = LuaTilePrototype | LuaTile | string
|
2569
2547
|
export interface Fluid {
|
@@ -2587,7 +2565,7 @@ declare module "factorio:runtime" {
|
|
2587
2565
|
* - {@link LuaEquipmentPrototype}: The equipment prototype.
|
2588
2566
|
* - {@link LuaEquipment}: The equipment.
|
2589
2567
|
* - `string`: The prototype name.
|
2590
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2568
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/EquipmentID.html Online documentation}
|
2591
2569
|
*/
|
2592
2570
|
export type EquipmentID = LuaEquipmentPrototype | LuaEquipment | string
|
2593
2571
|
/**
|
@@ -2598,12 +2576,12 @@ declare module "factorio:runtime" {
|
|
2598
2576
|
* - {@link LuaEquipment}: The equipment. Both prototype and quality of the provided equipment will be used.
|
2599
2577
|
* - `string`: The prototype name. Normal quality will be used.
|
2600
2578
|
* - {@link EquipmentIDAndQualityIDPair}: A table of equipment prototype and quality.
|
2601
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2579
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/EquipmentWithQualityID.html Online documentation}
|
2602
2580
|
*/
|
2603
2581
|
export type EquipmentWithQualityID = LuaEquipmentPrototype | LuaEquipment | string | EquipmentIDAndQualityIDPair
|
2604
2582
|
/**
|
2605
2583
|
* An equipment prototype with optional quality specification.
|
2606
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2584
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/EquipmentIDAndQualityIDPair.html Online documentation}
|
2607
2585
|
*/
|
2608
2586
|
export interface EquipmentIDAndQualityIDPair {
|
2609
2587
|
/**
|
@@ -2624,7 +2602,7 @@ declare module "factorio:runtime" {
|
|
2624
2602
|
* @example
|
2625
2603
|
* -- Shorthand
|
2626
2604
|
* {{-2, -3}, {5, 8}}
|
2627
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2605
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/BoundingBox.html Online documentation}
|
2628
2606
|
*/
|
2629
2607
|
export interface BoundingBox {
|
2630
2608
|
readonly left_top: MapPosition
|
@@ -2634,7 +2612,7 @@ declare module "factorio:runtime" {
|
|
2634
2612
|
/**
|
2635
2613
|
* Array form of {@link BoundingBox}.
|
2636
2614
|
* @see BoundingBox
|
2637
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2615
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/BoundingBox.html Online documentation}
|
2638
2616
|
*/
|
2639
2617
|
export type BoundingBoxArray = readonly [MapPosition | MapPositionArray, MapPosition | MapPositionArray]
|
2640
2618
|
export interface BoundingBoxWrite {
|
@@ -2647,7 +2625,7 @@ declare module "factorio:runtime" {
|
|
2647
2625
|
*
|
2648
2626
|
* ## Union members
|
2649
2627
|
* - {@link LuaSpacePlatform}
|
2650
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2628
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/SpacePlatformIdentification.html Online documentation}
|
2651
2629
|
*/
|
2652
2630
|
export type SpacePlatformIdentification = LuaSpacePlatform
|
2653
2631
|
/**
|
@@ -2657,12 +2635,12 @@ declare module "factorio:runtime" {
|
|
2657
2635
|
* - {@link LuaForce}[]: Array of many forces.
|
2658
2636
|
* - {@link LuaForce}: A single force.
|
2659
2637
|
* @see ForceSetWrite
|
2660
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2638
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ForceSet.html Online documentation}
|
2661
2639
|
*/
|
2662
2640
|
export type ForceSet = LuaForce[] | LuaForce
|
2663
2641
|
/**
|
2664
2642
|
* Write form of {@link ForceSet}, where some properties allow additional values as input compared to the read form.
|
2665
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2643
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ForceSet.html Online documentation}
|
2666
2644
|
*/
|
2667
2645
|
export type ForceSetWrite = readonly ForceID[] | ForceID
|
2668
2646
|
/**
|
@@ -2671,7 +2649,7 @@ declare module "factorio:runtime" {
|
|
2671
2649
|
* ## Union members
|
2672
2650
|
* - {@link LuaDecorativePrototype}: The decorative prototype.
|
2673
2651
|
* - `string`: The prototype name.
|
2674
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2652
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/DecorativeID.html Online documentation}
|
2675
2653
|
*/
|
2676
2654
|
export type DecorativeID = LuaDecorativePrototype | string
|
2677
2655
|
/**
|
@@ -2680,7 +2658,7 @@ declare module "factorio:runtime" {
|
|
2680
2658
|
* ## Union members
|
2681
2659
|
* - {@link LuaAsteroidChunkPrototype}: The asteroid chunk prototype.
|
2682
2660
|
* - `string`: The prototype name.
|
2683
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2661
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/AsteroidChunkID.html Online documentation}
|
2684
2662
|
*/
|
2685
2663
|
export type AsteroidChunkID = LuaAsteroidChunkPrototype | string
|
2686
2664
|
/**
|
@@ -2689,13 +2667,13 @@ declare module "factorio:runtime" {
|
|
2689
2667
|
* ## Union members
|
2690
2668
|
* - {@link LuaSpaceLocationPrototype}: The space location prototype.
|
2691
2669
|
* - `string`: The prototype name.
|
2692
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2670
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/SpaceLocationID.html Online documentation}
|
2693
2671
|
*/
|
2694
2672
|
export type SpaceLocationID = LuaSpaceLocationPrototype | string
|
2695
2673
|
/**
|
2696
2674
|
* A signal filter may be specified in two ways, either as a string which is a virtual signal name or item prototype name or as a table.
|
2697
2675
|
* @see SignalFilterWrite
|
2698
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2676
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/SignalFilter.html Online documentation}
|
2699
2677
|
*/
|
2700
2678
|
export type SignalFilter =
|
2701
2679
|
| {
|
@@ -2719,7 +2697,7 @@ declare module "factorio:runtime" {
|
|
2719
2697
|
| string
|
2720
2698
|
/**
|
2721
2699
|
* Write form of {@link SignalFilter}, where some properties allow additional values as input compared to the read form.
|
2722
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2700
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/SignalFilter.html Online documentation}
|
2723
2701
|
*/
|
2724
2702
|
export type SignalFilterWrite =
|
2725
2703
|
| {
|
@@ -2743,7 +2721,7 @@ declare module "factorio:runtime" {
|
|
2743
2721
|
| string
|
2744
2722
|
/**
|
2745
2723
|
* @see LogisticFilterWrite
|
2746
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2724
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/LogisticFilter.html Online documentation}
|
2747
2725
|
*/
|
2748
2726
|
export interface LogisticFilter {
|
2749
2727
|
/**
|
@@ -2769,7 +2747,7 @@ declare module "factorio:runtime" {
|
|
2769
2747
|
}
|
2770
2748
|
/**
|
2771
2749
|
* Write form of {@link LogisticFilter}, where some properties allow additional values as input compared to the read form.
|
2772
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2750
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/LogisticFilter.html Online documentation}
|
2773
2751
|
*/
|
2774
2752
|
export interface LogisticFilterWrite {
|
2775
2753
|
/**
|
@@ -2825,23 +2803,23 @@ declare module "factorio:runtime" {
|
|
2825
2803
|
* ## Union members
|
2826
2804
|
* - {@link LuaSurfacePropertyPrototype}: The surface property prototype.
|
2827
2805
|
* - `string`: The prototype name.
|
2828
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2806
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/SurfacePropertyID.html Online documentation}
|
2829
2807
|
*/
|
2830
2808
|
export type SurfacePropertyID = LuaSurfacePropertyPrototype | string
|
2831
2809
|
/**
|
2832
2810
|
* When writing it is possible to give LuaEntity or MapPosition directly. However, reading always returns the full ScriptRenderTargetTable.
|
2833
2811
|
* @see ScriptRenderTargetWrite
|
2834
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2812
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ScriptRenderTarget.html Online documentation}
|
2835
2813
|
*/
|
2836
2814
|
export type ScriptRenderTarget = LuaEntity | MapPosition | ScriptRenderTargetTable
|
2837
2815
|
/**
|
2838
2816
|
* Write form of {@link ScriptRenderTarget}, where some properties allow additional values as input compared to the read form.
|
2839
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2817
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ScriptRenderTarget.html Online documentation}
|
2840
2818
|
*/
|
2841
2819
|
export type ScriptRenderTargetWrite = LuaEntity | (MapPosition | MapPositionArray) | ScriptRenderTargetTableWrite
|
2842
2820
|
/**
|
2843
2821
|
* @see ScriptRenderTargetTableWrite
|
2844
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2822
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ScriptRenderTargetTable.html Online documentation}
|
2845
2823
|
*/
|
2846
2824
|
export interface ScriptRenderTargetTable {
|
2847
2825
|
readonly entity?: LuaEntity
|
@@ -2856,7 +2834,7 @@ declare module "factorio:runtime" {
|
|
2856
2834
|
}
|
2857
2835
|
/**
|
2858
2836
|
* Write form of {@link ScriptRenderTargetTable}, where some properties allow additional values as input compared to the read form.
|
2859
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2837
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ScriptRenderTargetTable.html Online documentation}
|
2860
2838
|
*/
|
2861
2839
|
export interface ScriptRenderTargetTableWrite {
|
2862
2840
|
readonly entity?: LuaEntity
|
@@ -2871,7 +2849,7 @@ declare module "factorio:runtime" {
|
|
2871
2849
|
}
|
2872
2850
|
/**
|
2873
2851
|
* An item filter may be specified in two ways, either as a string which is a quality prototype name or as a table.
|
2874
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2852
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/QualityCondition.html Online documentation}
|
2875
2853
|
*/
|
2876
2854
|
export type QualityCondition =
|
2877
2855
|
| {
|
@@ -2888,7 +2866,7 @@ declare module "factorio:runtime" {
|
|
2888
2866
|
/**
|
2889
2867
|
* The destination of a cargo pod.
|
2890
2868
|
* @see CargoDestinationWrite
|
2891
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2869
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/CargoDestination.html Online documentation}
|
2892
2870
|
*/
|
2893
2871
|
export interface CargoDestination {
|
2894
2872
|
/**
|
@@ -2896,33 +2874,37 @@ declare module "factorio:runtime" {
|
|
2896
2874
|
*/
|
2897
2875
|
readonly type: defines.cargo_destination
|
2898
2876
|
/**
|
2899
|
-
* Only used if `type` is
|
2877
|
+
* Only used if `type` is {@link defines.cargo_destination.station station}. Must be entity of type `cargo-landing-pad` or `space-platform-hub`.
|
2900
2878
|
*/
|
2901
2879
|
readonly station?: LuaEntity
|
2902
2880
|
/**
|
2903
|
-
* Only used if `type` is
|
2881
|
+
* Only used if `type` is {@link defines.cargo_destination.station station}. Must be connected to the station and not reserved.
|
2904
2882
|
*/
|
2905
2883
|
readonly hatch?: LuaCargoHatch
|
2906
2884
|
/**
|
2907
|
-
* Only used if `type` is
|
2885
|
+
* Only used if `type` is {@link defines.cargo_destination.station station} or {@link defines.cargo_destination.surface surface}. If true, items with {@link import("factorio:prototype").ItemPrototype#rocket_launch_products rocket_launch_products} defined will be transformed into their products before starting descent. Defaults to `false`.
|
2908
2886
|
*/
|
2909
2887
|
readonly transform_launch_products?: boolean
|
2910
2888
|
/**
|
2911
|
-
* Only used if `type` is
|
2889
|
+
* Only used if `type` is {@link defines.cargo_destination.surface surface}.
|
2912
2890
|
*/
|
2913
2891
|
readonly surface?: SurfaceIdentification
|
2914
2892
|
/**
|
2915
|
-
* Only used if `type` is
|
2893
|
+
* Only used if `type` is {@link defines.cargo_destination.surface surface}. Determines the position on the surface to land near. If not provided, cargo pod will switch destination type from {@link defines.cargo_destination.surface surface} to {@link defines.cargo_destination.station station} before starting descent if there is a station available, and will land at {0, 0} if there is no station available.
|
2916
2894
|
*/
|
2917
2895
|
readonly position?: MapPosition
|
2918
2896
|
/**
|
2919
|
-
* Only used if `type` is
|
2897
|
+
* Only used if `type` is {@link defines.cargo_destination.surface surface} and `position` is specified. Determines whether to land at `position` exactly or at a random location nearby. Defaults to `false`.
|
2898
|
+
*/
|
2899
|
+
readonly land_at_exact_position?: boolean
|
2900
|
+
/**
|
2901
|
+
* Only used if `type` is {@link defines.cargo_destination.space_platform space_platform}. Only used for sending space platform starter packs to a platform that is waiting for a starter pack.
|
2920
2902
|
*/
|
2921
2903
|
readonly space_platform?: SpacePlatformIdentification
|
2922
2904
|
}
|
2923
2905
|
/**
|
2924
2906
|
* Write form of {@link CargoDestination}, where some properties allow additional values as input compared to the read form.
|
2925
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2907
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/CargoDestination.html Online documentation}
|
2926
2908
|
*/
|
2927
2909
|
export interface CargoDestinationWrite {
|
2928
2910
|
/**
|
@@ -2930,30 +2912,44 @@ declare module "factorio:runtime" {
|
|
2930
2912
|
*/
|
2931
2913
|
readonly type: defines.cargo_destination
|
2932
2914
|
/**
|
2933
|
-
* Only used if `type` is
|
2915
|
+
* Only used if `type` is {@link defines.cargo_destination.station station}. Must be entity of type `cargo-landing-pad` or `space-platform-hub`.
|
2934
2916
|
*/
|
2935
2917
|
readonly station?: LuaEntity
|
2936
2918
|
/**
|
2937
|
-
* Only used if `type` is
|
2919
|
+
* Only used if `type` is {@link defines.cargo_destination.station station}. Must be connected to the station and not reserved.
|
2938
2920
|
*/
|
2939
2921
|
readonly hatch?: LuaCargoHatch
|
2940
2922
|
/**
|
2941
|
-
* Only used if `type` is
|
2923
|
+
* Only used if `type` is {@link defines.cargo_destination.station station} or {@link defines.cargo_destination.surface surface}. If true, items with {@link import("factorio:prototype").ItemPrototype#rocket_launch_products rocket_launch_products} defined will be transformed into their products before starting descent. Defaults to `false`.
|
2942
2924
|
*/
|
2943
2925
|
readonly transform_launch_products?: boolean
|
2944
2926
|
/**
|
2945
|
-
* Only used if `type` is
|
2927
|
+
* Only used if `type` is {@link defines.cargo_destination.surface surface}.
|
2946
2928
|
*/
|
2947
2929
|
readonly surface?: SurfaceIdentification
|
2948
2930
|
/**
|
2949
|
-
* Only used if `type` is
|
2931
|
+
* Only used if `type` is {@link defines.cargo_destination.surface surface}. Determines the position on the surface to land near. If not provided, cargo pod will switch destination type from {@link defines.cargo_destination.surface surface} to {@link defines.cargo_destination.station station} before starting descent if there is a station available, and will land at {0, 0} if there is no station available.
|
2950
2932
|
*/
|
2951
2933
|
readonly position?: MapPosition | MapPositionArray
|
2952
2934
|
/**
|
2953
|
-
* Only used if `type` is
|
2935
|
+
* Only used if `type` is {@link defines.cargo_destination.surface surface} and `position` is specified. Determines whether to land at `position` exactly or at a random location nearby. Defaults to `false`.
|
2936
|
+
*/
|
2937
|
+
readonly land_at_exact_position?: boolean
|
2938
|
+
/**
|
2939
|
+
* Only used if `type` is {@link defines.cargo_destination.space_platform space_platform}. Only used for sending space platform starter packs to a platform that is waiting for a starter pack.
|
2954
2940
|
*/
|
2955
2941
|
readonly space_platform?: SpacePlatformIdentification
|
2956
2942
|
}
|
2943
|
+
export interface ScheduleRecordPosition {
|
2944
|
+
/**
|
2945
|
+
* The schedule index
|
2946
|
+
*/
|
2947
|
+
readonly schedule_index?: uint
|
2948
|
+
/**
|
2949
|
+
* The interrupt index
|
2950
|
+
*/
|
2951
|
+
readonly interrupt_index?: uint
|
2952
|
+
}
|
2957
2953
|
/**
|
2958
2954
|
* Event name may be specified in one of four ways.
|
2959
2955
|
*
|
@@ -2962,7 +2958,7 @@ declare module "factorio:runtime" {
|
|
2962
2958
|
* - {@link LuaCustomInputPrototype}: Custom input prototype.
|
2963
2959
|
* - {@link defines.events}: Event identifier.
|
2964
2960
|
* - `string`: Name of the event.
|
2965
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2961
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaEventType.html Online documentation}
|
2966
2962
|
*/
|
2967
2963
|
export type LuaEventType = LuaCustomEventPrototype | LuaCustomInputPrototype | defines.events | string | EventId<any>
|
2968
2964
|
/**
|
@@ -2970,13 +2966,13 @@ declare module "factorio:runtime" {
|
|
2970
2966
|
* - `"center-to-center"`
|
2971
2967
|
* - `"bounding-box-to-bounding-box"`
|
2972
2968
|
* - `"center-to-bounding-box"`
|
2973
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2969
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/RangeMode.html Online documentation}
|
2974
2970
|
*/
|
2975
2971
|
export type RangeMode = "center-to-center" | "bounding-box-to-bounding-box" | "center-to-bounding-box"
|
2976
2972
|
/**
|
2977
2973
|
* The representation of an entity inside of a blueprint. It has at least these fields, but can contain additional ones depending on the kind of entity.
|
2978
2974
|
* @see BlueprintEntityWrite
|
2979
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2975
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/BlueprintEntity.html Online documentation}
|
2980
2976
|
*/
|
2981
2977
|
export interface BlueprintEntity {
|
2982
2978
|
/**
|
@@ -3190,7 +3186,7 @@ declare module "factorio:runtime" {
|
|
3190
3186
|
}
|
3191
3187
|
/**
|
3192
3188
|
* Write form of {@link BlueprintEntity}, where some properties allow additional values as input compared to the read form.
|
3193
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3189
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/BlueprintEntity.html Online documentation}
|
3194
3190
|
*/
|
3195
3191
|
export interface BlueprintEntityWrite {
|
3196
3192
|
/**
|
@@ -3411,7 +3407,7 @@ declare module "factorio:runtime" {
|
|
3411
3407
|
}
|
3412
3408
|
/**
|
3413
3409
|
* @see BlueprintEquipmentWrite
|
3414
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3410
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/BlueprintEquipment.html Online documentation}
|
3415
3411
|
*/
|
3416
3412
|
export interface BlueprintEquipment {
|
3417
3413
|
readonly equipment: ItemIDAndQualityIDPair
|
@@ -3419,7 +3415,7 @@ declare module "factorio:runtime" {
|
|
3419
3415
|
}
|
3420
3416
|
/**
|
3421
3417
|
* Write form of {@link BlueprintEquipment}, where some properties allow additional values as input compared to the read form.
|
3422
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3418
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/BlueprintEquipment.html Online documentation}
|
3423
3419
|
*/
|
3424
3420
|
export interface BlueprintEquipmentWrite {
|
3425
3421
|
readonly equipment: ItemIDAndQualityIDPairWrite
|
@@ -3427,7 +3423,7 @@ declare module "factorio:runtime" {
|
|
3427
3423
|
}
|
3428
3424
|
/**
|
3429
3425
|
* @see BlueprintInventoryWrite
|
3430
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3426
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/BlueprintInventory.html Online documentation}
|
3431
3427
|
*/
|
3432
3428
|
export interface BlueprintInventory {
|
3433
3429
|
readonly filters?: BlueprintLogisticFilter[]
|
@@ -3438,7 +3434,7 @@ declare module "factorio:runtime" {
|
|
3438
3434
|
}
|
3439
3435
|
/**
|
3440
3436
|
* Write form of {@link BlueprintInventory}, where some properties allow additional values as input compared to the read form.
|
3441
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3437
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/BlueprintInventory.html Online documentation}
|
3442
3438
|
*/
|
3443
3439
|
export interface BlueprintInventoryWrite {
|
3444
3440
|
readonly filters?: readonly BlueprintLogisticFilterWrite[]
|
@@ -3459,7 +3455,7 @@ declare module "factorio:runtime" {
|
|
3459
3455
|
}
|
3460
3456
|
/**
|
3461
3457
|
* @see BlueprintControlBehaviorWrite
|
3462
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3458
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/BlueprintControlBehavior.html Online documentation}
|
3463
3459
|
*/
|
3464
3460
|
export interface BlueprintControlBehavior {
|
3465
3461
|
/**
|
@@ -3712,7 +3708,7 @@ declare module "factorio:runtime" {
|
|
3712
3708
|
}
|
3713
3709
|
/**
|
3714
3710
|
* Write form of {@link BlueprintControlBehavior}, where some properties allow additional values as input compared to the read form.
|
3715
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3711
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/BlueprintControlBehavior.html Online documentation}
|
3716
3712
|
*/
|
3717
3713
|
export interface BlueprintControlBehaviorWrite {
|
3718
3714
|
/**
|
@@ -3993,7 +3989,7 @@ declare module "factorio:runtime" {
|
|
3993
3989
|
* "2500 * (L - 3)"
|
3994
3990
|
* @example
|
3995
3991
|
* "(4e5 * (abs(speed) + 10.5)) / weight"
|
3996
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3992
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/MathExpression.html Online documentation}
|
3997
3993
|
*/
|
3998
3994
|
export type MathExpression = string
|
3999
3995
|
/**
|
@@ -4015,7 +4011,7 @@ declare module "factorio:runtime" {
|
|
4015
4011
|
* -- What a custom recipe would look like that had a probability of 0.5 to return a
|
4016
4012
|
* -- minimum amount of 1 and a maximum amount of 5
|
4017
4013
|
* {{type="item", name="custom-item", probability=0.5, amount_min=1, amount_max=5}}
|
4018
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4014
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/Product.html Online documentation}
|
4019
4015
|
*/
|
4020
4016
|
export type Product = ItemProduct | FluidProduct | ResearchProgressProduct
|
4021
4017
|
/**
|
@@ -4026,7 +4022,7 @@ declare module "factorio:runtime" {
|
|
4026
4022
|
* -- What a custom recipe would look like that had a probability of 0.5 to return a
|
4027
4023
|
* -- minimum amount of 1 and a maximum amount of 5
|
4028
4024
|
* {{type="item", name="custom-item", probability=0.5, amount_min=1, amount_max=5}}
|
4029
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4025
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ItemProduct.html Online documentation}
|
4030
4026
|
*/
|
4031
4027
|
export interface ItemProduct {
|
4032
4028
|
readonly type: "item"
|
@@ -4070,7 +4066,7 @@ declare module "factorio:runtime" {
|
|
4070
4066
|
* {{type="fluid", name="heavy-oil", amount=1},
|
4071
4067
|
* {type="fluid", name="light-oil", amount=4.5},
|
4072
4068
|
* {type="fluid", name="petroleum-gas", amount=5.5}}
|
4073
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4069
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/FluidProduct.html Online documentation}
|
4074
4070
|
*/
|
4075
4071
|
export interface FluidProduct {
|
4076
4072
|
readonly type: "fluid"
|
@@ -4118,7 +4114,7 @@ declare module "factorio:runtime" {
|
|
4118
4114
|
}
|
4119
4115
|
/**
|
4120
4116
|
* @see LogisticSectionsWrite
|
4121
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4117
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/LogisticSections.html Online documentation}
|
4122
4118
|
*/
|
4123
4119
|
export interface LogisticSections {
|
4124
4120
|
readonly sections?: LogisticSection[]
|
@@ -4129,7 +4125,7 @@ declare module "factorio:runtime" {
|
|
4129
4125
|
}
|
4130
4126
|
/**
|
4131
4127
|
* Write form of {@link LogisticSections}, where some properties allow additional values as input compared to the read form.
|
4132
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4128
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/LogisticSections.html Online documentation}
|
4133
4129
|
*/
|
4134
4130
|
export interface LogisticSectionsWrite {
|
4135
4131
|
readonly sections?: readonly LogisticSectionWrite[]
|
@@ -4165,7 +4161,7 @@ declare module "factorio:runtime" {
|
|
4165
4161
|
}
|
4166
4162
|
/**
|
4167
4163
|
* @see LogisticSectionWrite
|
4168
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4164
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/LogisticSection.html Online documentation}
|
4169
4165
|
*/
|
4170
4166
|
export interface LogisticSection {
|
4171
4167
|
readonly index: uint8
|
@@ -4182,7 +4178,7 @@ declare module "factorio:runtime" {
|
|
4182
4178
|
}
|
4183
4179
|
/**
|
4184
4180
|
* Write form of {@link LogisticSection}, where some properties allow additional values as input compared to the read form.
|
4185
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4181
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/LogisticSection.html Online documentation}
|
4186
4182
|
*/
|
4187
4183
|
export interface LogisticSectionWrite {
|
4188
4184
|
readonly index: uint8
|
@@ -4199,7 +4195,7 @@ declare module "factorio:runtime" {
|
|
4199
4195
|
}
|
4200
4196
|
/**
|
4201
4197
|
* @see BlueprintLogisticFilterWrite
|
4202
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4198
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/BlueprintLogisticFilter.html Online documentation}
|
4203
4199
|
*/
|
4204
4200
|
export interface BlueprintLogisticFilter {
|
4205
4201
|
readonly index: LogisticFilterIndex
|
@@ -4229,7 +4225,7 @@ declare module "factorio:runtime" {
|
|
4229
4225
|
}
|
4230
4226
|
/**
|
4231
4227
|
* Write form of {@link BlueprintLogisticFilter}, where some properties allow additional values as input compared to the read form.
|
4232
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4228
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/BlueprintLogisticFilter.html Online documentation}
|
4233
4229
|
*/
|
4234
4230
|
export interface BlueprintLogisticFilterWrite {
|
4235
4231
|
readonly index: LogisticFilterIndex
|
@@ -4259,7 +4255,7 @@ declare module "factorio:runtime" {
|
|
4259
4255
|
}
|
4260
4256
|
/**
|
4261
4257
|
* Specifies how probability and richness are calculated when placing something on the map.
|
4262
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4258
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/AutoplaceSpecification.html Online documentation}
|
4263
4259
|
*/
|
4264
4260
|
export interface AutoplaceSpecification {
|
4265
4261
|
/**
|
@@ -4276,7 +4272,7 @@ declare module "factorio:runtime" {
|
|
4276
4272
|
}
|
4277
4273
|
/**
|
4278
4274
|
* @see CliffPlacementSettingsWrite
|
4279
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4275
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/CliffPlacementSettings.html Online documentation}
|
4280
4276
|
*/
|
4281
4277
|
export interface CliffPlacementSettings {
|
4282
4278
|
/**
|
@@ -4306,7 +4302,7 @@ declare module "factorio:runtime" {
|
|
4306
4302
|
}
|
4307
4303
|
/**
|
4308
4304
|
* Write form of {@link CliffPlacementSettings}, where some properties allow additional values as input compared to the read form.
|
4309
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4305
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/CliffPlacementSettings.html Online documentation}
|
4310
4306
|
*/
|
4311
4307
|
export interface CliffPlacementSettingsWrite {
|
4312
4308
|
/**
|
@@ -4336,7 +4332,7 @@ declare module "factorio:runtime" {
|
|
4336
4332
|
}
|
4337
4333
|
/**
|
4338
4334
|
* @see AutoplaceSettingsWrite
|
4339
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4335
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/AutoplaceSettings.html Online documentation}
|
4340
4336
|
*/
|
4341
4337
|
export interface AutoplaceSettings {
|
4342
4338
|
/**
|
@@ -4350,7 +4346,7 @@ declare module "factorio:runtime" {
|
|
4350
4346
|
}
|
4351
4347
|
/**
|
4352
4348
|
* Write form of {@link AutoplaceSettings}, where some properties allow additional values as input compared to the read form.
|
4353
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4349
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/AutoplaceSettings.html Online documentation}
|
4354
4350
|
*/
|
4355
4351
|
export interface AutoplaceSettingsWrite {
|
4356
4352
|
/**
|
@@ -4385,7 +4381,7 @@ declare module "factorio:runtime" {
|
|
4385
4381
|
* surface.map_gen_settings = mgs
|
4386
4382
|
* -- This does not require a NamedNoiseExpression to be defined, since literal numbers (and strings naming literal
|
4387
4383
|
* -- numbers, e.g. `"123"`) are understood to stand for constant value expressions.
|
4388
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4384
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/MapGenSettings.html Online documentation}
|
4389
4385
|
*/
|
4390
4386
|
export interface MapGenSettings {
|
4391
4387
|
/**
|
@@ -4440,7 +4436,7 @@ declare module "factorio:runtime" {
|
|
4440
4436
|
}
|
4441
4437
|
/**
|
4442
4438
|
* Write form of {@link MapGenSettings}, where some properties allow additional values as input compared to the read form.
|
4443
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4439
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/MapGenSettings.html Online documentation}
|
4444
4440
|
*/
|
4445
4441
|
export interface MapGenSettingsWrite {
|
4446
4442
|
/**
|
@@ -4499,7 +4495,7 @@ declare module "factorio:runtime" {
|
|
4499
4495
|
}
|
4500
4496
|
/**
|
4501
4497
|
* These values are for the time frame of one second (60 ticks).
|
4502
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4498
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/PollutionMapSettings.html Online documentation}
|
4503
4499
|
*/
|
4504
4500
|
export interface PollutionMapSettings {
|
4505
4501
|
/**
|
@@ -4553,7 +4549,7 @@ declare module "factorio:runtime" {
|
|
4553
4549
|
}
|
4554
4550
|
/**
|
4555
4551
|
* These values represent a percentual increase in evolution. This means a value of `0.1` would increase evolution by 10%.
|
4556
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4552
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/EnemyEvolutionMapSettings.html Online documentation}
|
4557
4553
|
*/
|
4558
4554
|
export interface EnemyEvolutionMapSettings {
|
4559
4555
|
/**
|
@@ -4591,7 +4587,7 @@ declare module "factorio:runtime" {
|
|
4591
4587
|
* * neighbouring_base_chunk_coefficient^distance(chunk, neighbour)
|
4592
4588
|
* score(chunk) = 1 / (1 + player + base)
|
4593
4589
|
* ```
|
4594
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4590
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/EnemyExpansionMapSettings.html Online documentation}
|
4595
4591
|
*/
|
4596
4592
|
export interface EnemyExpansionMapSettings {
|
4597
4593
|
/**
|
@@ -4850,17 +4846,17 @@ declare module "factorio:runtime" {
|
|
4850
4846
|
}
|
4851
4847
|
/**
|
4852
4848
|
* Technology difficulty settings. Updating any of the attributes will immediately take effect in the game engine.
|
4853
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4849
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/DifficultySettings.html Online documentation}
|
4854
4850
|
*/
|
4855
4851
|
export interface DifficultySettings {
|
4856
4852
|
/**
|
4857
4853
|
* A value in range [0.001, 1000].
|
4858
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4854
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/DifficultySettings.technology_price_multiplier.html Online documentation}
|
4859
4855
|
*/
|
4860
4856
|
technology_price_multiplier: double
|
4861
4857
|
/**
|
4862
4858
|
* A value in range [0.01, 100].
|
4863
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4859
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/DifficultySettings.spoil_time_modifier.html Online documentation}
|
4864
4860
|
*/
|
4865
4861
|
spoil_time_modifier: double
|
4866
4862
|
}
|
@@ -4876,7 +4872,7 @@ declare module "factorio:runtime" {
|
|
4876
4872
|
}
|
4877
4873
|
/**
|
4878
4874
|
* A standard table containing all {@link MapSettings} attributes plus an additional table that contains all {@link DifficultySettings} properties.
|
4879
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4875
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/MapAndDifficultySettings.html Online documentation}
|
4880
4876
|
*/
|
4881
4877
|
export interface MapAndDifficultySettings {
|
4882
4878
|
readonly pollution: PollutionMapSettings
|
@@ -4897,7 +4893,7 @@ declare module "factorio:runtime" {
|
|
4897
4893
|
* @example
|
4898
4894
|
* -- Increase the number of short paths the pathfinder can cache.
|
4899
4895
|
* game.map_settings.path_finder.short_cache_size = 15
|
4900
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4896
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/MapSettings.html Online documentation}
|
4901
4897
|
*/
|
4902
4898
|
export interface MapSettings {
|
4903
4899
|
pollution: PollutionMapSettings
|
@@ -4909,13 +4905,13 @@ declare module "factorio:runtime" {
|
|
4909
4905
|
asteroids: AsteroidMapSettings
|
4910
4906
|
/**
|
4911
4907
|
* If a behavior fails this many times, the enemy (or enemy group) is destroyed. This solves biters getting stuck within their own base.
|
4912
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4908
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/MapSettings.max_failed_behavior_count.html Online documentation}
|
4913
4909
|
*/
|
4914
4910
|
max_failed_behavior_count: uint
|
4915
4911
|
}
|
4916
4912
|
/**
|
4917
4913
|
* @see BlueprintScheduleRecordWrite
|
4918
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4914
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/BlueprintScheduleRecord.html Online documentation}
|
4919
4915
|
*/
|
4920
4916
|
export interface BlueprintScheduleRecord {
|
4921
4917
|
/**
|
@@ -4923,16 +4919,13 @@ declare module "factorio:runtime" {
|
|
4923
4919
|
*/
|
4924
4920
|
readonly station?: string
|
4925
4921
|
readonly wait_conditions?: WaitCondition[]
|
4926
|
-
/**
|
4927
|
-
* Only present when the station is temporary, the value is then always `true`.
|
4928
|
-
*/
|
4929
4922
|
readonly temporary?: boolean
|
4930
4923
|
readonly created_by_interrupt?: boolean
|
4931
4924
|
readonly allows_unloading?: boolean
|
4932
4925
|
}
|
4933
4926
|
/**
|
4934
4927
|
* Write form of {@link BlueprintScheduleRecord}, where some properties allow additional values as input compared to the read form.
|
4935
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4928
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/BlueprintScheduleRecord.html Online documentation}
|
4936
4929
|
*/
|
4937
4930
|
export interface BlueprintScheduleRecordWrite {
|
4938
4931
|
/**
|
@@ -4940,16 +4933,51 @@ declare module "factorio:runtime" {
|
|
4940
4933
|
*/
|
4941
4934
|
readonly station?: string
|
4942
4935
|
readonly wait_conditions?: readonly WaitConditionWrite[]
|
4936
|
+
readonly temporary?: boolean
|
4937
|
+
readonly created_by_interrupt?: boolean
|
4938
|
+
readonly allows_unloading?: boolean
|
4939
|
+
}
|
4940
|
+
/**
|
4941
|
+
* @see ScheduleRecordWrite
|
4942
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ScheduleRecord.html Online documentation}
|
4943
|
+
*/
|
4944
|
+
export interface ScheduleRecord {
|
4945
|
+
/**
|
4946
|
+
* Name of the station.
|
4947
|
+
*/
|
4948
|
+
readonly station?: string
|
4949
|
+
readonly rail?: LuaEntity
|
4950
|
+
/**
|
4951
|
+
* When a train is allowed to reach rail target from any direction it will be `nil`. If rail has to be reached from specific direction, this value allows to choose the direction. This value corresponds to {@link LuaEntity#connected_rail_direction LuaEntity::connected_rail_direction} of a TrainStop.
|
4952
|
+
*/
|
4953
|
+
readonly rail_direction?: defines.rail_direction
|
4954
|
+
readonly wait_conditions?: WaitCondition[]
|
4955
|
+
readonly temporary?: boolean
|
4956
|
+
readonly created_by_interrupt?: boolean
|
4957
|
+
readonly allows_unloading?: boolean
|
4958
|
+
}
|
4959
|
+
/**
|
4960
|
+
* Write form of {@link ScheduleRecord}, where some properties allow additional values as input compared to the read form.
|
4961
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ScheduleRecord.html Online documentation}
|
4962
|
+
*/
|
4963
|
+
export interface ScheduleRecordWrite {
|
4943
4964
|
/**
|
4944
|
-
*
|
4965
|
+
* Name of the station.
|
4966
|
+
*/
|
4967
|
+
readonly station?: string
|
4968
|
+
readonly rail?: LuaEntity
|
4969
|
+
/**
|
4970
|
+
* When a train is allowed to reach rail target from any direction it will be `nil`. If rail has to be reached from specific direction, this value allows to choose the direction. This value corresponds to {@link LuaEntity#connected_rail_direction LuaEntity::connected_rail_direction} of a TrainStop.
|
4945
4971
|
*/
|
4972
|
+
readonly rail_direction?: defines.rail_direction
|
4973
|
+
readonly wait_conditions?: readonly WaitConditionWrite[]
|
4946
4974
|
readonly temporary?: boolean
|
4947
4975
|
readonly created_by_interrupt?: boolean
|
4948
4976
|
readonly allows_unloading?: boolean
|
4949
4977
|
}
|
4950
4978
|
/**
|
4951
4979
|
* @see BlueprintScheduleInterruptWrite
|
4952
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4980
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/BlueprintScheduleInterrupt.html Online documentation}
|
4953
4981
|
*/
|
4954
4982
|
export interface BlueprintScheduleInterrupt {
|
4955
4983
|
readonly name?: string
|
@@ -4959,7 +4987,7 @@ declare module "factorio:runtime" {
|
|
4959
4987
|
}
|
4960
4988
|
/**
|
4961
4989
|
* Write form of {@link BlueprintScheduleInterrupt}, where some properties allow additional values as input compared to the read form.
|
4962
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4990
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/BlueprintScheduleInterrupt.html Online documentation}
|
4963
4991
|
*/
|
4964
4992
|
export interface BlueprintScheduleInterruptWrite {
|
4965
4993
|
readonly name?: string
|
@@ -4967,9 +4995,29 @@ declare module "factorio:runtime" {
|
|
4967
4995
|
readonly targets?: readonly BlueprintScheduleRecordWrite[]
|
4968
4996
|
readonly inside_interrupt: boolean
|
4969
4997
|
}
|
4998
|
+
/**
|
4999
|
+
* @see ScheduleInterruptWrite
|
5000
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ScheduleInterrupt.html Online documentation}
|
5001
|
+
*/
|
5002
|
+
export interface ScheduleInterrupt {
|
5003
|
+
readonly name?: string
|
5004
|
+
readonly conditions?: WaitCondition[]
|
5005
|
+
readonly targets?: ScheduleRecord[]
|
5006
|
+
readonly inside_interrupt: boolean
|
5007
|
+
}
|
5008
|
+
/**
|
5009
|
+
* Write form of {@link ScheduleInterrupt}, where some properties allow additional values as input compared to the read form.
|
5010
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ScheduleInterrupt.html Online documentation}
|
5011
|
+
*/
|
5012
|
+
export interface ScheduleInterruptWrite {
|
5013
|
+
readonly name?: string
|
5014
|
+
readonly conditions?: readonly WaitConditionWrite[]
|
5015
|
+
readonly targets?: readonly ScheduleRecordWrite[]
|
5016
|
+
readonly inside_interrupt: boolean
|
5017
|
+
}
|
4970
5018
|
/**
|
4971
5019
|
* @see BlueprintScheduleWrite
|
4972
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5020
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/BlueprintSchedule.html Online documentation}
|
4973
5021
|
*/
|
4974
5022
|
export interface BlueprintSchedule {
|
4975
5023
|
readonly records?: BlueprintScheduleRecord[]
|
@@ -4978,7 +5026,7 @@ declare module "factorio:runtime" {
|
|
4978
5026
|
}
|
4979
5027
|
/**
|
4980
5028
|
* Write form of {@link BlueprintSchedule}, where some properties allow additional values as input compared to the read form.
|
4981
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5029
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/BlueprintSchedule.html Online documentation}
|
4982
5030
|
*/
|
4983
5031
|
export interface BlueprintScheduleWrite {
|
4984
5032
|
readonly records?: readonly BlueprintScheduleRecordWrite[]
|
@@ -4987,7 +5035,7 @@ declare module "factorio:runtime" {
|
|
4987
5035
|
}
|
4988
5036
|
/**
|
4989
5037
|
* @see WaitConditionWrite
|
4990
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5038
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/WaitCondition.html Online documentation}
|
4991
5039
|
*/
|
4992
5040
|
export interface WaitCondition {
|
4993
5041
|
readonly type: WaitConditionType
|
@@ -5018,7 +5066,7 @@ declare module "factorio:runtime" {
|
|
5018
5066
|
}
|
5019
5067
|
/**
|
5020
5068
|
* Write form of {@link WaitCondition}, where some properties allow additional values as input compared to the read form.
|
5021
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5069
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/WaitCondition.html Online documentation}
|
5022
5070
|
*/
|
5023
5071
|
export interface WaitConditionWrite {
|
5024
5072
|
readonly type: WaitConditionType
|
@@ -5077,7 +5125,7 @@ declare module "factorio:runtime" {
|
|
5077
5125
|
* - `"at_station"`
|
5078
5126
|
* - `"not_at_station"`
|
5079
5127
|
* - `"damage_taken"`
|
5080
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5128
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/WaitConditionType.html Online documentation}
|
5081
5129
|
*/
|
5082
5130
|
export type WaitConditionType =
|
5083
5131
|
| "time"
|
@@ -5119,7 +5167,7 @@ declare module "factorio:runtime" {
|
|
5119
5167
|
* - `"blueprint-snap-rectangle"`: Green by default.
|
5120
5168
|
* - `"spidertron-remote-selected"`
|
5121
5169
|
* - `"spidertron-remote-to-be-selected"`
|
5122
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5170
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/CursorBoxRenderType.html Online documentation}
|
5123
5171
|
*/
|
5124
5172
|
export type CursorBoxRenderType =
|
5125
5173
|
| "entity"
|
@@ -5135,7 +5183,7 @@ declare module "factorio:runtime" {
|
|
5135
5183
|
| "spidertron-remote-to-be-selected"
|
5136
5184
|
/**
|
5137
5185
|
* What is shown in the map view. If a field is not given, that setting will not be changed.
|
5138
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5186
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/MapViewSettings.html Online documentation}
|
5139
5187
|
*/
|
5140
5188
|
export interface MapViewSettings {
|
5141
5189
|
readonly "show-logistic-network"?: boolean
|
@@ -5228,7 +5276,7 @@ declare module "factorio:runtime" {
|
|
5228
5276
|
* - `"collision-selection-box"`: 189
|
5229
5277
|
* - `"arrow"`: 190
|
5230
5278
|
* - `"cursor"`: 226
|
5231
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5279
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/RenderLayer.html Online documentation}
|
5232
5280
|
*/
|
5233
5281
|
export type RenderLayer =
|
5234
5282
|
| `${bigint}`
|
@@ -5338,7 +5386,7 @@ declare module "factorio:runtime" {
|
|
5338
5386
|
* - `"entity-with-quality"`
|
5339
5387
|
* - `"recipe-with-quality"`
|
5340
5388
|
* - `"equipment-with-quality"`
|
5341
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5389
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ElemType.html Online documentation}
|
5342
5390
|
*/
|
5343
5391
|
export type ElemType =
|
5344
5392
|
| "achievement"
|
@@ -5365,7 +5413,7 @@ declare module "factorio:runtime" {
|
|
5365
5413
|
* - `"left"`
|
5366
5414
|
* - `"right"`
|
5367
5415
|
* - `"none"`
|
5368
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5416
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/SwitchState.html Online documentation}
|
5369
5417
|
*/
|
5370
5418
|
export type SwitchState = "left" | "right" | "none"
|
5371
5419
|
export interface ElemID {
|
@@ -5406,7 +5454,7 @@ declare module "factorio:runtime" {
|
|
5406
5454
|
* - `"destroy-decoratives"`
|
5407
5455
|
* - `"camera-effect"`
|
5408
5456
|
* - `"activate-impact"`
|
5409
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5457
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/TriggerEffectItemType.html Online documentation}
|
5410
5458
|
*/
|
5411
5459
|
export type TriggerEffectItemType =
|
5412
5460
|
| "damage"
|
@@ -5443,7 +5491,7 @@ declare module "factorio:runtime" {
|
|
5443
5491
|
}
|
5444
5492
|
/**
|
5445
5493
|
* A set of trigger target masks.
|
5446
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5494
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/TriggerTargetMask.html Online documentation}
|
5447
5495
|
*/
|
5448
5496
|
export type TriggerTargetMask = Record<string, true>
|
5449
5497
|
export interface TriggerItem {
|
@@ -5510,7 +5558,7 @@ declare module "factorio:runtime" {
|
|
5510
5558
|
* -- If 'entity-description.furnace' exists, it is concatenated with "\n" and returned. Otherwise, if 'item-description.furnace'
|
5511
5559
|
* -- exists, it is returned as-is. Otherwise, "optional fallback" is returned. If this value wasn't specified, the
|
5512
5560
|
* -- translation result would be "Unknown key: 'item-description.furnace'".
|
5513
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5561
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/LocalisedString.html Online documentation}
|
5514
5562
|
*/
|
5515
5563
|
export type LocalisedString = string | number | boolean | LuaObject | nil | [string, ...LocalisedString[]]
|
5516
5564
|
export interface DisplayResolution {
|
@@ -5521,7 +5569,7 @@ declare module "factorio:runtime" {
|
|
5521
5569
|
* The smooth orientation. It is a {@link float} in the range `[0, 1)` that covers a full circle, starting at the top and going clockwise. This means a value of `0` indicates "north", a value of `0.5` indicates "south".
|
5522
5570
|
*
|
5523
5571
|
* For example then, a value of `0.625` would indicate "south-west", and a value of `0.875` would indicate "north-west".
|
5524
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5572
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/RealOrientation.html Online documentation}
|
5525
5573
|
*/
|
5526
5574
|
export type RealOrientation = float
|
5527
5575
|
/**
|
@@ -5536,7 +5584,7 @@ declare module "factorio:runtime" {
|
|
5536
5584
|
* @example
|
5537
5585
|
* -- Shorthand
|
5538
5586
|
* {1.625, 2.375}
|
5539
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5587
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/MapPosition.html Online documentation}
|
5540
5588
|
*/
|
5541
5589
|
export interface MapPosition {
|
5542
5590
|
readonly x: double
|
@@ -5545,13 +5593,13 @@ declare module "factorio:runtime" {
|
|
5545
5593
|
/**
|
5546
5594
|
* Array form of {@link MapPosition}.
|
5547
5595
|
* @see MapPosition
|
5548
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5596
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/MapPosition.html Online documentation}
|
5549
5597
|
*/
|
5550
5598
|
export type MapPositionArray = readonly [double, double]
|
5551
5599
|
/**
|
5552
5600
|
* Coordinates of a chunk in a {@link LuaSurface} where each integer `x`/`y` represents a different chunk. This uses the same format as {@link MapPosition}, meaning it can be specified either with or without explicit keys. A {@link MapPosition} can be translated to a ChunkPosition by dividing the `x`/`y` values by 32.
|
5553
5601
|
* @see ChunkPositionArray
|
5554
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5602
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ChunkPosition.html Online documentation}
|
5555
5603
|
*/
|
5556
5604
|
export interface ChunkPosition {
|
5557
5605
|
readonly x: int
|
@@ -5560,13 +5608,13 @@ declare module "factorio:runtime" {
|
|
5560
5608
|
/**
|
5561
5609
|
* Array form of {@link ChunkPosition}.
|
5562
5610
|
* @see ChunkPosition
|
5563
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5611
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ChunkPosition.html Online documentation}
|
5564
5612
|
*/
|
5565
5613
|
export type ChunkPositionArray = readonly [int, int]
|
5566
5614
|
/**
|
5567
5615
|
* Coordinates of a tile on a {@link LuaSurface} where each integer `x`/`y` represents a different tile. This uses the same format as {@link MapPosition}, except it rounds any non-integer `x`/`y` down to whole numbers. It can be specified either with or without explicit keys.
|
5568
5616
|
* @see TilePositionArray
|
5569
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5617
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/TilePosition.html Online documentation}
|
5570
5618
|
*/
|
5571
5619
|
export interface TilePosition {
|
5572
5620
|
readonly x: int
|
@@ -5575,7 +5623,7 @@ declare module "factorio:runtime" {
|
|
5575
5623
|
/**
|
5576
5624
|
* Array form of {@link TilePosition}.
|
5577
5625
|
* @see TilePosition
|
5578
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5626
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/TilePosition.html Online documentation}
|
5579
5627
|
*/
|
5580
5628
|
export type TilePositionArray = readonly [int, int]
|
5581
5629
|
/**
|
@@ -5588,7 +5636,7 @@ declare module "factorio:runtime" {
|
|
5588
5636
|
* @example
|
5589
5637
|
* -- Shorthand
|
5590
5638
|
* {1, 2}
|
5591
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5639
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/EquipmentPosition.html Online documentation}
|
5592
5640
|
*/
|
5593
5641
|
export interface EquipmentPosition {
|
5594
5642
|
readonly x: int
|
@@ -5597,13 +5645,13 @@ declare module "factorio:runtime" {
|
|
5597
5645
|
/**
|
5598
5646
|
* Array form of {@link EquipmentPosition}.
|
5599
5647
|
* @see EquipmentPosition
|
5600
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5648
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/EquipmentPosition.html Online documentation}
|
5601
5649
|
*/
|
5602
5650
|
export type EquipmentPositionArray = readonly [int, int]
|
5603
5651
|
/**
|
5604
5652
|
* Screen coordinates of a GUI element in a {@link LuaGui}. This uses the same format as {@link TilePosition}, meaning it can be specified either with or without explicit keys.
|
5605
5653
|
* @see GuiLocationArray
|
5606
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5654
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/GuiLocation.html Online documentation}
|
5607
5655
|
*/
|
5608
5656
|
export interface GuiLocation {
|
5609
5657
|
readonly x: int
|
@@ -5612,12 +5660,12 @@ declare module "factorio:runtime" {
|
|
5612
5660
|
/**
|
5613
5661
|
* Array form of {@link GuiLocation}.
|
5614
5662
|
* @see GuiLocation
|
5615
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5663
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/GuiLocation.html Online documentation}
|
5616
5664
|
*/
|
5617
5665
|
export type GuiLocationArray = readonly [int, int]
|
5618
5666
|
/**
|
5619
5667
|
* A {@link ChunkPosition} with an added bounding box for the area of the chunk.
|
5620
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5668
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ChunkPositionAndArea.html Online documentation}
|
5621
5669
|
*/
|
5622
5670
|
export interface ChunkPositionAndArea {
|
5623
5671
|
readonly x: int
|
@@ -5626,7 +5674,7 @@ declare module "factorio:runtime" {
|
|
5626
5674
|
}
|
5627
5675
|
/**
|
5628
5676
|
* A table used to define a manual shape for a piece of equipment.
|
5629
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5677
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/EquipmentPoint.html Online documentation}
|
5630
5678
|
*/
|
5631
5679
|
export interface EquipmentPoint {
|
5632
5680
|
readonly x: uint
|
@@ -5662,7 +5710,7 @@ declare module "factorio:runtime" {
|
|
5662
5710
|
* Note that the API returns tags as a simple table, meaning any modifications to it will not propagate back to the game. Thus, to modify a set of tags, the whole table needs to be written back to the respective property.
|
5663
5711
|
* @example
|
5664
5712
|
* {a = 1, b = true, c = "three", d = {e = "f"}}
|
5665
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5713
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/Tags.html Online documentation}
|
5666
5714
|
*/
|
5667
5715
|
export type Tags = Record<string, AnyBasic>
|
5668
5716
|
export interface SurfaceCondition {
|
@@ -5696,13 +5744,13 @@ declare module "factorio:runtime" {
|
|
5696
5744
|
* A vector is a two-element array or dictionary containing the `x` and `y` components. The game will always provide the array format. Positive x goes east, positive y goes south.
|
5697
5745
|
* @example
|
5698
5746
|
* right = {1.0, 0.0}
|
5699
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5747
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/Vector.html Online documentation}
|
5700
5748
|
*/
|
5701
5749
|
export type Vector = MapPositionArray
|
5702
5750
|
/**
|
5703
5751
|
* An area defined using the map editor.
|
5704
5752
|
* @see ScriptAreaWrite
|
5705
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5753
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ScriptArea.html Online documentation}
|
5706
5754
|
*/
|
5707
5755
|
export interface ScriptArea {
|
5708
5756
|
readonly area: BoundingBox
|
@@ -5712,7 +5760,7 @@ declare module "factorio:runtime" {
|
|
5712
5760
|
}
|
5713
5761
|
/**
|
5714
5762
|
* Write form of {@link ScriptArea}, where some properties allow additional values as input compared to the read form.
|
5715
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5763
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ScriptArea.html Online documentation}
|
5716
5764
|
*/
|
5717
5765
|
export interface ScriptAreaWrite {
|
5718
5766
|
readonly area: BoundingBoxWrite | BoundingBoxArray
|
@@ -5723,7 +5771,7 @@ declare module "factorio:runtime" {
|
|
5723
5771
|
/**
|
5724
5772
|
* A position defined using the map editor.
|
5725
5773
|
* @see ScriptPositionWrite
|
5726
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5774
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ScriptPosition.html Online documentation}
|
5727
5775
|
*/
|
5728
5776
|
export interface ScriptPosition {
|
5729
5777
|
readonly position: MapPosition
|
@@ -5733,7 +5781,7 @@ declare module "factorio:runtime" {
|
|
5733
5781
|
}
|
5734
5782
|
/**
|
5735
5783
|
* Write form of {@link ScriptPosition}, where some properties allow additional values as input compared to the read form.
|
5736
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5784
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ScriptPosition.html Online documentation}
|
5737
5785
|
*/
|
5738
5786
|
export interface ScriptPositionWrite {
|
5739
5787
|
readonly position: MapPosition | MapPositionArray
|
@@ -5751,7 +5799,7 @@ declare module "factorio:runtime" {
|
|
5751
5799
|
* red2 = {r = 0.5, a = 0.5} -- Same color as red1
|
5752
5800
|
* black = {} -- All channels omitted: black
|
5753
5801
|
* red1_short = {0.5, 0, 0, 0.5} -- Same color as red1 in short-hand notation
|
5754
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5802
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/Color.html Online documentation}
|
5755
5803
|
*/
|
5756
5804
|
export interface Color {
|
5757
5805
|
readonly r?: float
|
@@ -5762,13 +5810,13 @@ declare module "factorio:runtime" {
|
|
5762
5810
|
/**
|
5763
5811
|
* Array form of {@link Color}.
|
5764
5812
|
* @see Color
|
5765
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5813
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/Color.html Online documentation}
|
5766
5814
|
*/
|
5767
5815
|
export type ColorArray = readonly [r: double, g: double, b: double, a?: double]
|
5768
5816
|
/**
|
5769
5817
|
* Same as {@link Color}, but red, green, blue and alpha values can be any floating point number, without any special handling of the range [1, 255].
|
5770
5818
|
* @see ColorModifierArray
|
5771
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5819
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ColorModifier.html Online documentation}
|
5772
5820
|
*/
|
5773
5821
|
export interface ColorModifier {
|
5774
5822
|
readonly r?: float
|
@@ -5779,7 +5827,7 @@ declare module "factorio:runtime" {
|
|
5779
5827
|
/**
|
5780
5828
|
* Array form of {@link ColorModifier}.
|
5781
5829
|
* @see ColorModifier
|
5782
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5830
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ColorModifier.html Online documentation}
|
5783
5831
|
*/
|
5784
5832
|
export type ColorModifierArray = readonly [r: double, g: double, b: double, a?: double]
|
5785
5833
|
export interface CraftingQueueItem {
|
@@ -5922,7 +5970,7 @@ declare module "factorio:runtime" {
|
|
5922
5970
|
}
|
5923
5971
|
/**
|
5924
5972
|
* @see AsteroidChunkWrite
|
5925
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5973
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/AsteroidChunk.html Online documentation}
|
5926
5974
|
*/
|
5927
5975
|
export interface AsteroidChunk {
|
5928
5976
|
/**
|
@@ -5934,7 +5982,7 @@ declare module "factorio:runtime" {
|
|
5934
5982
|
}
|
5935
5983
|
/**
|
5936
5984
|
* Write form of {@link AsteroidChunk}, where some properties allow additional values as input compared to the read form.
|
5937
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5985
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/AsteroidChunk.html Online documentation}
|
5938
5986
|
*/
|
5939
5987
|
export interface AsteroidChunkWrite {
|
5940
5988
|
/**
|
@@ -5956,7 +6004,7 @@ declare module "factorio:runtime" {
|
|
5956
6004
|
}
|
5957
6005
|
/**
|
5958
6006
|
* Either `icon`, `text`, or both must be provided.
|
5959
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6007
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ChartTagSpec.html Online documentation}
|
5960
6008
|
*/
|
5961
6009
|
export interface ChartTagSpec {
|
5962
6010
|
readonly position: MapPosition | MapPositionArray
|
@@ -5966,93 +6014,93 @@ declare module "factorio:runtime" {
|
|
5966
6014
|
}
|
5967
6015
|
/**
|
5968
6016
|
* Parameters that affect the look and control of the game. Updating any of the member attributes here will immediately take effect in the game engine.
|
5969
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6017
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/GameViewSettings.html Online documentation}
|
5970
6018
|
*/
|
5971
6019
|
export interface GameViewSettings {
|
5972
6020
|
/**
|
5973
6021
|
* Show the controller GUI elements. This includes the toolbar, the selected tool slot, the armour slot, and the gun and ammunition slots.
|
5974
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6022
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/GameViewSettings.show_controller_gui.html Online documentation}
|
5975
6023
|
*/
|
5976
6024
|
show_controller_gui: boolean
|
5977
6025
|
/**
|
5978
6026
|
* Show the chart in the upper right-hand corner of the screen.
|
5979
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6027
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/GameViewSettings.show_minimap.html Online documentation}
|
5980
6028
|
*/
|
5981
6029
|
show_minimap: boolean
|
5982
6030
|
/**
|
5983
6031
|
* Show research progress and name in the upper right-hand corner of the screen.
|
5984
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6032
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/GameViewSettings.show_research_info.html Online documentation}
|
5985
6033
|
*/
|
5986
6034
|
show_research_info: boolean
|
5987
6035
|
/**
|
5988
6036
|
* Show overlay icons on entities. Also known as "alt-mode".
|
5989
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6037
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/GameViewSettings.show_entity_info.html Online documentation}
|
5990
6038
|
*/
|
5991
6039
|
show_entity_info: boolean
|
5992
6040
|
/**
|
5993
6041
|
* Show the flashing alert icons next to the player's toolbar.
|
5994
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6042
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/GameViewSettings.show_alert_gui.html Online documentation}
|
5995
6043
|
*/
|
5996
6044
|
show_alert_gui: boolean
|
5997
6045
|
/**
|
5998
6046
|
* When `true` (the default), mousing over an entity will select it. Otherwise, moving the mouse won't update entity selection.
|
5999
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6047
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/GameViewSettings.update_entity_selection.html Online documentation}
|
6000
6048
|
*/
|
6001
6049
|
update_entity_selection: boolean
|
6002
6050
|
/**
|
6003
6051
|
* When `true` (`false` is default), the rails will always show the rail block visualisation.
|
6004
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6052
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/GameViewSettings.show_rail_block_visualisation.html Online documentation}
|
6005
6053
|
*/
|
6006
6054
|
show_rail_block_visualisation: boolean
|
6007
6055
|
/**
|
6008
6056
|
* Shows or hides the buttons row.
|
6009
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6057
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/GameViewSettings.show_side_menu.html Online documentation}
|
6010
6058
|
*/
|
6011
6059
|
show_side_menu: boolean
|
6012
6060
|
/**
|
6013
6061
|
* Shows or hides the view options when map is opened.
|
6014
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6062
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/GameViewSettings.show_map_view_options.html Online documentation}
|
6015
6063
|
*/
|
6016
6064
|
show_map_view_options: boolean
|
6017
6065
|
/**
|
6018
6066
|
* Shows or hides the tooltip that is displayed when selecting an entity.
|
6019
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6067
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/GameViewSettings.show_entity_tooltip.html Online documentation}
|
6020
6068
|
*/
|
6021
6069
|
show_entity_tooltip: boolean
|
6022
6070
|
/**
|
6023
6071
|
* Shows or hides quickbar of shortcuts.
|
6024
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6072
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/GameViewSettings.show_quickbar.html Online documentation}
|
6025
6073
|
*/
|
6026
6074
|
show_quickbar: boolean
|
6027
6075
|
/**
|
6028
6076
|
* Shows or hides the shortcut bar.
|
6029
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6077
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/GameViewSettings.show_shortcut_bar.html Online documentation}
|
6030
6078
|
*/
|
6031
6079
|
show_shortcut_bar: boolean
|
6032
6080
|
/**
|
6033
6081
|
* Shows or hides the crafting queue.
|
6034
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6082
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/GameViewSettings.show_crafting_queue.html Online documentation}
|
6035
6083
|
*/
|
6036
6084
|
show_crafting_queue: boolean
|
6037
6085
|
/**
|
6038
6086
|
* Shows or hides the tool window with the weapons and armor.
|
6039
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6087
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/GameViewSettings.show_tool_bar.html Online documentation}
|
6040
6088
|
*/
|
6041
6089
|
show_tool_bar: boolean
|
6042
6090
|
/**
|
6043
6091
|
* Shows or hides the mouse and keyboard/controller button hints in the bottom left corner if they are enabled in the interface settings.
|
6044
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6092
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/GameViewSettings.show_hotkey_suggestions.html Online documentation}
|
6045
6093
|
*/
|
6046
6094
|
show_hotkey_suggestions: boolean
|
6047
6095
|
/**
|
6048
6096
|
* Shows or hides the surface list while in Remote View.
|
6049
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6097
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/GameViewSettings.show_surface_list.html Online documentation}
|
6050
6098
|
*/
|
6051
6099
|
show_surface_list: boolean
|
6052
6100
|
}
|
6053
6101
|
/**
|
6054
6102
|
* The data that can be extracted from a map exchange string, as a plain table.
|
6055
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6103
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/MapExchangeStringData.html Online documentation}
|
6056
6104
|
*/
|
6057
6105
|
export interface MapExchangeStringData {
|
6058
6106
|
readonly map_settings: MapAndDifficultySettings
|
@@ -6060,7 +6108,7 @@ declare module "factorio:runtime" {
|
|
6060
6108
|
}
|
6061
6109
|
/**
|
6062
6110
|
* @see BlueprintSignalIconWrite
|
6063
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6111
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/BlueprintSignalIcon.html Online documentation}
|
6064
6112
|
*/
|
6065
6113
|
export interface BlueprintSignalIcon {
|
6066
6114
|
/**
|
@@ -6074,7 +6122,7 @@ declare module "factorio:runtime" {
|
|
6074
6122
|
}
|
6075
6123
|
/**
|
6076
6124
|
* Write form of {@link BlueprintSignalIcon}, where some properties allow additional values as input compared to the read form.
|
6077
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6125
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/BlueprintSignalIcon.html Online documentation}
|
6078
6126
|
*/
|
6079
6127
|
export interface BlueprintSignalIconWrite {
|
6080
6128
|
/**
|
@@ -6103,12 +6151,12 @@ declare module "factorio:runtime" {
|
|
6103
6151
|
* - `target_entity_number`
|
6104
6152
|
*
|
6105
6153
|
* - `target_wire_connector_id`
|
6106
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6154
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/BlueprintWire.html Online documentation}
|
6107
6155
|
*/
|
6108
6156
|
export type BlueprintWire = readonly [uint, defines.wire_connector_id, uint, defines.wire_connector_id]
|
6109
6157
|
/**
|
6110
6158
|
* @see TileWrite
|
6111
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6159
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/Tile.html Online documentation}
|
6112
6160
|
*/
|
6113
6161
|
export interface Tile {
|
6114
6162
|
/**
|
@@ -6122,7 +6170,7 @@ declare module "factorio:runtime" {
|
|
6122
6170
|
}
|
6123
6171
|
/**
|
6124
6172
|
* Write form of {@link Tile}, where some properties allow additional values as input compared to the read form.
|
6125
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6173
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/Tile.html Online documentation}
|
6126
6174
|
*/
|
6127
6175
|
export interface TileWrite {
|
6128
6176
|
/**
|
@@ -6177,7 +6225,7 @@ declare module "factorio:runtime" {
|
|
6177
6225
|
*
|
6178
6226
|
* Other attributes may be specified depending on `type`:
|
6179
6227
|
* - `"fluid"`: {@link FluidIngredient}
|
6180
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6228
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/Ingredient.html Online documentation}
|
6181
6229
|
*/
|
6182
6230
|
export type Ingredient = FluidIngredient | OtherIngredient
|
6183
6231
|
export interface Loot {
|
@@ -6343,7 +6391,7 @@ declare module "factorio:runtime" {
|
|
6343
6391
|
* - `"unlock-recipe"`: {@link UnlockRecipeTechnologyModifier}
|
6344
6392
|
* - `"nothing"`: {@link NothingTechnologyModifier}
|
6345
6393
|
* - Other types: {@link OtherTechnologyModifier}
|
6346
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6394
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/TechnologyModifier.html Online documentation}
|
6347
6395
|
*/
|
6348
6396
|
export type TechnologyModifier =
|
6349
6397
|
| GunSpeedTechnologyModifier
|
@@ -6355,7 +6403,7 @@ declare module "factorio:runtime" {
|
|
6355
6403
|
| OtherTechnologyModifier
|
6356
6404
|
/**
|
6357
6405
|
* A fragment of a functional program used to generate coherent noise, probably for purposes related to terrain generation. These can only be meaningfully written/modified during the data load phase. More detailed information is found on the {@link import("factorio:prototype").NamedNoiseExpression prototype docs}.
|
6358
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6406
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/NoiseExpression.html Online documentation}
|
6359
6407
|
*/
|
6360
6408
|
export interface NoiseExpression {
|
6361
6409
|
/**
|
@@ -6408,7 +6456,7 @@ declare module "factorio:runtime" {
|
|
6408
6456
|
* - `"very-high"`: equivalent to `2`.
|
6409
6457
|
* - `"very-big"`: equivalent to `2`.
|
6410
6458
|
* - `"very-good"`: equivalent to `2`.
|
6411
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6459
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/MapGenSize.html Online documentation}
|
6412
6460
|
*/
|
6413
6461
|
export type MapGenSize =
|
6414
6462
|
| float
|
@@ -6430,7 +6478,7 @@ declare module "factorio:runtime" {
|
|
6430
6478
|
| "very-good"
|
6431
6479
|
/**
|
6432
6480
|
* @see AutoplaceControlWrite
|
6433
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6481
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/AutoplaceControl.html Online documentation}
|
6434
6482
|
*/
|
6435
6483
|
export interface AutoplaceControl {
|
6436
6484
|
/**
|
@@ -6448,7 +6496,7 @@ declare module "factorio:runtime" {
|
|
6448
6496
|
}
|
6449
6497
|
/**
|
6450
6498
|
* Write form of {@link AutoplaceControl}, where some properties allow additional values as input compared to the read form.
|
6451
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6499
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/AutoplaceControl.html Online documentation}
|
6452
6500
|
*/
|
6453
6501
|
export interface AutoplaceControlWrite {
|
6454
6502
|
/**
|
@@ -6467,10 +6515,10 @@ declare module "factorio:runtime" {
|
|
6467
6515
|
/**
|
6468
6516
|
* All other MapGenSettings feed into named noise expressions, and therefore placement can be overridden by including the name of a property in this dictionary. The probability and richness functions for placing specific tiles, entities, and decoratives can be overridden by including an entry named `{tile|entity|decorative}:(prototype name):{probability|richness}`.
|
6469
6517
|
*
|
6470
|
-
* {@link https://lua-api.factorio.com/2.0.
|
6518
|
+
* {@link https://lua-api.factorio.com/2.0.39/concepts/PropertyExpressionNames.html > Values either name a NamedNoiseExpression or can be literal numbers, stored as strings (e.g. `5`). All other controls can be overridden by a property expression names. Notable properties:}
|
6471
6519
|
*
|
6472
|
-
* {@link https://lua-api.factorio.com/2.0.
|
6473
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6520
|
+
* {@link https://lua-api.factorio.com/2.0.39/concepts/PropertyExpressionNames.html > Climate controls ('Moisture' and 'Terrain type' at the bottom of the Terrain tab in the map generator GUI) don't have their own dedicated structures in MapGenSettings. Instead, their values are stored as property expression overrides with long names:}
|
6521
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/PropertyExpressionNames.html Online documentation}
|
6474
6522
|
*/
|
6475
6523
|
export type PropertyExpressionNames = Record<string, string>
|
6476
6524
|
export interface AdvancedMapGenSettings {
|
@@ -6493,7 +6541,7 @@ declare module "factorio:runtime" {
|
|
6493
6541
|
}
|
6494
6542
|
/**
|
6495
6543
|
* An actual signal transmitted by the network.
|
6496
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6544
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/Signal.html Online documentation}
|
6497
6545
|
*/
|
6498
6546
|
export interface Signal {
|
6499
6547
|
/**
|
@@ -6507,7 +6555,7 @@ declare module "factorio:runtime" {
|
|
6507
6555
|
}
|
6508
6556
|
/**
|
6509
6557
|
* @see UpgradeMapperSourceWrite
|
6510
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6558
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/UpgradeMapperSource.html Online documentation}
|
6511
6559
|
*/
|
6512
6560
|
export interface UpgradeMapperSource {
|
6513
6561
|
readonly type: "item" | "entity"
|
@@ -6526,7 +6574,7 @@ declare module "factorio:runtime" {
|
|
6526
6574
|
}
|
6527
6575
|
/**
|
6528
6576
|
* Write form of {@link UpgradeMapperSource}, where some properties allow additional values as input compared to the read form.
|
6529
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6577
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/UpgradeMapperSource.html Online documentation}
|
6530
6578
|
*/
|
6531
6579
|
export interface UpgradeMapperSourceWrite {
|
6532
6580
|
readonly type: "item" | "entity"
|
@@ -6563,7 +6611,7 @@ declare module "factorio:runtime" {
|
|
6563
6611
|
}
|
6564
6612
|
/**
|
6565
6613
|
* A single filter used by an infinity-filters instance.
|
6566
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6614
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/InfinityInventoryFilter.html Online documentation}
|
6567
6615
|
*/
|
6568
6616
|
export interface InfinityInventoryFilter {
|
6569
6617
|
/**
|
@@ -6585,7 +6633,7 @@ declare module "factorio:runtime" {
|
|
6585
6633
|
}
|
6586
6634
|
/**
|
6587
6635
|
* A single filter used by an infinity-pipe type entity.
|
6588
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6636
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/InfinityPipeFilter.html Online documentation}
|
6589
6637
|
*/
|
6590
6638
|
export interface InfinityPipeFilter {
|
6591
6639
|
/**
|
@@ -6639,7 +6687,7 @@ declare module "factorio:runtime" {
|
|
6639
6687
|
}
|
6640
6688
|
/**
|
6641
6689
|
* The settings used by a heat-interface type entity.
|
6642
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6690
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/HeatSetting.html Online documentation}
|
6643
6691
|
*/
|
6644
6692
|
export interface HeatSetting {
|
6645
6693
|
/**
|
@@ -6657,7 +6705,7 @@ declare module "factorio:runtime" {
|
|
6657
6705
|
}
|
6658
6706
|
/**
|
6659
6707
|
* @see ArithmeticCombinatorParametersWrite
|
6660
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6708
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ArithmeticCombinatorParameters.html Online documentation}
|
6661
6709
|
*/
|
6662
6710
|
export interface ArithmeticCombinatorParameters {
|
6663
6711
|
/**
|
@@ -6687,7 +6735,7 @@ declare module "factorio:runtime" {
|
|
6687
6735
|
}
|
6688
6736
|
/**
|
6689
6737
|
* Write form of {@link ArithmeticCombinatorParameters}, where some properties allow additional values as input compared to the read form.
|
6690
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6738
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ArithmeticCombinatorParameters.html Online documentation}
|
6691
6739
|
*/
|
6692
6740
|
export interface ArithmeticCombinatorParametersWrite {
|
6693
6741
|
/**
|
@@ -6717,7 +6765,7 @@ declare module "factorio:runtime" {
|
|
6717
6765
|
}
|
6718
6766
|
/**
|
6719
6767
|
* @see SelectorCombinatorParametersWrite
|
6720
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6768
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/SelectorCombinatorParameters.html Online documentation}
|
6721
6769
|
*/
|
6722
6770
|
export interface SelectorCombinatorParameters {
|
6723
6771
|
/**
|
@@ -6743,7 +6791,7 @@ declare module "factorio:runtime" {
|
|
6743
6791
|
}
|
6744
6792
|
/**
|
6745
6793
|
* Write form of {@link SelectorCombinatorParameters}, where some properties allow additional values as input compared to the read form.
|
6746
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6794
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/SelectorCombinatorParameters.html Online documentation}
|
6747
6795
|
*/
|
6748
6796
|
export interface SelectorCombinatorParametersWrite {
|
6749
6797
|
/**
|
@@ -6785,7 +6833,7 @@ declare module "factorio:runtime" {
|
|
6785
6833
|
}
|
6786
6834
|
/**
|
6787
6835
|
* @see CircuitConditionWrite
|
6788
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6836
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/CircuitCondition.html Online documentation}
|
6789
6837
|
*/
|
6790
6838
|
export interface CircuitCondition {
|
6791
6839
|
/**
|
@@ -6807,7 +6855,7 @@ declare module "factorio:runtime" {
|
|
6807
6855
|
}
|
6808
6856
|
/**
|
6809
6857
|
* Write form of {@link CircuitCondition}, where some properties allow additional values as input compared to the read form.
|
6810
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6858
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/CircuitCondition.html Online documentation}
|
6811
6859
|
*/
|
6812
6860
|
export interface CircuitConditionWrite {
|
6813
6861
|
/**
|
@@ -6829,7 +6877,7 @@ declare module "factorio:runtime" {
|
|
6829
6877
|
}
|
6830
6878
|
/**
|
6831
6879
|
* @see CircuitConditionDefinitionWrite
|
6832
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6880
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/CircuitConditionDefinition.html Online documentation}
|
6833
6881
|
*/
|
6834
6882
|
export interface CircuitConditionDefinition {
|
6835
6883
|
/**
|
@@ -6843,7 +6891,7 @@ declare module "factorio:runtime" {
|
|
6843
6891
|
}
|
6844
6892
|
/**
|
6845
6893
|
* Write form of {@link CircuitConditionDefinition}, where some properties allow additional values as input compared to the read form.
|
6846
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6894
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/CircuitConditionDefinition.html Online documentation}
|
6847
6895
|
*/
|
6848
6896
|
export interface CircuitConditionDefinitionWrite {
|
6849
6897
|
/**
|
@@ -7118,7 +7166,7 @@ declare module "factorio:runtime" {
|
|
7118
7166
|
* - {@link defines.command.stop}: {@link StopCommand}
|
7119
7167
|
* - {@link defines.command.flee}: {@link FleeCommand}
|
7120
7168
|
* - {@link defines.command.build_base}: {@link BuildBaseCommand}
|
7121
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7169
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/Command.html Online documentation}
|
7122
7170
|
*/
|
7123
7171
|
export type Command =
|
7124
7172
|
| AttackCommand
|
@@ -7132,7 +7180,7 @@ declare module "factorio:runtime" {
|
|
7132
7180
|
| BuildBaseCommand
|
7133
7181
|
/**
|
7134
7182
|
* Write form of {@link Command}, where some properties allow additional values as input compared to the read form.
|
7135
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7183
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/Command.html Online documentation}
|
7136
7184
|
*/
|
7137
7185
|
export type CommandWrite =
|
7138
7186
|
| AttackCommand
|
@@ -7217,7 +7265,7 @@ declare module "factorio:runtime" {
|
|
7217
7265
|
* These are both full stacks of iron plates (for iron-plate, a full stack is 100 plates)
|
7218
7266
|
* "iron-plate"
|
7219
7267
|
* {name="iron-plate", count=100}
|
7220
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7268
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/SimpleItemStack.html Online documentation}
|
7221
7269
|
*/
|
7222
7270
|
export type SimpleItemStack = string | ItemStackDefinition
|
7223
7271
|
/**
|
@@ -7227,7 +7275,7 @@ declare module "factorio:runtime" {
|
|
7227
7275
|
* - SurfaceIndex: It will be the index of the surface. `nauvis` has index `1`, the first surface-created surface will have index `2` and so on.
|
7228
7276
|
* - `string`: It will be the surface name. E.g. `"nauvis"`.
|
7229
7277
|
* - {@link LuaSurface}: A reference to {@link LuaSurface} may be passed directly.
|
7230
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7278
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/SurfaceIdentification.html Online documentation}
|
7231
7279
|
*/
|
7232
7280
|
export type SurfaceIdentification = SurfaceIndex | string | LuaSurface
|
7233
7281
|
/**
|
@@ -7237,7 +7285,7 @@ declare module "factorio:runtime" {
|
|
7237
7285
|
* - PlayerIndex: The player index.
|
7238
7286
|
* - `string`: The player name.
|
7239
7287
|
* - {@link LuaPlayer}: A reference to {@link LuaPlayer} may be passed directly.
|
7240
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7288
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/PlayerIdentification.html Online documentation}
|
7241
7289
|
*/
|
7242
7290
|
export type PlayerIdentification = PlayerIndex | string | LuaPlayer
|
7243
7291
|
/**
|
@@ -7246,7 +7294,7 @@ declare module "factorio:runtime" {
|
|
7246
7294
|
* ## Union members
|
7247
7295
|
* - {@link SimpleItemStack}
|
7248
7296
|
* - {@link LuaItemStack}
|
7249
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7297
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ItemStackIdentification.html Online documentation}
|
7250
7298
|
*/
|
7251
7299
|
export type ItemStackIdentification = SimpleItemStack | LuaItemStack
|
7252
7300
|
/**
|
@@ -7256,7 +7304,7 @@ declare module "factorio:runtime" {
|
|
7256
7304
|
* - `"entity"`: Fires at an entity.
|
7257
7305
|
* - `"position"`: Fires directly at a position.
|
7258
7306
|
* - `"direction"`: Fires in a direction.
|
7259
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7307
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/TargetType.html Online documentation}
|
7260
7308
|
*/
|
7261
7309
|
export type TargetType = "entity" | "position" | "direction"
|
7262
7310
|
export interface BeamTarget {
|
@@ -7293,8 +7341,8 @@ declare module "factorio:runtime" {
|
|
7293
7341
|
*
|
7294
7342
|
* The validity of a SoundPath can be verified at runtime using {@link LuaHelpers#is_valid_sound_path LuaHelpers::is_valid_sound_path}.
|
7295
7343
|
*
|
7296
|
-
* {@link https://lua-api.factorio.com/2.0.
|
7297
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7344
|
+
* {@link https://lua-api.factorio.com/2.0.39/concepts/SoundPath.html > The utility and ambient types each contain general use sound prototypes defined by the game itself.}
|
7345
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/SoundPath.html Online documentation}
|
7298
7346
|
*/
|
7299
7347
|
export type SoundPath = (string & { _?: never }) | `${SoundCategory}/${string}`
|
7300
7348
|
export interface CircularParticleCreationSpecification {
|
@@ -7426,7 +7474,7 @@ declare module "factorio:runtime" {
|
|
7426
7474
|
* Other attributes may be specified depending on `type`:
|
7427
7475
|
* - `"projectile"`: {@link ProjectileAttackParameters}
|
7428
7476
|
* - `"stream"`: {@link StreamAttackParameters}
|
7429
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7477
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/AttackParameters.html Online documentation}
|
7430
7478
|
*/
|
7431
7479
|
export type AttackParameters = ProjectileAttackParameters | StreamAttackParameters | OtherAttackParameters
|
7432
7480
|
export interface GunShift4Way {
|
@@ -7492,7 +7540,7 @@ declare module "factorio:runtime" {
|
|
7492
7540
|
* - `"use-on-self"`: {@link UseOnSelfCapsuleAction}
|
7493
7541
|
* - `"artillery-remote"`: {@link ArtilleryRemoteCapsuleAction}
|
7494
7542
|
* - `"destroy-cliffs"`: {@link DestroyCliffsCapsuleAction}
|
7495
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7543
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/CapsuleAction.html Online documentation}
|
7496
7544
|
*/
|
7497
7545
|
export type CapsuleAction =
|
7498
7546
|
| ThrowCapsuleAction
|
@@ -7532,12 +7580,12 @@ declare module "factorio:runtime" {
|
|
7532
7580
|
}
|
7533
7581
|
/**
|
7534
7582
|
* Any basic type (string, number, boolean) or table.
|
7535
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7583
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/AnyBasic.html Online documentation}
|
7536
7584
|
*/
|
7537
7585
|
export type AnyBasic = string | boolean | number | table
|
7538
7586
|
/**
|
7539
7587
|
* Any basic type (string, number, boolean), table, or LuaObject.
|
7540
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7588
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/Any.html Online documentation}
|
7541
7589
|
*/
|
7542
7590
|
export type Any = string | boolean | number | table | LuaObject
|
7543
7591
|
export interface ProgrammableSpeakerParameters {
|
@@ -7547,7 +7595,7 @@ declare module "factorio:runtime" {
|
|
7547
7595
|
}
|
7548
7596
|
/**
|
7549
7597
|
* @see ProgrammableSpeakerAlertParametersWrite
|
7550
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7598
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ProgrammableSpeakerAlertParameters.html Online documentation}
|
7551
7599
|
*/
|
7552
7600
|
export interface ProgrammableSpeakerAlertParameters {
|
7553
7601
|
readonly show_alert: boolean
|
@@ -7557,7 +7605,7 @@ declare module "factorio:runtime" {
|
|
7557
7605
|
}
|
7558
7606
|
/**
|
7559
7607
|
* Write form of {@link ProgrammableSpeakerAlertParameters}, where some properties allow additional values as input compared to the read form.
|
7560
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7608
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ProgrammableSpeakerAlertParameters.html Online documentation}
|
7561
7609
|
*/
|
7562
7610
|
export interface ProgrammableSpeakerAlertParametersWrite {
|
7563
7611
|
readonly show_alert: boolean
|
@@ -7589,7 +7637,7 @@ declare module "factorio:runtime" {
|
|
7589
7637
|
* - `"top-right"`
|
7590
7638
|
* - `"right"`: The same as `"middle-right"`
|
7591
7639
|
* - `"bottom-right"`
|
7592
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7640
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/Alignment.html Online documentation}
|
7593
7641
|
*/
|
7594
7642
|
export type Alignment =
|
7595
7643
|
| "top-left"
|
@@ -7622,8 +7670,8 @@ declare module "factorio:runtime" {
|
|
7622
7670
|
_customEventIdBrand: any
|
7623
7671
|
}
|
7624
7672
|
/**
|
7625
|
-
* Information about the event that has been raised. The table can also contain other fields depending on the type of event. See {@linkplain https://lua-api.factorio.com/2.0.
|
7626
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7673
|
+
* Information about the event that has been raised. The table can also contain other fields depending on the type of event. See {@linkplain https://lua-api.factorio.com/2.0.39/events.html the list of Factorio events} for more information on these.
|
7674
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/EventData.html Online documentation}
|
7627
7675
|
*/
|
7628
7676
|
export interface EventData {
|
7629
7677
|
/**
|
@@ -7732,7 +7780,7 @@ declare module "factorio:runtime" {
|
|
7732
7780
|
* - `"button-7"`
|
7733
7781
|
* - `"button-8"`
|
7734
7782
|
* - `"button-9"`
|
7735
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7783
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/MouseButtonFlags.html Online documentation}
|
7736
7784
|
*/
|
7737
7785
|
export interface MouseButtonFlags {
|
7738
7786
|
readonly left?: true
|
@@ -7755,7 +7803,7 @@ declare module "factorio:runtime" {
|
|
7755
7803
|
* - `"not-friend"`: Forces which are not friends pass.
|
7756
7804
|
* - `"same"`: The same force pass.
|
7757
7805
|
* - `"not-same"`: The non-same forces pass.
|
7758
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7806
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ForceCondition.html Online documentation}
|
7759
7807
|
*/
|
7760
7808
|
export type ForceCondition = "all" | "enemy" | "ally" | "friend" | "not-friend" | "same" | "not-same"
|
7761
7809
|
export interface ItemStackLocation {
|
@@ -7793,7 +7841,7 @@ declare module "factorio:runtime" {
|
|
7793
7841
|
* - `"tabbed-pane"`: A collection of `tab`s and their contents. Relevant event: {@link OnGuiSelectedTabChangedEvent on_gui_selected_tab_changed}
|
7794
7842
|
* - `"tab"`: A tab for use in a `tabbed-pane`.
|
7795
7843
|
* - `"switch"`: A switch with three possible states. Can have labels attached to either side. Relevant event: {@link OnGuiSwitchStateChangedEvent on_gui_switch_state_changed}
|
7796
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7844
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/GuiElementType.html Online documentation}
|
7797
7845
|
*/
|
7798
7846
|
export type GuiElementType =
|
7799
7847
|
| "button"
|
@@ -7833,7 +7881,7 @@ declare module "factorio:runtime" {
|
|
7833
7881
|
* - `"position"`
|
7834
7882
|
* - `"crafting_queue"`
|
7835
7883
|
* - `"item_stack"`: Will point to a given item stack in an inventory.
|
7836
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7884
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/GuiArrowType.html Online documentation}
|
7837
7885
|
*/
|
7838
7886
|
export type GuiArrowType =
|
7839
7887
|
| "nowhere"
|
@@ -7850,7 +7898,7 @@ declare module "factorio:runtime" {
|
|
7850
7898
|
* ## Union members
|
7851
7899
|
* - `"horizontal"`
|
7852
7900
|
* - `"vertical"`
|
7853
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7901
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/GuiDirection.html Online documentation}
|
7854
7902
|
*/
|
7855
7903
|
export type GuiDirection = "horizontal" | "vertical"
|
7856
7904
|
/**
|
@@ -7862,7 +7910,7 @@ declare module "factorio:runtime" {
|
|
7862
7910
|
* - `"always"`
|
7863
7911
|
* - `"auto"`
|
7864
7912
|
* - `"auto-and-reserve-space"`
|
7865
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7913
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ScrollPolicy.html Online documentation}
|
7866
7914
|
*/
|
7867
7915
|
export type ScrollPolicy = "never" | "dont-show-but-allow-scrolling" | "always" | "auto" | "auto-and-reserve-space"
|
7868
7916
|
export interface RailLocation {
|
@@ -7879,71 +7927,71 @@ declare module "factorio:runtime" {
|
|
7879
7927
|
}
|
7880
7928
|
/**
|
7881
7929
|
* A floating-point number. This is a single-precision floating point number. Whilst Lua only uses double-precision numbers, when a function takes a float, the game engine will immediately convert the double-precision number to single-precision.
|
7882
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7930
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/float.html Online documentation}
|
7883
7931
|
*/
|
7884
7932
|
export type float = number
|
7885
7933
|
/**
|
7886
7934
|
* A double-precision floating-point number. This is the same data type as all Lua numbers use.
|
7887
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7935
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/double.html Online documentation}
|
7888
7936
|
*/
|
7889
7937
|
export type double = number
|
7890
7938
|
/**
|
7891
7939
|
* 32-bit signed integer. Possible values are `-2 147 483 648` to `2 147 483 647`.
|
7892
7940
|
*
|
7893
7941
|
* Since Lua 5.2 only uses doubles, any API that asks for `int` will floor the given double.
|
7894
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7942
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/int.html Online documentation}
|
7895
7943
|
*/
|
7896
7944
|
export type int = number
|
7897
7945
|
/**
|
7898
7946
|
* 8-bit signed integer. Possible values are `-128` to `127`.
|
7899
7947
|
*
|
7900
7948
|
* Since Lua 5.2 only uses doubles, any API that asks for `int8` will floor the given double.
|
7901
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7949
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/int8.html Online documentation}
|
7902
7950
|
*/
|
7903
7951
|
export type int8 = number
|
7904
7952
|
/**
|
7905
7953
|
* 32-bit unsigned integer. Possible values are `0` to `4 294 967 295`.
|
7906
7954
|
*
|
7907
7955
|
* Since Lua 5.2 only uses doubles, any API that asks for `uint` will floor the given double.
|
7908
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7956
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/uint.html Online documentation}
|
7909
7957
|
*/
|
7910
7958
|
export type uint = number
|
7911
7959
|
/**
|
7912
7960
|
* 8-bit unsigned integer. Possible values are `0` to `255`.
|
7913
7961
|
*
|
7914
7962
|
* Since Lua 5.2 only uses doubles, any API that asks for `uint8` will floor the given double.
|
7915
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7963
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/uint8.html Online documentation}
|
7916
7964
|
*/
|
7917
7965
|
export type uint8 = number
|
7918
7966
|
/**
|
7919
7967
|
* 16-bit unsigned integer. Possible values are `0` to `65 535`.
|
7920
7968
|
*
|
7921
7969
|
* Since Lua 5.2 only uses doubles, any API that asks for `uint16` will floor the given double.
|
7922
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7970
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/uint16.html Online documentation}
|
7923
7971
|
*/
|
7924
7972
|
export type uint16 = number
|
7925
7973
|
/**
|
7926
7974
|
* 64-bit unsigned integer. Possible values are `0` to `18 446 744 073 709 551 615`.
|
7927
7975
|
*
|
7928
7976
|
* Since Lua 5.2 only uses doubles, any API that asks for `uint64` will floor the given double.
|
7929
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7977
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/uint64.html Online documentation}
|
7930
7978
|
*/
|
7931
7979
|
export type uint64 = number
|
7932
7980
|
/**
|
7933
7981
|
* Nil is the type of the value `nil`, whose main property is to be different from any other value. It usually represents the absence of a useful value.
|
7934
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7982
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/nil.html Online documentation}
|
7935
7983
|
*/
|
7936
7984
|
export type nil = undefined
|
7937
7985
|
/**
|
7938
7986
|
* Tables are enclosed in curly brackets, like this `{}`.
|
7939
7987
|
*
|
7940
7988
|
* Throughout the API docs, the terms "array" and "dictionary" are used. These are fundamentally just {@linkplain http://www.lua.org/pil/2.5.html Lua tables}, but have a limitation on which kind of table keys can be used. An array is a table that uses continuous integer keys starting at `1`, while a dictionary can use numeric or string keys in any order or combination.
|
7941
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7989
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/table.html Online documentation}
|
7942
7990
|
*/
|
7943
7991
|
export type table = object
|
7944
7992
|
/**
|
7945
|
-
* Any LuaObject listed on the {@linkplain https://lua-api.factorio.com/2.0.
|
7946
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7993
|
+
* Any LuaObject listed on the {@linkplain https://lua-api.factorio.com/2.0.39/classes.html Classes} page.
|
7994
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaObject.html Online documentation}
|
7947
7995
|
*/
|
7948
7996
|
export interface LuaObject {
|
7949
7997
|
readonly object_name: string
|
@@ -8002,7 +8050,7 @@ declare module "factorio:runtime" {
|
|
8002
8050
|
* - `"type"`: {@link TypeModSettingPrototypeFilter}
|
8003
8051
|
* - `"mod"`: {@link ModModSettingPrototypeFilter}
|
8004
8052
|
* - `"setting-type"`: {@link SettingTypeModSettingPrototypeFilter}
|
8005
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
8053
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ModSettingPrototypeFilter.html Online documentation}
|
8006
8054
|
*/
|
8007
8055
|
export type ModSettingPrototypeFilter =
|
8008
8056
|
| TypeModSettingPrototypeFilter
|
@@ -8147,7 +8195,7 @@ declare module "factorio:runtime" {
|
|
8147
8195
|
* - `"vehicle-friction-modifier"`: {@link VehicleFrictionModifierTilePrototypeFilter}
|
8148
8196
|
* - `"decorative-removal-probability"`: {@link DecorativeRemovalProbabilityTilePrototypeFilter}
|
8149
8197
|
* - `"absorptions-per-second"`: {@link AbsorptionsPerSecondTilePrototypeFilter}
|
8150
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
8198
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/TilePrototypeFilter.html Online documentation}
|
8151
8199
|
*/
|
8152
8200
|
export type TilePrototypeFilter =
|
8153
8201
|
| CollisionMaskTilePrototypeFilter
|
@@ -8158,7 +8206,7 @@ declare module "factorio:runtime" {
|
|
8158
8206
|
| OtherTilePrototypeFilter
|
8159
8207
|
/**
|
8160
8208
|
* Write form of {@link TilePrototypeFilter}, where some properties allow additional values as input compared to the read form.
|
8161
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
8209
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/TilePrototypeFilter.html Online documentation}
|
8162
8210
|
*/
|
8163
8211
|
export type TilePrototypeFilterWrite =
|
8164
8212
|
| CollisionMaskTilePrototypeFilter
|
@@ -8209,7 +8257,7 @@ declare module "factorio:runtime" {
|
|
8209
8257
|
*
|
8210
8258
|
* Other attributes may be specified depending on `filter`:
|
8211
8259
|
* - `"collision-mask"`: {@link CollisionMaskDecorativePrototypeFilter}
|
8212
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
8260
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/DecorativePrototypeFilter.html Online documentation}
|
8213
8261
|
*/
|
8214
8262
|
export type DecorativePrototypeFilter = CollisionMaskDecorativePrototypeFilter | OtherDecorativePrototypeFilter
|
8215
8263
|
/**
|
@@ -8463,7 +8511,7 @@ declare module "factorio:runtime" {
|
|
8463
8511
|
* - `"emissions-multiplier"`: {@link EmissionsMultiplierRecipePrototypeFilter}
|
8464
8512
|
* - `"request-paste-multiplier"`: {@link RequestPasteMultiplierRecipePrototypeFilter}
|
8465
8513
|
* - `"overload-multiplier"`: {@link OverloadMultiplierRecipePrototypeFilter}
|
8466
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
8514
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/RecipePrototypeFilter.html Online documentation}
|
8467
8515
|
*/
|
8468
8516
|
export type RecipePrototypeFilter =
|
8469
8517
|
| HasIngredientItemRecipePrototypeFilter
|
@@ -8479,7 +8527,7 @@ declare module "factorio:runtime" {
|
|
8479
8527
|
| OtherRecipePrototypeFilter
|
8480
8528
|
/**
|
8481
8529
|
* Write form of {@link RecipePrototypeFilter}, where some properties allow additional values as input compared to the read form.
|
8482
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
8530
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/RecipePrototypeFilter.html Online documentation}
|
8483
8531
|
*/
|
8484
8532
|
export type RecipePrototypeFilterWrite =
|
8485
8533
|
| HasIngredientItemRecipePrototypeFilterWrite
|
@@ -8531,7 +8579,7 @@ declare module "factorio:runtime" {
|
|
8531
8579
|
*
|
8532
8580
|
* Other attributes may be specified depending on `filter`:
|
8533
8581
|
* - `"type"`: {@link TypeAchievementPrototypeFilter}
|
8534
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
8582
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/AchievementPrototypeFilter.html Online documentation}
|
8535
8583
|
*/
|
8536
8584
|
export type AchievementPrototypeFilter = TypeAchievementPrototypeFilter | OtherAchievementPrototypeFilter
|
8537
8585
|
/**
|
@@ -8654,7 +8702,7 @@ declare module "factorio:runtime" {
|
|
8654
8702
|
* - `"level"`: {@link LevelTechnologyPrototypeFilter}
|
8655
8703
|
* - `"max-level"`: {@link MaxLevelTechnologyPrototypeFilter}
|
8656
8704
|
* - `"time"`: {@link TimeTechnologyPrototypeFilter}
|
8657
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
8705
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/TechnologyPrototypeFilter.html Online documentation}
|
8658
8706
|
*/
|
8659
8707
|
export type TechnologyPrototypeFilter =
|
8660
8708
|
| ResearchUnitIngredientTechnologyPrototypeFilter
|
@@ -8665,7 +8713,7 @@ declare module "factorio:runtime" {
|
|
8665
8713
|
| OtherTechnologyPrototypeFilter
|
8666
8714
|
/**
|
8667
8715
|
* Write form of {@link TechnologyPrototypeFilter}, where some properties allow additional values as input compared to the read form.
|
8668
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
8716
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/TechnologyPrototypeFilter.html Online documentation}
|
8669
8717
|
*/
|
8670
8718
|
export type TechnologyPrototypeFilterWrite =
|
8671
8719
|
| ResearchUnitIngredientTechnologyPrototypeFilter
|
@@ -8982,7 +9030,7 @@ declare module "factorio:runtime" {
|
|
8982
9030
|
* - `"fuel-acceleration-multiplier"`: {@link FuelAccelerationMultiplierItemPrototypeFilter}
|
8983
9031
|
* - `"fuel-top-speed-multiplier"`: {@link FuelTopSpeedMultiplierItemPrototypeFilter}
|
8984
9032
|
* - `"fuel-emissions-multiplier"`: {@link FuelEmissionsMultiplierItemPrototypeFilter}
|
8985
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
9033
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ItemPrototypeFilter.html Online documentation}
|
8986
9034
|
*/
|
8987
9035
|
export type ItemPrototypeFilter =
|
8988
9036
|
| PlaceResultItemPrototypeFilter
|
@@ -9002,7 +9050,7 @@ declare module "factorio:runtime" {
|
|
9002
9050
|
| OtherItemPrototypeFilter
|
9003
9051
|
/**
|
9004
9052
|
* Write form of {@link ItemPrototypeFilter}, where some properties allow additional values as input compared to the read form.
|
9005
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
9053
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/ItemPrototypeFilter.html Online documentation}
|
9006
9054
|
*/
|
9007
9055
|
export type ItemPrototypeFilterWrite =
|
9008
9056
|
| PlaceResultItemPrototypeFilterWrite
|
@@ -9058,7 +9106,7 @@ declare module "factorio:runtime" {
|
|
9058
9106
|
*
|
9059
9107
|
* Other attributes may be specified depending on `filter`:
|
9060
9108
|
* - `"type"`: {@link TypeEquipmentPrototypeFilter}
|
9061
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
9109
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/EquipmentPrototypeFilter.html Online documentation}
|
9062
9110
|
*/
|
9063
9111
|
export type EquipmentPrototypeFilter = TypeEquipmentPrototypeFilter | OtherEquipmentPrototypeFilter
|
9064
9112
|
/**
|
@@ -9289,7 +9337,7 @@ declare module "factorio:runtime" {
|
|
9289
9337
|
* - `"selection-priority"`: {@link SelectionPriorityEntityPrototypeFilter}
|
9290
9338
|
* - `"emissions-per-second"`: {@link EmissionsPerSecondEntityPrototypeFilter}
|
9291
9339
|
* - `"crafting-category"`: {@link CraftingCategoryEntityPrototypeFilter}
|
9292
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
9340
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/EntityPrototypeFilter.html Online documentation}
|
9293
9341
|
*/
|
9294
9342
|
export type EntityPrototypeFilter =
|
9295
9343
|
| NameEntityPrototypeFilter
|
@@ -9303,7 +9351,7 @@ declare module "factorio:runtime" {
|
|
9303
9351
|
| OtherEntityPrototypeFilter
|
9304
9352
|
/**
|
9305
9353
|
* Write form of {@link EntityPrototypeFilter}, where some properties allow additional values as input compared to the read form.
|
9306
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
9354
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/EntityPrototypeFilter.html Online documentation}
|
9307
9355
|
*/
|
9308
9356
|
export type EntityPrototypeFilterWrite =
|
9309
9357
|
| NameEntityPrototypeFilter
|
@@ -9373,7 +9421,7 @@ declare module "factorio:runtime" {
|
|
9373
9421
|
* Other attributes may be specified depending on `filter`:
|
9374
9422
|
* - `"type"`: {@link TypeSpaceLocationPrototypeFilter}
|
9375
9423
|
* - `"solar-power-in-space"`: {@link SolarPowerInSpaceSpaceLocationPrototypeFilter}
|
9376
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
9424
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/SpaceLocationPrototypeFilter.html Online documentation}
|
9377
9425
|
*/
|
9378
9426
|
export type SpaceLocationPrototypeFilter =
|
9379
9427
|
| TypeSpaceLocationPrototypeFilter
|
@@ -9381,7 +9429,7 @@ declare module "factorio:runtime" {
|
|
9381
9429
|
| OtherSpaceLocationPrototypeFilter
|
9382
9430
|
/**
|
9383
9431
|
* Write form of {@link SpaceLocationPrototypeFilter}, where some properties allow additional values as input compared to the read form.
|
9384
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
9432
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/SpaceLocationPrototypeFilter.html Online documentation}
|
9385
9433
|
*/
|
9386
9434
|
export type SpaceLocationPrototypeFilterWrite =
|
9387
9435
|
| TypeSpaceLocationPrototypeFilter
|
@@ -9569,7 +9617,7 @@ declare module "factorio:runtime" {
|
|
9569
9617
|
* - `"fuel-value"`: {@link FuelValueFluidPrototypeFilter}
|
9570
9618
|
* - `"emissions-multiplier"`: {@link EmissionsMultiplierFluidPrototypeFilter}
|
9571
9619
|
* - `"gas-temperature"`: {@link GasTemperatureFluidPrototypeFilter}
|
9572
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
9620
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/FluidPrototypeFilter.html Online documentation}
|
9573
9621
|
*/
|
9574
9622
|
export type FluidPrototypeFilter =
|
9575
9623
|
| NameFluidPrototypeFilter
|
@@ -9583,7 +9631,7 @@ declare module "factorio:runtime" {
|
|
9583
9631
|
| OtherFluidPrototypeFilter
|
9584
9632
|
/**
|
9585
9633
|
* Write form of {@link FluidPrototypeFilter}, where some properties allow additional values as input compared to the read form.
|
9586
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
9634
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/FluidPrototypeFilter.html Online documentation}
|
9587
9635
|
*/
|
9588
9636
|
export type FluidPrototypeFilterWrite =
|
9589
9637
|
| NameFluidPrototypeFilter
|
@@ -9692,7 +9740,7 @@ declare module "factorio:runtime" {
|
|
9692
9740
|
* - `"name"`: {@link NamePrePlatformMinedEntityEventFilter}
|
9693
9741
|
* - `"ghost_type"`: {@link GhostTypePrePlatformMinedEntityEventFilter}
|
9694
9742
|
* - `"ghost_name"`: {@link GhostNamePrePlatformMinedEntityEventFilter}
|
9695
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
9743
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaPrePlatformMinedEntityEventFilter.html Online documentation}
|
9696
9744
|
*/
|
9697
9745
|
export type LuaPrePlatformMinedEntityEventFilter =
|
9698
9746
|
| TypePrePlatformMinedEntityEventFilter
|
@@ -9797,7 +9845,7 @@ declare module "factorio:runtime" {
|
|
9797
9845
|
* - `"name"`: {@link NameRobotMinedEntityEventFilter}
|
9798
9846
|
* - `"ghost_type"`: {@link GhostTypeRobotMinedEntityEventFilter}
|
9799
9847
|
* - `"ghost_name"`: {@link GhostNameRobotMinedEntityEventFilter}
|
9800
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
9848
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaRobotMinedEntityEventFilter.html Online documentation}
|
9801
9849
|
*/
|
9802
9850
|
export type LuaRobotMinedEntityEventFilter =
|
9803
9851
|
| TypeRobotMinedEntityEventFilter
|
@@ -9902,7 +9950,7 @@ declare module "factorio:runtime" {
|
|
9902
9950
|
* - `"name"`: {@link NameEntityMarkedForUpgradeEventFilter}
|
9903
9951
|
* - `"ghost_type"`: {@link GhostTypeEntityMarkedForUpgradeEventFilter}
|
9904
9952
|
* - `"ghost_name"`: {@link GhostNameEntityMarkedForUpgradeEventFilter}
|
9905
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
9953
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaEntityMarkedForUpgradeEventFilter.html Online documentation}
|
9906
9954
|
*/
|
9907
9955
|
export type LuaEntityMarkedForUpgradeEventFilter =
|
9908
9956
|
| TypeEntityMarkedForUpgradeEventFilter
|
@@ -10007,7 +10055,7 @@ declare module "factorio:runtime" {
|
|
10007
10055
|
* - `"name"`: {@link NamePreGhostUpgradedEventFilter}
|
10008
10056
|
* - `"ghost_type"`: {@link GhostTypePreGhostUpgradedEventFilter}
|
10009
10057
|
* - `"ghost_name"`: {@link GhostNamePreGhostUpgradedEventFilter}
|
10010
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
10058
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaPreGhostUpgradedEventFilter.html Online documentation}
|
10011
10059
|
*/
|
10012
10060
|
export type LuaPreGhostUpgradedEventFilter =
|
10013
10061
|
| TypePreGhostUpgradedEventFilter
|
@@ -10112,7 +10160,7 @@ declare module "factorio:runtime" {
|
|
10112
10160
|
* - `"name"`: {@link NamePlatformMinedEntityEventFilter}
|
10113
10161
|
* - `"ghost_type"`: {@link GhostTypePlatformMinedEntityEventFilter}
|
10114
10162
|
* - `"ghost_name"`: {@link GhostNamePlatformMinedEntityEventFilter}
|
10115
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
10163
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaPlatformMinedEntityEventFilter.html Online documentation}
|
10116
10164
|
*/
|
10117
10165
|
export type LuaPlatformMinedEntityEventFilter =
|
10118
10166
|
| TypePlatformMinedEntityEventFilter
|
@@ -10217,7 +10265,7 @@ declare module "factorio:runtime" {
|
|
10217
10265
|
* - `"name"`: {@link NameScriptRaisedDestroyEventFilter}
|
10218
10266
|
* - `"ghost_type"`: {@link GhostTypeScriptRaisedDestroyEventFilter}
|
10219
10267
|
* - `"ghost_name"`: {@link GhostNameScriptRaisedDestroyEventFilter}
|
10220
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
10268
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaScriptRaisedDestroyEventFilter.html Online documentation}
|
10221
10269
|
*/
|
10222
10270
|
export type LuaScriptRaisedDestroyEventFilter =
|
10223
10271
|
| TypeScriptRaisedDestroyEventFilter
|
@@ -10334,7 +10382,7 @@ declare module "factorio:runtime" {
|
|
10334
10382
|
* - `"ghost_type"`: {@link GhostTypePlayerBuiltEntityEventFilter}
|
10335
10383
|
* - `"ghost_name"`: {@link GhostNamePlayerBuiltEntityEventFilter}
|
10336
10384
|
* - `"force"`: {@link ForcePlayerBuiltEntityEventFilter}
|
10337
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
10385
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaPlayerBuiltEntityEventFilter.html Online documentation}
|
10338
10386
|
*/
|
10339
10387
|
export type LuaPlayerBuiltEntityEventFilter =
|
10340
10388
|
| TypePlayerBuiltEntityEventFilter
|
@@ -10452,7 +10500,7 @@ declare module "factorio:runtime" {
|
|
10452
10500
|
* - `"ghost_type"`: {@link GhostTypePlatformBuiltEntityEventFilter}
|
10453
10501
|
* - `"ghost_name"`: {@link GhostNamePlatformBuiltEntityEventFilter}
|
10454
10502
|
* - `"force"`: {@link ForcePlatformBuiltEntityEventFilter}
|
10455
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
10503
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaPlatformBuiltEntityEventFilter.html Online documentation}
|
10456
10504
|
*/
|
10457
10505
|
export type LuaPlatformBuiltEntityEventFilter =
|
10458
10506
|
| TypePlatformBuiltEntityEventFilter
|
@@ -10558,7 +10606,7 @@ declare module "factorio:runtime" {
|
|
10558
10606
|
* - `"name"`: {@link NamePreGhostDeconstructedEventFilter}
|
10559
10607
|
* - `"ghost_type"`: {@link GhostTypePreGhostDeconstructedEventFilter}
|
10560
10608
|
* - `"ghost_name"`: {@link GhostNamePreGhostDeconstructedEventFilter}
|
10561
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
10609
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaPreGhostDeconstructedEventFilter.html Online documentation}
|
10562
10610
|
*/
|
10563
10611
|
export type LuaPreGhostDeconstructedEventFilter =
|
10564
10612
|
| TypePreGhostDeconstructedEventFilter
|
@@ -10663,7 +10711,7 @@ declare module "factorio:runtime" {
|
|
10663
10711
|
* - `"name"`: {@link NameEntityClonedEventFilter}
|
10664
10712
|
* - `"ghost_type"`: {@link GhostTypeEntityClonedEventFilter}
|
10665
10713
|
* - `"ghost_name"`: {@link GhostNameEntityClonedEventFilter}
|
10666
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
10714
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaEntityClonedEventFilter.html Online documentation}
|
10667
10715
|
*/
|
10668
10716
|
export type LuaEntityClonedEventFilter =
|
10669
10717
|
| TypeEntityClonedEventFilter
|
@@ -10768,7 +10816,7 @@ declare module "factorio:runtime" {
|
|
10768
10816
|
* - `"name"`: {@link NameScriptRaisedTeleportedEventFilter}
|
10769
10817
|
* - `"ghost_type"`: {@link GhostTypeScriptRaisedTeleportedEventFilter}
|
10770
10818
|
* - `"ghost_name"`: {@link GhostNameScriptRaisedTeleportedEventFilter}
|
10771
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
10819
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaScriptRaisedTeleportedEventFilter.html Online documentation}
|
10772
10820
|
*/
|
10773
10821
|
export type LuaScriptRaisedTeleportedEventFilter =
|
10774
10822
|
| TypeScriptRaisedTeleportedEventFilter
|
@@ -10875,7 +10923,7 @@ declare module "factorio:runtime" {
|
|
10875
10923
|
* - `"name"`: {@link NameEntityDeconstructionCancelledEventFilter}
|
10876
10924
|
* - `"ghost_type"`: {@link GhostTypeEntityDeconstructionCancelledEventFilter}
|
10877
10925
|
* - `"ghost_name"`: {@link GhostNameEntityDeconstructionCancelledEventFilter}
|
10878
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
10926
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaEntityDeconstructionCancelledEventFilter.html Online documentation}
|
10879
10927
|
*/
|
10880
10928
|
export type LuaEntityDeconstructionCancelledEventFilter =
|
10881
10929
|
| TypeEntityDeconstructionCancelledEventFilter
|
@@ -10992,7 +11040,7 @@ declare module "factorio:runtime" {
|
|
10992
11040
|
* - `"ghost_type"`: {@link GhostTypeRobotBuiltEntityEventFilter}
|
10993
11041
|
* - `"ghost_name"`: {@link GhostNameRobotBuiltEntityEventFilter}
|
10994
11042
|
* - `"force"`: {@link ForceRobotBuiltEntityEventFilter}
|
10995
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
11043
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaRobotBuiltEntityEventFilter.html Online documentation}
|
10996
11044
|
*/
|
10997
11045
|
export type LuaRobotBuiltEntityEventFilter =
|
10998
11046
|
| TypeRobotBuiltEntityEventFilter
|
@@ -11098,7 +11146,7 @@ declare module "factorio:runtime" {
|
|
11098
11146
|
* - `"name"`: {@link NameScriptRaisedBuiltEventFilter}
|
11099
11147
|
* - `"ghost_type"`: {@link GhostTypeScriptRaisedBuiltEventFilter}
|
11100
11148
|
* - `"ghost_name"`: {@link GhostNameScriptRaisedBuiltEventFilter}
|
11101
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
11149
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaScriptRaisedBuiltEventFilter.html Online documentation}
|
11102
11150
|
*/
|
11103
11151
|
export type LuaScriptRaisedBuiltEventFilter =
|
11104
11152
|
| TypeScriptRaisedBuiltEventFilter
|
@@ -11203,7 +11251,7 @@ declare module "factorio:runtime" {
|
|
11203
11251
|
* - `"name"`: {@link NamePrePlayerMinedEntityEventFilter}
|
11204
11252
|
* - `"ghost_type"`: {@link GhostTypePrePlayerMinedEntityEventFilter}
|
11205
11253
|
* - `"ghost_name"`: {@link GhostNamePrePlayerMinedEntityEventFilter}
|
11206
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
11254
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaPrePlayerMinedEntityEventFilter.html Online documentation}
|
11207
11255
|
*/
|
11208
11256
|
export type LuaPrePlayerMinedEntityEventFilter =
|
11209
11257
|
| TypePrePlayerMinedEntityEventFilter
|
@@ -11308,7 +11356,7 @@ declare module "factorio:runtime" {
|
|
11308
11356
|
* - `"name"`: {@link NamePlayerRepairedEntityEventFilter}
|
11309
11357
|
* - `"ghost_type"`: {@link GhostTypePlayerRepairedEntityEventFilter}
|
11310
11358
|
* - `"ghost_name"`: {@link GhostNamePlayerRepairedEntityEventFilter}
|
11311
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
11359
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaPlayerRepairedEntityEventFilter.html Online documentation}
|
11312
11360
|
*/
|
11313
11361
|
export type LuaPlayerRepairedEntityEventFilter =
|
11314
11362
|
| TypePlayerRepairedEntityEventFilter
|
@@ -11413,7 +11461,7 @@ declare module "factorio:runtime" {
|
|
11413
11461
|
* - `"name"`: {@link NameUpgradeCancelledEventFilter}
|
11414
11462
|
* - `"ghost_type"`: {@link GhostTypeUpgradeCancelledEventFilter}
|
11415
11463
|
* - `"ghost_name"`: {@link GhostNameUpgradeCancelledEventFilter}
|
11416
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
11464
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaUpgradeCancelledEventFilter.html Online documentation}
|
11417
11465
|
*/
|
11418
11466
|
export type LuaUpgradeCancelledEventFilter =
|
11419
11467
|
| TypeUpgradeCancelledEventFilter
|
@@ -11518,7 +11566,7 @@ declare module "factorio:runtime" {
|
|
11518
11566
|
* - `"name"`: {@link NameSectorScannedEventFilter}
|
11519
11567
|
* - `"ghost_type"`: {@link GhostTypeSectorScannedEventFilter}
|
11520
11568
|
* - `"ghost_name"`: {@link GhostNameSectorScannedEventFilter}
|
11521
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
11569
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaSectorScannedEventFilter.html Online documentation}
|
11522
11570
|
*/
|
11523
11571
|
export type LuaSectorScannedEventFilter =
|
11524
11572
|
| TypeSectorScannedEventFilter
|
@@ -11564,7 +11612,7 @@ declare module "factorio:runtime" {
|
|
11564
11612
|
*
|
11565
11613
|
* Other attributes may be specified depending on `filter`:
|
11566
11614
|
* - `"type"`: {@link TypePostEntityDiedEventFilter}
|
11567
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
11615
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaPostEntityDiedEventFilter.html Online documentation}
|
11568
11616
|
*/
|
11569
11617
|
export type LuaPostEntityDiedEventFilter = TypePostEntityDiedEventFilter | OtherPostEntityDiedEventFilter
|
11570
11618
|
/**
|
@@ -11666,7 +11714,7 @@ declare module "factorio:runtime" {
|
|
11666
11714
|
* - `"name"`: {@link NameEntityMarkedForDeconstructionEventFilter}
|
11667
11715
|
* - `"ghost_type"`: {@link GhostTypeEntityMarkedForDeconstructionEventFilter}
|
11668
11716
|
* - `"ghost_name"`: {@link GhostNameEntityMarkedForDeconstructionEventFilter}
|
11669
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
11717
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaEntityMarkedForDeconstructionEventFilter.html Online documentation}
|
11670
11718
|
*/
|
11671
11719
|
export type LuaEntityMarkedForDeconstructionEventFilter =
|
11672
11720
|
| TypeEntityMarkedForDeconstructionEventFilter
|
@@ -11771,7 +11819,7 @@ declare module "factorio:runtime" {
|
|
11771
11819
|
* - `"name"`: {@link NamePlayerMinedEntityEventFilter}
|
11772
11820
|
* - `"ghost_type"`: {@link GhostTypePlayerMinedEntityEventFilter}
|
11773
11821
|
* - `"ghost_name"`: {@link GhostNamePlayerMinedEntityEventFilter}
|
11774
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
11822
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaPlayerMinedEntityEventFilter.html Online documentation}
|
11775
11823
|
*/
|
11776
11824
|
export type LuaPlayerMinedEntityEventFilter =
|
11777
11825
|
| TypePlayerMinedEntityEventFilter
|
@@ -11951,7 +11999,7 @@ declare module "factorio:runtime" {
|
|
11951
11999
|
* - `"final-damage-amount"`: {@link FinalDamageAmountEntityDamagedEventFilter}
|
11952
12000
|
* - `"damage-type"`: {@link DamageTypeEntityDamagedEventFilter}
|
11953
12001
|
* - `"final-health"`: {@link FinalHealthEntityDamagedEventFilter}
|
11954
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
12002
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaEntityDamagedEventFilter.html Online documentation}
|
11955
12003
|
*/
|
11956
12004
|
export type LuaEntityDamagedEventFilter =
|
11957
12005
|
| TypeEntityDamagedEventFilter
|
@@ -11965,7 +12013,7 @@ declare module "factorio:runtime" {
|
|
11965
12013
|
| OtherEntityDamagedEventFilter
|
11966
12014
|
/**
|
11967
12015
|
* Write form of {@link LuaEntityDamagedEventFilter}, where some properties allow additional values as input compared to the read form.
|
11968
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
12016
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaEntityDamagedEventFilter.html Online documentation}
|
11969
12017
|
*/
|
11970
12018
|
export type LuaEntityDamagedEventFilterWrite =
|
11971
12019
|
| TypeEntityDamagedEventFilter
|
@@ -12074,7 +12122,7 @@ declare module "factorio:runtime" {
|
|
12074
12122
|
* - `"name"`: {@link NameScriptRaisedReviveEventFilter}
|
12075
12123
|
* - `"ghost_type"`: {@link GhostTypeScriptRaisedReviveEventFilter}
|
12076
12124
|
* - `"ghost_name"`: {@link GhostNameScriptRaisedReviveEventFilter}
|
12077
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
12125
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaScriptRaisedReviveEventFilter.html Online documentation}
|
12078
12126
|
*/
|
12079
12127
|
export type LuaScriptRaisedReviveEventFilter =
|
12080
12128
|
| TypeScriptRaisedReviveEventFilter
|
@@ -12179,7 +12227,7 @@ declare module "factorio:runtime" {
|
|
12179
12227
|
* - `"name"`: {@link NameEntityDiedEventFilter}
|
12180
12228
|
* - `"ghost_type"`: {@link GhostTypeEntityDiedEventFilter}
|
12181
12229
|
* - `"ghost_name"`: {@link GhostNameEntityDiedEventFilter}
|
12182
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
12230
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaEntityDiedEventFilter.html Online documentation}
|
12183
12231
|
*/
|
12184
12232
|
export type LuaEntityDiedEventFilter =
|
12185
12233
|
| TypeEntityDiedEventFilter
|
@@ -12284,7 +12332,7 @@ declare module "factorio:runtime" {
|
|
12284
12332
|
* - `"name"`: {@link NamePreRobotMinedEntityEventFilter}
|
12285
12333
|
* - `"ghost_type"`: {@link GhostTypePreRobotMinedEntityEventFilter}
|
12286
12334
|
* - `"ghost_name"`: {@link GhostNamePreRobotMinedEntityEventFilter}
|
12287
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
12335
|
+
* @see {@link https://lua-api.factorio.com/2.0.39/concepts/LuaPreRobotMinedEntityEventFilter.html Online documentation}
|
12288
12336
|
*/
|
12289
12337
|
export type LuaPreRobotMinedEntityEventFilter =
|
12290
12338
|
| TypePreRobotMinedEntityEventFilter
|