@wayward/types 2.15.0-beta.dev.20251002.1 → 2.15.0-beta.dev.20251003.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/definitions/game/game/IGame.d.ts +2 -1
- package/definitions/game/game/curse/Curse.d.ts +88 -0
- package/definitions/game/game/curse/CurseEvent.d.ts +111 -0
- package/definitions/game/game/curse/CurseEventDefinitions.d.ts +14 -0
- package/definitions/game/game/curse/ICurse.d.ts +49 -0
- package/definitions/game/game/curse/event/CurseEventFrigidNight.d.ts +13 -0
- package/definitions/game/game/curse/event/CurseEventHeatWave.d.ts +13 -0
- package/definitions/game/game/deity/Deity.d.ts +0 -2
- package/definitions/game/game/entity/IHuman.d.ts +5 -1
- package/definitions/game/game/entity/action/actions/SetTitle.d.ts +1 -1
- package/definitions/game/game/entity/player/MessageManager.d.ts +1 -1
- package/definitions/game/game/entity/status/IStatus.d.ts +30 -7
- package/definitions/game/game/entity/status/IStatusContext.d.ts +2 -1
- package/definitions/game/game/entity/status/Status.d.ts +2 -2
- package/definitions/game/game/entity/status/handler/BadTemperatureEffect.d.ts +3 -0
- package/definitions/game/game/entity/status/statuses/Cursed.d.ts +13 -0
- package/definitions/game/game/inspection/infoProviders/doodad/StillWater.d.ts +1 -0
- package/definitions/game/game/inspection/inspections/StatusInspection.d.ts +5 -2
- package/definitions/game/game/island/Island.d.ts +5 -1
- package/definitions/game/game/milestones/IMilestone.d.ts +1 -1
- package/definitions/game/game/temperature/TemperatureManager.d.ts +3 -0
- package/definitions/game/game/time/ITimeManager.d.ts +1 -0
- package/definitions/game/game/time/TimeManager.d.ts +4 -4
- package/definitions/game/language/Dictionary.d.ts +110 -108
- package/definitions/game/language/DictionaryMap.d.ts +221 -217
- package/definitions/game/language/dictionary/Message.d.ts +876 -869
- package/definitions/game/language/dictionary/Misc.d.ts +4 -0
- package/definitions/game/language/dictionary/UiTranslation.d.ts +665 -664
- package/definitions/game/language/english/game/CurseEventCategories.d.ts +13 -0
- package/definitions/game/language/english/game/CurseEvents.d.ts +13 -0
- package/definitions/game/language/english/ui/CurseComponents.d.ts +1 -1
- package/definitions/game/resource/IResourceLoader.d.ts +44 -42
- package/definitions/game/ui/screen/screens/game/static/stats/component/StatusContext.d.ts +2 -1
- package/definitions/game/ui/screen/screens/game/static/stats/component/StatusIcon.d.ts +2 -1
- package/definitions/game/ui/screen/screens/game/static/stats/component/Statuses.d.ts +1 -1
- package/definitions/utilities/class/Inject.d.ts +1 -1
- package/definitions/utilities/math/Math2.d.ts +1 -0
- package/definitions/utilities/object/Objects.d.ts +1 -0
- package/definitions/utilities/random/Random.d.ts +6 -0
- package/package.json +1 -1
- package/definitions/game/game/deity/Curse.d.ts +0 -40
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
import { Command } from "@wayward/game/command/ICommand";
|
|
12
12
|
import { Quality } from "@wayward/game/game/IObject";
|
|
13
13
|
import { BiomeType } from "@wayward/game/game/biome/IBiome";
|
|
14
|
-
import { CurseComponent } from "@wayward/game/game/
|
|
14
|
+
import { CurseCategory, CurseComponent, CurseEventType } from "@wayward/game/game/curse/ICurse";
|
|
15
15
|
import Deity from "@wayward/game/game/deity/Deity";
|
|
16
16
|
import { DoodadType, DoodadTypeExtra, DoodadTypeGroup, GrowingStage } from "@wayward/game/game/doodad/IDoodad";
|
|
17
17
|
import { CombatDangerLevel } from "@wayward/game/game/entity/ICombatStrength";
|
|
@@ -124,45 +124,47 @@ declare const dictionaryMap: {
|
|
|
124
124
|
21: typeof CraftingSort;
|
|
125
125
|
22: typeof CreatureType;
|
|
126
126
|
23: typeof CurseComponent;
|
|
127
|
-
24: typeof
|
|
128
|
-
25: typeof
|
|
129
|
-
26: typeof
|
|
130
|
-
27: typeof
|
|
131
|
-
28: typeof
|
|
132
|
-
29: typeof
|
|
133
|
-
30: typeof
|
|
134
|
-
31: typeof
|
|
135
|
-
32: typeof
|
|
136
|
-
33: typeof
|
|
137
|
-
34: typeof
|
|
138
|
-
35: typeof
|
|
139
|
-
36: typeof
|
|
140
|
-
37: typeof
|
|
141
|
-
38: typeof
|
|
142
|
-
39: typeof
|
|
143
|
-
40: typeof
|
|
144
|
-
41: typeof
|
|
145
|
-
42: typeof
|
|
146
|
-
43: typeof
|
|
147
|
-
44: typeof
|
|
148
|
-
45: typeof
|
|
149
|
-
46: typeof
|
|
150
|
-
47: typeof
|
|
151
|
-
48: typeof
|
|
152
|
-
49: typeof
|
|
153
|
-
50: typeof
|
|
154
|
-
51: typeof
|
|
155
|
-
52:
|
|
156
|
-
53: typeof
|
|
157
|
-
54:
|
|
158
|
-
55: typeof
|
|
159
|
-
56: typeof
|
|
160
|
-
57: typeof
|
|
161
|
-
58: typeof
|
|
162
|
-
59: typeof
|
|
163
|
-
60: typeof
|
|
164
|
-
61: typeof
|
|
165
|
-
62:
|
|
127
|
+
24: typeof CurseEventType;
|
|
128
|
+
25: typeof CurseCategory;
|
|
129
|
+
26: typeof DamageType;
|
|
130
|
+
27: typeof Deity;
|
|
131
|
+
28: typeof Deity;
|
|
132
|
+
29: typeof DialogId;
|
|
133
|
+
30: typeof Direction;
|
|
134
|
+
31: typeof InfoDisplayLevel;
|
|
135
|
+
32: typeof DoctorCureType;
|
|
136
|
+
33: typeof DoctorCureMethod;
|
|
137
|
+
34: typeof DoodadType;
|
|
138
|
+
35: typeof DoodadTypeExtra;
|
|
139
|
+
36: typeof DoodadTypeGroup;
|
|
140
|
+
37: typeof DrawnMapTheme;
|
|
141
|
+
38: typeof DurabilityLevel;
|
|
142
|
+
39: typeof EquipEffect;
|
|
143
|
+
40: typeof EquipType;
|
|
144
|
+
41: typeof ExhaustionLevel;
|
|
145
|
+
42: typeof FireStage;
|
|
146
|
+
43: typeof FontStyle;
|
|
147
|
+
44: typeof GameEndMessage;
|
|
148
|
+
45: typeof GameMode;
|
|
149
|
+
46: typeof GrowingStage;
|
|
150
|
+
47: typeof GrowingStage;
|
|
151
|
+
48: typeof Health;
|
|
152
|
+
49: typeof HealthAccuracy;
|
|
153
|
+
50: typeof HelpArticle;
|
|
154
|
+
51: typeof HighscoreSort;
|
|
155
|
+
52: typeof HumanName;
|
|
156
|
+
53: typeof HungerLevel;
|
|
157
|
+
54: symbol;
|
|
158
|
+
55: typeof InspectType;
|
|
159
|
+
56: typeof InterruptChoice;
|
|
160
|
+
57: typeof IslandModifierType;
|
|
161
|
+
58: typeof IslandName;
|
|
162
|
+
59: typeof BiomeType;
|
|
163
|
+
60: typeof BiomeType;
|
|
164
|
+
61: typeof IslandModifierType;
|
|
165
|
+
62: typeof CreatureType;
|
|
166
|
+
63: typeof ItemType;
|
|
167
|
+
64: {
|
|
166
168
|
Bow: ItemType.Bow;
|
|
167
169
|
None: ItemType.None;
|
|
168
170
|
String: ItemType.String;
|
|
@@ -1012,7 +1014,7 @@ declare const dictionaryMap: {
|
|
|
1012
1014
|
RuneOfGoodCharred: ItemTypeExtra.RuneOfGoodCharred;
|
|
1013
1015
|
TallySticks: ItemTypeExtra.TallySticks;
|
|
1014
1016
|
};
|
|
1015
|
-
|
|
1017
|
+
65: {
|
|
1016
1018
|
Bow: ItemType.Bow;
|
|
1017
1019
|
None: ItemType.None;
|
|
1018
1020
|
String: ItemType.String;
|
|
@@ -1862,74 +1864,74 @@ declare const dictionaryMap: {
|
|
|
1862
1864
|
RuneOfGoodCharred: ItemTypeExtra.RuneOfGoodCharred;
|
|
1863
1865
|
TallySticks: ItemTypeExtra.TallySticks;
|
|
1864
1866
|
};
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
|
|
1882
|
-
|
|
1883
|
-
|
|
1884
|
-
|
|
1885
|
-
|
|
1886
|
-
|
|
1887
|
-
|
|
1888
|
-
|
|
1889
|
-
|
|
1890
|
-
|
|
1891
|
-
|
|
1892
|
-
|
|
1893
|
-
|
|
1894
|
-
|
|
1895
|
-
|
|
1896
|
-
|
|
1897
|
-
|
|
1898
|
-
|
|
1899
|
-
|
|
1900
|
-
|
|
1901
|
-
|
|
1902
|
-
|
|
1903
|
-
|
|
1904
|
-
|
|
1905
|
-
|
|
1906
|
-
|
|
1907
|
-
|
|
1908
|
-
|
|
1909
|
-
|
|
1910
|
-
|
|
1911
|
-
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
|
|
1916
|
-
|
|
1917
|
-
|
|
1918
|
-
|
|
1919
|
-
|
|
1920
|
-
|
|
1921
|
-
|
|
1922
|
-
|
|
1923
|
-
|
|
1924
|
-
|
|
1925
|
-
|
|
1926
|
-
|
|
1927
|
-
|
|
1928
|
-
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
|
|
1867
|
+
66: typeof ItemTypeExtra;
|
|
1868
|
+
67: typeof ItemTypeGroup;
|
|
1869
|
+
68: typeof JoinServerRetryReason;
|
|
1870
|
+
69: typeof Label;
|
|
1871
|
+
70: typeof Level;
|
|
1872
|
+
71: typeof LighthouseName;
|
|
1873
|
+
72: typeof Load;
|
|
1874
|
+
73: symbol;
|
|
1875
|
+
74: typeof MagicalPropertyType;
|
|
1876
|
+
75: typeof MagicalPropertyType;
|
|
1877
|
+
76: symbol;
|
|
1878
|
+
77: typeof MapQuality;
|
|
1879
|
+
78: typeof MenuBarButtonType;
|
|
1880
|
+
79: typeof Message;
|
|
1881
|
+
80: typeof MessageFilterDefault;
|
|
1882
|
+
81: typeof MessageTimestamp;
|
|
1883
|
+
82: typeof Milestone;
|
|
1884
|
+
83: typeof MilestoneModifierGroup;
|
|
1885
|
+
84: typeof MilestoneSort;
|
|
1886
|
+
85: typeof MiscTranslation;
|
|
1887
|
+
86: typeof CanLoadState;
|
|
1888
|
+
87: typeof ModLoadFailureReason;
|
|
1889
|
+
88: typeof ModProvide;
|
|
1890
|
+
89: typeof ModSort;
|
|
1891
|
+
90: typeof ModType;
|
|
1892
|
+
91: typeof MultiplayerCompatibility;
|
|
1893
|
+
92: typeof DisconnectReason;
|
|
1894
|
+
93: typeof MusicPlaylist;
|
|
1895
|
+
94: typeof Note;
|
|
1896
|
+
95: typeof NPCType;
|
|
1897
|
+
96: symbol;
|
|
1898
|
+
97: typeof PartOfDay;
|
|
1899
|
+
98: typeof Prompt;
|
|
1900
|
+
99: typeof QuadrantComponentId;
|
|
1901
|
+
100: typeof QuadrantComponentContextMenuAction;
|
|
1902
|
+
101: typeof Quality;
|
|
1903
|
+
102: typeof QuestType;
|
|
1904
|
+
103: typeof QuestRequirementType;
|
|
1905
|
+
104: typeof RecipeLevel;
|
|
1906
|
+
105: typeof Direction;
|
|
1907
|
+
106: typeof Riddle;
|
|
1908
|
+
107: typeof Runekeeper.Domain;
|
|
1909
|
+
108: typeof Runekeeper.Event;
|
|
1910
|
+
109: typeof SaveImportErrorReason;
|
|
1911
|
+
110: typeof SaveSort;
|
|
1912
|
+
111: typeof SkillType;
|
|
1913
|
+
112: typeof SkillSort;
|
|
1914
|
+
113: typeof Source;
|
|
1915
|
+
114: typeof Stat;
|
|
1916
|
+
115: typeof StatusType;
|
|
1917
|
+
116: typeof StatusEffectType;
|
|
1918
|
+
117: typeof StatusThreatLevel;
|
|
1919
|
+
118: typeof SteamInputKeyboardPosition;
|
|
1920
|
+
119: typeof Responsibility;
|
|
1921
|
+
120: typeof TempType;
|
|
1922
|
+
121: typeof Term;
|
|
1923
|
+
122: typeof TerrainType;
|
|
1924
|
+
123: typeof ThirstLevel;
|
|
1925
|
+
124: typeof TileEventType;
|
|
1926
|
+
125: typeof TooltipVisibilityOption;
|
|
1927
|
+
126: typeof UiTranslation;
|
|
1928
|
+
127: typeof Quadrant;
|
|
1929
|
+
128: typeof UnableToJoinReason;
|
|
1930
|
+
129: typeof UnlockedRecipesStrategy;
|
|
1931
|
+
130: typeof UsableActionType;
|
|
1932
|
+
131: typeof Website;
|
|
1933
|
+
132: typeof WeightStatus;
|
|
1934
|
+
133: typeof WorldZ;
|
|
1933
1935
|
};
|
|
1934
1936
|
export declare const strictDictionaries: {
|
|
1935
1937
|
0: typeof ActionType;
|
|
@@ -1956,45 +1958,47 @@ export declare const strictDictionaries: {
|
|
|
1956
1958
|
21: typeof CraftingSort;
|
|
1957
1959
|
22: typeof CreatureType;
|
|
1958
1960
|
23: typeof CurseComponent;
|
|
1959
|
-
24: typeof
|
|
1960
|
-
25: typeof
|
|
1961
|
-
26: typeof
|
|
1962
|
-
27: typeof
|
|
1963
|
-
28: typeof
|
|
1964
|
-
29: typeof
|
|
1965
|
-
30: typeof
|
|
1966
|
-
31: typeof
|
|
1967
|
-
32: typeof
|
|
1968
|
-
33: typeof
|
|
1969
|
-
34: typeof
|
|
1970
|
-
35: typeof
|
|
1971
|
-
36: typeof
|
|
1972
|
-
37: typeof
|
|
1973
|
-
38: typeof
|
|
1974
|
-
39: typeof
|
|
1975
|
-
40: typeof
|
|
1976
|
-
41: typeof
|
|
1977
|
-
42: typeof
|
|
1978
|
-
43: typeof
|
|
1979
|
-
44: typeof
|
|
1980
|
-
45: typeof
|
|
1981
|
-
46: typeof
|
|
1982
|
-
47: typeof
|
|
1983
|
-
48: typeof
|
|
1984
|
-
49: typeof
|
|
1985
|
-
50: typeof
|
|
1986
|
-
51: typeof
|
|
1987
|
-
52:
|
|
1988
|
-
53: typeof
|
|
1989
|
-
54:
|
|
1990
|
-
55: typeof
|
|
1991
|
-
56: typeof
|
|
1992
|
-
57: typeof
|
|
1993
|
-
58: typeof
|
|
1994
|
-
59: typeof
|
|
1995
|
-
60: typeof
|
|
1996
|
-
61: typeof
|
|
1997
|
-
62:
|
|
1961
|
+
24: typeof CurseEventType;
|
|
1962
|
+
25: typeof CurseCategory;
|
|
1963
|
+
26: typeof DamageType;
|
|
1964
|
+
27: typeof Deity;
|
|
1965
|
+
28: typeof Deity;
|
|
1966
|
+
29: typeof DialogId;
|
|
1967
|
+
30: typeof Direction;
|
|
1968
|
+
31: typeof InfoDisplayLevel;
|
|
1969
|
+
32: typeof DoctorCureType;
|
|
1970
|
+
33: typeof DoctorCureMethod;
|
|
1971
|
+
34: typeof DoodadType;
|
|
1972
|
+
35: typeof DoodadTypeExtra;
|
|
1973
|
+
36: typeof DoodadTypeGroup;
|
|
1974
|
+
37: typeof DrawnMapTheme;
|
|
1975
|
+
38: typeof DurabilityLevel;
|
|
1976
|
+
39: typeof EquipEffect;
|
|
1977
|
+
40: typeof EquipType;
|
|
1978
|
+
41: typeof ExhaustionLevel;
|
|
1979
|
+
42: typeof FireStage;
|
|
1980
|
+
43: typeof FontStyle;
|
|
1981
|
+
44: typeof GameEndMessage;
|
|
1982
|
+
45: typeof GameMode;
|
|
1983
|
+
46: typeof GrowingStage;
|
|
1984
|
+
47: typeof GrowingStage;
|
|
1985
|
+
48: typeof Health;
|
|
1986
|
+
49: typeof HealthAccuracy;
|
|
1987
|
+
50: typeof HelpArticle;
|
|
1988
|
+
51: typeof HighscoreSort;
|
|
1989
|
+
52: typeof HumanName;
|
|
1990
|
+
53: typeof HungerLevel;
|
|
1991
|
+
54: symbol;
|
|
1992
|
+
55: typeof InspectType;
|
|
1993
|
+
56: typeof InterruptChoice;
|
|
1994
|
+
57: typeof IslandModifierType;
|
|
1995
|
+
58: typeof IslandName;
|
|
1996
|
+
59: typeof BiomeType;
|
|
1997
|
+
60: typeof BiomeType;
|
|
1998
|
+
61: typeof IslandModifierType;
|
|
1999
|
+
62: typeof CreatureType;
|
|
2000
|
+
63: typeof ItemType;
|
|
2001
|
+
64: {
|
|
1998
2002
|
Bow: ItemType.Bow;
|
|
1999
2003
|
None: ItemType.None;
|
|
2000
2004
|
String: ItemType.String;
|
|
@@ -2844,7 +2848,7 @@ export declare const strictDictionaries: {
|
|
|
2844
2848
|
RuneOfGoodCharred: ItemTypeExtra.RuneOfGoodCharred;
|
|
2845
2849
|
TallySticks: ItemTypeExtra.TallySticks;
|
|
2846
2850
|
};
|
|
2847
|
-
|
|
2851
|
+
65: {
|
|
2848
2852
|
Bow: ItemType.Bow;
|
|
2849
2853
|
None: ItemType.None;
|
|
2850
2854
|
String: ItemType.String;
|
|
@@ -3694,74 +3698,74 @@ export declare const strictDictionaries: {
|
|
|
3694
3698
|
RuneOfGoodCharred: ItemTypeExtra.RuneOfGoodCharred;
|
|
3695
3699
|
TallySticks: ItemTypeExtra.TallySticks;
|
|
3696
3700
|
};
|
|
3697
|
-
|
|
3698
|
-
|
|
3699
|
-
|
|
3700
|
-
|
|
3701
|
-
|
|
3702
|
-
|
|
3703
|
-
|
|
3704
|
-
|
|
3705
|
-
|
|
3706
|
-
|
|
3707
|
-
|
|
3708
|
-
|
|
3709
|
-
|
|
3710
|
-
|
|
3711
|
-
|
|
3712
|
-
|
|
3713
|
-
|
|
3714
|
-
|
|
3715
|
-
|
|
3716
|
-
|
|
3717
|
-
|
|
3718
|
-
|
|
3719
|
-
|
|
3720
|
-
|
|
3721
|
-
|
|
3722
|
-
|
|
3723
|
-
|
|
3724
|
-
|
|
3725
|
-
|
|
3726
|
-
|
|
3727
|
-
|
|
3728
|
-
|
|
3729
|
-
|
|
3730
|
-
|
|
3731
|
-
|
|
3732
|
-
|
|
3733
|
-
|
|
3734
|
-
|
|
3735
|
-
|
|
3736
|
-
|
|
3737
|
-
|
|
3738
|
-
|
|
3739
|
-
|
|
3740
|
-
|
|
3741
|
-
|
|
3742
|
-
|
|
3743
|
-
|
|
3744
|
-
|
|
3745
|
-
|
|
3746
|
-
|
|
3747
|
-
|
|
3748
|
-
|
|
3749
|
-
|
|
3750
|
-
|
|
3751
|
-
|
|
3752
|
-
|
|
3753
|
-
|
|
3754
|
-
|
|
3755
|
-
|
|
3756
|
-
|
|
3757
|
-
|
|
3758
|
-
|
|
3759
|
-
|
|
3760
|
-
|
|
3761
|
-
|
|
3762
|
-
|
|
3763
|
-
|
|
3764
|
-
|
|
3701
|
+
66: typeof ItemTypeExtra;
|
|
3702
|
+
67: typeof ItemTypeGroup;
|
|
3703
|
+
68: typeof JoinServerRetryReason;
|
|
3704
|
+
69: typeof Label;
|
|
3705
|
+
70: typeof Level;
|
|
3706
|
+
71: typeof LighthouseName;
|
|
3707
|
+
72: typeof Load;
|
|
3708
|
+
73: symbol;
|
|
3709
|
+
74: typeof MagicalPropertyType;
|
|
3710
|
+
75: typeof MagicalPropertyType;
|
|
3711
|
+
76: symbol;
|
|
3712
|
+
77: typeof MapQuality;
|
|
3713
|
+
78: typeof MenuBarButtonType;
|
|
3714
|
+
79: typeof Message;
|
|
3715
|
+
80: typeof MessageFilterDefault;
|
|
3716
|
+
81: typeof MessageTimestamp;
|
|
3717
|
+
82: typeof Milestone;
|
|
3718
|
+
83: typeof MilestoneModifierGroup;
|
|
3719
|
+
84: typeof MilestoneSort;
|
|
3720
|
+
85: typeof MiscTranslation;
|
|
3721
|
+
86: typeof CanLoadState;
|
|
3722
|
+
87: typeof ModLoadFailureReason;
|
|
3723
|
+
88: typeof ModProvide;
|
|
3724
|
+
89: typeof ModSort;
|
|
3725
|
+
90: typeof ModType;
|
|
3726
|
+
91: typeof MultiplayerCompatibility;
|
|
3727
|
+
92: typeof DisconnectReason;
|
|
3728
|
+
93: typeof MusicPlaylist;
|
|
3729
|
+
94: typeof Note;
|
|
3730
|
+
95: typeof NPCType;
|
|
3731
|
+
96: symbol;
|
|
3732
|
+
97: typeof PartOfDay;
|
|
3733
|
+
98: typeof Prompt;
|
|
3734
|
+
99: typeof QuadrantComponentId;
|
|
3735
|
+
100: typeof QuadrantComponentContextMenuAction;
|
|
3736
|
+
101: typeof Quality;
|
|
3737
|
+
102: typeof QuestType;
|
|
3738
|
+
103: typeof QuestRequirementType;
|
|
3739
|
+
104: typeof RecipeLevel;
|
|
3740
|
+
105: typeof Direction;
|
|
3741
|
+
106: typeof Riddle;
|
|
3742
|
+
107: typeof Runekeeper.Domain;
|
|
3743
|
+
108: typeof Runekeeper.Event;
|
|
3744
|
+
109: typeof SaveImportErrorReason;
|
|
3745
|
+
110: typeof SaveSort;
|
|
3746
|
+
111: typeof SkillType;
|
|
3747
|
+
112: typeof SkillSort;
|
|
3748
|
+
113: typeof Source;
|
|
3749
|
+
114: typeof Stat;
|
|
3750
|
+
115: typeof StatusType;
|
|
3751
|
+
116: typeof StatusEffectType;
|
|
3752
|
+
117: typeof StatusThreatLevel;
|
|
3753
|
+
118: typeof SteamInputKeyboardPosition;
|
|
3754
|
+
119: typeof Responsibility;
|
|
3755
|
+
120: typeof TempType;
|
|
3756
|
+
121: typeof Term;
|
|
3757
|
+
122: typeof TerrainType;
|
|
3758
|
+
123: typeof ThirstLevel;
|
|
3759
|
+
124: typeof TileEventType;
|
|
3760
|
+
125: typeof TooltipVisibilityOption;
|
|
3761
|
+
126: typeof UiTranslation;
|
|
3762
|
+
127: typeof Quadrant;
|
|
3763
|
+
128: typeof UnableToJoinReason;
|
|
3764
|
+
129: typeof UnlockedRecipesStrategy;
|
|
3765
|
+
130: typeof UsableActionType;
|
|
3766
|
+
131: typeof Website;
|
|
3767
|
+
132: typeof WeightStatus;
|
|
3768
|
+
133: typeof WorldZ;
|
|
3765
3769
|
};
|
|
3766
3770
|
export type DictionaryEnum = (typeof dictionaryMap)[Dictionary];
|
|
3767
3771
|
type ExtractEnumString<E> = E extends Record<string, infer V> ? V : never;
|