@wayward/types 2.13.5-beta.dev.20230801.2 → 2.13.5-beta.dev.20230801.3
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/language/Dictionary.d.ts +14 -13
- package/definitions/game/language/DictionaryMap.d.ts +29 -27
- package/definitions/game/language/dictionary/Misc.d.ts +4 -0
- package/definitions/game/language/dictionary/UiTranslation.d.ts +194 -193
- package/definitions/game/language/english/ui/SteamInputKeyboardPosition.d.ts +13 -0
- package/definitions/game/save/data/ISaveDataGlobal.d.ts +6 -0
- package/package.json +1 -1
|
@@ -109,18 +109,19 @@ declare enum Dictionary {
|
|
|
109
109
|
Source = 97,
|
|
110
110
|
Stat = 98,
|
|
111
111
|
StatusEffect = 99,
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
112
|
+
SteamInputKeyboardPosition = 100,
|
|
113
|
+
TeamMemberResponsibility = 101,
|
|
114
|
+
TemperatureType = 102,
|
|
115
|
+
Terrain = 103,
|
|
116
|
+
TileEvent = 104,
|
|
117
|
+
TooltipVisibilityOption = 105,
|
|
118
|
+
Ui = 106,
|
|
119
|
+
UiQuadrant = 107,
|
|
120
|
+
UnableToJoinReason = 108,
|
|
121
|
+
UnlockedRecipesStrategy = 109,
|
|
122
|
+
UsableActionType = 110,
|
|
123
|
+
Website = 111,
|
|
124
|
+
WeightStatus = 112,
|
|
125
|
+
WorldLayer = 113
|
|
125
126
|
}
|
|
126
127
|
export default Dictionary;
|
|
@@ -68,7 +68,7 @@ import { ModProvide, ModType } from "mod/IModInfo";
|
|
|
68
68
|
import { CanLoadState, ModLoadFailureReason } from "mod/IModManager";
|
|
69
69
|
import { DisconnectReason, JoinServerRetryReason, UnableToJoinReason } from "multiplayer/IMultiplayer";
|
|
70
70
|
import { SaveImportErrorReason, SaveSort } from "save/ISaveManager";
|
|
71
|
-
import { MusicPlaylist, TooltipVisibilityOption } from "save/data/ISaveDataGlobal";
|
|
71
|
+
import { MusicPlaylist, SteamInputKeyboardPosition, TooltipVisibilityOption } from "save/data/ISaveDataGlobal";
|
|
72
72
|
import { FontStyle } from "ui/IUi";
|
|
73
73
|
import Bindable, { BindableType } from "ui/input/Bindable";
|
|
74
74
|
import { SortType } from "ui/old/IOldUi";
|
|
@@ -191,19 +191,20 @@ declare const dictionaryMap: {
|
|
|
191
191
|
97: typeof Source;
|
|
192
192
|
98: typeof Stat;
|
|
193
193
|
99: typeof StatusType;
|
|
194
|
-
100: typeof
|
|
195
|
-
101: typeof
|
|
196
|
-
102: typeof
|
|
197
|
-
103: typeof
|
|
198
|
-
104: typeof
|
|
199
|
-
105: typeof
|
|
200
|
-
106: typeof
|
|
201
|
-
107: typeof
|
|
202
|
-
108: typeof
|
|
203
|
-
109: typeof
|
|
204
|
-
110: typeof
|
|
205
|
-
111: typeof
|
|
206
|
-
112: typeof
|
|
194
|
+
100: typeof SteamInputKeyboardPosition;
|
|
195
|
+
101: typeof Responsibility;
|
|
196
|
+
102: typeof TempType;
|
|
197
|
+
103: typeof TerrainType;
|
|
198
|
+
104: typeof TileEventType;
|
|
199
|
+
105: typeof TooltipVisibilityOption;
|
|
200
|
+
106: typeof UiTranslation;
|
|
201
|
+
107: typeof Quadrant;
|
|
202
|
+
108: typeof UnableToJoinReason;
|
|
203
|
+
109: typeof UnlockedRecipesStrategy;
|
|
204
|
+
110: typeof UsableActionType;
|
|
205
|
+
111: typeof Website;
|
|
206
|
+
112: typeof WeightStatus;
|
|
207
|
+
113: typeof WorldZ;
|
|
207
208
|
};
|
|
208
209
|
export declare const strictDictionaries: {
|
|
209
210
|
0: typeof ActionType;
|
|
@@ -306,19 +307,20 @@ export declare const strictDictionaries: {
|
|
|
306
307
|
97: typeof Source;
|
|
307
308
|
98: typeof Stat;
|
|
308
309
|
99: typeof StatusType;
|
|
309
|
-
100: typeof
|
|
310
|
-
101: typeof
|
|
311
|
-
102: typeof
|
|
312
|
-
103: typeof
|
|
313
|
-
104: typeof
|
|
314
|
-
105: typeof
|
|
315
|
-
106: typeof
|
|
316
|
-
107: typeof
|
|
317
|
-
108: typeof
|
|
318
|
-
109: typeof
|
|
319
|
-
110: typeof
|
|
320
|
-
111: typeof
|
|
321
|
-
112: typeof
|
|
310
|
+
100: typeof SteamInputKeyboardPosition;
|
|
311
|
+
101: typeof Responsibility;
|
|
312
|
+
102: typeof TempType;
|
|
313
|
+
103: typeof TerrainType;
|
|
314
|
+
104: typeof TileEventType;
|
|
315
|
+
105: typeof TooltipVisibilityOption;
|
|
316
|
+
106: typeof UiTranslation;
|
|
317
|
+
107: typeof Quadrant;
|
|
318
|
+
108: typeof UnableToJoinReason;
|
|
319
|
+
109: typeof UnlockedRecipesStrategy;
|
|
320
|
+
110: typeof UsableActionType;
|
|
321
|
+
111: typeof Website;
|
|
322
|
+
112: typeof WeightStatus;
|
|
323
|
+
113: typeof WorldZ;
|
|
322
324
|
};
|
|
323
325
|
export type DictionaryEnum = (typeof dictionaryMap)[Dictionary];
|
|
324
326
|
export type DictionaryEntryEnums = {
|
|
@@ -681,198 +681,199 @@ declare enum UiTranslation {
|
|
|
681
681
|
MenuOptionsButtonUnlockAllCraftingRecipes = 666,
|
|
682
682
|
MenuOptionsButtonAlternatingDirectionMovement = 667,
|
|
683
683
|
MenuOptionsButtonAllowAlternatingDirectionMovementTooltip = 668,
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
684
|
+
MenuOptionsButtonSteamInputKeyboardPosition = 669,
|
|
685
|
+
MenuOptionsButtonAlwaysShowMoreInformationTooltip = 670,
|
|
686
|
+
MenuOptionsButtonEnableLowPowerMode = 671,
|
|
687
|
+
MenuOptionsButtonEnableLowPowerModeTooltip = 672,
|
|
688
|
+
MenuOptionsButtonDisableAcrylicTransparency = 673,
|
|
689
|
+
MenuOptionsButtonDisableAcrylicTransparencyTooltip = 674,
|
|
690
|
+
MenuOptionsButtonDisableOverlaySupport = 675,
|
|
691
|
+
MenuOptionsButtonDisableOverlaySupportTooltip = 676,
|
|
692
|
+
MenuOptionsButtonDisableUIEffects = 677,
|
|
693
|
+
MenuOptionsButtonDisableUIEffectsTooltip = 678,
|
|
694
|
+
MenuOptionsButtonDisableUIOpacity = 679,
|
|
695
|
+
MenuOptionsButtonDisableUIOpacityTooltip = 680,
|
|
696
|
+
MenuOptionsButtonDisableMovementAnimations = 681,
|
|
697
|
+
MenuOptionsButtonDisableMovementAnimationsTooltip = 682,
|
|
698
|
+
MenuOptionsButtonAutoAttack = 683,
|
|
699
|
+
MenuOptionsButtonAutoAttackTooltip = 684,
|
|
700
|
+
MenuOptionsButtonAutoPickUp = 685,
|
|
701
|
+
MenuOptionsButtonAutoPickUpTooltip = 686,
|
|
702
|
+
MenuOptionsButtonAutoPickUpOnIdle = 687,
|
|
703
|
+
MenuOptionsButtonAutoPickUpOnIdleTooltip = 688,
|
|
704
|
+
MenuOptionsButtonDropOnDismantle = 689,
|
|
705
|
+
MenuOptionsButtonDropOnDismantleTooltip = 690,
|
|
706
|
+
MenuOptionsButtonDropOnDisassemble = 691,
|
|
707
|
+
MenuOptionsButtonDropOnDisassembleTooltip = 692,
|
|
708
|
+
MenuOptionsButtonDisableCraftingProtectedItems = 693,
|
|
709
|
+
MenuOptionsButtonDisableCraftingProtectedItemsTooltip = 694,
|
|
710
|
+
MenuOptionsButtonDropOnGatherHarvest = 695,
|
|
711
|
+
MenuOptionsButtonDropOnGatherHarvestTooltip = 696,
|
|
712
|
+
MenuOptionsButtonKeepSortActive = 697,
|
|
713
|
+
MenuOptionsButtonKeepSortActiveTooltip = 698,
|
|
714
|
+
MenuOptionsButtonUseAdjacentContainers = 699,
|
|
715
|
+
MenuOptionsButtonUseAdjacentContainersTooltip = 700,
|
|
716
|
+
MenuOptionsButtonHideEquippedHeadgear = 701,
|
|
717
|
+
MenuOptionsButtonHideEquippedHeadgearTooltip = 702,
|
|
718
|
+
MenuOptionsButtonLeftHanded = 703,
|
|
719
|
+
MenuOptionsButtonLeftHandedTooltip = 704,
|
|
720
|
+
MenuOptionsButtonAutoSave = 705,
|
|
721
|
+
MenuOptionsRangeAutoSaveTimerLabel = 706,
|
|
722
|
+
MenuOptionsRangeAutoSaveTimerTurnsDisplay = 707,
|
|
723
|
+
MenuOptionsRangeAutoSaveTimerTimeDisplay = 708,
|
|
724
|
+
MenuOptionsButtonDropIntoContainers = 709,
|
|
725
|
+
MenuOptionsButtonDropIntoContainersTooltip = 710,
|
|
726
|
+
MenuOptionsButtonWarnOnDangerousActions = 711,
|
|
727
|
+
MenuOptionsButtonWarnOnDangerousActionsTooltip = 712,
|
|
728
|
+
MenuOptionsButtonWarnWhenBreakingItemsOnCraft = 713,
|
|
729
|
+
MenuOptionsButtonWarnWhenBreakingItemsOnCraftTooltip = 714,
|
|
730
|
+
MenuOptionsButtonWarnWhenBreakingItemsOnUse = 715,
|
|
731
|
+
MenuOptionsButtonWarnWhenBreakingItemsOnUseTooltip = 716,
|
|
732
|
+
MenuOptionsHeadingWarnWhenBreakingItems = 717,
|
|
733
|
+
MenuOptionsButtonSaveDataClearBindings = 718,
|
|
734
|
+
MenuOptionsTooltipDialogOpacity = 719,
|
|
735
|
+
MenuOptionsLabelDialogOpacity = 720,
|
|
736
|
+
MenuOptionsDeveloperLogSourceFilterHeading = 721,
|
|
737
|
+
MenuOptionsDeveloperUIExperiments = 722,
|
|
738
|
+
MenuOptionsDeveloperUIExperimentsDescription = 723,
|
|
739
|
+
MenuOptionsAudioVolumeDisplay = 724,
|
|
740
|
+
MenuOptionsAudioInputSoundOnTyping = 725,
|
|
741
|
+
MenuOptionsMusicPlaylist = 726,
|
|
742
|
+
MenuOptionsButtonConfigureBindings = 727,
|
|
743
|
+
MenuOptionsButtonSaveCompression = 728,
|
|
744
|
+
MenuOptionsButtonSaveCompressionTooltip = 729,
|
|
745
|
+
MenuOptionsButtonSaveUIDataGlobally = 730,
|
|
746
|
+
MenuOptionsButtonSaveUIDataGloballyTooltip = 731,
|
|
747
|
+
MenuPauseButtonContinueGame = 732,
|
|
748
|
+
MenuPauseButtonReturnToGame = 733,
|
|
749
|
+
MenuPauseButtonOptions = 734,
|
|
750
|
+
MenuPauseButtonGameSettings = 735,
|
|
751
|
+
MenuPauseButtonPaused = 736,
|
|
752
|
+
MenuPauseButtonMultiplayer = 737,
|
|
753
|
+
MenuPauseButtonHelp = 738,
|
|
754
|
+
MenuPauseButtonTitleScreen = 739,
|
|
755
|
+
MenuPauseButtonStopServer = 740,
|
|
756
|
+
MenuPauseTooltipNotPaused = 741,
|
|
757
|
+
MenuPauseLabelPaused = 742,
|
|
758
|
+
MenuPauseLabelNotPaused = 743,
|
|
759
|
+
MenuModesTitle = 744,
|
|
760
|
+
MenuModesDescription = 745,
|
|
761
|
+
MenuMultiplayerOptionsTitle = 746,
|
|
762
|
+
MenuMultiplayerOptionsDescription = 747,
|
|
763
|
+
MenuMultiplayerOptionsOpenServer = 748,
|
|
764
|
+
MenuMultiplayerOptionsOpenServerDescription = 749,
|
|
765
|
+
MenuMultiplayerOptionsCopyGameCode = 750,
|
|
766
|
+
MenuMultiplayerOptionsCopyGameCodeTooltip = 751,
|
|
767
|
+
MenuMultiplayerOptionsInviteSteamFriends = 752,
|
|
768
|
+
MenuMultiplayerOptionsCheckConnectionHeading = 753,
|
|
769
|
+
MenuMultiplayerOptionsCheckConnectionParagraph = 754,
|
|
770
|
+
MenuMultiplayerOptionsCheckConnectionButton = 755,
|
|
771
|
+
MenuMultiplayerOptionsCheckConnectionResultUnknown = 756,
|
|
772
|
+
MenuMultiplayerOptionsCheckConnectionResultChecking = 757,
|
|
773
|
+
MenuMultiplayerOptionsCheckConnectionResultSteamRelayNetwork = 758,
|
|
774
|
+
MenuMultiplayerOptionsCheckConnectionResultSteamRelayNetworkFail = 759,
|
|
775
|
+
MenuMultiplayerOptionsCheckConnectionResultSteamRelayNetworkUnavailable = 760,
|
|
776
|
+
MenuMultiplayerOptionsCheckConnectionResultWebSocket = 761,
|
|
777
|
+
MenuMultiplayerOptionsCheckConnectionResultWebSocketFail = 762,
|
|
778
|
+
MenuMultiplayerOptionsCheckConnectionResultWebSocketUnavailable = 763,
|
|
779
|
+
MenuMultiplayerOptionsCheckConnectionResultSuccess = 764,
|
|
780
|
+
MenuJoinServerTitle = 765,
|
|
781
|
+
MenuJoinServerDescription = 766,
|
|
782
|
+
MenuJoinServerInputPlaceholder = 767,
|
|
783
|
+
MenuJoinServerChooseModifiersTitle = 768,
|
|
784
|
+
MenuJoinServerChooseModifiersDescription = 769,
|
|
785
|
+
MenuSharedMultiplayerChoiceLobbyTypeFriends = 770,
|
|
786
|
+
MenuSharedMultiplayerChoiceLobbyTypeFriendsDescription = 771,
|
|
787
|
+
MenuSharedMultiplayerChoiceLobbyTypePublic = 772,
|
|
788
|
+
MenuSharedMultiplayerChoiceLobbyTypePublicDescription = 773,
|
|
789
|
+
MenuSharedMultiplayerChoiceLobbyTypePrivate = 774,
|
|
790
|
+
MenuSharedMultiplayerChoiceLobbyTypePrivateDescription = 775,
|
|
791
|
+
MenuSharedMultiplayerChoicePVP = 776,
|
|
792
|
+
MenuSharedMultiplayerChoicePVPDescription = 777,
|
|
793
|
+
MenuSharedMultiplayerChoiceAllowTraveling = 778,
|
|
794
|
+
MenuSharedMultiplayerChoiceAllowTravelingDescription = 779,
|
|
795
|
+
MenuSharedMultiplayerChoiceAllowHardcoreRespawns = 780,
|
|
796
|
+
MenuSharedMultiplayerChoiceAllowHardcoreRespawnsDescription = 781,
|
|
797
|
+
MenuSharedMultiplayerDescription = 782,
|
|
798
|
+
MenuSharedMultiplayerMessageOfTheDay = 783,
|
|
799
|
+
MenuSharedMultiplayerMaxPlayers = 784,
|
|
800
|
+
MenuSharedRealTimeTickSpeedTooltip = 785,
|
|
801
|
+
MenuSharedRealTimeTickSpeedLabel = 786,
|
|
802
|
+
MenuSharedMaxTravelTimeLabel = 787,
|
|
803
|
+
MenuSharedMaxTravelTimeLabelTooltip = 788,
|
|
804
|
+
MenuSharedButtonDefault = 789,
|
|
805
|
+
MenuSharedValueSeconds = 790,
|
|
806
|
+
MenuSharedValueMillseconds = 791,
|
|
807
|
+
MenuSharedValueTurns = 792,
|
|
808
|
+
MenuSharedValuePercentage = 793,
|
|
809
|
+
MenuSharedMilestonesNotUnlockable = 794,
|
|
810
|
+
MenuSharedMilestonesNotUnlockableDescription = 795,
|
|
811
|
+
MenuSharedMilestonesNotUnlockableButtonShowMods = 796,
|
|
812
|
+
MenuSharedButtonDisableAll = 797,
|
|
813
|
+
MenuSharedButtonEnableAll = 798,
|
|
814
|
+
MenuSharedMilestoneModifiersSelected = 799,
|
|
815
|
+
MiscSortBy = 800,
|
|
816
|
+
MiscSortDirection = 801,
|
|
817
|
+
MiscFilter = 802,
|
|
818
|
+
MiscPlayerNameDefault = 803,
|
|
819
|
+
MiscPlayerNameServer = 804,
|
|
820
|
+
MiscSaveNameDefault = 805,
|
|
821
|
+
MiscSaveNameDailyChallenge = 806,
|
|
822
|
+
MiscSaveNameChallenge = 807,
|
|
823
|
+
MiscSaveVersionUnknown = 808,
|
|
824
|
+
MiscVersion = 809,
|
|
825
|
+
MiscVersionBuildInfoTooltip = 810,
|
|
826
|
+
MiscVersionUpdate = 811,
|
|
827
|
+
MiscTime = 812,
|
|
828
|
+
MiscTimeMeridiem = 813,
|
|
829
|
+
MiscError = 814,
|
|
830
|
+
MiscContextMenuCopyTooltip = 815,
|
|
831
|
+
MiscBindableNoBindings = 816,
|
|
832
|
+
MiscBindingIcon = 817,
|
|
833
|
+
MiscBindingIconThen = 818,
|
|
834
|
+
DifficultyOptionsPeaceful = 819,
|
|
835
|
+
DifficultyOptionsAberrantSpawnsDisabled = 820,
|
|
836
|
+
DifficultyOptionsAberrantSpawnsOnly = 821,
|
|
837
|
+
DifficultyOptionsCreatureSpawningDisabled = 822,
|
|
838
|
+
DifficultyOptionsCreatureAlwaysSpawns = 823,
|
|
839
|
+
DifficultyOptionsCreatureSpawnsDefault = 824,
|
|
840
|
+
DifficultyOptionsCreatureSpawnsAberrantOnly = 825,
|
|
841
|
+
DifficultyOptionsCreatureSpawnsNoAberrants = 826,
|
|
842
|
+
DifficultyOptionsSpawnLimit = 827,
|
|
843
|
+
DifficultyOptionsRespawn = 828,
|
|
844
|
+
DifficultyOptionsEternalNight = 829,
|
|
845
|
+
DifficultyOptionsEternalDay = 830,
|
|
846
|
+
DifficultyOptionsTimeInitial = 831,
|
|
847
|
+
DifficultyOptionsTimeFrozen = 832,
|
|
848
|
+
DifficultyOptionsTimeDayLength = 833,
|
|
849
|
+
DifficultyOptionsTimeDayPercent = 834,
|
|
850
|
+
DifficultyOptionsNoItems = 835,
|
|
851
|
+
DifficultyOptionsRecipes = 836,
|
|
852
|
+
DifficultyOptionsStartingIsland = 837,
|
|
853
|
+
DifficultyOptionsTravelingEffectsDisabled = 838,
|
|
854
|
+
DifficultyOptionsBenignityInitial = 839,
|
|
855
|
+
DifficultyOptionsBenignityMultiplier = 840,
|
|
856
|
+
DifficultyOptionsMalignityInitial = 841,
|
|
857
|
+
DifficultyOptionsMalignityMultiplier = 842,
|
|
858
|
+
DifficultyOptionsWeightBonus = 843,
|
|
859
|
+
DifficultyOptionsStatInitial = 844,
|
|
860
|
+
DifficultyOptionsStatMax = 845,
|
|
861
|
+
DifficultyOptionsStatMultiplier = 846,
|
|
862
|
+
DifficultyOptionsStatusEffectStartWith = 847,
|
|
863
|
+
DifficultyOptionsStatusEffectUntreatable = 848,
|
|
864
|
+
DifficultyOptionsStatusEffectPassChanceMultiplier = 849,
|
|
865
|
+
DifficultyOptionsNoRandomSkills = 850,
|
|
866
|
+
DifficultyOptionsSkillStartingCount = 851,
|
|
867
|
+
DifficultyOptionsSkillGainMultiplier = 852,
|
|
868
|
+
DifficultyOptionsSkillInitial = 853,
|
|
869
|
+
DifficultyOptionsStatusEffectPermanent = 854,
|
|
870
|
+
DifficultyOptionsStatusEffectRateMultiplier = 855,
|
|
871
|
+
DifficultyOptionsStatusEffectMultiplier = 856,
|
|
872
|
+
DifficultyOptionsItemDurabilityMultiplier = 857,
|
|
873
|
+
DifficultyOptionsItemDecayMultiplier = 858,
|
|
874
|
+
TabCrafting = 859,
|
|
875
|
+
TabDismantle = 860,
|
|
876
|
+
WindowTitleContainer = 861,
|
|
877
|
+
WindowTitleInventory = 862
|
|
877
878
|
}
|
|
878
879
|
export default UiTranslation;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Copyright 2011-2023 Unlok
|
|
3
|
+
* https://www.unlok.ca
|
|
4
|
+
*
|
|
5
|
+
* Credits & Thanks:
|
|
6
|
+
* https://www.unlok.ca/credits-thanks/
|
|
7
|
+
*
|
|
8
|
+
* Wayward is a copyrighted and licensed work. Modification and/or distribution of any source files is prohibited. If you wish to modify the game in any way, please refer to the modding guide:
|
|
9
|
+
* https://github.com/WaywardGame/types/wiki
|
|
10
|
+
*/
|
|
11
|
+
import { SteamInputKeyboardPosition } from "save/data/ISaveDataGlobal";
|
|
12
|
+
declare const steamInputKeyboardPositions: Descriptions<SteamInputKeyboardPosition, [string, string]>;
|
|
13
|
+
export default steamInputKeyboardPositions;
|
|
@@ -63,6 +63,7 @@ export interface IOptions {
|
|
|
63
63
|
shouldLoadLastSave: boolean;
|
|
64
64
|
shouldObjectNamesSkipArticle: boolean;
|
|
65
65
|
skipSplash: boolean;
|
|
66
|
+
steamInputKeyboardPosition: SteamInputKeyboardPosition;
|
|
66
67
|
tooltipDelay: number;
|
|
67
68
|
tooltips: Record<InspectType, boolean | undefined>;
|
|
68
69
|
tooltipVisibility?: TooltipVisibilityOption;
|
|
@@ -95,6 +96,11 @@ export declare enum MusicPlaylist {
|
|
|
95
96
|
Shuffle = 1,
|
|
96
97
|
Dynamic = 2
|
|
97
98
|
}
|
|
99
|
+
export declare enum SteamInputKeyboardPosition {
|
|
100
|
+
Dynamic = 0,
|
|
101
|
+
Top = 1,
|
|
102
|
+
Bottom = 2
|
|
103
|
+
}
|
|
98
104
|
export declare enum TooltipVisibilityOption {
|
|
99
105
|
HiddenUnlessBind = 0,
|
|
100
106
|
ShowMoreInformationWithBind = 1,
|
package/package.json
CHANGED