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