typed-factorio 3.6.0 → 3.7.1
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/README.md +2 -0
- package/package.json +3 -2
- package/prototype/generated/prototypes.d.ts +2069 -2069
- package/prototype/generated/types.d.ts +2098 -2093
- package/runtime/generated/classes.d.ts +3524 -3524
- package/runtime/generated/concepts.d.ts +284 -284
- package/runtime/generated/defines.d.ts +177 -177
- package/runtime/generated/events.d.ts +202 -201
- package/runtime/generated/global-functions.d.ts +3 -3
- package/runtime/generated/global-objects.d.ts +8 -8
@@ -12,12 +12,12 @@ 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.23/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
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
20
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/ModuleEffectValue.html Online documentation}
|
21
21
|
*/
|
22
22
|
export type ModuleEffectValue = float
|
23
23
|
/**
|
@@ -27,7 +27,7 @@ declare module "factorio:runtime" {
|
|
27
27
|
* speed=-0.15,
|
28
28
|
* productivity=0.06,
|
29
29
|
* pollution=0.075}
|
30
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
30
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/ModuleEffects.html Online documentation}
|
31
31
|
*/
|
32
32
|
export interface ModuleEffects {
|
33
33
|
readonly consumption?: ModuleEffectValue
|
@@ -51,7 +51,7 @@ declare module "factorio:runtime" {
|
|
51
51
|
* - `"<="`: "lesser than or equal to"
|
52
52
|
* - `"≠"`: "not equal to"
|
53
53
|
* - `"!="`: "not equal to"
|
54
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
54
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/ComparatorString.html Online documentation}
|
55
55
|
*/
|
56
56
|
export type ComparatorString = "=" | ">" | "<" | "≥" | ">=" | "≤" | "<=" | "≠" | "!="
|
57
57
|
export type ComparatorStringRead = "=" | ">" | "<" | "≥" | "≤" | "≠"
|
@@ -82,8 +82,8 @@ declare module "factorio:runtime" {
|
|
82
82
|
*
|
83
83
|
* The validity of a SpritePath can be verified at runtime using {@link LuaHelpers#is_valid_sprite_path LuaHelpers::is_valid_sprite_path}.
|
84
84
|
*
|
85
|
-
* {@link https://lua-api.factorio.com/2.0.
|
86
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
85
|
+
* {@link https://lua-api.factorio.com/2.0.23/concepts/SpritePath.html > The supported types are:}
|
86
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/SpritePath.html Online documentation}
|
87
87
|
*/
|
88
88
|
export type SpritePath = (string & { _?: never }) | `${SpriteType}${"/" | "."}${string}`
|
89
89
|
/**
|
@@ -94,14 +94,14 @@ declare module "factorio:runtime" {
|
|
94
94
|
* - {@link FluidID}: Used with fluid production statistics.
|
95
95
|
* - {@link EntityWithQualityID}: Used with electric network, entity build count, and kill count statistics.
|
96
96
|
* - {@link EntityID}: Used with pollution statistics.
|
97
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
97
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/FlowStatisticsID.html Online documentation}
|
98
98
|
*/
|
99
99
|
export type FlowStatisticsID = ItemWithQualityID | FluidID | EntityWithQualityID | EntityID
|
100
100
|
/**
|
101
101
|
* @example
|
102
102
|
* -- Most common collision mask of buildings:
|
103
103
|
* collision_mask = {layers = {item = true, meltable = true, object = true, player = true, water_tile = true, is_object = true, is_lower_object = true}}
|
104
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
104
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/CollisionMask.html Online documentation}
|
105
105
|
*/
|
106
106
|
export interface CollisionMask {
|
107
107
|
/**
|
@@ -229,7 +229,7 @@ declare module "factorio:runtime" {
|
|
229
229
|
* - `"check-box"`
|
230
230
|
* - `"switch"`
|
231
231
|
* - `"label"`
|
232
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
232
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/SimulationWidgetType.html Online documentation}
|
233
233
|
*/
|
234
234
|
export type SimulationWidgetType =
|
235
235
|
| "signal-id"
|
@@ -351,7 +351,7 @@ declare module "factorio:runtime" {
|
|
351
351
|
* - `"any-goal-accessible"`: The method will return {@link TrainPathFinderOneGoalResult}.
|
352
352
|
* - `"all-goals-accessible"`: The method will return {@link TrainPathAllGoalsResult}.
|
353
353
|
* - `"all-goals-penalties"`: The method will return {@link TrainPathAllGoalsResult} with `penalties`.
|
354
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
354
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/TrainPathRequestType.html Online documentation}
|
355
355
|
*/
|
356
356
|
export type TrainPathRequestType = "path" | "any-goal-accessible" | "all-goals-accessible" | "all-goals-penalties"
|
357
357
|
/**
|
@@ -360,7 +360,7 @@ declare module "factorio:runtime" {
|
|
360
360
|
* - {@link RailEndGoal}
|
361
361
|
* - {@link LuaRailEnd}
|
362
362
|
* - {@link LuaEntity}: Only if it points at train-stop that is connected to a rail.
|
363
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
363
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/TrainPathFinderGoal.html Online documentation}
|
364
364
|
*/
|
365
365
|
export type TrainPathFinderGoal = TrainStopGoal | RailEndGoal | LuaRailEnd | LuaEntity
|
366
366
|
export interface TrainStopGoal {
|
@@ -465,7 +465,7 @@ declare module "factorio:runtime" {
|
|
465
465
|
}
|
466
466
|
/**
|
467
467
|
* A single pipe connection for a given fluidbox.
|
468
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
468
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/PipeConnection.html Online documentation}
|
469
469
|
*/
|
470
470
|
export interface PipeConnection {
|
471
471
|
readonly flow_direction: "input" | "output" | "input-output"
|
@@ -528,7 +528,7 @@ declare module "factorio:runtime" {
|
|
528
528
|
* - {@link LuaEntityDiedEventFilter}
|
529
529
|
* - {@link LuaPreRobotMinedEntityEventFilter}
|
530
530
|
* @see EventFilterWrite
|
531
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
531
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/EventFilter.html Online documentation}
|
532
532
|
*/
|
533
533
|
export type EventFilter =
|
534
534
|
| LuaPrePlatformMinedEntityEventFilter[]
|
@@ -558,7 +558,7 @@ declare module "factorio:runtime" {
|
|
558
558
|
| LuaPreRobotMinedEntityEventFilter[]
|
559
559
|
/**
|
560
560
|
* Write form of {@link EventFilter}, where some properties allow additional values as input compared to the read form.
|
561
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
561
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/EventFilter.html Online documentation}
|
562
562
|
*/
|
563
563
|
export type EventFilterWrite =
|
564
564
|
| readonly LuaPrePlatformMinedEntityEventFilter[]
|
@@ -608,7 +608,7 @@ declare module "factorio:runtime" {
|
|
608
608
|
* - {@link LuaCommandable}: Target type {@link defines.target_type.commandable commandable}; `useful_id` {@link LuaCommandable#unique_id LuaCommandable::unique_id}
|
609
609
|
* - {@link LuaCustomChartTag}: Target type {@link defines.target_type.custom_chart_tag custom_chart_tag}; `useful_id` {@link LuaCustomChartTag#tag_number LuaCustomChartTag::tag_number}
|
610
610
|
* - {@link LuaGuiElement}: Target type {@link defines.target_type.gui_element gui_element}; `useful_id` {@link LuaGuiElement#index LuaGuiElement::index}
|
611
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
611
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/RegistrationTarget.html Online documentation}
|
612
612
|
*/
|
613
613
|
export type RegistrationTarget =
|
614
614
|
| LuaEntity
|
@@ -809,7 +809,7 @@ declare module "factorio:runtime" {
|
|
809
809
|
* - `"wire-removed"`: {@link WireRemovedUndoRedoAction}
|
810
810
|
* - `"rotated-entity"`: {@link RotatedEntityUndoRedoAction}
|
811
811
|
* - `"copy-entity-settings"`: {@link CopyEntitySettingsUndoRedoAction}
|
812
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
812
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/UndoRedoAction.html Online documentation}
|
813
813
|
*/
|
814
814
|
export type UndoRedoAction =
|
815
815
|
| BuiltEntityUndoRedoAction
|
@@ -841,7 +841,7 @@ declare module "factorio:runtime" {
|
|
841
841
|
* - `"weapon"`
|
842
842
|
* - `"explosion"`
|
843
843
|
* - `"enemy"`
|
844
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
844
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/SoundType.html Online documentation}
|
845
845
|
*/
|
846
846
|
export type SoundType =
|
847
847
|
| "game-effect"
|
@@ -924,7 +924,7 @@ declare module "factorio:runtime" {
|
|
924
924
|
* - `"controllable-remove"`
|
925
925
|
* - `"entity-ghost"`: Selects entities that are `entity-ghost`s.
|
926
926
|
* - `"tile-ghost"`: Selects entities that are `tile-ghost`s.
|
927
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
927
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/SelectionModeFlags.html Online documentation}
|
928
928
|
*/
|
929
929
|
export interface SelectionModeFlags {
|
930
930
|
/**
|
@@ -1043,7 +1043,7 @@ declare module "factorio:runtime" {
|
|
1043
1043
|
* A set of flags. Active flags are in the dictionary as `true`, while inactive flags aren't present at all.
|
1044
1044
|
*
|
1045
1045
|
* By default, none of these flags are set.
|
1046
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1046
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/ItemPrototypeFlags.html Online documentation}
|
1047
1047
|
*/
|
1048
1048
|
export type ItemPrototypeFlags = {
|
1049
1049
|
readonly [T in ItemPrototypeFlag]?: true
|
@@ -1064,7 +1064,7 @@ declare module "factorio:runtime" {
|
|
1064
1064
|
* - `"spawnable"`: Allows the item to be spawned by a quickbar shortcut or custom input.
|
1065
1065
|
* - `"spoil-result"`
|
1066
1066
|
* - `"ignore-spoil-time-modifier"`: Controls whether the spoil time ignores the spoil time modifier in the {@link DifficultySettings}.
|
1067
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1067
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/ItemPrototypeFlag.html Online documentation}
|
1068
1068
|
*/
|
1069
1069
|
export type ItemPrototypeFlag =
|
1070
1070
|
| "draw-logistic-overlay"
|
@@ -1084,7 +1084,7 @@ declare module "factorio:runtime" {
|
|
1084
1084
|
* - `"none"`
|
1085
1085
|
* - `"whitelist"`
|
1086
1086
|
* - `"blacklist"`
|
1087
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1087
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/PrototypeFilterMode.html Online documentation}
|
1088
1088
|
*/
|
1089
1089
|
export type PrototypeFilterMode = "none" | "whitelist" | "blacklist"
|
1090
1090
|
export interface PipeConnectionDefinition {
|
@@ -1108,7 +1108,7 @@ declare module "factorio:runtime" {
|
|
1108
1108
|
* The name of a {@link LuaCollisionLayerPrototype}.
|
1109
1109
|
* @example
|
1110
1110
|
* "is_lower_object"
|
1111
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1111
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/CollisionLayerID.html Online documentation}
|
1112
1112
|
*/
|
1113
1113
|
export type CollisionLayerID = string
|
1114
1114
|
export interface ItemIDFilter {
|
@@ -1158,7 +1158,7 @@ declare module "factorio:runtime" {
|
|
1158
1158
|
* - {@link SpaceLocationPrototypeFilter}
|
1159
1159
|
* - {@link FluidPrototypeFilter}
|
1160
1160
|
* @see PrototypeFilterWrite
|
1161
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1161
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/PrototypeFilter.html Online documentation}
|
1162
1162
|
*/
|
1163
1163
|
export type PrototypeFilter =
|
1164
1164
|
| ModSettingPrototypeFilter[]
|
@@ -1175,7 +1175,7 @@ declare module "factorio:runtime" {
|
|
1175
1175
|
| FluidPrototypeFilter[]
|
1176
1176
|
/**
|
1177
1177
|
* Write form of {@link PrototypeFilter}, where some properties allow additional values as input compared to the read form.
|
1178
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1178
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/PrototypeFilter.html Online documentation}
|
1179
1179
|
*/
|
1180
1180
|
export type PrototypeFilterWrite =
|
1181
1181
|
| readonly ModSettingPrototypeFilter[]
|
@@ -1192,7 +1192,7 @@ declare module "factorio:runtime" {
|
|
1192
1192
|
| readonly FluidPrototypeFilterWrite[]
|
1193
1193
|
/**
|
1194
1194
|
* @see DisplayPanelMessageDefinitionWrite
|
1195
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1195
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/DisplayPanelMessageDefinition.html Online documentation}
|
1196
1196
|
*/
|
1197
1197
|
export interface DisplayPanelMessageDefinition {
|
1198
1198
|
/**
|
@@ -1210,7 +1210,7 @@ declare module "factorio:runtime" {
|
|
1210
1210
|
}
|
1211
1211
|
/**
|
1212
1212
|
* Write form of {@link DisplayPanelMessageDefinition}, where some properties allow additional values as input compared to the read form.
|
1213
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1213
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/DisplayPanelMessageDefinition.html Online documentation}
|
1214
1214
|
*/
|
1215
1215
|
export interface DisplayPanelMessageDefinitionWrite {
|
1216
1216
|
/**
|
@@ -1236,7 +1236,7 @@ declare module "factorio:runtime" {
|
|
1236
1236
|
* - `"space-location"`
|
1237
1237
|
* - `"asteroid-chunk"`
|
1238
1238
|
* - `"quality"`
|
1239
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1239
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/SignalIDType.html Online documentation}
|
1240
1240
|
*/
|
1241
1241
|
export type SignalIDType =
|
1242
1242
|
| "item"
|
@@ -1437,7 +1437,7 @@ declare module "factorio:runtime" {
|
|
1437
1437
|
* - `"play-next-track"`
|
1438
1438
|
* - `"play-previous-track"`
|
1439
1439
|
* - `"pause-resume-music"`
|
1440
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1440
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/LinkedGameControl.html Online documentation}
|
1441
1441
|
*/
|
1442
1442
|
export type LinkedGameControl =
|
1443
1443
|
| "move-up"
|
@@ -1688,7 +1688,7 @@ declare module "factorio:runtime" {
|
|
1688
1688
|
* - `"create-ghost-on-entity-death"`
|
1689
1689
|
* - `"belt-stack-size-bonus"`
|
1690
1690
|
* - `"vehicle-logistics"`
|
1691
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1691
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/ModifierType.html Online documentation}
|
1692
1692
|
*/
|
1693
1693
|
export type ModifierType =
|
1694
1694
|
| "inserter-stack-size-bonus"
|
@@ -1807,7 +1807,7 @@ declare module "factorio:runtime" {
|
|
1807
1807
|
* - `"capture-spawner"`: {@link CaptureSpawnerResearchTrigger}
|
1808
1808
|
* - `"build-entity"`: {@link BuildEntityResearchTrigger}
|
1809
1809
|
* - `"send-item-to-orbit"`: {@link SendItemToOrbitResearchTrigger}
|
1810
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1810
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/ResearchTrigger.html Online documentation}
|
1811
1811
|
*/
|
1812
1812
|
export type ResearchTrigger =
|
1813
1813
|
| CraftItemResearchTrigger
|
@@ -1821,7 +1821,7 @@ declare module "factorio:runtime" {
|
|
1821
1821
|
* A set of flags. Active flags are in the dictionary as `true`, while inactive flags aren't present at all.
|
1822
1822
|
*
|
1823
1823
|
* By default, none of these flags are set.
|
1824
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1824
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/EntityPrototypeFlags.html Online documentation}
|
1825
1825
|
*/
|
1826
1826
|
export type EntityPrototypeFlags = {
|
1827
1827
|
readonly [T in EntityPrototypeFlag]?: true
|
@@ -1856,7 +1856,7 @@ declare module "factorio:runtime" {
|
|
1856
1856
|
* - `"building-direction-16-way"`
|
1857
1857
|
* - `"snap-to-rail-support-spot"`
|
1858
1858
|
* - `"not-in-made-in"`: Prevents the entity from being shown in the "made in" list in recipe tooltips.
|
1859
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1859
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/EntityPrototypeFlag.html Online documentation}
|
1860
1860
|
*/
|
1861
1861
|
export type EntityPrototypeFlag =
|
1862
1862
|
| "not-rotatable"
|
@@ -1926,7 +1926,7 @@ declare module "factorio:runtime" {
|
|
1926
1926
|
* - `"local"`: The sound can be heard within the audible range around the speaker.
|
1927
1927
|
* - `"surface"`: The sound can be heard anywhere on the speaker's surface.
|
1928
1928
|
* - `"global"`: The sound can be heard everywhere.
|
1929
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1929
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/ProgrammableSpeakerPlaybackMode.html Online documentation}
|
1930
1930
|
*/
|
1931
1931
|
export type ProgrammableSpeakerPlaybackMode = "local" | "surface" | "global"
|
1932
1932
|
/**
|
@@ -1951,7 +1951,7 @@ declare module "factorio:runtime" {
|
|
1951
1951
|
* - `"none-to-south"`
|
1952
1952
|
* - `"south-to-none"`
|
1953
1953
|
* - `"none-to-north"`
|
1954
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1954
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/CliffOrientation.html Online documentation}
|
1955
1955
|
*/
|
1956
1956
|
export type CliffOrientation =
|
1957
1957
|
| "west-to-east"
|
@@ -1977,7 +1977,7 @@ declare module "factorio:runtime" {
|
|
1977
1977
|
/**
|
1978
1978
|
* Defines an item type that a blueprint entity will request.
|
1979
1979
|
* @see BlueprintInsertPlanWrite
|
1980
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1980
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/BlueprintInsertPlan.html Online documentation}
|
1981
1981
|
*/
|
1982
1982
|
export interface BlueprintInsertPlan {
|
1983
1983
|
/**
|
@@ -1991,7 +1991,7 @@ declare module "factorio:runtime" {
|
|
1991
1991
|
}
|
1992
1992
|
/**
|
1993
1993
|
* Write form of {@link BlueprintInsertPlan}, where some properties allow additional values as input compared to the read form.
|
1994
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
1994
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/BlueprintInsertPlan.html Online documentation}
|
1995
1995
|
*/
|
1996
1996
|
export interface BlueprintInsertPlanWrite {
|
1997
1997
|
/**
|
@@ -2019,7 +2019,7 @@ declare module "factorio:runtime" {
|
|
2019
2019
|
}
|
2020
2020
|
/**
|
2021
2021
|
* A single offer on a market entity.
|
2022
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2022
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/Offer.html Online documentation}
|
2023
2023
|
*/
|
2024
2024
|
export interface Offer {
|
2025
2025
|
/**
|
@@ -2034,7 +2034,7 @@ declare module "factorio:runtime" {
|
|
2034
2034
|
/**
|
2035
2035
|
* An item filter may be specified in two ways, either as a string which is an item prototype name or as a table.
|
2036
2036
|
* @see ItemFilterWrite
|
2037
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2037
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/ItemFilter.html Online documentation}
|
2038
2038
|
*/
|
2039
2039
|
export type ItemFilter =
|
2040
2040
|
| {
|
@@ -2054,7 +2054,7 @@ declare module "factorio:runtime" {
|
|
2054
2054
|
| string
|
2055
2055
|
/**
|
2056
2056
|
* Write form of {@link ItemFilter}, where some properties allow additional values as input compared to the read form.
|
2057
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2057
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/ItemFilter.html Online documentation}
|
2058
2058
|
*/
|
2059
2059
|
export type ItemFilterWrite =
|
2060
2060
|
| {
|
@@ -2074,7 +2074,7 @@ declare module "factorio:runtime" {
|
|
2074
2074
|
| string
|
2075
2075
|
/**
|
2076
2076
|
* @see ScheduleRecordWrite
|
2077
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2077
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/ScheduleRecord.html Online documentation}
|
2078
2078
|
*/
|
2079
2079
|
export interface ScheduleRecord {
|
2080
2080
|
/**
|
@@ -2097,7 +2097,7 @@ declare module "factorio:runtime" {
|
|
2097
2097
|
}
|
2098
2098
|
/**
|
2099
2099
|
* Write form of {@link ScheduleRecord}, where some properties allow additional values as input compared to the read form.
|
2100
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2100
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/ScheduleRecord.html Online documentation}
|
2101
2101
|
*/
|
2102
2102
|
export interface ScheduleRecordWrite {
|
2103
2103
|
/**
|
@@ -2183,7 +2183,7 @@ declare module "factorio:runtime" {
|
|
2183
2183
|
* - `"position"`: {@link PositionGuiArrowSpecification}
|
2184
2184
|
* - `"crafting_queue"`: {@link CraftingQueueGuiArrowSpecification}
|
2185
2185
|
* - `"item_stack"`: {@link ItemStackGuiArrowSpecification}
|
2186
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2186
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/GuiArrowSpecification.html Online documentation}
|
2187
2187
|
*/
|
2188
2188
|
export type GuiArrowSpecification =
|
2189
2189
|
| EntityGuiArrowSpecification
|
@@ -2196,7 +2196,7 @@ declare module "factorio:runtime" {
|
|
2196
2196
|
*
|
2197
2197
|
* If this is specified as a three-element array then the array items are x, y and z, in that order.
|
2198
2198
|
* @see Vector3DArray
|
2199
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2199
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/Vector3D.html Online documentation}
|
2200
2200
|
*/
|
2201
2201
|
export interface Vector3D {
|
2202
2202
|
readonly x: float
|
@@ -2206,7 +2206,7 @@ declare module "factorio:runtime" {
|
|
2206
2206
|
/**
|
2207
2207
|
* Array form of {@link Vector3D}.
|
2208
2208
|
* @see Vector3D
|
2209
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2209
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/Vector3D.html Online documentation}
|
2210
2210
|
*/
|
2211
2211
|
export type Vector3DArray = readonly [float, float, float]
|
2212
2212
|
export interface ItemWithQualityCounts {
|
@@ -2239,7 +2239,7 @@ declare module "factorio:runtime" {
|
|
2239
2239
|
}
|
2240
2240
|
/**
|
2241
2241
|
* @see TrainScheduleWrite
|
2242
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2242
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/TrainSchedule.html Online documentation}
|
2243
2243
|
*/
|
2244
2244
|
export interface TrainSchedule {
|
2245
2245
|
/**
|
@@ -2250,7 +2250,7 @@ declare module "factorio:runtime" {
|
|
2250
2250
|
}
|
2251
2251
|
/**
|
2252
2252
|
* Write form of {@link TrainSchedule}, where some properties allow additional values as input compared to the read form.
|
2253
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2253
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/TrainSchedule.html Online documentation}
|
2254
2254
|
*/
|
2255
2255
|
export interface TrainScheduleWrite {
|
2256
2256
|
/**
|
@@ -2261,7 +2261,7 @@ declare module "factorio:runtime" {
|
|
2261
2261
|
}
|
2262
2262
|
/**
|
2263
2263
|
* @see PlatformScheduleWrite
|
2264
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2264
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/PlatformSchedule.html Online documentation}
|
2265
2265
|
*/
|
2266
2266
|
export interface PlatformSchedule {
|
2267
2267
|
/**
|
@@ -2272,7 +2272,7 @@ declare module "factorio:runtime" {
|
|
2272
2272
|
}
|
2273
2273
|
/**
|
2274
2274
|
* Write form of {@link PlatformSchedule}, where some properties allow additional values as input compared to the read form.
|
2275
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2275
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/PlatformSchedule.html Online documentation}
|
2276
2276
|
*/
|
2277
2277
|
export interface PlatformScheduleWrite {
|
2278
2278
|
/**
|
@@ -2289,7 +2289,7 @@ declare module "factorio:runtime" {
|
|
2289
2289
|
}
|
2290
2290
|
/**
|
2291
2291
|
* A recipe prototype with optional quality specification.
|
2292
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2292
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/RecipeIDAndQualityIDPair.html Online documentation}
|
2293
2293
|
*/
|
2294
2294
|
export interface RecipeIDAndQualityIDPair {
|
2295
2295
|
/**
|
@@ -2338,7 +2338,7 @@ declare module "factorio:runtime" {
|
|
2338
2338
|
* - `string`: Name of the force, same as {@link LuaForce#name LuaForce::name}.
|
2339
2339
|
* - {@link uint8}: Index of the force, same as {@link LuaForce#index LuaForce::index}.
|
2340
2340
|
* - {@link LuaForce}: A reference to {@link LuaForce} may be passed directly.
|
2341
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2341
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/ForceID.html Online documentation}
|
2342
2342
|
*/
|
2343
2343
|
export type ForceID = string | uint8 | LuaForce
|
2344
2344
|
/**
|
@@ -2348,7 +2348,7 @@ declare module "factorio:runtime" {
|
|
2348
2348
|
* - `string`: The fluid name.
|
2349
2349
|
* - {@link LuaFluidPrototype}: The fluid prototype.
|
2350
2350
|
* - {@link Fluid}: The fluid.
|
2351
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2351
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/FluidID.html Online documentation}
|
2352
2352
|
*/
|
2353
2353
|
export type FluidID = string | LuaFluidPrototype | Fluid
|
2354
2354
|
/**
|
@@ -2359,12 +2359,12 @@ declare module "factorio:runtime" {
|
|
2359
2359
|
* - {@link LuaEntityPrototype}: The entity prototype. Normal quality will be used.
|
2360
2360
|
* - `string`: The prototype name. Normal quality will be used.
|
2361
2361
|
* - {@link EntityIDAndQualityIDPair}: A table of entity prototype and quality.
|
2362
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2362
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/EntityWithQualityID.html Online documentation}
|
2363
2363
|
*/
|
2364
2364
|
export type EntityWithQualityID = LuaEntity | LuaEntityPrototype | string | EntityIDAndQualityIDPair
|
2365
2365
|
/**
|
2366
2366
|
* An entity prototype with optional quality specification.
|
2367
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2367
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/EntityIDAndQualityIDPair.html Online documentation}
|
2368
2368
|
*/
|
2369
2369
|
export interface EntityIDAndQualityIDPair {
|
2370
2370
|
/**
|
@@ -2384,13 +2384,13 @@ declare module "factorio:runtime" {
|
|
2384
2384
|
* - {@link LuaItemPrototype}: The item prototype. Normal quality will be used.
|
2385
2385
|
* - `string`: The prototype name. Normal quality will be used.
|
2386
2386
|
* - `ItemIDAndQualityIDPairWrite`: A table of entity prototype and quality.
|
2387
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2387
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/ItemWithQualityID.html Online documentation}
|
2388
2388
|
*/
|
2389
2389
|
export type ItemWithQualityID = LuaItemStack | LuaItemPrototype | string | ItemIDAndQualityIDPairWrite
|
2390
2390
|
/**
|
2391
2391
|
* An item prototype with optional quality specification.
|
2392
2392
|
* @see ItemIDAndQualityIDPairWrite
|
2393
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2393
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/ItemIDAndQualityIDPair.html Online documentation}
|
2394
2394
|
*/
|
2395
2395
|
export interface ItemIDAndQualityIDPair {
|
2396
2396
|
/**
|
@@ -2404,7 +2404,7 @@ declare module "factorio:runtime" {
|
|
2404
2404
|
}
|
2405
2405
|
/**
|
2406
2406
|
* Write form of {@link ItemIDAndQualityIDPair}, where some properties allow additional values as input compared to the read form.
|
2407
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2407
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/ItemIDAndQualityIDPair.html Online documentation}
|
2408
2408
|
*/
|
2409
2409
|
export interface ItemIDAndQualityIDPairWrite {
|
2410
2410
|
/**
|
@@ -2424,7 +2424,7 @@ declare module "factorio:runtime" {
|
|
2424
2424
|
* - {@link LuaItemStack}: Non empty item stack.
|
2425
2425
|
* - {@link LuaItem}: The item.
|
2426
2426
|
* - `string`: The prototype name.
|
2427
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2427
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/ItemID.html Online documentation}
|
2428
2428
|
*/
|
2429
2429
|
export type ItemID = LuaItemPrototype | LuaItemStack | LuaItem | string
|
2430
2430
|
/**
|
@@ -2434,7 +2434,7 @@ declare module "factorio:runtime" {
|
|
2434
2434
|
* - {@link LuaEntityPrototype}: The entity prototype.
|
2435
2435
|
* - {@link LuaEntity}: The entity.
|
2436
2436
|
* - `string`: The prototype name.
|
2437
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2437
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/EntityID.html Online documentation}
|
2438
2438
|
*/
|
2439
2439
|
export type EntityID = LuaEntityPrototype | LuaEntity | string
|
2440
2440
|
/**
|
@@ -2444,7 +2444,7 @@ declare module "factorio:runtime" {
|
|
2444
2444
|
* - {@link LuaTechnologyPrototype}: The technology prototype.
|
2445
2445
|
* - {@link LuaTechnology}: Instance of the technology.
|
2446
2446
|
* - `string`: The prototype name.
|
2447
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2447
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/TechnologyID.html Online documentation}
|
2448
2448
|
*/
|
2449
2449
|
export type TechnologyID = LuaTechnologyPrototype | LuaTechnology | string
|
2450
2450
|
/**
|
@@ -2453,7 +2453,7 @@ declare module "factorio:runtime" {
|
|
2453
2453
|
* ## Union members
|
2454
2454
|
* - {@link LuaParticlePrototype}: The particle prototype.
|
2455
2455
|
* - `string`: The prototype name.
|
2456
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2456
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/ParticleID.html Online documentation}
|
2457
2457
|
*/
|
2458
2458
|
export type ParticleID = LuaParticlePrototype | string
|
2459
2459
|
/**
|
@@ -2462,7 +2462,7 @@ declare module "factorio:runtime" {
|
|
2462
2462
|
* ## Union members
|
2463
2463
|
* - {@link LuaDamagePrototype}: The damage type prototype.
|
2464
2464
|
* - `string`: The prototype name.
|
2465
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2465
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/DamageTypeID.html Online documentation}
|
2466
2466
|
*/
|
2467
2467
|
export type DamageTypeID = LuaDamagePrototype | string
|
2468
2468
|
/**
|
@@ -2471,7 +2471,7 @@ declare module "factorio:runtime" {
|
|
2471
2471
|
* ## Union members
|
2472
2472
|
* - {@link LuaTrivialSmokePrototype}: The trivial smoke prototype.
|
2473
2473
|
* - `string`: The prototype name.
|
2474
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2474
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/TrivialSmokeID.html Online documentation}
|
2475
2475
|
*/
|
2476
2476
|
export type TrivialSmokeID = LuaTrivialSmokePrototype | string
|
2477
2477
|
/**
|
@@ -2483,7 +2483,7 @@ declare module "factorio:runtime" {
|
|
2483
2483
|
* - `"left"`
|
2484
2484
|
* - `"right"`
|
2485
2485
|
* - `"center"`
|
2486
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2486
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/TextAlign.html Online documentation}
|
2487
2487
|
*/
|
2488
2488
|
export type TextAlign = "left" | "right" | "center"
|
2489
2489
|
/**
|
@@ -2496,7 +2496,7 @@ declare module "factorio:runtime" {
|
|
2496
2496
|
* - `"middle"`
|
2497
2497
|
* - `"baseline"`
|
2498
2498
|
* - `"bottom"`
|
2499
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2499
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/VerticalTextAlign.html Online documentation}
|
2500
2500
|
*/
|
2501
2501
|
export type VerticalTextAlign = "top" | "middle" | "baseline" | "bottom"
|
2502
2502
|
/**
|
@@ -2505,7 +2505,7 @@ declare module "factorio:runtime" {
|
|
2505
2505
|
* ## Union members
|
2506
2506
|
* - {@link LuaQualityPrototype}: The quality prototype.
|
2507
2507
|
* - `string`: The prototype name.
|
2508
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2508
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/QualityID.html Online documentation}
|
2509
2509
|
*/
|
2510
2510
|
export type QualityID = LuaQualityPrototype | string
|
2511
2511
|
/**
|
@@ -2515,7 +2515,7 @@ declare module "factorio:runtime" {
|
|
2515
2515
|
* - {@link LuaRecipePrototype}: By recipe prototype.
|
2516
2516
|
* - {@link LuaRecipe}: By instance of recipe.
|
2517
2517
|
* - `string`: By name of the recipe prototype.
|
2518
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2518
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/RecipeID.html Online documentation}
|
2519
2519
|
*/
|
2520
2520
|
export type RecipeID = LuaRecipePrototype | LuaRecipe | string
|
2521
2521
|
/**
|
@@ -2525,7 +2525,7 @@ declare module "factorio:runtime" {
|
|
2525
2525
|
* - {@link LuaTilePrototype}: By tile prototype.
|
2526
2526
|
* - {@link LuaTile}: By instance of tile.
|
2527
2527
|
* - `string`: By name of the tile prototype.
|
2528
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2528
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/TileID.html Online documentation}
|
2529
2529
|
*/
|
2530
2530
|
export type TileID = LuaTilePrototype | LuaTile | string
|
2531
2531
|
export interface Fluid {
|
@@ -2549,7 +2549,7 @@ declare module "factorio:runtime" {
|
|
2549
2549
|
* - {@link LuaEquipmentPrototype}: The equipment prototype.
|
2550
2550
|
* - {@link LuaEquipment}: The equipment.
|
2551
2551
|
* - `string`: The prototype name.
|
2552
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2552
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/EquipmentID.html Online documentation}
|
2553
2553
|
*/
|
2554
2554
|
export type EquipmentID = LuaEquipmentPrototype | LuaEquipment | string
|
2555
2555
|
/**
|
@@ -2560,12 +2560,12 @@ declare module "factorio:runtime" {
|
|
2560
2560
|
* - {@link LuaEquipment}: The equipment. Both prototype and quality of the provided equipment will be used.
|
2561
2561
|
* - `string`: The prototype name. Normal quality will be used.
|
2562
2562
|
* - {@link EquipmentIDAndQualityIDPair}: A table of equipment prototype and quality.
|
2563
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2563
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/EquipmentWithQualityID.html Online documentation}
|
2564
2564
|
*/
|
2565
2565
|
export type EquipmentWithQualityID = LuaEquipmentPrototype | LuaEquipment | string | EquipmentIDAndQualityIDPair
|
2566
2566
|
/**
|
2567
2567
|
* An equipment prototype with optional quality specification.
|
2568
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2568
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/EquipmentIDAndQualityIDPair.html Online documentation}
|
2569
2569
|
*/
|
2570
2570
|
export interface EquipmentIDAndQualityIDPair {
|
2571
2571
|
/**
|
@@ -2586,7 +2586,7 @@ declare module "factorio:runtime" {
|
|
2586
2586
|
* @example
|
2587
2587
|
* -- Shorthand
|
2588
2588
|
* {{-2, -3}, {5, 8}}
|
2589
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2589
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/BoundingBox.html Online documentation}
|
2590
2590
|
*/
|
2591
2591
|
export interface BoundingBox {
|
2592
2592
|
readonly left_top: MapPosition
|
@@ -2596,7 +2596,7 @@ declare module "factorio:runtime" {
|
|
2596
2596
|
/**
|
2597
2597
|
* Array form of {@link BoundingBox}.
|
2598
2598
|
* @see BoundingBox
|
2599
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2599
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/BoundingBox.html Online documentation}
|
2600
2600
|
*/
|
2601
2601
|
export type BoundingBoxArray = readonly [MapPosition | MapPositionArray, MapPosition | MapPositionArray]
|
2602
2602
|
export interface BoundingBoxWrite {
|
@@ -2609,7 +2609,7 @@ declare module "factorio:runtime" {
|
|
2609
2609
|
*
|
2610
2610
|
* ## Union members
|
2611
2611
|
* - {@link LuaSpacePlatform}
|
2612
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2612
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/SpacePlatformIdentification.html Online documentation}
|
2613
2613
|
*/
|
2614
2614
|
export type SpacePlatformIdentification = LuaSpacePlatform
|
2615
2615
|
/**
|
@@ -2619,12 +2619,12 @@ declare module "factorio:runtime" {
|
|
2619
2619
|
* - {@link LuaForce}[]: Array of many forces.
|
2620
2620
|
* - {@link LuaForce}: A single force.
|
2621
2621
|
* @see ForceSetWrite
|
2622
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2622
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/ForceSet.html Online documentation}
|
2623
2623
|
*/
|
2624
2624
|
export type ForceSet = LuaForce[] | LuaForce
|
2625
2625
|
/**
|
2626
2626
|
* Write form of {@link ForceSet}, where some properties allow additional values as input compared to the read form.
|
2627
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2627
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/ForceSet.html Online documentation}
|
2628
2628
|
*/
|
2629
2629
|
export type ForceSetWrite = readonly ForceID[] | ForceID
|
2630
2630
|
/**
|
@@ -2633,7 +2633,7 @@ declare module "factorio:runtime" {
|
|
2633
2633
|
* ## Union members
|
2634
2634
|
* - {@link LuaDecorativePrototype}: The decorative prototype.
|
2635
2635
|
* - `string`: The prototype name.
|
2636
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2636
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/DecorativeID.html Online documentation}
|
2637
2637
|
*/
|
2638
2638
|
export type DecorativeID = LuaDecorativePrototype | string
|
2639
2639
|
/**
|
@@ -2642,7 +2642,7 @@ declare module "factorio:runtime" {
|
|
2642
2642
|
* ## Union members
|
2643
2643
|
* - {@link LuaAsteroidChunkPrototype}: The asteroid chunk prototype.
|
2644
2644
|
* - `string`: The prototype name.
|
2645
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2645
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/AsteroidChunkID.html Online documentation}
|
2646
2646
|
*/
|
2647
2647
|
export type AsteroidChunkID = LuaAsteroidChunkPrototype | string
|
2648
2648
|
/**
|
@@ -2651,13 +2651,13 @@ declare module "factorio:runtime" {
|
|
2651
2651
|
* ## Union members
|
2652
2652
|
* - {@link LuaSpaceLocationPrototype}: The space location prototype.
|
2653
2653
|
* - `string`: The prototype name.
|
2654
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2654
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/SpaceLocationID.html Online documentation}
|
2655
2655
|
*/
|
2656
2656
|
export type SpaceLocationID = LuaSpaceLocationPrototype | string
|
2657
2657
|
/**
|
2658
2658
|
* A signal filter may be specified in two ways, either as a string which is a virtual signal name or item prototype name or as a table.
|
2659
2659
|
* @see SignalFilterWrite
|
2660
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2660
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/SignalFilter.html Online documentation}
|
2661
2661
|
*/
|
2662
2662
|
export type SignalFilter =
|
2663
2663
|
| {
|
@@ -2681,7 +2681,7 @@ declare module "factorio:runtime" {
|
|
2681
2681
|
| string
|
2682
2682
|
/**
|
2683
2683
|
* Write form of {@link SignalFilter}, where some properties allow additional values as input compared to the read form.
|
2684
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2684
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/SignalFilter.html Online documentation}
|
2685
2685
|
*/
|
2686
2686
|
export type SignalFilterWrite =
|
2687
2687
|
| {
|
@@ -2705,7 +2705,7 @@ declare module "factorio:runtime" {
|
|
2705
2705
|
| string
|
2706
2706
|
/**
|
2707
2707
|
* @see LogisticFilterWrite
|
2708
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2708
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/LogisticFilter.html Online documentation}
|
2709
2709
|
*/
|
2710
2710
|
export interface LogisticFilter {
|
2711
2711
|
/**
|
@@ -2731,7 +2731,7 @@ declare module "factorio:runtime" {
|
|
2731
2731
|
}
|
2732
2732
|
/**
|
2733
2733
|
* Write form of {@link LogisticFilter}, where some properties allow additional values as input compared to the read form.
|
2734
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2734
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/LogisticFilter.html Online documentation}
|
2735
2735
|
*/
|
2736
2736
|
export interface LogisticFilterWrite {
|
2737
2737
|
/**
|
@@ -2787,23 +2787,23 @@ declare module "factorio:runtime" {
|
|
2787
2787
|
* ## Union members
|
2788
2788
|
* - {@link LuaSurfacePropertyPrototype}: The surface property prototype.
|
2789
2789
|
* - `string`: The prototype name.
|
2790
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2790
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/SurfacePropertyID.html Online documentation}
|
2791
2791
|
*/
|
2792
2792
|
export type SurfacePropertyID = LuaSurfacePropertyPrototype | string
|
2793
2793
|
/**
|
2794
2794
|
* When writing it is possible to give LuaEntity or MapPosition directly. However, reading always returns the full ScriptRenderTargetTable.
|
2795
2795
|
* @see ScriptRenderTargetWrite
|
2796
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2796
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/ScriptRenderTarget.html Online documentation}
|
2797
2797
|
*/
|
2798
2798
|
export type ScriptRenderTarget = LuaEntity | MapPosition | ScriptRenderTargetTable
|
2799
2799
|
/**
|
2800
2800
|
* Write form of {@link ScriptRenderTarget}, where some properties allow additional values as input compared to the read form.
|
2801
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2801
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/ScriptRenderTarget.html Online documentation}
|
2802
2802
|
*/
|
2803
2803
|
export type ScriptRenderTargetWrite = LuaEntity | (MapPosition | MapPositionArray) | ScriptRenderTargetTableWrite
|
2804
2804
|
/**
|
2805
2805
|
* @see ScriptRenderTargetTableWrite
|
2806
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2806
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/ScriptRenderTargetTable.html Online documentation}
|
2807
2807
|
*/
|
2808
2808
|
export interface ScriptRenderTargetTable {
|
2809
2809
|
readonly entity?: LuaEntity
|
@@ -2818,7 +2818,7 @@ declare module "factorio:runtime" {
|
|
2818
2818
|
}
|
2819
2819
|
/**
|
2820
2820
|
* Write form of {@link ScriptRenderTargetTable}, where some properties allow additional values as input compared to the read form.
|
2821
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2821
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/ScriptRenderTargetTable.html Online documentation}
|
2822
2822
|
*/
|
2823
2823
|
export interface ScriptRenderTargetTableWrite {
|
2824
2824
|
readonly entity?: LuaEntity
|
@@ -2833,7 +2833,7 @@ declare module "factorio:runtime" {
|
|
2833
2833
|
}
|
2834
2834
|
/**
|
2835
2835
|
* An item filter may be specified in two ways, either as a string which is a quality prototype name or as a table.
|
2836
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2836
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/QualityCondition.html Online documentation}
|
2837
2837
|
*/
|
2838
2838
|
export type QualityCondition =
|
2839
2839
|
| {
|
@@ -2852,13 +2852,13 @@ declare module "factorio:runtime" {
|
|
2852
2852
|
* - `"center-to-center"`
|
2853
2853
|
* - `"bounding-box-to-bounding-box"`
|
2854
2854
|
* - `"center-to-bounding-box"`
|
2855
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2855
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/RangeMode.html Online documentation}
|
2856
2856
|
*/
|
2857
2857
|
export type RangeMode = "center-to-center" | "bounding-box-to-bounding-box" | "center-to-bounding-box"
|
2858
2858
|
/**
|
2859
2859
|
* The representation of an entity inside of a blueprint. It has at least these fields, but can contain additional ones depending on the kind of entity.
|
2860
2860
|
* @see BlueprintEntityWrite
|
2861
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
2861
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/BlueprintEntity.html Online documentation}
|
2862
2862
|
*/
|
2863
2863
|
export interface BlueprintEntity {
|
2864
2864
|
/**
|
@@ -3072,7 +3072,7 @@ declare module "factorio:runtime" {
|
|
3072
3072
|
}
|
3073
3073
|
/**
|
3074
3074
|
* Write form of {@link BlueprintEntity}, where some properties allow additional values as input compared to the read form.
|
3075
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3075
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/BlueprintEntity.html Online documentation}
|
3076
3076
|
*/
|
3077
3077
|
export interface BlueprintEntityWrite {
|
3078
3078
|
/**
|
@@ -3293,7 +3293,7 @@ declare module "factorio:runtime" {
|
|
3293
3293
|
}
|
3294
3294
|
/**
|
3295
3295
|
* @see BlueprintEquipmentWrite
|
3296
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3296
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/BlueprintEquipment.html Online documentation}
|
3297
3297
|
*/
|
3298
3298
|
export interface BlueprintEquipment {
|
3299
3299
|
readonly equipment: ItemIDAndQualityIDPair
|
@@ -3301,7 +3301,7 @@ declare module "factorio:runtime" {
|
|
3301
3301
|
}
|
3302
3302
|
/**
|
3303
3303
|
* Write form of {@link BlueprintEquipment}, where some properties allow additional values as input compared to the read form.
|
3304
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3304
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/BlueprintEquipment.html Online documentation}
|
3305
3305
|
*/
|
3306
3306
|
export interface BlueprintEquipmentWrite {
|
3307
3307
|
readonly equipment: ItemIDAndQualityIDPairWrite
|
@@ -3309,7 +3309,7 @@ declare module "factorio:runtime" {
|
|
3309
3309
|
}
|
3310
3310
|
/**
|
3311
3311
|
* @see BlueprintInventoryWrite
|
3312
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3312
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/BlueprintInventory.html Online documentation}
|
3313
3313
|
*/
|
3314
3314
|
export interface BlueprintInventory {
|
3315
3315
|
readonly filters?: BlueprintLogisticFilter[]
|
@@ -3320,7 +3320,7 @@ declare module "factorio:runtime" {
|
|
3320
3320
|
}
|
3321
3321
|
/**
|
3322
3322
|
* Write form of {@link BlueprintInventory}, where some properties allow additional values as input compared to the read form.
|
3323
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3323
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/BlueprintInventory.html Online documentation}
|
3324
3324
|
*/
|
3325
3325
|
export interface BlueprintInventoryWrite {
|
3326
3326
|
readonly filters?: readonly BlueprintLogisticFilterWrite[]
|
@@ -3341,7 +3341,7 @@ declare module "factorio:runtime" {
|
|
3341
3341
|
}
|
3342
3342
|
/**
|
3343
3343
|
* @see BlueprintControlBehaviorWrite
|
3344
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3344
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/BlueprintControlBehavior.html Online documentation}
|
3345
3345
|
*/
|
3346
3346
|
export interface BlueprintControlBehavior {
|
3347
3347
|
/**
|
@@ -3594,7 +3594,7 @@ declare module "factorio:runtime" {
|
|
3594
3594
|
}
|
3595
3595
|
/**
|
3596
3596
|
* Write form of {@link BlueprintControlBehavior}, where some properties allow additional values as input compared to the read form.
|
3597
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3597
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/BlueprintControlBehavior.html Online documentation}
|
3598
3598
|
*/
|
3599
3599
|
export interface BlueprintControlBehaviorWrite {
|
3600
3600
|
/**
|
@@ -3875,7 +3875,7 @@ declare module "factorio:runtime" {
|
|
3875
3875
|
* "2500 * (L - 3)"
|
3876
3876
|
* @example
|
3877
3877
|
* "(4e5 * (abs(speed) + 10.5)) / weight"
|
3878
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3878
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/MathExpression.html Online documentation}
|
3879
3879
|
*/
|
3880
3880
|
export type MathExpression = string
|
3881
3881
|
/**
|
@@ -3897,7 +3897,7 @@ declare module "factorio:runtime" {
|
|
3897
3897
|
* -- What a custom recipe would look like that had a probability of 0.5 to return a
|
3898
3898
|
* -- minimum amount of 1 and a maximum amount of 5
|
3899
3899
|
* {{type="item", name="custom-item", probability=0.5, amount_min=1, amount_max=5}}
|
3900
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3900
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/Product.html Online documentation}
|
3901
3901
|
*/
|
3902
3902
|
export type Product = ItemProduct | FluidProduct | ResearchProgressProduct
|
3903
3903
|
/**
|
@@ -3908,7 +3908,7 @@ declare module "factorio:runtime" {
|
|
3908
3908
|
* -- What a custom recipe would look like that had a probability of 0.5 to return a
|
3909
3909
|
* -- minimum amount of 1 and a maximum amount of 5
|
3910
3910
|
* {{type="item", name="custom-item", probability=0.5, amount_min=1, amount_max=5}}
|
3911
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3911
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/ItemProduct.html Online documentation}
|
3912
3912
|
*/
|
3913
3913
|
export interface ItemProduct {
|
3914
3914
|
readonly type: "item"
|
@@ -3952,7 +3952,7 @@ declare module "factorio:runtime" {
|
|
3952
3952
|
* {{type="fluid", name="heavy-oil", amount=1},
|
3953
3953
|
* {type="fluid", name="light-oil", amount=4.5},
|
3954
3954
|
* {type="fluid", name="petroleum-gas", amount=5.5}}
|
3955
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
3955
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/FluidProduct.html Online documentation}
|
3956
3956
|
*/
|
3957
3957
|
export interface FluidProduct {
|
3958
3958
|
readonly type: "fluid"
|
@@ -4000,7 +4000,7 @@ declare module "factorio:runtime" {
|
|
4000
4000
|
}
|
4001
4001
|
/**
|
4002
4002
|
* @see LogisticSectionsWrite
|
4003
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4003
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/LogisticSections.html Online documentation}
|
4004
4004
|
*/
|
4005
4005
|
export interface LogisticSections {
|
4006
4006
|
readonly sections?: LogisticSection[]
|
@@ -4011,7 +4011,7 @@ declare module "factorio:runtime" {
|
|
4011
4011
|
}
|
4012
4012
|
/**
|
4013
4013
|
* Write form of {@link LogisticSections}, where some properties allow additional values as input compared to the read form.
|
4014
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4014
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/LogisticSections.html Online documentation}
|
4015
4015
|
*/
|
4016
4016
|
export interface LogisticSectionsWrite {
|
4017
4017
|
readonly sections?: readonly LogisticSectionWrite[]
|
@@ -4047,7 +4047,7 @@ declare module "factorio:runtime" {
|
|
4047
4047
|
}
|
4048
4048
|
/**
|
4049
4049
|
* @see LogisticSectionWrite
|
4050
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4050
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/LogisticSection.html Online documentation}
|
4051
4051
|
*/
|
4052
4052
|
export interface LogisticSection {
|
4053
4053
|
readonly index: uint8
|
@@ -4064,7 +4064,7 @@ declare module "factorio:runtime" {
|
|
4064
4064
|
}
|
4065
4065
|
/**
|
4066
4066
|
* Write form of {@link LogisticSection}, where some properties allow additional values as input compared to the read form.
|
4067
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4067
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/LogisticSection.html Online documentation}
|
4068
4068
|
*/
|
4069
4069
|
export interface LogisticSectionWrite {
|
4070
4070
|
readonly index: uint8
|
@@ -4081,7 +4081,7 @@ declare module "factorio:runtime" {
|
|
4081
4081
|
}
|
4082
4082
|
/**
|
4083
4083
|
* @see BlueprintLogisticFilterWrite
|
4084
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4084
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/BlueprintLogisticFilter.html Online documentation}
|
4085
4085
|
*/
|
4086
4086
|
export interface BlueprintLogisticFilter {
|
4087
4087
|
readonly index: LogisticFilterIndex
|
@@ -4111,7 +4111,7 @@ declare module "factorio:runtime" {
|
|
4111
4111
|
}
|
4112
4112
|
/**
|
4113
4113
|
* Write form of {@link BlueprintLogisticFilter}, where some properties allow additional values as input compared to the read form.
|
4114
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4114
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/BlueprintLogisticFilter.html Online documentation}
|
4115
4115
|
*/
|
4116
4116
|
export interface BlueprintLogisticFilterWrite {
|
4117
4117
|
readonly index: LogisticFilterIndex
|
@@ -4141,7 +4141,7 @@ declare module "factorio:runtime" {
|
|
4141
4141
|
}
|
4142
4142
|
/**
|
4143
4143
|
* Specifies how probability and richness are calculated when placing something on the map.
|
4144
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4144
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/AutoplaceSpecification.html Online documentation}
|
4145
4145
|
*/
|
4146
4146
|
export interface AutoplaceSpecification {
|
4147
4147
|
/**
|
@@ -4158,7 +4158,7 @@ declare module "factorio:runtime" {
|
|
4158
4158
|
}
|
4159
4159
|
/**
|
4160
4160
|
* @see CliffPlacementSettingsWrite
|
4161
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4161
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/CliffPlacementSettings.html Online documentation}
|
4162
4162
|
*/
|
4163
4163
|
export interface CliffPlacementSettings {
|
4164
4164
|
/**
|
@@ -4188,7 +4188,7 @@ declare module "factorio:runtime" {
|
|
4188
4188
|
}
|
4189
4189
|
/**
|
4190
4190
|
* Write form of {@link CliffPlacementSettings}, where some properties allow additional values as input compared to the read form.
|
4191
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4191
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/CliffPlacementSettings.html Online documentation}
|
4192
4192
|
*/
|
4193
4193
|
export interface CliffPlacementSettingsWrite {
|
4194
4194
|
/**
|
@@ -4218,7 +4218,7 @@ declare module "factorio:runtime" {
|
|
4218
4218
|
}
|
4219
4219
|
/**
|
4220
4220
|
* @see AutoplaceSettingsWrite
|
4221
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4221
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/AutoplaceSettings.html Online documentation}
|
4222
4222
|
*/
|
4223
4223
|
export interface AutoplaceSettings {
|
4224
4224
|
/**
|
@@ -4232,7 +4232,7 @@ declare module "factorio:runtime" {
|
|
4232
4232
|
}
|
4233
4233
|
/**
|
4234
4234
|
* Write form of {@link AutoplaceSettings}, where some properties allow additional values as input compared to the read form.
|
4235
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4235
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/AutoplaceSettings.html Online documentation}
|
4236
4236
|
*/
|
4237
4237
|
export interface AutoplaceSettingsWrite {
|
4238
4238
|
/**
|
@@ -4267,7 +4267,7 @@ declare module "factorio:runtime" {
|
|
4267
4267
|
* surface.map_gen_settings = mgs
|
4268
4268
|
* -- This does not require a NamedNoiseExpression to be defined, since literal numbers (and strings naming literal
|
4269
4269
|
* -- numbers, e.g. `"123"`) are understood to stand for constant value expressions.
|
4270
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4270
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/MapGenSettings.html Online documentation}
|
4271
4271
|
*/
|
4272
4272
|
export interface MapGenSettings {
|
4273
4273
|
/**
|
@@ -4322,7 +4322,7 @@ declare module "factorio:runtime" {
|
|
4322
4322
|
}
|
4323
4323
|
/**
|
4324
4324
|
* Write form of {@link MapGenSettings}, where some properties allow additional values as input compared to the read form.
|
4325
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4325
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/MapGenSettings.html Online documentation}
|
4326
4326
|
*/
|
4327
4327
|
export interface MapGenSettingsWrite {
|
4328
4328
|
/**
|
@@ -4381,7 +4381,7 @@ declare module "factorio:runtime" {
|
|
4381
4381
|
}
|
4382
4382
|
/**
|
4383
4383
|
* These values are for the time frame of one second (60 ticks).
|
4384
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4384
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/PollutionMapSettings.html Online documentation}
|
4385
4385
|
*/
|
4386
4386
|
export interface PollutionMapSettings {
|
4387
4387
|
/**
|
@@ -4435,7 +4435,7 @@ declare module "factorio:runtime" {
|
|
4435
4435
|
}
|
4436
4436
|
/**
|
4437
4437
|
* These values represent a percentual increase in evolution. This means a value of `0.1` would increase evolution by 10%.
|
4438
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4438
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/EnemyEvolutionMapSettings.html Online documentation}
|
4439
4439
|
*/
|
4440
4440
|
export interface EnemyEvolutionMapSettings {
|
4441
4441
|
/**
|
@@ -4473,7 +4473,7 @@ declare module "factorio:runtime" {
|
|
4473
4473
|
* * neighbouring_base_chunk_coefficient^distance(chunk, neighbour)
|
4474
4474
|
* score(chunk) = 1 / (1 + player + base)
|
4475
4475
|
* ```
|
4476
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4476
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/EnemyExpansionMapSettings.html Online documentation}
|
4477
4477
|
*/
|
4478
4478
|
export interface EnemyExpansionMapSettings {
|
4479
4479
|
/**
|
@@ -4732,17 +4732,17 @@ declare module "factorio:runtime" {
|
|
4732
4732
|
}
|
4733
4733
|
/**
|
4734
4734
|
* Technology difficulty settings. Updating any of the attributes will immediately take effect in the game engine.
|
4735
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4735
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/DifficultySettings.html Online documentation}
|
4736
4736
|
*/
|
4737
4737
|
export interface DifficultySettings {
|
4738
4738
|
/**
|
4739
4739
|
* A value in range [0.001, 1000].
|
4740
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4740
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/DifficultySettings.technology_price_multiplier.html Online documentation}
|
4741
4741
|
*/
|
4742
4742
|
technology_price_multiplier: double
|
4743
4743
|
/**
|
4744
4744
|
* A value in range [0.01, 100].
|
4745
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4745
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/DifficultySettings.spoil_time_modifier.html Online documentation}
|
4746
4746
|
*/
|
4747
4747
|
spoil_time_modifier: double
|
4748
4748
|
}
|
@@ -4758,7 +4758,7 @@ declare module "factorio:runtime" {
|
|
4758
4758
|
}
|
4759
4759
|
/**
|
4760
4760
|
* A standard table containing all {@link MapSettings} attributes plus an additional table that contains all {@link DifficultySettings} properties.
|
4761
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4761
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/MapAndDifficultySettings.html Online documentation}
|
4762
4762
|
*/
|
4763
4763
|
export interface MapAndDifficultySettings {
|
4764
4764
|
readonly pollution: PollutionMapSettings
|
@@ -4779,7 +4779,7 @@ declare module "factorio:runtime" {
|
|
4779
4779
|
* @example
|
4780
4780
|
* -- Increase the number of short paths the pathfinder can cache.
|
4781
4781
|
* game.map_settings.path_finder.short_cache_size = 15
|
4782
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4782
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/MapSettings.html Online documentation}
|
4783
4783
|
*/
|
4784
4784
|
export interface MapSettings {
|
4785
4785
|
pollution: PollutionMapSettings
|
@@ -4791,13 +4791,13 @@ declare module "factorio:runtime" {
|
|
4791
4791
|
asteroids: AsteroidMapSettings
|
4792
4792
|
/**
|
4793
4793
|
* If a behavior fails this many times, the enemy (or enemy group) is destroyed. This solves biters getting stuck within their own base.
|
4794
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4794
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/MapSettings.max_failed_behavior_count.html Online documentation}
|
4795
4795
|
*/
|
4796
4796
|
max_failed_behavior_count: uint
|
4797
4797
|
}
|
4798
4798
|
/**
|
4799
4799
|
* @see BlueprintScheduleRecordWrite
|
4800
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4800
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/BlueprintScheduleRecord.html Online documentation}
|
4801
4801
|
*/
|
4802
4802
|
export interface BlueprintScheduleRecord {
|
4803
4803
|
/**
|
@@ -4814,7 +4814,7 @@ declare module "factorio:runtime" {
|
|
4814
4814
|
}
|
4815
4815
|
/**
|
4816
4816
|
* Write form of {@link BlueprintScheduleRecord}, where some properties allow additional values as input compared to the read form.
|
4817
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4817
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/BlueprintScheduleRecord.html Online documentation}
|
4818
4818
|
*/
|
4819
4819
|
export interface BlueprintScheduleRecordWrite {
|
4820
4820
|
/**
|
@@ -4831,7 +4831,7 @@ declare module "factorio:runtime" {
|
|
4831
4831
|
}
|
4832
4832
|
/**
|
4833
4833
|
* @see BlueprintScheduleInterruptWrite
|
4834
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4834
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/BlueprintScheduleInterrupt.html Online documentation}
|
4835
4835
|
*/
|
4836
4836
|
export interface BlueprintScheduleInterrupt {
|
4837
4837
|
readonly name?: string
|
@@ -4841,7 +4841,7 @@ declare module "factorio:runtime" {
|
|
4841
4841
|
}
|
4842
4842
|
/**
|
4843
4843
|
* Write form of {@link BlueprintScheduleInterrupt}, where some properties allow additional values as input compared to the read form.
|
4844
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4844
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/BlueprintScheduleInterrupt.html Online documentation}
|
4845
4845
|
*/
|
4846
4846
|
export interface BlueprintScheduleInterruptWrite {
|
4847
4847
|
readonly name?: string
|
@@ -4851,7 +4851,7 @@ declare module "factorio:runtime" {
|
|
4851
4851
|
}
|
4852
4852
|
/**
|
4853
4853
|
* @see BlueprintScheduleWrite
|
4854
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4854
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/BlueprintSchedule.html Online documentation}
|
4855
4855
|
*/
|
4856
4856
|
export interface BlueprintSchedule {
|
4857
4857
|
readonly records?: BlueprintScheduleRecord[]
|
@@ -4860,7 +4860,7 @@ declare module "factorio:runtime" {
|
|
4860
4860
|
}
|
4861
4861
|
/**
|
4862
4862
|
* Write form of {@link BlueprintSchedule}, where some properties allow additional values as input compared to the read form.
|
4863
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4863
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/BlueprintSchedule.html Online documentation}
|
4864
4864
|
*/
|
4865
4865
|
export interface BlueprintScheduleWrite {
|
4866
4866
|
readonly records?: readonly BlueprintScheduleRecordWrite[]
|
@@ -4869,7 +4869,7 @@ declare module "factorio:runtime" {
|
|
4869
4869
|
}
|
4870
4870
|
/**
|
4871
4871
|
* @see WaitConditionWrite
|
4872
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4872
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/WaitCondition.html Online documentation}
|
4873
4873
|
*/
|
4874
4874
|
export interface WaitCondition {
|
4875
4875
|
readonly type: WaitConditionType
|
@@ -4900,7 +4900,7 @@ declare module "factorio:runtime" {
|
|
4900
4900
|
}
|
4901
4901
|
/**
|
4902
4902
|
* Write form of {@link WaitCondition}, where some properties allow additional values as input compared to the read form.
|
4903
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4903
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/WaitCondition.html Online documentation}
|
4904
4904
|
*/
|
4905
4905
|
export interface WaitConditionWrite {
|
4906
4906
|
readonly type: WaitConditionType
|
@@ -4959,7 +4959,7 @@ declare module "factorio:runtime" {
|
|
4959
4959
|
* - `"at_station"`
|
4960
4960
|
* - `"not_at_station"`
|
4961
4961
|
* - `"damage_taken"`
|
4962
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
4962
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/WaitConditionType.html Online documentation}
|
4963
4963
|
*/
|
4964
4964
|
export type WaitConditionType =
|
4965
4965
|
| "time"
|
@@ -5001,7 +5001,7 @@ declare module "factorio:runtime" {
|
|
5001
5001
|
* - `"blueprint-snap-rectangle"`: Green by default.
|
5002
5002
|
* - `"spidertron-remote-selected"`
|
5003
5003
|
* - `"spidertron-remote-to-be-selected"`
|
5004
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5004
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/CursorBoxRenderType.html Online documentation}
|
5005
5005
|
*/
|
5006
5006
|
export type CursorBoxRenderType =
|
5007
5007
|
| "entity"
|
@@ -5017,7 +5017,7 @@ declare module "factorio:runtime" {
|
|
5017
5017
|
| "spidertron-remote-to-be-selected"
|
5018
5018
|
/**
|
5019
5019
|
* What is shown in the map view. If a field is not given, that setting will not be changed.
|
5020
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5020
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/MapViewSettings.html Online documentation}
|
5021
5021
|
*/
|
5022
5022
|
export interface MapViewSettings {
|
5023
5023
|
readonly "show-logistic-network"?: boolean
|
@@ -5110,7 +5110,7 @@ declare module "factorio:runtime" {
|
|
5110
5110
|
* - `"collision-selection-box"`: 189
|
5111
5111
|
* - `"arrow"`: 190
|
5112
5112
|
* - `"cursor"`: 226
|
5113
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5113
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/RenderLayer.html Online documentation}
|
5114
5114
|
*/
|
5115
5115
|
export type RenderLayer =
|
5116
5116
|
| `${bigint}`
|
@@ -5206,7 +5206,7 @@ declare module "factorio:runtime" {
|
|
5206
5206
|
* - `"entity-with-quality"`
|
5207
5207
|
* - `"recipe-with-quality"`
|
5208
5208
|
* - `"equipment-with-quality"`
|
5209
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5209
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/ElemType.html Online documentation}
|
5210
5210
|
*/
|
5211
5211
|
export type ElemType =
|
5212
5212
|
| "achievement"
|
@@ -5233,7 +5233,7 @@ declare module "factorio:runtime" {
|
|
5233
5233
|
* - `"left"`
|
5234
5234
|
* - `"right"`
|
5235
5235
|
* - `"none"`
|
5236
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5236
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/SwitchState.html Online documentation}
|
5237
5237
|
*/
|
5238
5238
|
export type SwitchState = "left" | "right" | "none"
|
5239
5239
|
export interface ElemID {
|
@@ -5273,7 +5273,7 @@ declare module "factorio:runtime" {
|
|
5273
5273
|
* - `"destroy-decoratives"`
|
5274
5274
|
* - `"camera-effect"`
|
5275
5275
|
* - `"activate-impact"`
|
5276
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5276
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/TriggerEffectItemType.html Online documentation}
|
5277
5277
|
*/
|
5278
5278
|
export type TriggerEffectItemType =
|
5279
5279
|
| "damage"
|
@@ -5309,7 +5309,7 @@ declare module "factorio:runtime" {
|
|
5309
5309
|
}
|
5310
5310
|
/**
|
5311
5311
|
* A set of trigger target masks.
|
5312
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5312
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/TriggerTargetMask.html Online documentation}
|
5313
5313
|
*/
|
5314
5314
|
export type TriggerTargetMask = Record<string, true>
|
5315
5315
|
export interface TriggerItem {
|
@@ -5376,7 +5376,7 @@ declare module "factorio:runtime" {
|
|
5376
5376
|
* -- If 'entity-description.furnace' exists, it is concatenated with "\n" and returned. Otherwise, if 'item-description.furnace'
|
5377
5377
|
* -- exists, it is returned as-is. Otherwise, "optional fallback" is returned. If this value wasn't specified, the
|
5378
5378
|
* -- translation result would be "Unknown key: 'item-description.furnace'".
|
5379
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5379
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/LocalisedString.html Online documentation}
|
5380
5380
|
*/
|
5381
5381
|
export type LocalisedString = string | number | boolean | LuaObject | nil | [string, ...LocalisedString[]]
|
5382
5382
|
export interface DisplayResolution {
|
@@ -5387,7 +5387,7 @@ declare module "factorio:runtime" {
|
|
5387
5387
|
* The smooth orientation. It is a {@link float} in the range `[0, 1)` that covers a full circle, starting at the top and going clockwise. This means a value of `0` indicates "north", a value of `0.5` indicates "south".
|
5388
5388
|
*
|
5389
5389
|
* For example then, a value of `0.625` would indicate "south-west", and a value of `0.875` would indicate "north-west".
|
5390
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5390
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/RealOrientation.html Online documentation}
|
5391
5391
|
*/
|
5392
5392
|
export type RealOrientation = float
|
5393
5393
|
/**
|
@@ -5402,7 +5402,7 @@ declare module "factorio:runtime" {
|
|
5402
5402
|
* @example
|
5403
5403
|
* -- Shorthand
|
5404
5404
|
* {1.625, 2.375}
|
5405
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5405
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/MapPosition.html Online documentation}
|
5406
5406
|
*/
|
5407
5407
|
export interface MapPosition {
|
5408
5408
|
readonly x: double
|
@@ -5411,13 +5411,13 @@ declare module "factorio:runtime" {
|
|
5411
5411
|
/**
|
5412
5412
|
* Array form of {@link MapPosition}.
|
5413
5413
|
* @see MapPosition
|
5414
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5414
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/MapPosition.html Online documentation}
|
5415
5415
|
*/
|
5416
5416
|
export type MapPositionArray = readonly [double, double]
|
5417
5417
|
/**
|
5418
5418
|
* Coordinates of a chunk in a {@link LuaSurface} where each integer `x`/`y` represents a different chunk. This uses the same format as {@link MapPosition}, meaning it can be specified either with or without explicit keys. A {@link MapPosition} can be translated to a ChunkPosition by dividing the `x`/`y` values by 32.
|
5419
5419
|
* @see ChunkPositionArray
|
5420
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5420
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/ChunkPosition.html Online documentation}
|
5421
5421
|
*/
|
5422
5422
|
export interface ChunkPosition {
|
5423
5423
|
readonly x: int
|
@@ -5426,13 +5426,13 @@ declare module "factorio:runtime" {
|
|
5426
5426
|
/**
|
5427
5427
|
* Array form of {@link ChunkPosition}.
|
5428
5428
|
* @see ChunkPosition
|
5429
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5429
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/ChunkPosition.html Online documentation}
|
5430
5430
|
*/
|
5431
5431
|
export type ChunkPositionArray = readonly [int, int]
|
5432
5432
|
/**
|
5433
5433
|
* Coordinates of a tile on a {@link LuaSurface} where each integer `x`/`y` represents a different tile. This uses the same format as {@link MapPosition}, except it rounds any non-integer `x`/`y` down to whole numbers. It can be specified either with or without explicit keys.
|
5434
5434
|
* @see TilePositionArray
|
5435
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5435
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/TilePosition.html Online documentation}
|
5436
5436
|
*/
|
5437
5437
|
export interface TilePosition {
|
5438
5438
|
readonly x: int
|
@@ -5441,7 +5441,7 @@ declare module "factorio:runtime" {
|
|
5441
5441
|
/**
|
5442
5442
|
* Array form of {@link TilePosition}.
|
5443
5443
|
* @see TilePosition
|
5444
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5444
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/TilePosition.html Online documentation}
|
5445
5445
|
*/
|
5446
5446
|
export type TilePositionArray = readonly [int, int]
|
5447
5447
|
/**
|
@@ -5454,7 +5454,7 @@ declare module "factorio:runtime" {
|
|
5454
5454
|
* @example
|
5455
5455
|
* -- Shorthand
|
5456
5456
|
* {1, 2}
|
5457
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5457
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/EquipmentPosition.html Online documentation}
|
5458
5458
|
*/
|
5459
5459
|
export interface EquipmentPosition {
|
5460
5460
|
readonly x: int
|
@@ -5463,13 +5463,13 @@ declare module "factorio:runtime" {
|
|
5463
5463
|
/**
|
5464
5464
|
* Array form of {@link EquipmentPosition}.
|
5465
5465
|
* @see EquipmentPosition
|
5466
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5466
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/EquipmentPosition.html Online documentation}
|
5467
5467
|
*/
|
5468
5468
|
export type EquipmentPositionArray = readonly [int, int]
|
5469
5469
|
/**
|
5470
5470
|
* Screen coordinates of a GUI element in a {@link LuaGui}. This uses the same format as {@link TilePosition}, meaning it can be specified either with or without explicit keys.
|
5471
5471
|
* @see GuiLocationArray
|
5472
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5472
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/GuiLocation.html Online documentation}
|
5473
5473
|
*/
|
5474
5474
|
export interface GuiLocation {
|
5475
5475
|
readonly x: int
|
@@ -5478,12 +5478,12 @@ declare module "factorio:runtime" {
|
|
5478
5478
|
/**
|
5479
5479
|
* Array form of {@link GuiLocation}.
|
5480
5480
|
* @see GuiLocation
|
5481
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5481
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/GuiLocation.html Online documentation}
|
5482
5482
|
*/
|
5483
5483
|
export type GuiLocationArray = readonly [int, int]
|
5484
5484
|
/**
|
5485
5485
|
* A {@link ChunkPosition} with an added bounding box for the area of the chunk.
|
5486
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5486
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/ChunkPositionAndArea.html Online documentation}
|
5487
5487
|
*/
|
5488
5488
|
export interface ChunkPositionAndArea {
|
5489
5489
|
readonly x: int
|
@@ -5492,7 +5492,7 @@ declare module "factorio:runtime" {
|
|
5492
5492
|
}
|
5493
5493
|
/**
|
5494
5494
|
* A table used to define a manual shape for a piece of equipment.
|
5495
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5495
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/EquipmentPoint.html Online documentation}
|
5496
5496
|
*/
|
5497
5497
|
export interface EquipmentPoint {
|
5498
5498
|
readonly x: uint
|
@@ -5528,7 +5528,7 @@ declare module "factorio:runtime" {
|
|
5528
5528
|
* Note that the API returns tags as a simple table, meaning any modifications to it will not propagate back to the game. Thus, to modify a set of tags, the whole table needs to be written back to the respective property.
|
5529
5529
|
* @example
|
5530
5530
|
* {a = 1, b = true, c = "three", d = {e = "f"}}
|
5531
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5531
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/Tags.html Online documentation}
|
5532
5532
|
*/
|
5533
5533
|
export type Tags = Record<string, AnyBasic>
|
5534
5534
|
export interface SurfaceCondition {
|
@@ -5562,13 +5562,13 @@ declare module "factorio:runtime" {
|
|
5562
5562
|
* A vector is a two-element array or dictionary containing the `x` and `y` components. The game will always provide the array format. Positive x goes east, positive y goes south.
|
5563
5563
|
* @example
|
5564
5564
|
* right = {1.0, 0.0}
|
5565
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5565
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/Vector.html Online documentation}
|
5566
5566
|
*/
|
5567
5567
|
export type Vector = MapPositionArray
|
5568
5568
|
/**
|
5569
5569
|
* An area defined using the map editor.
|
5570
5570
|
* @see ScriptAreaWrite
|
5571
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5571
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/ScriptArea.html Online documentation}
|
5572
5572
|
*/
|
5573
5573
|
export interface ScriptArea {
|
5574
5574
|
readonly area: BoundingBox
|
@@ -5578,7 +5578,7 @@ declare module "factorio:runtime" {
|
|
5578
5578
|
}
|
5579
5579
|
/**
|
5580
5580
|
* Write form of {@link ScriptArea}, where some properties allow additional values as input compared to the read form.
|
5581
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5581
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/ScriptArea.html Online documentation}
|
5582
5582
|
*/
|
5583
5583
|
export interface ScriptAreaWrite {
|
5584
5584
|
readonly area: BoundingBoxWrite | BoundingBoxArray
|
@@ -5589,7 +5589,7 @@ declare module "factorio:runtime" {
|
|
5589
5589
|
/**
|
5590
5590
|
* A position defined using the map editor.
|
5591
5591
|
* @see ScriptPositionWrite
|
5592
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5592
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/ScriptPosition.html Online documentation}
|
5593
5593
|
*/
|
5594
5594
|
export interface ScriptPosition {
|
5595
5595
|
readonly position: MapPosition
|
@@ -5599,7 +5599,7 @@ declare module "factorio:runtime" {
|
|
5599
5599
|
}
|
5600
5600
|
/**
|
5601
5601
|
* Write form of {@link ScriptPosition}, where some properties allow additional values as input compared to the read form.
|
5602
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5602
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/ScriptPosition.html Online documentation}
|
5603
5603
|
*/
|
5604
5604
|
export interface ScriptPositionWrite {
|
5605
5605
|
readonly position: MapPosition | MapPositionArray
|
@@ -5617,7 +5617,7 @@ declare module "factorio:runtime" {
|
|
5617
5617
|
* red2 = {r = 0.5, a = 0.5} -- Same color as red1
|
5618
5618
|
* black = {} -- All channels omitted: black
|
5619
5619
|
* red1_short = {0.5, 0, 0, 0.5} -- Same color as red1 in short-hand notation
|
5620
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5620
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/Color.html Online documentation}
|
5621
5621
|
*/
|
5622
5622
|
export interface Color {
|
5623
5623
|
readonly r?: float
|
@@ -5628,13 +5628,13 @@ declare module "factorio:runtime" {
|
|
5628
5628
|
/**
|
5629
5629
|
* Array form of {@link Color}.
|
5630
5630
|
* @see Color
|
5631
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5631
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/Color.html Online documentation}
|
5632
5632
|
*/
|
5633
5633
|
export type ColorArray = readonly [r: double, g: double, b: double, a?: double]
|
5634
5634
|
/**
|
5635
5635
|
* Same as {@link Color}, but red, green, blue and alpha values can be any floating point number, without any special handling of the range [1, 255].
|
5636
5636
|
* @see ColorModifierArray
|
5637
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5637
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/ColorModifier.html Online documentation}
|
5638
5638
|
*/
|
5639
5639
|
export interface ColorModifier {
|
5640
5640
|
readonly r?: float
|
@@ -5645,7 +5645,7 @@ declare module "factorio:runtime" {
|
|
5645
5645
|
/**
|
5646
5646
|
* Array form of {@link ColorModifier}.
|
5647
5647
|
* @see ColorModifier
|
5648
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5648
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/ColorModifier.html Online documentation}
|
5649
5649
|
*/
|
5650
5650
|
export type ColorModifierArray = readonly [r: double, g: double, b: double, a?: double]
|
5651
5651
|
export interface CraftingQueueItem {
|
@@ -5788,7 +5788,7 @@ declare module "factorio:runtime" {
|
|
5788
5788
|
}
|
5789
5789
|
/**
|
5790
5790
|
* @see AsteroidChunkWrite
|
5791
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5791
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/AsteroidChunk.html Online documentation}
|
5792
5792
|
*/
|
5793
5793
|
export interface AsteroidChunk {
|
5794
5794
|
/**
|
@@ -5800,7 +5800,7 @@ declare module "factorio:runtime" {
|
|
5800
5800
|
}
|
5801
5801
|
/**
|
5802
5802
|
* Write form of {@link AsteroidChunk}, where some properties allow additional values as input compared to the read form.
|
5803
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5803
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/AsteroidChunk.html Online documentation}
|
5804
5804
|
*/
|
5805
5805
|
export interface AsteroidChunkWrite {
|
5806
5806
|
/**
|
@@ -5822,7 +5822,7 @@ declare module "factorio:runtime" {
|
|
5822
5822
|
}
|
5823
5823
|
/**
|
5824
5824
|
* Either `icon`, `text`, or both must be provided.
|
5825
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5825
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/ChartTagSpec.html Online documentation}
|
5826
5826
|
*/
|
5827
5827
|
export interface ChartTagSpec {
|
5828
5828
|
readonly position: MapPosition | MapPositionArray
|
@@ -5832,93 +5832,93 @@ declare module "factorio:runtime" {
|
|
5832
5832
|
}
|
5833
5833
|
/**
|
5834
5834
|
* Parameters that affect the look and control of the game. Updating any of the member attributes here will immediately take effect in the game engine.
|
5835
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5835
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/GameViewSettings.html Online documentation}
|
5836
5836
|
*/
|
5837
5837
|
export interface GameViewSettings {
|
5838
5838
|
/**
|
5839
5839
|
* Show the controller GUI elements. This includes the toolbar, the selected tool slot, the armour slot, and the gun and ammunition slots.
|
5840
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5840
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/GameViewSettings.show_controller_gui.html Online documentation}
|
5841
5841
|
*/
|
5842
5842
|
show_controller_gui: boolean
|
5843
5843
|
/**
|
5844
5844
|
* Show the chart in the upper right-hand corner of the screen.
|
5845
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5845
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/GameViewSettings.show_minimap.html Online documentation}
|
5846
5846
|
*/
|
5847
5847
|
show_minimap: boolean
|
5848
5848
|
/**
|
5849
5849
|
* Show research progress and name in the upper right-hand corner of the screen.
|
5850
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5850
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/GameViewSettings.show_research_info.html Online documentation}
|
5851
5851
|
*/
|
5852
5852
|
show_research_info: boolean
|
5853
5853
|
/**
|
5854
5854
|
* Show overlay icons on entities. Also known as "alt-mode".
|
5855
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5855
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/GameViewSettings.show_entity_info.html Online documentation}
|
5856
5856
|
*/
|
5857
5857
|
show_entity_info: boolean
|
5858
5858
|
/**
|
5859
5859
|
* Show the flashing alert icons next to the player's toolbar.
|
5860
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5860
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/GameViewSettings.show_alert_gui.html Online documentation}
|
5861
5861
|
*/
|
5862
5862
|
show_alert_gui: boolean
|
5863
5863
|
/**
|
5864
5864
|
* When `true` (the default), mousing over an entity will select it. Otherwise, moving the mouse won't update entity selection.
|
5865
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5865
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/GameViewSettings.update_entity_selection.html Online documentation}
|
5866
5866
|
*/
|
5867
5867
|
update_entity_selection: boolean
|
5868
5868
|
/**
|
5869
5869
|
* When `true` (`false` is default), the rails will always show the rail block visualisation.
|
5870
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5870
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/GameViewSettings.show_rail_block_visualisation.html Online documentation}
|
5871
5871
|
*/
|
5872
5872
|
show_rail_block_visualisation: boolean
|
5873
5873
|
/**
|
5874
5874
|
* Shows or hides the buttons row.
|
5875
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5875
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/GameViewSettings.show_side_menu.html Online documentation}
|
5876
5876
|
*/
|
5877
5877
|
show_side_menu: boolean
|
5878
5878
|
/**
|
5879
5879
|
* Shows or hides the view options when map is opened.
|
5880
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5880
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/GameViewSettings.show_map_view_options.html Online documentation}
|
5881
5881
|
*/
|
5882
5882
|
show_map_view_options: boolean
|
5883
5883
|
/**
|
5884
5884
|
* Shows or hides the tooltip that is displayed when selecting an entity.
|
5885
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5885
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/GameViewSettings.show_entity_tooltip.html Online documentation}
|
5886
5886
|
*/
|
5887
5887
|
show_entity_tooltip: boolean
|
5888
5888
|
/**
|
5889
5889
|
* Shows or hides quickbar of shortcuts.
|
5890
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5890
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/GameViewSettings.show_quickbar.html Online documentation}
|
5891
5891
|
*/
|
5892
5892
|
show_quickbar: boolean
|
5893
5893
|
/**
|
5894
5894
|
* Shows or hides the shortcut bar.
|
5895
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5895
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/GameViewSettings.show_shortcut_bar.html Online documentation}
|
5896
5896
|
*/
|
5897
5897
|
show_shortcut_bar: boolean
|
5898
5898
|
/**
|
5899
5899
|
* Shows or hides the crafting queue.
|
5900
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5900
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/GameViewSettings.show_crafting_queue.html Online documentation}
|
5901
5901
|
*/
|
5902
5902
|
show_crafting_queue: boolean
|
5903
5903
|
/**
|
5904
5904
|
* Shows or hides the tool window with the weapons and armor.
|
5905
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5905
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/GameViewSettings.show_tool_bar.html Online documentation}
|
5906
5906
|
*/
|
5907
5907
|
show_tool_bar: boolean
|
5908
5908
|
/**
|
5909
5909
|
* Shows or hides the mouse and keyboard/controller button hints in the bottom left corner if they are enabled in the interface settings.
|
5910
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5910
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/GameViewSettings.show_hotkey_suggestions.html Online documentation}
|
5911
5911
|
*/
|
5912
5912
|
show_hotkey_suggestions: boolean
|
5913
5913
|
/**
|
5914
5914
|
* Shows or hides the surface list while in Remote View.
|
5915
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5915
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/GameViewSettings.show_surface_list.html Online documentation}
|
5916
5916
|
*/
|
5917
5917
|
show_surface_list: boolean
|
5918
5918
|
}
|
5919
5919
|
/**
|
5920
5920
|
* The data that can be extracted from a map exchange string, as a plain table.
|
5921
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5921
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/MapExchangeStringData.html Online documentation}
|
5922
5922
|
*/
|
5923
5923
|
export interface MapExchangeStringData {
|
5924
5924
|
readonly map_settings: MapAndDifficultySettings
|
@@ -5951,12 +5951,12 @@ declare module "factorio:runtime" {
|
|
5951
5951
|
* - `target_entity_number`
|
5952
5952
|
*
|
5953
5953
|
* - `target_wire_connector_id`
|
5954
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5954
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/BlueprintWire.html Online documentation}
|
5955
5955
|
*/
|
5956
5956
|
export type BlueprintWire = readonly [uint, defines.wire_connector_id, uint, defines.wire_connector_id]
|
5957
5957
|
/**
|
5958
5958
|
* @see TileWrite
|
5959
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5959
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/Tile.html Online documentation}
|
5960
5960
|
*/
|
5961
5961
|
export interface Tile {
|
5962
5962
|
/**
|
@@ -5970,7 +5970,7 @@ declare module "factorio:runtime" {
|
|
5970
5970
|
}
|
5971
5971
|
/**
|
5972
5972
|
* Write form of {@link Tile}, where some properties allow additional values as input compared to the read form.
|
5973
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
5973
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/Tile.html Online documentation}
|
5974
5974
|
*/
|
5975
5975
|
export interface TileWrite {
|
5976
5976
|
/**
|
@@ -6025,7 +6025,7 @@ declare module "factorio:runtime" {
|
|
6025
6025
|
*
|
6026
6026
|
* Other attributes may be specified depending on `type`:
|
6027
6027
|
* - `"fluid"`: {@link FluidIngredient}
|
6028
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6028
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/Ingredient.html Online documentation}
|
6029
6029
|
*/
|
6030
6030
|
export type Ingredient = FluidIngredient | OtherIngredient
|
6031
6031
|
export interface Loot {
|
@@ -6191,7 +6191,7 @@ declare module "factorio:runtime" {
|
|
6191
6191
|
* - `"unlock-recipe"`: {@link UnlockRecipeTechnologyModifier}
|
6192
6192
|
* - `"nothing"`: {@link NothingTechnologyModifier}
|
6193
6193
|
* - Other types: {@link OtherTechnologyModifier}
|
6194
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6194
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/TechnologyModifier.html Online documentation}
|
6195
6195
|
*/
|
6196
6196
|
export type TechnologyModifier =
|
6197
6197
|
| GunSpeedTechnologyModifier
|
@@ -6203,7 +6203,7 @@ declare module "factorio:runtime" {
|
|
6203
6203
|
| OtherTechnologyModifier
|
6204
6204
|
/**
|
6205
6205
|
* A fragment of a functional program used to generate coherent noise, probably for purposes related to terrain generation. These can only be meaningfully written/modified during the data load phase. More detailed information is found on the {@link import("factorio:prototype").NamedNoiseExpression prototype docs}.
|
6206
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6206
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/NoiseExpression.html Online documentation}
|
6207
6207
|
*/
|
6208
6208
|
export interface NoiseExpression {
|
6209
6209
|
/**
|
@@ -6256,7 +6256,7 @@ declare module "factorio:runtime" {
|
|
6256
6256
|
* - `"very-high"`: equivalent to `2`.
|
6257
6257
|
* - `"very-big"`: equivalent to `2`.
|
6258
6258
|
* - `"very-good"`: equivalent to `2`.
|
6259
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6259
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/MapGenSize.html Online documentation}
|
6260
6260
|
*/
|
6261
6261
|
export type MapGenSize =
|
6262
6262
|
| float
|
@@ -6278,7 +6278,7 @@ declare module "factorio:runtime" {
|
|
6278
6278
|
| "very-good"
|
6279
6279
|
/**
|
6280
6280
|
* @see AutoplaceControlWrite
|
6281
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6281
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/AutoplaceControl.html Online documentation}
|
6282
6282
|
*/
|
6283
6283
|
export interface AutoplaceControl {
|
6284
6284
|
/**
|
@@ -6296,7 +6296,7 @@ declare module "factorio:runtime" {
|
|
6296
6296
|
}
|
6297
6297
|
/**
|
6298
6298
|
* Write form of {@link AutoplaceControl}, where some properties allow additional values as input compared to the read form.
|
6299
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6299
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/AutoplaceControl.html Online documentation}
|
6300
6300
|
*/
|
6301
6301
|
export interface AutoplaceControlWrite {
|
6302
6302
|
/**
|
@@ -6315,10 +6315,10 @@ declare module "factorio:runtime" {
|
|
6315
6315
|
/**
|
6316
6316
|
* All other MapGenSettings feed into named noise expressions, and therefore placement can be overridden by including the name of a property in this dictionary. The probability and richness functions for placing specific tiles, entities, and decoratives can be overridden by including an entry named `{tile|entity|decorative}:(prototype name):{probability|richness}`.
|
6317
6317
|
*
|
6318
|
-
* {@link https://lua-api.factorio.com/2.0.
|
6318
|
+
* {@link https://lua-api.factorio.com/2.0.23/concepts/PropertyExpressionNames.html > Values either name a NamedNoiseExpression or can be literal numbers, stored as strings (e.g. `5`). All other controls can be overridden by a property expression names. Notable properties:}
|
6319
6319
|
*
|
6320
|
-
* {@link https://lua-api.factorio.com/2.0.
|
6321
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6320
|
+
* {@link https://lua-api.factorio.com/2.0.23/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:}
|
6321
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/PropertyExpressionNames.html Online documentation}
|
6322
6322
|
*/
|
6323
6323
|
export type PropertyExpressionNames = Record<string, string>
|
6324
6324
|
export interface AdvancedMapGenSettings {
|
@@ -6351,7 +6351,7 @@ declare module "factorio:runtime" {
|
|
6351
6351
|
}
|
6352
6352
|
/**
|
6353
6353
|
* An actual signal transmitted by the network.
|
6354
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6354
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/Signal.html Online documentation}
|
6355
6355
|
*/
|
6356
6356
|
export interface Signal {
|
6357
6357
|
/**
|
@@ -6365,7 +6365,7 @@ declare module "factorio:runtime" {
|
|
6365
6365
|
}
|
6366
6366
|
/**
|
6367
6367
|
* @see UpgradeMapperSourceWrite
|
6368
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6368
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/UpgradeMapperSource.html Online documentation}
|
6369
6369
|
*/
|
6370
6370
|
export interface UpgradeMapperSource {
|
6371
6371
|
readonly type: "item" | "entity"
|
@@ -6384,7 +6384,7 @@ declare module "factorio:runtime" {
|
|
6384
6384
|
}
|
6385
6385
|
/**
|
6386
6386
|
* Write form of {@link UpgradeMapperSource}, where some properties allow additional values as input compared to the read form.
|
6387
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6387
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/UpgradeMapperSource.html Online documentation}
|
6388
6388
|
*/
|
6389
6389
|
export interface UpgradeMapperSourceWrite {
|
6390
6390
|
readonly type: "item" | "entity"
|
@@ -6421,7 +6421,7 @@ declare module "factorio:runtime" {
|
|
6421
6421
|
}
|
6422
6422
|
/**
|
6423
6423
|
* A single filter used by an infinity-filters instance.
|
6424
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6424
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/InfinityInventoryFilter.html Online documentation}
|
6425
6425
|
*/
|
6426
6426
|
export interface InfinityInventoryFilter {
|
6427
6427
|
/**
|
@@ -6443,7 +6443,7 @@ declare module "factorio:runtime" {
|
|
6443
6443
|
}
|
6444
6444
|
/**
|
6445
6445
|
* A single filter used by an infinity-pipe type entity.
|
6446
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6446
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/InfinityPipeFilter.html Online documentation}
|
6447
6447
|
*/
|
6448
6448
|
export interface InfinityPipeFilter {
|
6449
6449
|
/**
|
@@ -6497,7 +6497,7 @@ declare module "factorio:runtime" {
|
|
6497
6497
|
}
|
6498
6498
|
/**
|
6499
6499
|
* The settings used by a heat-interface type entity.
|
6500
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6500
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/HeatSetting.html Online documentation}
|
6501
6501
|
*/
|
6502
6502
|
export interface HeatSetting {
|
6503
6503
|
/**
|
@@ -6579,7 +6579,7 @@ declare module "factorio:runtime" {
|
|
6579
6579
|
}
|
6580
6580
|
/**
|
6581
6581
|
* @see CircuitConditionWrite
|
6582
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6582
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/CircuitCondition.html Online documentation}
|
6583
6583
|
*/
|
6584
6584
|
export interface CircuitCondition {
|
6585
6585
|
/**
|
@@ -6601,7 +6601,7 @@ declare module "factorio:runtime" {
|
|
6601
6601
|
}
|
6602
6602
|
/**
|
6603
6603
|
* Write form of {@link CircuitCondition}, where some properties allow additional values as input compared to the read form.
|
6604
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6604
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/CircuitCondition.html Online documentation}
|
6605
6605
|
*/
|
6606
6606
|
export interface CircuitConditionWrite {
|
6607
6607
|
/**
|
@@ -6623,7 +6623,7 @@ declare module "factorio:runtime" {
|
|
6623
6623
|
}
|
6624
6624
|
/**
|
6625
6625
|
* @see CircuitConditionDefinitionWrite
|
6626
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6626
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/CircuitConditionDefinition.html Online documentation}
|
6627
6627
|
*/
|
6628
6628
|
export interface CircuitConditionDefinition {
|
6629
6629
|
/**
|
@@ -6637,7 +6637,7 @@ declare module "factorio:runtime" {
|
|
6637
6637
|
}
|
6638
6638
|
/**
|
6639
6639
|
* Write form of {@link CircuitConditionDefinition}, where some properties allow additional values as input compared to the read form.
|
6640
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6640
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/CircuitConditionDefinition.html Online documentation}
|
6641
6641
|
*/
|
6642
6642
|
export interface CircuitConditionDefinitionWrite {
|
6643
6643
|
/**
|
@@ -6912,7 +6912,7 @@ declare module "factorio:runtime" {
|
|
6912
6912
|
* - {@link defines.command.stop}: {@link StopCommand}
|
6913
6913
|
* - {@link defines.command.flee}: {@link FleeCommand}
|
6914
6914
|
* - {@link defines.command.build_base}: {@link BuildBaseCommand}
|
6915
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6915
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/Command.html Online documentation}
|
6916
6916
|
*/
|
6917
6917
|
export type Command =
|
6918
6918
|
| AttackCommand
|
@@ -6926,7 +6926,7 @@ declare module "factorio:runtime" {
|
|
6926
6926
|
| BuildBaseCommand
|
6927
6927
|
/**
|
6928
6928
|
* Write form of {@link Command}, where some properties allow additional values as input compared to the read form.
|
6929
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
6929
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/Command.html Online documentation}
|
6930
6930
|
*/
|
6931
6931
|
export type CommandWrite =
|
6932
6932
|
| AttackCommand
|
@@ -7011,7 +7011,7 @@ declare module "factorio:runtime" {
|
|
7011
7011
|
* These are both full stacks of iron plates (for iron-plate, a full stack is 100 plates)
|
7012
7012
|
* "iron-plate"
|
7013
7013
|
* {name="iron-plate", count=100}
|
7014
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7014
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/SimpleItemStack.html Online documentation}
|
7015
7015
|
*/
|
7016
7016
|
export type SimpleItemStack = string | ItemStackDefinition
|
7017
7017
|
/**
|
@@ -7021,7 +7021,7 @@ declare module "factorio:runtime" {
|
|
7021
7021
|
* - SurfaceIndex: It will be the index of the surface. `nauvis` has index `1`, the first surface-created surface will have index `2` and so on.
|
7022
7022
|
* - `string`: It will be the surface name. E.g. `"nauvis"`.
|
7023
7023
|
* - {@link LuaSurface}: A reference to {@link LuaSurface} may be passed directly.
|
7024
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7024
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/SurfaceIdentification.html Online documentation}
|
7025
7025
|
*/
|
7026
7026
|
export type SurfaceIdentification = SurfaceIndex | string | LuaSurface
|
7027
7027
|
/**
|
@@ -7031,7 +7031,7 @@ declare module "factorio:runtime" {
|
|
7031
7031
|
* - PlayerIndex: The player index.
|
7032
7032
|
* - `string`: The player name.
|
7033
7033
|
* - {@link LuaPlayer}: A reference to {@link LuaPlayer} may be passed directly.
|
7034
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7034
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/PlayerIdentification.html Online documentation}
|
7035
7035
|
*/
|
7036
7036
|
export type PlayerIdentification = PlayerIndex | string | LuaPlayer
|
7037
7037
|
/**
|
@@ -7040,7 +7040,7 @@ declare module "factorio:runtime" {
|
|
7040
7040
|
* ## Union members
|
7041
7041
|
* - {@link SimpleItemStack}
|
7042
7042
|
* - {@link LuaItemStack}
|
7043
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7043
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/ItemStackIdentification.html Online documentation}
|
7044
7044
|
*/
|
7045
7045
|
export type ItemStackIdentification = SimpleItemStack | LuaItemStack
|
7046
7046
|
/**
|
@@ -7050,7 +7050,7 @@ declare module "factorio:runtime" {
|
|
7050
7050
|
* - `"entity"`: Fires at an entity.
|
7051
7051
|
* - `"position"`: Fires directly at a position.
|
7052
7052
|
* - `"direction"`: Fires in a direction.
|
7053
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7053
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/TargetType.html Online documentation}
|
7054
7054
|
*/
|
7055
7055
|
export type TargetType = "entity" | "position" | "direction"
|
7056
7056
|
export interface BeamTarget {
|
@@ -7087,8 +7087,8 @@ declare module "factorio:runtime" {
|
|
7087
7087
|
*
|
7088
7088
|
* The validity of a SoundPath can be verified at runtime using {@link LuaHelpers#is_valid_sound_path LuaHelpers::is_valid_sound_path}.
|
7089
7089
|
*
|
7090
|
-
* {@link https://lua-api.factorio.com/2.0.
|
7091
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7090
|
+
* {@link https://lua-api.factorio.com/2.0.23/concepts/SoundPath.html > The utility and ambient types each contain general use sound prototypes defined by the game itself.}
|
7091
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/SoundPath.html Online documentation}
|
7092
7092
|
*/
|
7093
7093
|
export type SoundPath = (string & { _?: never }) | `${SoundCategory}/${string}`
|
7094
7094
|
export interface CircularParticleCreationSpecification {
|
@@ -7220,7 +7220,7 @@ declare module "factorio:runtime" {
|
|
7220
7220
|
* Other attributes may be specified depending on `type`:
|
7221
7221
|
* - `"projectile"`: {@link ProjectileAttackParameters}
|
7222
7222
|
* - `"stream"`: {@link StreamAttackParameters}
|
7223
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7223
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/AttackParameters.html Online documentation}
|
7224
7224
|
*/
|
7225
7225
|
export type AttackParameters = ProjectileAttackParameters | StreamAttackParameters | OtherAttackParameters
|
7226
7226
|
export interface GunShift4Way {
|
@@ -7286,7 +7286,7 @@ declare module "factorio:runtime" {
|
|
7286
7286
|
* - `"use-on-self"`: {@link UseOnSelfCapsuleAction}
|
7287
7287
|
* - `"artillery-remote"`: {@link ArtilleryRemoteCapsuleAction}
|
7288
7288
|
* - `"destroy-cliffs"`: {@link DestroyCliffsCapsuleAction}
|
7289
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7289
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/CapsuleAction.html Online documentation}
|
7290
7290
|
*/
|
7291
7291
|
export type CapsuleAction =
|
7292
7292
|
| ThrowCapsuleAction
|
@@ -7326,12 +7326,12 @@ declare module "factorio:runtime" {
|
|
7326
7326
|
}
|
7327
7327
|
/**
|
7328
7328
|
* Any basic type (string, number, boolean) or table.
|
7329
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7329
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/AnyBasic.html Online documentation}
|
7330
7330
|
*/
|
7331
7331
|
export type AnyBasic = string | boolean | number | table
|
7332
7332
|
/**
|
7333
7333
|
* Any basic type (string, number, boolean), table, or LuaObject.
|
7334
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7334
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/Any.html Online documentation}
|
7335
7335
|
*/
|
7336
7336
|
export type Any = string | boolean | number | table | LuaObject
|
7337
7337
|
export interface ProgrammableSpeakerParameters {
|
@@ -7369,7 +7369,7 @@ declare module "factorio:runtime" {
|
|
7369
7369
|
* - `"top-right"`
|
7370
7370
|
* - `"right"`: The same as `"middle-right"`
|
7371
7371
|
* - `"bottom-right"`
|
7372
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7372
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/Alignment.html Online documentation}
|
7373
7373
|
*/
|
7374
7374
|
export type Alignment =
|
7375
7375
|
| "top-left"
|
@@ -7402,8 +7402,8 @@ declare module "factorio:runtime" {
|
|
7402
7402
|
_customEventIdBrand: any
|
7403
7403
|
}
|
7404
7404
|
/**
|
7405
|
-
* Information about the event that has been raised. The table can also contain other fields depending on the type of event. See {@linkplain https://lua-api.factorio.com/2.0.
|
7406
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7405
|
+
* Information about the event that has been raised. The table can also contain other fields depending on the type of event. See {@linkplain https://lua-api.factorio.com/2.0.23/events.html the list of Factorio events} for more information on these.
|
7406
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/EventData.html Online documentation}
|
7407
7407
|
*/
|
7408
7408
|
export interface EventData {
|
7409
7409
|
/**
|
@@ -7512,7 +7512,7 @@ declare module "factorio:runtime" {
|
|
7512
7512
|
* - `"button-7"`
|
7513
7513
|
* - `"button-8"`
|
7514
7514
|
* - `"button-9"`
|
7515
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7515
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/MouseButtonFlags.html Online documentation}
|
7516
7516
|
*/
|
7517
7517
|
export interface MouseButtonFlags {
|
7518
7518
|
readonly left?: true
|
@@ -7535,7 +7535,7 @@ declare module "factorio:runtime" {
|
|
7535
7535
|
* - `"not-friend"`: Forces which are not friends pass.
|
7536
7536
|
* - `"same"`: The same force pass.
|
7537
7537
|
* - `"not-same"`: The non-same forces pass.
|
7538
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7538
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/ForceCondition.html Online documentation}
|
7539
7539
|
*/
|
7540
7540
|
export type ForceCondition = "all" | "enemy" | "ally" | "friend" | "not-friend" | "same" | "not-same"
|
7541
7541
|
export interface ItemStackLocation {
|
@@ -7573,7 +7573,7 @@ declare module "factorio:runtime" {
|
|
7573
7573
|
* - `"tabbed-pane"`: A collection of `tab`s and their contents. Relevant event: {@link OnGuiSelectedTabChangedEvent on_gui_selected_tab_changed}
|
7574
7574
|
* - `"tab"`: A tab for use in a `tabbed-pane`.
|
7575
7575
|
* - `"switch"`: A switch with three possible states. Can have labels attached to either side. Relevant event: {@link OnGuiSwitchStateChangedEvent on_gui_switch_state_changed}
|
7576
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7576
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/GuiElementType.html Online documentation}
|
7577
7577
|
*/
|
7578
7578
|
export type GuiElementType =
|
7579
7579
|
| "button"
|
@@ -7613,7 +7613,7 @@ declare module "factorio:runtime" {
|
|
7613
7613
|
* - `"position"`
|
7614
7614
|
* - `"crafting_queue"`
|
7615
7615
|
* - `"item_stack"`: Will point to a given item stack in an inventory.
|
7616
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7616
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/GuiArrowType.html Online documentation}
|
7617
7617
|
*/
|
7618
7618
|
export type GuiArrowType =
|
7619
7619
|
| "nowhere"
|
@@ -7630,7 +7630,7 @@ declare module "factorio:runtime" {
|
|
7630
7630
|
* ## Union members
|
7631
7631
|
* - `"horizontal"`
|
7632
7632
|
* - `"vertical"`
|
7633
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7633
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/GuiDirection.html Online documentation}
|
7634
7634
|
*/
|
7635
7635
|
export type GuiDirection = "horizontal" | "vertical"
|
7636
7636
|
/**
|
@@ -7642,7 +7642,7 @@ declare module "factorio:runtime" {
|
|
7642
7642
|
* - `"always"`
|
7643
7643
|
* - `"auto"`
|
7644
7644
|
* - `"auto-and-reserve-space"`
|
7645
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7645
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/ScrollPolicy.html Online documentation}
|
7646
7646
|
*/
|
7647
7647
|
export type ScrollPolicy = "never" | "dont-show-but-allow-scrolling" | "always" | "auto" | "auto-and-reserve-space"
|
7648
7648
|
export interface RailLocation {
|
@@ -7659,71 +7659,71 @@ declare module "factorio:runtime" {
|
|
7659
7659
|
}
|
7660
7660
|
/**
|
7661
7661
|
* A floating-point number. This is a single-precision floating point number. Whilst Lua only uses double-precision numbers, when a function takes a float, the game engine will immediately convert the double-precision number to single-precision.
|
7662
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7662
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/float.html Online documentation}
|
7663
7663
|
*/
|
7664
7664
|
export type float = number
|
7665
7665
|
/**
|
7666
7666
|
* A double-precision floating-point number. This is the same data type as all Lua numbers use.
|
7667
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7667
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/double.html Online documentation}
|
7668
7668
|
*/
|
7669
7669
|
export type double = number
|
7670
7670
|
/**
|
7671
7671
|
* 32-bit signed integer. Possible values are `-2 147 483 648` to `2 147 483 647`.
|
7672
7672
|
*
|
7673
7673
|
* Since Lua 5.2 only uses doubles, any API that asks for `int` will floor the given double.
|
7674
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7674
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/int.html Online documentation}
|
7675
7675
|
*/
|
7676
7676
|
export type int = number
|
7677
7677
|
/**
|
7678
7678
|
* 8-bit signed integer. Possible values are `-128` to `127`.
|
7679
7679
|
*
|
7680
7680
|
* Since Lua 5.2 only uses doubles, any API that asks for `int8` will floor the given double.
|
7681
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7681
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/int8.html Online documentation}
|
7682
7682
|
*/
|
7683
7683
|
export type int8 = number
|
7684
7684
|
/**
|
7685
7685
|
* 32-bit unsigned integer. Possible values are `0` to `4 294 967 295`.
|
7686
7686
|
*
|
7687
7687
|
* Since Lua 5.2 only uses doubles, any API that asks for `uint` will floor the given double.
|
7688
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7688
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/uint.html Online documentation}
|
7689
7689
|
*/
|
7690
7690
|
export type uint = number
|
7691
7691
|
/**
|
7692
7692
|
* 8-bit unsigned integer. Possible values are `0` to `255`.
|
7693
7693
|
*
|
7694
7694
|
* Since Lua 5.2 only uses doubles, any API that asks for `uint8` will floor the given double.
|
7695
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7695
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/uint8.html Online documentation}
|
7696
7696
|
*/
|
7697
7697
|
export type uint8 = number
|
7698
7698
|
/**
|
7699
7699
|
* 16-bit unsigned integer. Possible values are `0` to `65 535`.
|
7700
7700
|
*
|
7701
7701
|
* Since Lua 5.2 only uses doubles, any API that asks for `uint16` will floor the given double.
|
7702
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7702
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/uint16.html Online documentation}
|
7703
7703
|
*/
|
7704
7704
|
export type uint16 = number
|
7705
7705
|
/**
|
7706
7706
|
* 64-bit unsigned integer. Possible values are `0` to `18 446 744 073 709 551 615`.
|
7707
7707
|
*
|
7708
7708
|
* Since Lua 5.2 only uses doubles, any API that asks for `uint64` will floor the given double.
|
7709
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7709
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/uint64.html Online documentation}
|
7710
7710
|
*/
|
7711
7711
|
export type uint64 = number
|
7712
7712
|
/**
|
7713
7713
|
* Nil is the type of the value `nil`, whose main property is to be different from any other value. It usually represents the absence of a useful value.
|
7714
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7714
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/nil.html Online documentation}
|
7715
7715
|
*/
|
7716
7716
|
export type nil = undefined
|
7717
7717
|
/**
|
7718
7718
|
* Tables are enclosed in curly brackets, like this `{}`.
|
7719
7719
|
*
|
7720
7720
|
* Throughout the API docs, the terms "array" and "dictionary" are used. These are fundamentally just {@linkplain http://www.lua.org/pil/2.5.html Lua tables}, but have a limitation on which kind of table keys can be used. An array is a table that uses continuous integer keys starting at `1`, while a dictionary can use numeric or string keys in any order or combination.
|
7721
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7721
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/table.html Online documentation}
|
7722
7722
|
*/
|
7723
7723
|
export type table = object
|
7724
7724
|
/**
|
7725
|
-
* Any LuaObject listed on the {@linkplain https://lua-api.factorio.com/2.0.
|
7726
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7725
|
+
* Any LuaObject listed on the {@linkplain https://lua-api.factorio.com/2.0.23/classes.html Classes} page.
|
7726
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/LuaObject.html Online documentation}
|
7727
7727
|
*/
|
7728
7728
|
export interface LuaObject {
|
7729
7729
|
readonly object_name: string
|
@@ -7782,7 +7782,7 @@ declare module "factorio:runtime" {
|
|
7782
7782
|
* - `"type"`: {@link TypeModSettingPrototypeFilter}
|
7783
7783
|
* - `"mod"`: {@link ModModSettingPrototypeFilter}
|
7784
7784
|
* - `"setting-type"`: {@link SettingTypeModSettingPrototypeFilter}
|
7785
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7785
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/ModSettingPrototypeFilter.html Online documentation}
|
7786
7786
|
*/
|
7787
7787
|
export type ModSettingPrototypeFilter =
|
7788
7788
|
| TypeModSettingPrototypeFilter
|
@@ -7927,7 +7927,7 @@ declare module "factorio:runtime" {
|
|
7927
7927
|
* - `"vehicle-friction-modifier"`: {@link VehicleFrictionModifierTilePrototypeFilter}
|
7928
7928
|
* - `"decorative-removal-probability"`: {@link DecorativeRemovalProbabilityTilePrototypeFilter}
|
7929
7929
|
* - `"absorptions-per-second"`: {@link AbsorptionsPerSecondTilePrototypeFilter}
|
7930
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7930
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/TilePrototypeFilter.html Online documentation}
|
7931
7931
|
*/
|
7932
7932
|
export type TilePrototypeFilter =
|
7933
7933
|
| CollisionMaskTilePrototypeFilter
|
@@ -7938,7 +7938,7 @@ declare module "factorio:runtime" {
|
|
7938
7938
|
| OtherTilePrototypeFilter
|
7939
7939
|
/**
|
7940
7940
|
* Write form of {@link TilePrototypeFilter}, where some properties allow additional values as input compared to the read form.
|
7941
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7941
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/TilePrototypeFilter.html Online documentation}
|
7942
7942
|
*/
|
7943
7943
|
export type TilePrototypeFilterWrite =
|
7944
7944
|
| CollisionMaskTilePrototypeFilter
|
@@ -7989,7 +7989,7 @@ declare module "factorio:runtime" {
|
|
7989
7989
|
*
|
7990
7990
|
* Other attributes may be specified depending on `filter`:
|
7991
7991
|
* - `"collision-mask"`: {@link CollisionMaskDecorativePrototypeFilter}
|
7992
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
7992
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/DecorativePrototypeFilter.html Online documentation}
|
7993
7993
|
*/
|
7994
7994
|
export type DecorativePrototypeFilter = CollisionMaskDecorativePrototypeFilter | OtherDecorativePrototypeFilter
|
7995
7995
|
/**
|
@@ -8243,7 +8243,7 @@ declare module "factorio:runtime" {
|
|
8243
8243
|
* - `"emissions-multiplier"`: {@link EmissionsMultiplierRecipePrototypeFilter}
|
8244
8244
|
* - `"request-paste-multiplier"`: {@link RequestPasteMultiplierRecipePrototypeFilter}
|
8245
8245
|
* - `"overload-multiplier"`: {@link OverloadMultiplierRecipePrototypeFilter}
|
8246
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
8246
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/RecipePrototypeFilter.html Online documentation}
|
8247
8247
|
*/
|
8248
8248
|
export type RecipePrototypeFilter =
|
8249
8249
|
| HasIngredientItemRecipePrototypeFilter
|
@@ -8259,7 +8259,7 @@ declare module "factorio:runtime" {
|
|
8259
8259
|
| OtherRecipePrototypeFilter
|
8260
8260
|
/**
|
8261
8261
|
* Write form of {@link RecipePrototypeFilter}, where some properties allow additional values as input compared to the read form.
|
8262
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
8262
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/RecipePrototypeFilter.html Online documentation}
|
8263
8263
|
*/
|
8264
8264
|
export type RecipePrototypeFilterWrite =
|
8265
8265
|
| HasIngredientItemRecipePrototypeFilterWrite
|
@@ -8311,7 +8311,7 @@ declare module "factorio:runtime" {
|
|
8311
8311
|
*
|
8312
8312
|
* Other attributes may be specified depending on `filter`:
|
8313
8313
|
* - `"type"`: {@link TypeAchievementPrototypeFilter}
|
8314
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
8314
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/AchievementPrototypeFilter.html Online documentation}
|
8315
8315
|
*/
|
8316
8316
|
export type AchievementPrototypeFilter = TypeAchievementPrototypeFilter | OtherAchievementPrototypeFilter
|
8317
8317
|
/**
|
@@ -8434,7 +8434,7 @@ declare module "factorio:runtime" {
|
|
8434
8434
|
* - `"level"`: {@link LevelTechnologyPrototypeFilter}
|
8435
8435
|
* - `"max-level"`: {@link MaxLevelTechnologyPrototypeFilter}
|
8436
8436
|
* - `"time"`: {@link TimeTechnologyPrototypeFilter}
|
8437
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
8437
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/TechnologyPrototypeFilter.html Online documentation}
|
8438
8438
|
*/
|
8439
8439
|
export type TechnologyPrototypeFilter =
|
8440
8440
|
| ResearchUnitIngredientTechnologyPrototypeFilter
|
@@ -8445,7 +8445,7 @@ declare module "factorio:runtime" {
|
|
8445
8445
|
| OtherTechnologyPrototypeFilter
|
8446
8446
|
/**
|
8447
8447
|
* Write form of {@link TechnologyPrototypeFilter}, where some properties allow additional values as input compared to the read form.
|
8448
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
8448
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/TechnologyPrototypeFilter.html Online documentation}
|
8449
8449
|
*/
|
8450
8450
|
export type TechnologyPrototypeFilterWrite =
|
8451
8451
|
| ResearchUnitIngredientTechnologyPrototypeFilter
|
@@ -8762,7 +8762,7 @@ declare module "factorio:runtime" {
|
|
8762
8762
|
* - `"fuel-acceleration-multiplier"`: {@link FuelAccelerationMultiplierItemPrototypeFilter}
|
8763
8763
|
* - `"fuel-top-speed-multiplier"`: {@link FuelTopSpeedMultiplierItemPrototypeFilter}
|
8764
8764
|
* - `"fuel-emissions-multiplier"`: {@link FuelEmissionsMultiplierItemPrototypeFilter}
|
8765
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
8765
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/ItemPrototypeFilter.html Online documentation}
|
8766
8766
|
*/
|
8767
8767
|
export type ItemPrototypeFilter =
|
8768
8768
|
| PlaceResultItemPrototypeFilter
|
@@ -8782,7 +8782,7 @@ declare module "factorio:runtime" {
|
|
8782
8782
|
| OtherItemPrototypeFilter
|
8783
8783
|
/**
|
8784
8784
|
* Write form of {@link ItemPrototypeFilter}, where some properties allow additional values as input compared to the read form.
|
8785
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
8785
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/ItemPrototypeFilter.html Online documentation}
|
8786
8786
|
*/
|
8787
8787
|
export type ItemPrototypeFilterWrite =
|
8788
8788
|
| PlaceResultItemPrototypeFilterWrite
|
@@ -8838,7 +8838,7 @@ declare module "factorio:runtime" {
|
|
8838
8838
|
*
|
8839
8839
|
* Other attributes may be specified depending on `filter`:
|
8840
8840
|
* - `"type"`: {@link TypeEquipmentPrototypeFilter}
|
8841
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
8841
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/EquipmentPrototypeFilter.html Online documentation}
|
8842
8842
|
*/
|
8843
8843
|
export type EquipmentPrototypeFilter = TypeEquipmentPrototypeFilter | OtherEquipmentPrototypeFilter
|
8844
8844
|
/**
|
@@ -9069,7 +9069,7 @@ declare module "factorio:runtime" {
|
|
9069
9069
|
* - `"selection-priority"`: {@link SelectionPriorityEntityPrototypeFilter}
|
9070
9070
|
* - `"emissions-per-second"`: {@link EmissionsPerSecondEntityPrototypeFilter}
|
9071
9071
|
* - `"crafting-category"`: {@link CraftingCategoryEntityPrototypeFilter}
|
9072
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
9072
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/EntityPrototypeFilter.html Online documentation}
|
9073
9073
|
*/
|
9074
9074
|
export type EntityPrototypeFilter =
|
9075
9075
|
| NameEntityPrototypeFilter
|
@@ -9083,7 +9083,7 @@ declare module "factorio:runtime" {
|
|
9083
9083
|
| OtherEntityPrototypeFilter
|
9084
9084
|
/**
|
9085
9085
|
* Write form of {@link EntityPrototypeFilter}, where some properties allow additional values as input compared to the read form.
|
9086
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
9086
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/EntityPrototypeFilter.html Online documentation}
|
9087
9087
|
*/
|
9088
9088
|
export type EntityPrototypeFilterWrite =
|
9089
9089
|
| NameEntityPrototypeFilter
|
@@ -9153,7 +9153,7 @@ declare module "factorio:runtime" {
|
|
9153
9153
|
* Other attributes may be specified depending on `filter`:
|
9154
9154
|
* - `"type"`: {@link TypeSpaceLocationPrototypeFilter}
|
9155
9155
|
* - `"solar-power-in-space"`: {@link SolarPowerInSpaceSpaceLocationPrototypeFilter}
|
9156
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
9156
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/SpaceLocationPrototypeFilter.html Online documentation}
|
9157
9157
|
*/
|
9158
9158
|
export type SpaceLocationPrototypeFilter =
|
9159
9159
|
| TypeSpaceLocationPrototypeFilter
|
@@ -9161,7 +9161,7 @@ declare module "factorio:runtime" {
|
|
9161
9161
|
| OtherSpaceLocationPrototypeFilter
|
9162
9162
|
/**
|
9163
9163
|
* Write form of {@link SpaceLocationPrototypeFilter}, where some properties allow additional values as input compared to the read form.
|
9164
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
9164
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/SpaceLocationPrototypeFilter.html Online documentation}
|
9165
9165
|
*/
|
9166
9166
|
export type SpaceLocationPrototypeFilterWrite =
|
9167
9167
|
| TypeSpaceLocationPrototypeFilter
|
@@ -9349,7 +9349,7 @@ declare module "factorio:runtime" {
|
|
9349
9349
|
* - `"fuel-value"`: {@link FuelValueFluidPrototypeFilter}
|
9350
9350
|
* - `"emissions-multiplier"`: {@link EmissionsMultiplierFluidPrototypeFilter}
|
9351
9351
|
* - `"gas-temperature"`: {@link GasTemperatureFluidPrototypeFilter}
|
9352
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
9352
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/FluidPrototypeFilter.html Online documentation}
|
9353
9353
|
*/
|
9354
9354
|
export type FluidPrototypeFilter =
|
9355
9355
|
| NameFluidPrototypeFilter
|
@@ -9363,7 +9363,7 @@ declare module "factorio:runtime" {
|
|
9363
9363
|
| OtherFluidPrototypeFilter
|
9364
9364
|
/**
|
9365
9365
|
* Write form of {@link FluidPrototypeFilter}, where some properties allow additional values as input compared to the read form.
|
9366
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
9366
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/FluidPrototypeFilter.html Online documentation}
|
9367
9367
|
*/
|
9368
9368
|
export type FluidPrototypeFilterWrite =
|
9369
9369
|
| NameFluidPrototypeFilter
|
@@ -9472,7 +9472,7 @@ declare module "factorio:runtime" {
|
|
9472
9472
|
* - `"name"`: {@link NamePrePlatformMinedEntityEventFilter}
|
9473
9473
|
* - `"ghost_type"`: {@link GhostTypePrePlatformMinedEntityEventFilter}
|
9474
9474
|
* - `"ghost_name"`: {@link GhostNamePrePlatformMinedEntityEventFilter}
|
9475
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
9475
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/LuaPrePlatformMinedEntityEventFilter.html Online documentation}
|
9476
9476
|
*/
|
9477
9477
|
export type LuaPrePlatformMinedEntityEventFilter =
|
9478
9478
|
| TypePrePlatformMinedEntityEventFilter
|
@@ -9577,7 +9577,7 @@ declare module "factorio:runtime" {
|
|
9577
9577
|
* - `"name"`: {@link NameRobotMinedEntityEventFilter}
|
9578
9578
|
* - `"ghost_type"`: {@link GhostTypeRobotMinedEntityEventFilter}
|
9579
9579
|
* - `"ghost_name"`: {@link GhostNameRobotMinedEntityEventFilter}
|
9580
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
9580
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/LuaRobotMinedEntityEventFilter.html Online documentation}
|
9581
9581
|
*/
|
9582
9582
|
export type LuaRobotMinedEntityEventFilter =
|
9583
9583
|
| TypeRobotMinedEntityEventFilter
|
@@ -9682,7 +9682,7 @@ declare module "factorio:runtime" {
|
|
9682
9682
|
* - `"name"`: {@link NameEntityMarkedForUpgradeEventFilter}
|
9683
9683
|
* - `"ghost_type"`: {@link GhostTypeEntityMarkedForUpgradeEventFilter}
|
9684
9684
|
* - `"ghost_name"`: {@link GhostNameEntityMarkedForUpgradeEventFilter}
|
9685
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
9685
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/LuaEntityMarkedForUpgradeEventFilter.html Online documentation}
|
9686
9686
|
*/
|
9687
9687
|
export type LuaEntityMarkedForUpgradeEventFilter =
|
9688
9688
|
| TypeEntityMarkedForUpgradeEventFilter
|
@@ -9787,7 +9787,7 @@ declare module "factorio:runtime" {
|
|
9787
9787
|
* - `"name"`: {@link NamePreGhostUpgradedEventFilter}
|
9788
9788
|
* - `"ghost_type"`: {@link GhostTypePreGhostUpgradedEventFilter}
|
9789
9789
|
* - `"ghost_name"`: {@link GhostNamePreGhostUpgradedEventFilter}
|
9790
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
9790
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/LuaPreGhostUpgradedEventFilter.html Online documentation}
|
9791
9791
|
*/
|
9792
9792
|
export type LuaPreGhostUpgradedEventFilter =
|
9793
9793
|
| TypePreGhostUpgradedEventFilter
|
@@ -9892,7 +9892,7 @@ declare module "factorio:runtime" {
|
|
9892
9892
|
* - `"name"`: {@link NamePlatformMinedEntityEventFilter}
|
9893
9893
|
* - `"ghost_type"`: {@link GhostTypePlatformMinedEntityEventFilter}
|
9894
9894
|
* - `"ghost_name"`: {@link GhostNamePlatformMinedEntityEventFilter}
|
9895
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
9895
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/LuaPlatformMinedEntityEventFilter.html Online documentation}
|
9896
9896
|
*/
|
9897
9897
|
export type LuaPlatformMinedEntityEventFilter =
|
9898
9898
|
| TypePlatformMinedEntityEventFilter
|
@@ -9997,7 +9997,7 @@ declare module "factorio:runtime" {
|
|
9997
9997
|
* - `"name"`: {@link NameScriptRaisedDestroyEventFilter}
|
9998
9998
|
* - `"ghost_type"`: {@link GhostTypeScriptRaisedDestroyEventFilter}
|
9999
9999
|
* - `"ghost_name"`: {@link GhostNameScriptRaisedDestroyEventFilter}
|
10000
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
10000
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/LuaScriptRaisedDestroyEventFilter.html Online documentation}
|
10001
10001
|
*/
|
10002
10002
|
export type LuaScriptRaisedDestroyEventFilter =
|
10003
10003
|
| TypeScriptRaisedDestroyEventFilter
|
@@ -10114,7 +10114,7 @@ declare module "factorio:runtime" {
|
|
10114
10114
|
* - `"ghost_type"`: {@link GhostTypePlayerBuiltEntityEventFilter}
|
10115
10115
|
* - `"ghost_name"`: {@link GhostNamePlayerBuiltEntityEventFilter}
|
10116
10116
|
* - `"force"`: {@link ForcePlayerBuiltEntityEventFilter}
|
10117
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
10117
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/LuaPlayerBuiltEntityEventFilter.html Online documentation}
|
10118
10118
|
*/
|
10119
10119
|
export type LuaPlayerBuiltEntityEventFilter =
|
10120
10120
|
| TypePlayerBuiltEntityEventFilter
|
@@ -10232,7 +10232,7 @@ declare module "factorio:runtime" {
|
|
10232
10232
|
* - `"ghost_type"`: {@link GhostTypePlatformBuiltEntityEventFilter}
|
10233
10233
|
* - `"ghost_name"`: {@link GhostNamePlatformBuiltEntityEventFilter}
|
10234
10234
|
* - `"force"`: {@link ForcePlatformBuiltEntityEventFilter}
|
10235
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
10235
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/LuaPlatformBuiltEntityEventFilter.html Online documentation}
|
10236
10236
|
*/
|
10237
10237
|
export type LuaPlatformBuiltEntityEventFilter =
|
10238
10238
|
| TypePlatformBuiltEntityEventFilter
|
@@ -10338,7 +10338,7 @@ declare module "factorio:runtime" {
|
|
10338
10338
|
* - `"name"`: {@link NamePreGhostDeconstructedEventFilter}
|
10339
10339
|
* - `"ghost_type"`: {@link GhostTypePreGhostDeconstructedEventFilter}
|
10340
10340
|
* - `"ghost_name"`: {@link GhostNamePreGhostDeconstructedEventFilter}
|
10341
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
10341
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/LuaPreGhostDeconstructedEventFilter.html Online documentation}
|
10342
10342
|
*/
|
10343
10343
|
export type LuaPreGhostDeconstructedEventFilter =
|
10344
10344
|
| TypePreGhostDeconstructedEventFilter
|
@@ -10443,7 +10443,7 @@ declare module "factorio:runtime" {
|
|
10443
10443
|
* - `"name"`: {@link NameEntityClonedEventFilter}
|
10444
10444
|
* - `"ghost_type"`: {@link GhostTypeEntityClonedEventFilter}
|
10445
10445
|
* - `"ghost_name"`: {@link GhostNameEntityClonedEventFilter}
|
10446
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
10446
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/LuaEntityClonedEventFilter.html Online documentation}
|
10447
10447
|
*/
|
10448
10448
|
export type LuaEntityClonedEventFilter =
|
10449
10449
|
| TypeEntityClonedEventFilter
|
@@ -10548,7 +10548,7 @@ declare module "factorio:runtime" {
|
|
10548
10548
|
* - `"name"`: {@link NameScriptRaisedTeleportedEventFilter}
|
10549
10549
|
* - `"ghost_type"`: {@link GhostTypeScriptRaisedTeleportedEventFilter}
|
10550
10550
|
* - `"ghost_name"`: {@link GhostNameScriptRaisedTeleportedEventFilter}
|
10551
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
10551
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/LuaScriptRaisedTeleportedEventFilter.html Online documentation}
|
10552
10552
|
*/
|
10553
10553
|
export type LuaScriptRaisedTeleportedEventFilter =
|
10554
10554
|
| TypeScriptRaisedTeleportedEventFilter
|
@@ -10655,7 +10655,7 @@ declare module "factorio:runtime" {
|
|
10655
10655
|
* - `"name"`: {@link NameEntityDeconstructionCancelledEventFilter}
|
10656
10656
|
* - `"ghost_type"`: {@link GhostTypeEntityDeconstructionCancelledEventFilter}
|
10657
10657
|
* - `"ghost_name"`: {@link GhostNameEntityDeconstructionCancelledEventFilter}
|
10658
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
10658
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/LuaEntityDeconstructionCancelledEventFilter.html Online documentation}
|
10659
10659
|
*/
|
10660
10660
|
export type LuaEntityDeconstructionCancelledEventFilter =
|
10661
10661
|
| TypeEntityDeconstructionCancelledEventFilter
|
@@ -10772,7 +10772,7 @@ declare module "factorio:runtime" {
|
|
10772
10772
|
* - `"ghost_type"`: {@link GhostTypeRobotBuiltEntityEventFilter}
|
10773
10773
|
* - `"ghost_name"`: {@link GhostNameRobotBuiltEntityEventFilter}
|
10774
10774
|
* - `"force"`: {@link ForceRobotBuiltEntityEventFilter}
|
10775
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
10775
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/LuaRobotBuiltEntityEventFilter.html Online documentation}
|
10776
10776
|
*/
|
10777
10777
|
export type LuaRobotBuiltEntityEventFilter =
|
10778
10778
|
| TypeRobotBuiltEntityEventFilter
|
@@ -10878,7 +10878,7 @@ declare module "factorio:runtime" {
|
|
10878
10878
|
* - `"name"`: {@link NameScriptRaisedBuiltEventFilter}
|
10879
10879
|
* - `"ghost_type"`: {@link GhostTypeScriptRaisedBuiltEventFilter}
|
10880
10880
|
* - `"ghost_name"`: {@link GhostNameScriptRaisedBuiltEventFilter}
|
10881
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
10881
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/LuaScriptRaisedBuiltEventFilter.html Online documentation}
|
10882
10882
|
*/
|
10883
10883
|
export type LuaScriptRaisedBuiltEventFilter =
|
10884
10884
|
| TypeScriptRaisedBuiltEventFilter
|
@@ -10983,7 +10983,7 @@ declare module "factorio:runtime" {
|
|
10983
10983
|
* - `"name"`: {@link NamePrePlayerMinedEntityEventFilter}
|
10984
10984
|
* - `"ghost_type"`: {@link GhostTypePrePlayerMinedEntityEventFilter}
|
10985
10985
|
* - `"ghost_name"`: {@link GhostNamePrePlayerMinedEntityEventFilter}
|
10986
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
10986
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/LuaPrePlayerMinedEntityEventFilter.html Online documentation}
|
10987
10987
|
*/
|
10988
10988
|
export type LuaPrePlayerMinedEntityEventFilter =
|
10989
10989
|
| TypePrePlayerMinedEntityEventFilter
|
@@ -11088,7 +11088,7 @@ declare module "factorio:runtime" {
|
|
11088
11088
|
* - `"name"`: {@link NamePlayerRepairedEntityEventFilter}
|
11089
11089
|
* - `"ghost_type"`: {@link GhostTypePlayerRepairedEntityEventFilter}
|
11090
11090
|
* - `"ghost_name"`: {@link GhostNamePlayerRepairedEntityEventFilter}
|
11091
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
11091
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/LuaPlayerRepairedEntityEventFilter.html Online documentation}
|
11092
11092
|
*/
|
11093
11093
|
export type LuaPlayerRepairedEntityEventFilter =
|
11094
11094
|
| TypePlayerRepairedEntityEventFilter
|
@@ -11193,7 +11193,7 @@ declare module "factorio:runtime" {
|
|
11193
11193
|
* - `"name"`: {@link NameUpgradeCancelledEventFilter}
|
11194
11194
|
* - `"ghost_type"`: {@link GhostTypeUpgradeCancelledEventFilter}
|
11195
11195
|
* - `"ghost_name"`: {@link GhostNameUpgradeCancelledEventFilter}
|
11196
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
11196
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/LuaUpgradeCancelledEventFilter.html Online documentation}
|
11197
11197
|
*/
|
11198
11198
|
export type LuaUpgradeCancelledEventFilter =
|
11199
11199
|
| TypeUpgradeCancelledEventFilter
|
@@ -11298,7 +11298,7 @@ declare module "factorio:runtime" {
|
|
11298
11298
|
* - `"name"`: {@link NameSectorScannedEventFilter}
|
11299
11299
|
* - `"ghost_type"`: {@link GhostTypeSectorScannedEventFilter}
|
11300
11300
|
* - `"ghost_name"`: {@link GhostNameSectorScannedEventFilter}
|
11301
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
11301
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/LuaSectorScannedEventFilter.html Online documentation}
|
11302
11302
|
*/
|
11303
11303
|
export type LuaSectorScannedEventFilter =
|
11304
11304
|
| TypeSectorScannedEventFilter
|
@@ -11344,7 +11344,7 @@ declare module "factorio:runtime" {
|
|
11344
11344
|
*
|
11345
11345
|
* Other attributes may be specified depending on `filter`:
|
11346
11346
|
* - `"type"`: {@link TypePostEntityDiedEventFilter}
|
11347
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
11347
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/LuaPostEntityDiedEventFilter.html Online documentation}
|
11348
11348
|
*/
|
11349
11349
|
export type LuaPostEntityDiedEventFilter = TypePostEntityDiedEventFilter | OtherPostEntityDiedEventFilter
|
11350
11350
|
/**
|
@@ -11446,7 +11446,7 @@ declare module "factorio:runtime" {
|
|
11446
11446
|
* - `"name"`: {@link NameEntityMarkedForDeconstructionEventFilter}
|
11447
11447
|
* - `"ghost_type"`: {@link GhostTypeEntityMarkedForDeconstructionEventFilter}
|
11448
11448
|
* - `"ghost_name"`: {@link GhostNameEntityMarkedForDeconstructionEventFilter}
|
11449
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
11449
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/LuaEntityMarkedForDeconstructionEventFilter.html Online documentation}
|
11450
11450
|
*/
|
11451
11451
|
export type LuaEntityMarkedForDeconstructionEventFilter =
|
11452
11452
|
| TypeEntityMarkedForDeconstructionEventFilter
|
@@ -11551,7 +11551,7 @@ declare module "factorio:runtime" {
|
|
11551
11551
|
* - `"name"`: {@link NamePlayerMinedEntityEventFilter}
|
11552
11552
|
* - `"ghost_type"`: {@link GhostTypePlayerMinedEntityEventFilter}
|
11553
11553
|
* - `"ghost_name"`: {@link GhostNamePlayerMinedEntityEventFilter}
|
11554
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
11554
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/LuaPlayerMinedEntityEventFilter.html Online documentation}
|
11555
11555
|
*/
|
11556
11556
|
export type LuaPlayerMinedEntityEventFilter =
|
11557
11557
|
| TypePlayerMinedEntityEventFilter
|
@@ -11731,7 +11731,7 @@ declare module "factorio:runtime" {
|
|
11731
11731
|
* - `"final-damage-amount"`: {@link FinalDamageAmountEntityDamagedEventFilter}
|
11732
11732
|
* - `"damage-type"`: {@link DamageTypeEntityDamagedEventFilter}
|
11733
11733
|
* - `"final-health"`: {@link FinalHealthEntityDamagedEventFilter}
|
11734
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
11734
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/LuaEntityDamagedEventFilter.html Online documentation}
|
11735
11735
|
*/
|
11736
11736
|
export type LuaEntityDamagedEventFilter =
|
11737
11737
|
| TypeEntityDamagedEventFilter
|
@@ -11745,7 +11745,7 @@ declare module "factorio:runtime" {
|
|
11745
11745
|
| OtherEntityDamagedEventFilter
|
11746
11746
|
/**
|
11747
11747
|
* Write form of {@link LuaEntityDamagedEventFilter}, where some properties allow additional values as input compared to the read form.
|
11748
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
11748
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/LuaEntityDamagedEventFilter.html Online documentation}
|
11749
11749
|
*/
|
11750
11750
|
export type LuaEntityDamagedEventFilterWrite =
|
11751
11751
|
| TypeEntityDamagedEventFilter
|
@@ -11854,7 +11854,7 @@ declare module "factorio:runtime" {
|
|
11854
11854
|
* - `"name"`: {@link NameScriptRaisedReviveEventFilter}
|
11855
11855
|
* - `"ghost_type"`: {@link GhostTypeScriptRaisedReviveEventFilter}
|
11856
11856
|
* - `"ghost_name"`: {@link GhostNameScriptRaisedReviveEventFilter}
|
11857
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
11857
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/LuaScriptRaisedReviveEventFilter.html Online documentation}
|
11858
11858
|
*/
|
11859
11859
|
export type LuaScriptRaisedReviveEventFilter =
|
11860
11860
|
| TypeScriptRaisedReviveEventFilter
|
@@ -11959,7 +11959,7 @@ declare module "factorio:runtime" {
|
|
11959
11959
|
* - `"name"`: {@link NameEntityDiedEventFilter}
|
11960
11960
|
* - `"ghost_type"`: {@link GhostTypeEntityDiedEventFilter}
|
11961
11961
|
* - `"ghost_name"`: {@link GhostNameEntityDiedEventFilter}
|
11962
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
11962
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/LuaEntityDiedEventFilter.html Online documentation}
|
11963
11963
|
*/
|
11964
11964
|
export type LuaEntityDiedEventFilter =
|
11965
11965
|
| TypeEntityDiedEventFilter
|
@@ -12064,7 +12064,7 @@ declare module "factorio:runtime" {
|
|
12064
12064
|
* - `"name"`: {@link NamePreRobotMinedEntityEventFilter}
|
12065
12065
|
* - `"ghost_type"`: {@link GhostTypePreRobotMinedEntityEventFilter}
|
12066
12066
|
* - `"ghost_name"`: {@link GhostNamePreRobotMinedEntityEventFilter}
|
12067
|
-
* @see {@link https://lua-api.factorio.com/2.0.
|
12067
|
+
* @see {@link https://lua-api.factorio.com/2.0.23/concepts/LuaPreRobotMinedEntityEventFilter.html Online documentation}
|
12068
12068
|
*/
|
12069
12069
|
export type LuaPreRobotMinedEntityEventFilter =
|
12070
12070
|
| TypePreRobotMinedEntityEventFilter
|