@wayward/types 2.15.0-beta.dev.20251021.1 → 2.15.0-beta.dev.20251023.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 (64) hide show
  1. package/definitions/game/game/Game.d.ts +1 -0
  2. package/definitions/game/game/curse/Curse.d.ts +2 -1
  3. package/definitions/game/game/curse/CurseEvent.d.ts +11 -0
  4. package/definitions/game/game/curse/event/CurseEventHatedByTheWilds.d.ts +18 -0
  5. package/definitions/game/game/curse/event/CurseEventLovedByTheWilds.d.ts +18 -0
  6. package/definitions/game/game/doodad/Doodad.d.ts +8 -1
  7. package/definitions/game/game/entity/ai/AI.d.ts +11 -7
  8. package/definitions/game/game/entity/creature/Creature.d.ts +3 -1
  9. package/definitions/game/game/entity/creature/CreatureManager.d.ts +1 -1
  10. package/definitions/game/game/options/modifiers/custom/CustomModifierDefinitions.d.ts +117 -0
  11. package/definitions/game/game/options/modifiers/custom/ICustomModifier.d.ts +78 -0
  12. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierCreatureSpawnLimit.d.ts +13 -0
  13. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierCreatureSpawnRate.d.ts +13 -0
  14. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierCreatures.d.ts +15 -0
  15. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierCreaturesOther.d.ts +13 -0
  16. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierItemDecay.d.ts +13 -0
  17. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierItemDurability.d.ts +13 -0
  18. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierSkills.d.ts +15 -0
  19. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierSkillsGainMultiplierGlobal.d.ts +13 -0
  20. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierSkillsInitialValueGlobal.d.ts +13 -0
  21. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierSkillsStartCount.d.ts +13 -0
  22. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierStartingBiome.d.ts +14 -0
  23. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierStatGeneric.d.ts +15 -0
  24. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierStatLuck.d.ts +13 -0
  25. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierStatStrength.d.ts +13 -0
  26. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierStatusGeneric.d.ts +15 -0
  27. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierTimeDayLength.d.ts +13 -0
  28. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierTimeDayPercent.d.ts +13 -0
  29. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierTimeInitial.d.ts +13 -0
  30. package/definitions/game/game/options/modifiers/milestone/MilestoneModifiersManager.d.ts +1 -1
  31. package/definitions/game/game/time/TimeManager.d.ts +2 -0
  32. package/definitions/game/language/Dictionary.d.ts +110 -108
  33. package/definitions/game/language/DictionaryMap.d.ts +220 -214
  34. package/definitions/game/language/Translation.d.ts +1 -0
  35. package/definitions/game/language/dictionary/Message.d.ts +562 -564
  36. package/definitions/game/language/dictionary/Misc.d.ts +4 -0
  37. package/definitions/game/language/dictionary/UiTranslation.d.ts +824 -863
  38. package/definitions/game/language/english/game/CustomModifiers.d.ts +13 -0
  39. package/definitions/game/language/english/game/GameOptionsIcons.d.ts +13 -0
  40. package/definitions/game/ui/Ui.d.ts +3 -0
  41. package/definitions/game/ui/component/GameIcons.d.ts +4 -3
  42. package/definitions/game/ui/input/Bindable.d.ts +24 -23
  43. package/definitions/game/ui/screen/screens/game/InspectionsTooltipHandler.d.ts +2 -0
  44. package/definitions/game/ui/screen/screens/game/component/GameDetails.d.ts +4 -4
  45. package/definitions/game/ui/screen/screens/menu/menus/MainMenu.d.ts +7 -1
  46. package/definitions/game/ui/screen/screens/menu/menus/newgame/CustomGameOptionsMenu.d.ts +4 -3
  47. package/definitions/game/ui/screen/screens/menu/menus/newgame/TabGameMode.d.ts +1 -1
  48. package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/CustomGameOptionsTab.d.ts +12 -2
  49. package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/TabCreatures.d.ts +2 -3
  50. package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/TabGeneral.d.ts +2 -2
  51. package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/TabItems.d.ts +2 -2
  52. package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/TabSkills.d.ts +2 -3
  53. package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/TabStats.d.ts +2 -2
  54. package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/TabStatuses.d.ts +2 -2
  55. package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/TabTime.d.ts +2 -5
  56. package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/TabTravel.d.ts +2 -2
  57. package/definitions/game/ui/screen/screens/menu/menus/pause/GameOptionsIcons.d.ts +2 -11
  58. package/definitions/game/ui/tooltip/TooltipManager.d.ts +1 -0
  59. package/definitions/game/utilities/object/Merge.d.ts +5 -0
  60. package/definitions/game/utilities/random/RandomValueGenerator.d.ts +4 -1
  61. package/definitions/game/utilities/random/generators/specific/RandomRange.d.ts +4 -1
  62. package/definitions/utilities/Errors.d.ts +1 -1
  63. package/definitions/utilities/log/ErrorReporting.d.ts +1 -0
  64. package/package.json +1 -1
@@ -98,6 +98,8 @@ import { ModSort } from "@wayward/game/ui/screen/screens/menu/menus/mods/IModsMe
98
98
  import { Direction } from "@wayward/game/utilities/math/Direction";
99
99
  import { ChangeType } from "@wayward/game/utilities/trello/ITrello";
100
100
  import WorldZ from "@wayward/utilities/game/WorldZ";
101
+ import { CustomModifierType } from "@wayward/game/game/options/modifiers/custom/ICustomModifier";
102
+ import { GameOptionsIcon } from "@wayward/game/ui/screen/screens/menu/menus/pause/GameOptionsIcons";
101
103
  export type Enum = Record<string, number> & Record<number, string>;
102
104
  export declare const SYMBOL_ANY_DICTIONARY: unique symbol;
103
105
  declare const dictionaryMap: {
@@ -127,45 +129,47 @@ declare const dictionaryMap: {
127
129
  23: typeof CurseComponent;
128
130
  24: typeof CurseEventType;
129
131
  25: typeof CurseGroup;
130
- 26: typeof DamageType;
131
- 27: typeof Deity;
132
+ 26: typeof CustomModifierType;
133
+ 27: typeof DamageType;
132
134
  28: typeof Deity;
133
- 29: typeof DialogId;
134
- 30: typeof Direction;
135
- 31: typeof InfoDisplayLevel;
136
- 32: typeof DoctorCureType;
137
- 33: typeof DoctorCureMethod;
138
- 34: typeof DoodadType;
139
- 35: typeof DoodadTypeExtra;
140
- 36: typeof DoodadTypeGroup;
141
- 37: typeof DrawnMapTheme;
142
- 38: typeof DurabilityLevel;
143
- 39: typeof EquipEffect;
144
- 40: typeof EquipType;
145
- 41: typeof ExhaustionLevel;
146
- 42: typeof FireStage;
147
- 43: typeof FontStyle;
148
- 44: typeof GameEndMessage;
149
- 45: typeof GameMode;
150
- 46: typeof GrowingStage;
151
- 47: typeof GrowingStage;
152
- 48: typeof Health;
153
- 49: typeof HealthAccuracy;
154
- 50: typeof HelpArticle;
155
- 51: typeof HighscoreSort;
156
- 52: typeof HumanName;
157
- 53: typeof HungerLevel;
158
- 54: symbol;
159
- 55: typeof InspectType;
160
- 56: typeof InterruptChoice;
161
- 57: typeof IslandModifierType;
162
- 58: typeof IslandName;
163
- 59: typeof BiomeType;
164
- 60: typeof BiomeType;
165
- 61: typeof IslandModifierType;
166
- 62: typeof CreatureType;
167
- 63: typeof ItemType;
168
- 64: {
135
+ 29: typeof Deity;
136
+ 30: typeof DialogId;
137
+ 31: typeof Direction;
138
+ 32: typeof InfoDisplayLevel;
139
+ 33: typeof DoctorCureType;
140
+ 34: typeof DoctorCureMethod;
141
+ 35: typeof DoodadType;
142
+ 36: typeof DoodadTypeExtra;
143
+ 37: typeof DoodadTypeGroup;
144
+ 38: typeof DrawnMapTheme;
145
+ 39: typeof DurabilityLevel;
146
+ 40: typeof EquipEffect;
147
+ 41: typeof EquipType;
148
+ 42: typeof ExhaustionLevel;
149
+ 43: typeof FireStage;
150
+ 44: typeof FontStyle;
151
+ 45: typeof GameEndMessage;
152
+ 46: typeof GameMode;
153
+ 47: typeof GameOptionsIcon;
154
+ 48: typeof GrowingStage;
155
+ 49: typeof GrowingStage;
156
+ 50: typeof Health;
157
+ 51: typeof HealthAccuracy;
158
+ 52: typeof HelpArticle;
159
+ 53: typeof HighscoreSort;
160
+ 54: typeof HumanName;
161
+ 55: typeof HungerLevel;
162
+ 56: symbol;
163
+ 57: typeof InspectType;
164
+ 58: typeof InterruptChoice;
165
+ 59: typeof IslandModifierType;
166
+ 60: typeof IslandName;
167
+ 61: typeof BiomeType;
168
+ 62: typeof BiomeType;
169
+ 63: typeof IslandModifierType;
170
+ 64: typeof CreatureType;
171
+ 65: typeof ItemType;
172
+ 66: {
169
173
  Bow: ItemType.Bow;
170
174
  None: ItemType.None;
171
175
  String: ItemType.String;
@@ -1023,7 +1027,7 @@ declare const dictionaryMap: {
1023
1027
  SnowScarecrow2: ItemTypeExtra.SnowScarecrow2;
1024
1028
  SnowScarecrow3: ItemTypeExtra.SnowScarecrow3;
1025
1029
  };
1026
- 65: {
1030
+ 67: {
1027
1031
  Bow: ItemType.Bow;
1028
1032
  None: ItemType.None;
1029
1033
  String: ItemType.String;
@@ -1881,74 +1885,74 @@ declare const dictionaryMap: {
1881
1885
  SnowScarecrow2: ItemTypeExtra.SnowScarecrow2;
1882
1886
  SnowScarecrow3: ItemTypeExtra.SnowScarecrow3;
1883
1887
  };
1884
- 66: typeof ItemTypeExtra;
1885
- 67: typeof ItemTypeGroup;
1886
- 68: typeof JoinServerRetryReason;
1887
- 69: typeof Label;
1888
- 70: typeof Level;
1889
- 71: typeof LighthouseName;
1890
- 72: typeof Load;
1891
- 73: symbol;
1892
- 74: typeof MagicalPropertyType;
1893
- 75: typeof MagicalPropertyType;
1894
- 76: symbol;
1895
- 77: typeof MapQuality;
1896
- 78: typeof MenuBarButtonType;
1897
- 79: typeof Message;
1898
- 80: typeof MessageFilterDefault;
1899
- 81: typeof MessageTimestamp;
1900
- 82: typeof Milestone;
1901
- 83: typeof MilestoneModifierGroup;
1902
- 84: typeof MilestoneSort;
1903
- 85: typeof MiscTranslation;
1904
- 86: typeof CanLoadState;
1905
- 87: typeof ModLoadFailureReason;
1906
- 88: typeof ModProvide;
1907
- 89: typeof ModSort;
1908
- 90: typeof ModType;
1909
- 91: typeof MultiplayerCompatibility;
1910
- 92: typeof DisconnectReason;
1911
- 93: typeof MusicPlaylist;
1912
- 94: typeof Note;
1913
- 95: typeof NPCType;
1914
- 96: symbol;
1915
- 97: typeof PartOfDay;
1916
- 98: typeof Prompt;
1917
- 99: typeof QuadrantComponentId;
1918
- 100: typeof QuadrantComponentContextMenuAction;
1919
- 101: typeof Quality;
1920
- 102: typeof QuestType;
1921
- 103: typeof QuestRequirementType;
1922
- 104: typeof RecipeLevel;
1923
- 105: typeof Direction;
1924
- 106: typeof Riddle;
1925
- 107: typeof Runekeeper.Domain;
1926
- 108: typeof Runekeeper.Event;
1927
- 109: typeof SaveImportErrorReason;
1928
- 110: typeof SaveSort;
1929
- 111: typeof SkillType;
1930
- 112: typeof SkillSort;
1931
- 113: typeof Source;
1932
- 114: typeof Stat;
1933
- 115: typeof StatusType;
1934
- 116: typeof StatusEffectType;
1935
- 117: typeof StatusThreatLevel;
1936
- 118: typeof SteamInputKeyboardPosition;
1937
- 119: typeof Responsibility;
1938
- 120: typeof TempType;
1939
- 121: typeof Term;
1940
- 122: typeof TerrainType;
1941
- 123: typeof ThirstLevel;
1942
- 124: typeof TileEventType;
1943
- 125: typeof TooltipVisibilityOption;
1944
- 126: typeof UiTranslation;
1945
- 127: typeof Quadrant;
1946
- 128: typeof UnableToJoinReason;
1947
- 129: typeof UnlockedRecipesStrategy;
1948
- 130: typeof UsableActionType;
1949
- 131: typeof Website;
1950
- 132: typeof WeightStatus;
1951
- 133: typeof WorldZ;
1888
+ 68: typeof ItemTypeExtra;
1889
+ 69: typeof ItemTypeGroup;
1890
+ 70: typeof JoinServerRetryReason;
1891
+ 71: typeof Label;
1892
+ 72: typeof Level;
1893
+ 73: typeof LighthouseName;
1894
+ 74: typeof Load;
1895
+ 75: symbol;
1896
+ 76: typeof MagicalPropertyType;
1897
+ 77: typeof MagicalPropertyType;
1898
+ 78: symbol;
1899
+ 79: typeof MapQuality;
1900
+ 80: typeof MenuBarButtonType;
1901
+ 81: typeof Message;
1902
+ 82: typeof MessageFilterDefault;
1903
+ 83: typeof MessageTimestamp;
1904
+ 84: typeof Milestone;
1905
+ 85: typeof MilestoneModifierGroup;
1906
+ 86: typeof MilestoneSort;
1907
+ 87: typeof MiscTranslation;
1908
+ 88: typeof CanLoadState;
1909
+ 89: typeof ModLoadFailureReason;
1910
+ 90: typeof ModProvide;
1911
+ 91: typeof ModSort;
1912
+ 92: typeof ModType;
1913
+ 93: typeof MultiplayerCompatibility;
1914
+ 94: typeof DisconnectReason;
1915
+ 95: typeof MusicPlaylist;
1916
+ 96: typeof Note;
1917
+ 97: typeof NPCType;
1918
+ 98: symbol;
1919
+ 99: typeof PartOfDay;
1920
+ 100: typeof Prompt;
1921
+ 101: typeof QuadrantComponentId;
1922
+ 102: typeof QuadrantComponentContextMenuAction;
1923
+ 103: typeof Quality;
1924
+ 104: typeof QuestType;
1925
+ 105: typeof QuestRequirementType;
1926
+ 106: typeof RecipeLevel;
1927
+ 107: typeof Direction;
1928
+ 108: typeof Riddle;
1929
+ 109: typeof Runekeeper.Domain;
1930
+ 110: typeof Runekeeper.Event;
1931
+ 111: typeof SaveImportErrorReason;
1932
+ 112: typeof SaveSort;
1933
+ 113: typeof SkillType;
1934
+ 114: typeof SkillSort;
1935
+ 115: typeof Source;
1936
+ 116: typeof Stat;
1937
+ 117: typeof StatusType;
1938
+ 118: typeof StatusEffectType;
1939
+ 119: typeof StatusThreatLevel;
1940
+ 120: typeof SteamInputKeyboardPosition;
1941
+ 121: typeof Responsibility;
1942
+ 122: typeof TempType;
1943
+ 123: typeof Term;
1944
+ 124: typeof TerrainType;
1945
+ 125: typeof ThirstLevel;
1946
+ 126: typeof TileEventType;
1947
+ 127: typeof TooltipVisibilityOption;
1948
+ 128: typeof UiTranslation;
1949
+ 129: typeof Quadrant;
1950
+ 130: typeof UnableToJoinReason;
1951
+ 131: typeof UnlockedRecipesStrategy;
1952
+ 132: typeof UsableActionType;
1953
+ 133: typeof Website;
1954
+ 134: typeof WeightStatus;
1955
+ 135: typeof WorldZ;
1952
1956
  };
1953
1957
  export declare const strictDictionaries: {
1954
1958
  0: typeof ActionType;
@@ -1977,45 +1981,47 @@ export declare const strictDictionaries: {
1977
1981
  23: typeof CurseComponent;
1978
1982
  24: typeof CurseEventType;
1979
1983
  25: typeof CurseGroup;
1980
- 26: typeof DamageType;
1981
- 27: typeof Deity;
1984
+ 26: typeof CustomModifierType;
1985
+ 27: typeof DamageType;
1982
1986
  28: typeof Deity;
1983
- 29: typeof DialogId;
1984
- 30: typeof Direction;
1985
- 31: typeof InfoDisplayLevel;
1986
- 32: typeof DoctorCureType;
1987
- 33: typeof DoctorCureMethod;
1988
- 34: typeof DoodadType;
1989
- 35: typeof DoodadTypeExtra;
1990
- 36: typeof DoodadTypeGroup;
1991
- 37: typeof DrawnMapTheme;
1992
- 38: typeof DurabilityLevel;
1993
- 39: typeof EquipEffect;
1994
- 40: typeof EquipType;
1995
- 41: typeof ExhaustionLevel;
1996
- 42: typeof FireStage;
1997
- 43: typeof FontStyle;
1998
- 44: typeof GameEndMessage;
1999
- 45: typeof GameMode;
2000
- 46: typeof GrowingStage;
2001
- 47: typeof GrowingStage;
2002
- 48: typeof Health;
2003
- 49: typeof HealthAccuracy;
2004
- 50: typeof HelpArticle;
2005
- 51: typeof HighscoreSort;
2006
- 52: typeof HumanName;
2007
- 53: typeof HungerLevel;
2008
- 54: symbol;
2009
- 55: typeof InspectType;
2010
- 56: typeof InterruptChoice;
2011
- 57: typeof IslandModifierType;
2012
- 58: typeof IslandName;
2013
- 59: typeof BiomeType;
2014
- 60: typeof BiomeType;
2015
- 61: typeof IslandModifierType;
2016
- 62: typeof CreatureType;
2017
- 63: typeof ItemType;
2018
- 64: {
1987
+ 29: typeof Deity;
1988
+ 30: typeof DialogId;
1989
+ 31: typeof Direction;
1990
+ 32: typeof InfoDisplayLevel;
1991
+ 33: typeof DoctorCureType;
1992
+ 34: typeof DoctorCureMethod;
1993
+ 35: typeof DoodadType;
1994
+ 36: typeof DoodadTypeExtra;
1995
+ 37: typeof DoodadTypeGroup;
1996
+ 38: typeof DrawnMapTheme;
1997
+ 39: typeof DurabilityLevel;
1998
+ 40: typeof EquipEffect;
1999
+ 41: typeof EquipType;
2000
+ 42: typeof ExhaustionLevel;
2001
+ 43: typeof FireStage;
2002
+ 44: typeof FontStyle;
2003
+ 45: typeof GameEndMessage;
2004
+ 46: typeof GameMode;
2005
+ 47: typeof GameOptionsIcon;
2006
+ 48: typeof GrowingStage;
2007
+ 49: typeof GrowingStage;
2008
+ 50: typeof Health;
2009
+ 51: typeof HealthAccuracy;
2010
+ 52: typeof HelpArticle;
2011
+ 53: typeof HighscoreSort;
2012
+ 54: typeof HumanName;
2013
+ 55: typeof HungerLevel;
2014
+ 56: symbol;
2015
+ 57: typeof InspectType;
2016
+ 58: typeof InterruptChoice;
2017
+ 59: typeof IslandModifierType;
2018
+ 60: typeof IslandName;
2019
+ 61: typeof BiomeType;
2020
+ 62: typeof BiomeType;
2021
+ 63: typeof IslandModifierType;
2022
+ 64: typeof CreatureType;
2023
+ 65: typeof ItemType;
2024
+ 66: {
2019
2025
  Bow: ItemType.Bow;
2020
2026
  None: ItemType.None;
2021
2027
  String: ItemType.String;
@@ -2873,7 +2879,7 @@ export declare const strictDictionaries: {
2873
2879
  SnowScarecrow2: ItemTypeExtra.SnowScarecrow2;
2874
2880
  SnowScarecrow3: ItemTypeExtra.SnowScarecrow3;
2875
2881
  };
2876
- 65: {
2882
+ 67: {
2877
2883
  Bow: ItemType.Bow;
2878
2884
  None: ItemType.None;
2879
2885
  String: ItemType.String;
@@ -3731,74 +3737,74 @@ export declare const strictDictionaries: {
3731
3737
  SnowScarecrow2: ItemTypeExtra.SnowScarecrow2;
3732
3738
  SnowScarecrow3: ItemTypeExtra.SnowScarecrow3;
3733
3739
  };
3734
- 66: typeof ItemTypeExtra;
3735
- 67: typeof ItemTypeGroup;
3736
- 68: typeof JoinServerRetryReason;
3737
- 69: typeof Label;
3738
- 70: typeof Level;
3739
- 71: typeof LighthouseName;
3740
- 72: typeof Load;
3741
- 73: symbol;
3742
- 74: typeof MagicalPropertyType;
3743
- 75: typeof MagicalPropertyType;
3744
- 76: symbol;
3745
- 77: typeof MapQuality;
3746
- 78: typeof MenuBarButtonType;
3747
- 79: typeof Message;
3748
- 80: typeof MessageFilterDefault;
3749
- 81: typeof MessageTimestamp;
3750
- 82: typeof Milestone;
3751
- 83: typeof MilestoneModifierGroup;
3752
- 84: typeof MilestoneSort;
3753
- 85: typeof MiscTranslation;
3754
- 86: typeof CanLoadState;
3755
- 87: typeof ModLoadFailureReason;
3756
- 88: typeof ModProvide;
3757
- 89: typeof ModSort;
3758
- 90: typeof ModType;
3759
- 91: typeof MultiplayerCompatibility;
3760
- 92: typeof DisconnectReason;
3761
- 93: typeof MusicPlaylist;
3762
- 94: typeof Note;
3763
- 95: typeof NPCType;
3764
- 96: symbol;
3765
- 97: typeof PartOfDay;
3766
- 98: typeof Prompt;
3767
- 99: typeof QuadrantComponentId;
3768
- 100: typeof QuadrantComponentContextMenuAction;
3769
- 101: typeof Quality;
3770
- 102: typeof QuestType;
3771
- 103: typeof QuestRequirementType;
3772
- 104: typeof RecipeLevel;
3773
- 105: typeof Direction;
3774
- 106: typeof Riddle;
3775
- 107: typeof Runekeeper.Domain;
3776
- 108: typeof Runekeeper.Event;
3777
- 109: typeof SaveImportErrorReason;
3778
- 110: typeof SaveSort;
3779
- 111: typeof SkillType;
3780
- 112: typeof SkillSort;
3781
- 113: typeof Source;
3782
- 114: typeof Stat;
3783
- 115: typeof StatusType;
3784
- 116: typeof StatusEffectType;
3785
- 117: typeof StatusThreatLevel;
3786
- 118: typeof SteamInputKeyboardPosition;
3787
- 119: typeof Responsibility;
3788
- 120: typeof TempType;
3789
- 121: typeof Term;
3790
- 122: typeof TerrainType;
3791
- 123: typeof ThirstLevel;
3792
- 124: typeof TileEventType;
3793
- 125: typeof TooltipVisibilityOption;
3794
- 126: typeof UiTranslation;
3795
- 127: typeof Quadrant;
3796
- 128: typeof UnableToJoinReason;
3797
- 129: typeof UnlockedRecipesStrategy;
3798
- 130: typeof UsableActionType;
3799
- 131: typeof Website;
3800
- 132: typeof WeightStatus;
3801
- 133: typeof WorldZ;
3740
+ 68: typeof ItemTypeExtra;
3741
+ 69: typeof ItemTypeGroup;
3742
+ 70: typeof JoinServerRetryReason;
3743
+ 71: typeof Label;
3744
+ 72: typeof Level;
3745
+ 73: typeof LighthouseName;
3746
+ 74: typeof Load;
3747
+ 75: symbol;
3748
+ 76: typeof MagicalPropertyType;
3749
+ 77: typeof MagicalPropertyType;
3750
+ 78: symbol;
3751
+ 79: typeof MapQuality;
3752
+ 80: typeof MenuBarButtonType;
3753
+ 81: typeof Message;
3754
+ 82: typeof MessageFilterDefault;
3755
+ 83: typeof MessageTimestamp;
3756
+ 84: typeof Milestone;
3757
+ 85: typeof MilestoneModifierGroup;
3758
+ 86: typeof MilestoneSort;
3759
+ 87: typeof MiscTranslation;
3760
+ 88: typeof CanLoadState;
3761
+ 89: typeof ModLoadFailureReason;
3762
+ 90: typeof ModProvide;
3763
+ 91: typeof ModSort;
3764
+ 92: typeof ModType;
3765
+ 93: typeof MultiplayerCompatibility;
3766
+ 94: typeof DisconnectReason;
3767
+ 95: typeof MusicPlaylist;
3768
+ 96: typeof Note;
3769
+ 97: typeof NPCType;
3770
+ 98: symbol;
3771
+ 99: typeof PartOfDay;
3772
+ 100: typeof Prompt;
3773
+ 101: typeof QuadrantComponentId;
3774
+ 102: typeof QuadrantComponentContextMenuAction;
3775
+ 103: typeof Quality;
3776
+ 104: typeof QuestType;
3777
+ 105: typeof QuestRequirementType;
3778
+ 106: typeof RecipeLevel;
3779
+ 107: typeof Direction;
3780
+ 108: typeof Riddle;
3781
+ 109: typeof Runekeeper.Domain;
3782
+ 110: typeof Runekeeper.Event;
3783
+ 111: typeof SaveImportErrorReason;
3784
+ 112: typeof SaveSort;
3785
+ 113: typeof SkillType;
3786
+ 114: typeof SkillSort;
3787
+ 115: typeof Source;
3788
+ 116: typeof Stat;
3789
+ 117: typeof StatusType;
3790
+ 118: typeof StatusEffectType;
3791
+ 119: typeof StatusThreatLevel;
3792
+ 120: typeof SteamInputKeyboardPosition;
3793
+ 121: typeof Responsibility;
3794
+ 122: typeof TempType;
3795
+ 123: typeof Term;
3796
+ 124: typeof TerrainType;
3797
+ 125: typeof ThirstLevel;
3798
+ 126: typeof TileEventType;
3799
+ 127: typeof TooltipVisibilityOption;
3800
+ 128: typeof UiTranslation;
3801
+ 129: typeof Quadrant;
3802
+ 130: typeof UnableToJoinReason;
3803
+ 131: typeof UnlockedRecipesStrategy;
3804
+ 132: typeof UsableActionType;
3805
+ 133: typeof Website;
3806
+ 134: typeof WeightStatus;
3807
+ 135: typeof WorldZ;
3802
3808
  };
3803
3809
  export type DictionaryEnum = (typeof dictionaryMap)[Dictionary];
3804
3810
  type ExtractEnumString<E> = E extends Record<string, infer V> ? V : never;
@@ -46,6 +46,7 @@ type Translation = TranslationImpl;
46
46
  declare namespace Translation {
47
47
  export function is(value: unknown): value is Translation;
48
48
  export function equals(a: Translation, b: Translation): boolean;
49
+ export function coalesce(...translations: Translation[]): Translation | undefined;
49
50
  export const RANDOM = "random";
50
51
  export const getString: typeof TranslationImpl.getString;
51
52
  export const resolve: typeof TranslationImpl.resolve;