@wayward/types 2.14.4-beta.dev.20250209.1 → 2.14.4-beta.dev.20250211.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/entity/Human.d.ts +2 -1
- package/definitions/game/game/entity/action/actions/helper/ConfirmDumpDropItems.d.ts +13 -0
- package/definitions/game/game/meta/prompt/IPrompt.d.ts +111 -110
- package/definitions/game/game/meta/prompt/PromptDescriptions.d.ts +1 -0
- package/definitions/game/language/dictionary/UiTranslation.d.ts +167 -165
- package/definitions/game/save/data/ISaveDataGlobal.d.ts +1 -0
- package/package.json +1 -1
@@ -23,6 +23,7 @@ import type { IStat } from "@wayward/game/game/entity/IStats";
|
|
23
23
|
import { Stat } from "@wayward/game/game/entity/IStats";
|
24
24
|
import type { StatChangeTimerFactory } from "@wayward/game/game/entity/StatFactory";
|
25
25
|
import { StatChangeCurrentTimerStrategy } from "@wayward/game/game/entity/StatFactory";
|
26
|
+
import { ActionType } from "@wayward/game/game/entity/action/IAction";
|
26
27
|
import IActionContext from "@wayward/game/game/entity/action/IActionContext";
|
27
28
|
import type Creature from "@wayward/game/game/entity/creature/Creature";
|
28
29
|
import type { CreatureType, IDamageInfo } from "@wayward/game/game/entity/creature/ICreature";
|
@@ -361,7 +362,7 @@ export default abstract class Human<DescriptionType = unknown, TypeType extends
|
|
361
362
|
getRangedSkillBonus(skillUse?: SkillType): number;
|
362
363
|
getQualityBonus(item: Item | undefined): number;
|
363
364
|
setTamedCreatureEnemy(enemy: Human | Creature): void;
|
364
|
-
checkForGatherFire(): Translation | undefined;
|
365
|
+
checkForGatherFire(action: ActionType): Translation | undefined;
|
365
366
|
/**
|
366
367
|
* Check if there is a still in front of the player.
|
367
368
|
* @param withWater Check if the still has water in it?
|
@@ -0,0 +1,13 @@
|
|
1
|
+
/*!
|
2
|
+
* Copyright 2011-2024 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 type { IActionConfirmerApi } from "@wayward/game/game/entity/action/IAction";
|
12
|
+
import type Human from "@wayward/game/game/entity/Human";
|
13
|
+
export default function (action: IActionConfirmerApi<Human>): Promise<boolean>;
|
@@ -21,116 +21,117 @@ export declare enum Prompt {
|
|
21
21
|
GameCannotRunIndexedDbError = 4,
|
22
22
|
GameConfirmationActionIsLava = 5,
|
23
23
|
GameConfirmationActionInLavaOrFire = 6,
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
24
|
+
GameConfirmationActionDumpDropItemsInWaterVoid = 7,
|
25
|
+
GameConfirmationDestroyOnGather = 8,
|
26
|
+
GameConfirmationDroppingContainer = 9,
|
27
|
+
GameConfirmationRestWithEquippedFireSource = 10,
|
28
|
+
GameContainerNotFull = 11,
|
29
|
+
GameDesalinationNoNeed = 12,
|
30
|
+
GameExtinguishWaterStill = 13,
|
31
|
+
GameItemMayBeDestroyedInCraft = 14,
|
32
|
+
GameItemMayCauseBurns = 15,
|
33
|
+
GameItemsMayBeDestroyedOnUse = 16,
|
34
|
+
GameLoadFailure = 17,
|
35
|
+
GameNoHealingRequired = 18,
|
36
|
+
GameNoSaveOnDeath = 19,
|
37
|
+
GamePickUpDoodadWillBeDestroyed = 20,
|
38
|
+
GamePickUpStillWithWater = 21,
|
39
|
+
GameReleaseCreature = 22,
|
40
|
+
GameUncage = 23,
|
41
|
+
GameRenameGeneric = 24,
|
42
|
+
GameRenameCreature = 25,
|
43
|
+
GameRenameDoodad = 26,
|
44
|
+
GameRenameItem = 27,
|
45
|
+
GameReturnToTitleScreen = 28,
|
46
|
+
GameReturnToTitleScreenChallenge = 29,
|
47
|
+
GameSailAwayEnd = 30,
|
48
|
+
GameSailAwayReturnable = 31,
|
49
|
+
GameSaveError = 32,
|
50
|
+
GameSaveFailure = 33,
|
51
|
+
GameIslandTravelConfirmation = 34,
|
52
|
+
GameWellConvert = 35,
|
53
|
+
GameSolarStillWontWorkInTemperature = 36,
|
54
|
+
GameSolarStillWontWorkInCave = 37,
|
55
|
+
GameShipToIslandPayment = 38,
|
56
|
+
GameQuestConfirmSkip = 39,
|
57
|
+
GamePause = 40,
|
58
|
+
GameWin = 41,
|
59
|
+
GameOver = 42,
|
60
|
+
GameHelp = 43,
|
61
|
+
GameMultiplayerOptions = 44,
|
62
|
+
GameEditBindings = 45,
|
63
|
+
MenuCharacterCreationImportCharacterFailure = 46,
|
64
|
+
MenuCharacterSelectionDeleteCharacter = 47,
|
65
|
+
MenuGameEndGhostDeleteSave = 48,
|
66
|
+
MenuGameEndWonDeleteSave = 49,
|
67
|
+
MenuGameEndReturnToTitleScreen = 50,
|
68
|
+
MenuGameEndReturnToTitleScreenChallengeMultiplayer = 51,
|
69
|
+
MenuGameEndReturnToTitleScreenChallenge = 52,
|
70
|
+
MenuGameEndReturnToTitleScreenMultiplayer = 53,
|
71
|
+
MenuLoadGameDeleteSave = 54,
|
72
|
+
MenuLoadGameDeleteSaves = 55,
|
73
|
+
MenuLoadGameExportType = 56,
|
74
|
+
MenuLoadGameImportSaveFailure = 57,
|
75
|
+
MenuLoadGameMissingMod = 58,
|
76
|
+
MenuLoadGameOldBuildTime = 59,
|
77
|
+
MenuLoadGamePublishError = 60,
|
78
|
+
MenuMainWelcomeToVersion = 61,
|
79
|
+
MenuMainOldVersionWarning = 62,
|
80
|
+
MenuModsConfirmPublish = 63,
|
81
|
+
MenuModsConfirmPublishUpdate = 64,
|
82
|
+
MenuModsModEnableMultipleLanguages = 65,
|
83
|
+
MenuModsModEnableUseLanguage = 66,
|
84
|
+
MenuModsPublishedReminderRequiredModsOnWorkshop = 67,
|
85
|
+
MenuModsPublishError = 68,
|
86
|
+
MenuModsPublishUpdateError = 69,
|
87
|
+
MenuModsInfoMissingDependencies = 70,
|
88
|
+
MenuModsConfirmEnableDisabledDependencies = 71,
|
89
|
+
MenuModsConfirmDisableDependents = 72,
|
90
|
+
MenuModsConfirmUninstallMod = 73,
|
91
|
+
MenuModsUnloadableSaveGameMod = 74,
|
92
|
+
MenuModsSubmenuEditInternalModsModsListChangeReload = 75,
|
93
|
+
MenuMultiplayerCannotJoinFailedToLoadMods = 76,
|
94
|
+
MenuMultiplayerCannotJoinMissingMods = 77,
|
95
|
+
MenuNewGameTooManySaves = 78,
|
96
|
+
MenuCustomGameOptionsConfirmImport = 79,
|
97
|
+
MenuCustomGameOptionsImportFailure = 80,
|
98
|
+
MenuMilestoneModifiersConfirmImport = 81,
|
99
|
+
MenuMilestoneModifiersImportFailure = 82,
|
100
|
+
MenuOptionsReloadGame = 83,
|
101
|
+
MenuOptionsChangeReload = 84,
|
102
|
+
MenuOptionsChangeSteamBeta = 85,
|
103
|
+
MenuOptionsConfirmUnlockMilestones = 86,
|
104
|
+
MenuOptionsConfirmDiscoverActions = 87,
|
105
|
+
MenuOptionsConfirmUnlockRecipes = 88,
|
106
|
+
MenuOptionsSaveDataClearAll = 89,
|
107
|
+
MenuOptionsSaveDataClearCharacters = 90,
|
108
|
+
MenuOptionsSaveDataClearUI = 91,
|
109
|
+
MenuOptionsSaveDataClearHighscores = 92,
|
110
|
+
MenuOptionsSaveDataClearMilestones = 93,
|
111
|
+
MenuOptionsSaveDataClearOptions = 94,
|
112
|
+
MenuOptionsSaveDataClearSaves = 95,
|
113
|
+
MenuOptionsSaveDataClearCraftingRecipes = 96,
|
114
|
+
MenuOptionsSaveDataClearBindings = 97,
|
115
|
+
MenuOptionsConfirmImportGlobalData = 98,
|
116
|
+
MenuPauseGhostKeepSave = 99,
|
117
|
+
MenuPauseReturnToTitleScreen = 100,
|
118
|
+
MenuPauseReturnToTitleScreenChallenge = 101,
|
119
|
+
MenuPauseReturnToTitleScreenChallengeMultiplayer = 102,
|
120
|
+
MenuPauseReturnToTitleScreenMultiplayer = 103,
|
121
|
+
MultiplayerFailedToConnect = 104,
|
122
|
+
MultiplayerRestartServerAfterLoadingSave = 105,
|
123
|
+
MultiplayerDisconnect = 106,
|
124
|
+
MultiplayerDisconnectRejoin = 107,
|
125
|
+
MultiplayerServerHasUnpublishedMods = 108,
|
126
|
+
SteamworksURLOpenedInBrowser = 109,
|
127
|
+
SteamworksWorkshopOpenedInBrowser = 110,
|
128
|
+
SteamworksModWithNameAlreadyExists = 111,
|
129
|
+
SteamworksModImportSaveGameFailure = 112,
|
130
|
+
SteamworksModImportedSaveGame = 113,
|
131
|
+
SteamworksOpenFolderFailure = 114,
|
132
|
+
SteamworksModPublishModJsonUpdateFailed = 115,
|
133
|
+
SteamworksNotAvailableOnSteamDeck = 116,
|
134
|
+
UiSaveDrop = 117
|
134
135
|
}
|
135
136
|
export declare enum PromptType {
|
136
137
|
Info = 0,
|
@@ -27,6 +27,7 @@ export declare const promptGameConfirmationActionInLavaOrFire: import("@wayward/
|
|
27
27
|
AMOUNT: number;
|
28
28
|
LAVA?: true;
|
29
29
|
}]>;
|
30
|
+
export declare const promptGameConfirmationActionDumpDropItemsInWaterVoid: import("@wayward/game/game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
30
31
|
export declare const promptGameConfirmationActionIsLava: import("@wayward/game/game/meta/prompt/IPrompt").IPromptConfirmDescription<[gatherText: Text]>;
|
31
32
|
export declare const promptGameConfirmationDestroyOnGather: import("@wayward/game/game/meta/prompt/IPrompt").IPromptConfirmDescription<[growthStage: Text | undefined, objectName: Text]>;
|
32
33
|
export declare const promptGameConfirmationDroppingContainer: import("@wayward/game/game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
@@ -777,170 +777,172 @@ declare enum UiTranslation {
|
|
777
777
|
MenuOptionsButtonDropIntoContainersTooltip = 762,
|
778
778
|
MenuOptionsButtonWarnOnDangerousActions = 763,
|
779
779
|
MenuOptionsButtonWarnOnDangerousActionsTooltip = 764,
|
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
|
-
|
877
|
-
|
878
|
-
|
879
|
-
|
880
|
-
|
881
|
-
|
882
|
-
|
883
|
-
|
884
|
-
|
885
|
-
|
886
|
-
|
887
|
-
|
888
|
-
|
889
|
-
|
890
|
-
|
891
|
-
|
892
|
-
|
893
|
-
|
894
|
-
|
895
|
-
|
896
|
-
|
897
|
-
|
898
|
-
|
899
|
-
|
900
|
-
|
901
|
-
|
902
|
-
|
903
|
-
|
904
|
-
|
905
|
-
|
906
|
-
|
907
|
-
|
908
|
-
|
909
|
-
|
910
|
-
|
911
|
-
|
912
|
-
|
913
|
-
|
914
|
-
|
915
|
-
|
916
|
-
|
917
|
-
|
918
|
-
|
919
|
-
|
920
|
-
|
921
|
-
|
922
|
-
|
923
|
-
|
924
|
-
|
925
|
-
|
926
|
-
|
927
|
-
|
928
|
-
|
929
|
-
|
930
|
-
|
931
|
-
|
932
|
-
|
933
|
-
|
934
|
-
|
935
|
-
|
936
|
-
|
937
|
-
|
938
|
-
|
939
|
-
|
940
|
-
|
941
|
-
|
942
|
-
|
943
|
-
|
944
|
-
|
780
|
+
MenuOptionsButtonWarnOnDroppingActions = 765,
|
781
|
+
MenuOptionsButtonWarnOnDroppingActionsTooltip = 766,
|
782
|
+
MenuOptionsButtonWarnOnDestructiveActions = 767,
|
783
|
+
MenuOptionsButtonWarnOnDestructiveActionsTooltip = 768,
|
784
|
+
MenuOptionsButtonWarnWhenBreakingItemsOnCraft = 769,
|
785
|
+
MenuOptionsButtonWarnWhenBreakingItemsOnCraftTooltip = 770,
|
786
|
+
MenuOptionsButtonWarnWhenBreakingItemsOnUse = 771,
|
787
|
+
MenuOptionsButtonWarnWhenBreakingItemsOnUseTooltip = 772,
|
788
|
+
MenuOptionsHeadingWarnWhenBreakingItems = 773,
|
789
|
+
MenuOptionsButtonSaveDataClearBindings = 774,
|
790
|
+
MenuOptionsButtonDisableMilestones = 775,
|
791
|
+
MenuOptionsLabelSaveDataRemoval = 776,
|
792
|
+
MenuOptionsTooltipDialogOpacity = 777,
|
793
|
+
MenuOptionsLabelDialogOpacity = 778,
|
794
|
+
MenuOptionsDeveloperSteamBetas = 779,
|
795
|
+
MenuOptionsDeveloperSteamBetaName = 780,
|
796
|
+
MenuOptionsDeveloperLogSourceFilterHeading = 781,
|
797
|
+
MenuOptionsDeveloperUIExperiments = 782,
|
798
|
+
MenuOptionsDeveloperUIExperimentsDescription = 783,
|
799
|
+
MenuOptionsDeveloperDebugging = 784,
|
800
|
+
MenuOptionsDeveloperDebuggingDescription = 785,
|
801
|
+
MenuOptionsDeveloperToggleContainerDesyncDebugging = 786,
|
802
|
+
MenuOptionsDeveloperToggleContainerDesyncDebuggingDescription = 787,
|
803
|
+
MenuOptionsDeveloperReportErrors = 788,
|
804
|
+
MenuOptionsDeveloperReportErrorsDescription = 789,
|
805
|
+
MenuOptionsAudioVolumeDisplay = 790,
|
806
|
+
MenuOptionsAudioInputSoundOnTyping = 791,
|
807
|
+
MenuOptionsAudioPlayAudioInBackground = 792,
|
808
|
+
MenuOptionsMusicPlaylist = 793,
|
809
|
+
MenuOptionsButtonConfigureBindings = 794,
|
810
|
+
MenuOptionsButtonSaveCompression = 795,
|
811
|
+
MenuOptionsButtonSaveCompressionTooltip = 796,
|
812
|
+
MenuOptionsButtonSaveUIDataGlobally = 797,
|
813
|
+
MenuOptionsButtonSaveUIDataGloballyTooltip = 798,
|
814
|
+
MenuPauseButtonContinueGame = 799,
|
815
|
+
MenuPauseButtonReturnToGame = 800,
|
816
|
+
MenuPauseButtonOptions = 801,
|
817
|
+
MenuPauseButtonGameSettings = 802,
|
818
|
+
MenuPauseButtonPaused = 803,
|
819
|
+
MenuPauseButtonMultiplayer = 804,
|
820
|
+
MenuPauseButtonHelp = 805,
|
821
|
+
MenuPauseButtonTitleScreen = 806,
|
822
|
+
MenuPauseButtonStopServer = 807,
|
823
|
+
MenuPauseButtonQuitWithoutSaving = 808,
|
824
|
+
MenuPauseTooltipNotPaused = 809,
|
825
|
+
MenuPauseLabelPaused = 810,
|
826
|
+
MenuPauseLabelNotPaused = 811,
|
827
|
+
MenuModesTitle = 812,
|
828
|
+
MenuModesDescription = 813,
|
829
|
+
MenuMultiplayerOptionsTitle = 814,
|
830
|
+
MenuMultiplayerOptionsDescription = 815,
|
831
|
+
MenuMultiplayerOptionsOpenServer = 816,
|
832
|
+
MenuMultiplayerOptionsOpenServerDescription = 817,
|
833
|
+
MenuMultiplayerOptionsCopyGameCode = 818,
|
834
|
+
MenuMultiplayerOptionsCopyGameCodeTooltip = 819,
|
835
|
+
MenuMultiplayerOptionsInviteSteamFriends = 820,
|
836
|
+
MenuMultiplayerOptionsCheckConnectionHeading = 821,
|
837
|
+
MenuMultiplayerOptionsCheckConnectionParagraph = 822,
|
838
|
+
MenuMultiplayerOptionsCheckConnectionButton = 823,
|
839
|
+
MenuMultiplayerOptionsCheckConnectionResultUnknown = 824,
|
840
|
+
MenuMultiplayerOptionsCheckConnectionResultChecking = 825,
|
841
|
+
MenuMultiplayerOptionsCheckConnectionResultSteamRelayNetwork = 826,
|
842
|
+
MenuMultiplayerOptionsCheckConnectionResultSteamRelayNetworkFail = 827,
|
843
|
+
MenuMultiplayerOptionsCheckConnectionResultSteamRelayNetworkUnavailable = 828,
|
844
|
+
MenuMultiplayerOptionsCheckConnectionResultWebSocket = 829,
|
845
|
+
MenuMultiplayerOptionsCheckConnectionResultWebSocketFail = 830,
|
846
|
+
MenuMultiplayerOptionsCheckConnectionResultWebSocketUnavailable = 831,
|
847
|
+
MenuMultiplayerOptionsCheckConnectionResultSuccess = 832,
|
848
|
+
MenuJoinServerTitle = 833,
|
849
|
+
MenuJoinServerDescription = 834,
|
850
|
+
MenuJoinServerInputPlaceholder = 835,
|
851
|
+
MenuJoinServerChooseModifiersTitle = 836,
|
852
|
+
MenuJoinServerChooseModifiersDescription = 837,
|
853
|
+
MenuSharedMultiplayerChoiceLobbyTypeFriends = 838,
|
854
|
+
MenuSharedMultiplayerChoiceLobbyTypeFriendsDescription = 839,
|
855
|
+
MenuSharedMultiplayerChoiceLobbyTypePublic = 840,
|
856
|
+
MenuSharedMultiplayerChoiceLobbyTypePublicDescription = 841,
|
857
|
+
MenuSharedMultiplayerChoiceLobbyTypePrivate = 842,
|
858
|
+
MenuSharedMultiplayerChoiceLobbyTypePrivateDescription = 843,
|
859
|
+
MenuSharedMultiplayerChoicePVP = 844,
|
860
|
+
MenuSharedMultiplayerChoicePVPDescription = 845,
|
861
|
+
MenuSharedMultiplayerChoiceAllowTraveling = 846,
|
862
|
+
MenuSharedMultiplayerChoiceAllowTravelingDescription = 847,
|
863
|
+
MenuSharedMultiplayerChoiceAllowHardcoreRespawns = 848,
|
864
|
+
MenuSharedMultiplayerChoiceAllowHardcoreRespawnsDescription = 849,
|
865
|
+
MenuSharedMultiplayerChoicePauseOnDesync = 850,
|
866
|
+
MenuSharedMultiplayerChoicePauseOnDesyncDescription = 851,
|
867
|
+
MenuSharedMultiplayerDescription = 852,
|
868
|
+
MenuSharedMultiplayerMessageOfTheDay = 853,
|
869
|
+
MenuSharedMultiplayerMaxPlayers = 854,
|
870
|
+
MenuSharedRealTimeTickSpeedTooltip = 855,
|
871
|
+
MenuSharedRealTimeTickSpeedLabel = 856,
|
872
|
+
MenuSharedButtonDefault = 857,
|
873
|
+
MenuSharedValueSeconds = 858,
|
874
|
+
MenuSharedValueMilliseconds = 859,
|
875
|
+
MenuSharedValuePercentage = 860,
|
876
|
+
MenuSharedMilestonesNotUnlockable = 861,
|
877
|
+
MenuSharedMilestonesNotUnlockableDescription = 862,
|
878
|
+
MenuSharedMilestonesNotUnlockableButtonShowMods = 863,
|
879
|
+
MenuSharedButtonDisableAll = 864,
|
880
|
+
MenuSharedButtonEnableAll = 865,
|
881
|
+
MenuSharedMilestoneModifiersSelected = 866,
|
882
|
+
MiscSortBy = 867,
|
883
|
+
MiscSortCustom = 868,
|
884
|
+
MiscSortDirection = 869,
|
885
|
+
MiscFilter = 870,
|
886
|
+
MiscNone = 871,
|
887
|
+
MiscPlayerNameDefault = 872,
|
888
|
+
MiscPlayerNameServer = 873,
|
889
|
+
MiscSaveNameDefault = 874,
|
890
|
+
MiscSaveNameDailyChallenge = 875,
|
891
|
+
MiscSaveNameChallenge = 876,
|
892
|
+
MiscSaveVersionUnknown = 877,
|
893
|
+
MiscVersion = 878,
|
894
|
+
MiscVersionBuildInfoTooltip = 879,
|
895
|
+
MiscVersionUpdate = 880,
|
896
|
+
MiscTime = 881,
|
897
|
+
MiscTimeMeridiem = 882,
|
898
|
+
MiscError = 883,
|
899
|
+
MiscContextMenuCopyTooltip = 884,
|
900
|
+
MiscBindableNoBindings = 885,
|
901
|
+
MiscBindingIcon = 886,
|
902
|
+
MiscBindingIconThen = 887,
|
903
|
+
DifficultyOptionsPeaceful = 888,
|
904
|
+
DifficultyOptionsAberrantSpawnsDisabled = 889,
|
905
|
+
DifficultyOptionsAberrantSpawnsOnly = 890,
|
906
|
+
DifficultyOptionsCreatureSpawningDisabled = 891,
|
907
|
+
DifficultyOptionsCreatureAlwaysSpawns = 892,
|
908
|
+
DifficultyOptionsCreatureSpawnsDefault = 893,
|
909
|
+
DifficultyOptionsCreatureSpawnsAberrantOnly = 894,
|
910
|
+
DifficultyOptionsCreatureSpawnsNoAberrants = 895,
|
911
|
+
DifficultyOptionsSpawnLimit = 896,
|
912
|
+
DifficultyOptionsSpawnRateMultiplier = 897,
|
913
|
+
DifficultyOptionsDisableScared = 898,
|
914
|
+
DifficultyOptionsRespawn = 899,
|
915
|
+
DifficultyOptionsEternalNight = 900,
|
916
|
+
DifficultyOptionsEternalDay = 901,
|
917
|
+
DifficultyOptionsTimeInitial = 902,
|
918
|
+
DifficultyOptionsTimeFrozen = 903,
|
919
|
+
DifficultyOptionsTimeDayLength = 904,
|
920
|
+
DifficultyOptionsTimeDayPercent = 905,
|
921
|
+
DifficultyOptionsNoItems = 906,
|
922
|
+
DifficultyOptionsRecipes = 907,
|
923
|
+
DifficultyOptionsStartingIsland = 908,
|
924
|
+
DifficultyOptionsTravelingEffectsDisabled = 909,
|
925
|
+
DifficultyOptionsLuck = 910,
|
926
|
+
DifficultyOptionsWeightBonus = 911,
|
927
|
+
DifficultyOptionsStatInitial = 912,
|
928
|
+
DifficultyOptionsStatMax = 913,
|
929
|
+
DifficultyOptionsStatMultiplier = 914,
|
930
|
+
DifficultyOptionsStatusStartWith = 915,
|
931
|
+
DifficultyOptionsStatusUntreatable = 916,
|
932
|
+
DifficultyOptionsStatusPassChanceMultiplier = 917,
|
933
|
+
DifficultyOptionsNoRandomSkills = 918,
|
934
|
+
DifficultyOptionsSkillStartingCount = 919,
|
935
|
+
DifficultyOptionsSkillGainMultiplier = 920,
|
936
|
+
DifficultyOptionsSkillInitial = 921,
|
937
|
+
DifficultyOptionsStatusPermanent = 922,
|
938
|
+
DifficultyOptionsStatusRateMultiplier = 923,
|
939
|
+
DifficultyOptionsStatusMultiplier = 924,
|
940
|
+
DifficultyOptionsItemDurabilityMultiplier = 925,
|
941
|
+
DifficultyOptionsItemDecayMultiplier = 926,
|
942
|
+
DifficultyOptionsTileContainersEnabled = 927,
|
943
|
+
TabCrafting = 928,
|
944
|
+
TabDismantle = 929,
|
945
|
+
WindowTitleContainer = 930,
|
946
|
+
WindowTitleInventory = 931
|
945
947
|
}
|
946
948
|
export default UiTranslation;
|
@@ -89,6 +89,7 @@ export interface IOptions {
|
|
89
89
|
volumeEffects: number;
|
90
90
|
volumeMusic: number;
|
91
91
|
warnOnDangerousActions: boolean;
|
92
|
+
warnOnDroppingActions: boolean;
|
92
93
|
warnOnDestructiveActions: boolean;
|
93
94
|
warnWhenBreakingItems: boolean;
|
94
95
|
warnWhenBreakingItemsOnCraft: boolean;
|
package/package.json
CHANGED