@wayward/types 2.15.0-beta.dev.20251020.1 → 2.15.0-beta.dev.20251022.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 (68) hide show
  1. package/definitions/game/game/Game.d.ts +1 -0
  2. package/definitions/game/game/curse/Curse.d.ts +8 -2
  3. package/definitions/game/game/doodad/Doodad.d.ts +8 -1
  4. package/definitions/game/game/entity/Human.d.ts +1 -1
  5. package/definitions/game/game/entity/IHuman.d.ts +2 -1
  6. package/definitions/game/game/entity/action/actions/SetTitle.d.ts +1 -1
  7. package/definitions/game/game/entity/data/DataComponent.d.ts +2 -1
  8. package/definitions/game/game/island/Island.d.ts +1 -0
  9. package/definitions/game/game/milestones/IMilestone.d.ts +8 -3
  10. package/definitions/game/game/milestones/MilestoneDefinition.d.ts +7 -3
  11. package/definitions/game/game/options/IGameOptions.d.ts +6 -1
  12. package/definitions/game/game/options/modifiers/challenge/IChallenge.d.ts +2 -1
  13. package/definitions/game/game/options/modifiers/custom/CustomModifierDefinitions.d.ts +117 -0
  14. package/definitions/game/game/options/modifiers/custom/ICustomModifier.d.ts +78 -0
  15. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierCreatureSpawnLimit.d.ts +13 -0
  16. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierCreatureSpawnRate.d.ts +13 -0
  17. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierCreatures.d.ts +15 -0
  18. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierCreaturesOther.d.ts +13 -0
  19. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierItemDecay.d.ts +13 -0
  20. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierItemDurability.d.ts +13 -0
  21. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierSkills.d.ts +15 -0
  22. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierSkillsGainMultiplierGlobal.d.ts +13 -0
  23. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierSkillsInitialValueGlobal.d.ts +13 -0
  24. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierSkillsStartCount.d.ts +13 -0
  25. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierStartingBiome.d.ts +14 -0
  26. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierStatGeneric.d.ts +15 -0
  27. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierStatLuck.d.ts +13 -0
  28. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierStatStrength.d.ts +13 -0
  29. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierStatusGeneric.d.ts +15 -0
  30. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierTimeDayLength.d.ts +13 -0
  31. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierTimeDayPercent.d.ts +13 -0
  32. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierTimeInitial.d.ts +13 -0
  33. package/definitions/game/game/options/modifiers/milestone/MilestoneModifiersManager.d.ts +2 -0
  34. package/definitions/game/game/options/modifiers/milestone/modifiers/Oblivious.d.ts +17 -0
  35. package/definitions/game/game/tile/events/MeltingTile.d.ts +0 -1
  36. package/definitions/game/game/time/TimeManager.d.ts +2 -0
  37. package/definitions/game/language/Dictionary.d.ts +3 -1
  38. package/definitions/game/language/DictionaryMap.d.ts +6 -0
  39. package/definitions/game/language/Translation.d.ts +1 -0
  40. package/definitions/game/language/dictionary/Message.d.ts +562 -564
  41. package/definitions/game/language/dictionary/Misc.d.ts +4 -0
  42. package/definitions/game/language/dictionary/UiTranslation.d.ts +824 -862
  43. package/definitions/game/language/english/game/CustomModifiers.d.ts +13 -0
  44. package/definitions/game/language/english/game/GameOptionsIcons.d.ts +13 -0
  45. package/definitions/game/save/upgrade/versions/beta2.15.0/beta2.15.0-dev20251020.d.ts +12 -0
  46. package/definitions/game/ui/Ui.d.ts +3 -0
  47. package/definitions/game/ui/component/GameIcons.d.ts +4 -3
  48. package/definitions/game/ui/input/Bindable.d.ts +24 -23
  49. package/definitions/game/ui/screen/screens/game/InspectionsTooltipHandler.d.ts +2 -0
  50. package/definitions/game/ui/screen/screens/game/component/GameDetails.d.ts +4 -4
  51. package/definitions/game/ui/screen/screens/menu/menus/newgame/CustomGameOptionsMenu.d.ts +4 -3
  52. package/definitions/game/ui/screen/screens/menu/menus/newgame/TabGameMode.d.ts +1 -1
  53. package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/CustomGameOptionsTab.d.ts +12 -2
  54. package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/TabCreatures.d.ts +2 -3
  55. package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/TabGeneral.d.ts +2 -2
  56. package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/TabItems.d.ts +2 -2
  57. package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/TabSkills.d.ts +2 -3
  58. package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/TabStats.d.ts +2 -2
  59. package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/TabStatuses.d.ts +2 -2
  60. package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/TabTime.d.ts +2 -5
  61. package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/TabTravel.d.ts +2 -2
  62. package/definitions/game/ui/screen/screens/menu/menus/pause/GameOptionsIcons.d.ts +2 -11
  63. package/definitions/game/ui/tooltip/TooltipManager.d.ts +1 -0
  64. package/definitions/game/utilities/object/Merge.d.ts +5 -0
  65. package/definitions/game/utilities/random/RandomValueGenerator.d.ts +4 -1
  66. package/definitions/game/utilities/random/generators/specific/RandomRange.d.ts +4 -1
  67. package/definitions/utilities/random/Random.d.ts +1 -0
  68. package/package.json +1 -1
@@ -94,867 +94,829 @@ declare enum UiTranslation {
94
94
  GameDialogIslandsConstructLighthousesToBuildMorePorts = 79,
95
95
  GameTooltipInspect = 80,
96
96
  GameTooltipShowMoreInformation = 81,
97
- GameTooltipDefenseLabelBase = 82,
98
- GameTooltipDefenseLabelVehicleBonus = 83,
99
- GameTooltipDefenseLabelBaseDefenseMultiplier = 84,
100
- GameTooltipItemUseLabelMaxWeight = 85,
101
- GameTooltipSharedMagicalLabel = 86,
102
- GameTooltipSharedMagicalCursesLabel = 87,
103
- GameTooltipSharedUsesLabel = 88,
104
- GameTooltipSharedLabelTurns = 89,
105
- GameTooltipSharedLabelTurnsAgo = 90,
106
- GameTooltipSharedLabelUntamesIn = 91,
107
- GameTooltipSharedLabelTimesTamed = 92,
108
- GameTooltipSharedLabelTimesPetted = 93,
109
- GameTooltipRecipeLabelSkill = 94,
110
- GameTooltipRecipeLabelLevel = 95,
111
- GameTooltipRecipeLabelEfficacy = 96,
112
- GameTooltipRecipeLabelEfficacyHigh = 97,
113
- GameTooltipRecipeLabelEfficacyHighest = 98,
114
- GameTooltipRecipeLabelEfficacyLow = 99,
115
- GameTooltipRecipeLabelEfficacyLowest = 100,
116
- GameTooltipRecipeLabelEfficacyMed = 101,
117
- GameTooltipRecipeLabelEfficacyLabel = 102,
118
- GameTooltipRecipeLabelSuccessChance = 103,
119
- GameTooltipRecipeLabelQualityChance = 104,
120
- GameTooltipRecipeLabelMasterCraftChance = 105,
121
- GameTooltipRecipeNearby = 106,
122
- GameTooltipRecipeFireSource = 107,
123
- GameTooltipRecipeRequirement = 108,
124
- GameTooltipRecipeLabelRequired = 109,
125
- GameTooltipRecipeLabelConsumed = 110,
126
- GameTooltipItemSkillSource = 111,
127
- GameTooltipItemUseActionOnConsumeTooltipBase = 112,
128
- GameTooltipItemUseActionOnConsumeTooltipSkill = 113,
129
- GameTooltipItemUseActionOnConsumeTooltipQuality = 114,
130
- GameTooltipItemUseActionOnConsumeTooltipMagical = 115,
131
- GameTooltipItemUseActionOnConsumeTooltipMagicalStat = 116,
132
- GameTooltipItemUseActionSharedLabelRequirements = 117,
133
- GameTooltipItemUseActionDismantleProduces = 118,
134
- GameTooltipSharedUseLabelLightSource = 119,
135
- GameTooltipItemUseLabelTelescopy = 120,
136
- GameTooltipItemDecay = 121,
137
- GameTooltipItemDecayExact = 122,
138
- GameTooltipItemDecayRate = 123,
139
- GameTooltipItemDecayRateTooltip = 124,
140
- GameTooltipItemWeight = 125,
141
- GameTooltipItemInvoke = 126,
142
- GameTooltipItemWeightBase = 127,
143
- GameTooltipItemWeightStored = 128,
144
- GameTooltipItemWeightStoredReduction = 129,
145
- GameTooltipItemLabelRange = 130,
146
- GameTooltipItemLabelAccuracy = 131,
147
- GameTooltipItemMagicalSource = 132,
148
- GameTooltipItemGroupingsLabel = 133,
149
- GameTooltipItemGroup = 134,
150
- GameTooltipItemLabelUsesWhenBuilt = 135,
151
- GameTooltipItemWorth = 136,
152
- GameTooltipItemProtected = 137,
153
- GameTooltipItemProtectedSimpleDescription = 138,
154
- GameTooltipItemProtectedContainer = 139,
155
- GameTooltipItemVehicle = 140,
156
- GameTooltipItemVehicleMovementSpeed = 141,
157
- GameTooltipItemVehicleDefenseBonus = 142,
158
- GameTooltipItemLabelDismantle = 143,
159
- GameTooltipItemLabelDismantleRequirement = 144,
160
- GameTooltipItemQuantityMultiplier = 145,
161
- GameTooltipItemUseAttack = 146,
162
- GameTooltipItemUseThrowDamage = 147,
163
- GameTooltipItemUseCrafting = 148,
164
- GameTooltipSharedLabelDoodadCraftingBonus = 149,
165
- GameTooltipItemUseOffering = 150,
166
- GameTooltipItemUseEquipDefense = 151,
167
- GameTooltipItemUseEquipDefenseAttribute = 152,
168
- GameTooltipItemUseMainHand = 153,
169
- GameTooltipItemUseOffhand = 154,
170
- GameTooltipItemLabelDamage = 155,
171
- GameTooltipItemBarterCreditTradeAvailable = 156,
172
- GameTooltipItemBarterCreditTrade = 157,
173
- GameTooltipItemBarterCredit = 158,
174
- GameTooltipItemLabelIsland = 159,
175
- GameTooltipSharedLabelWeightCapacity = 160,
176
- GameTooltipSharedLabelScareRadius = 161,
177
- GameTooltipSharedLabelCivilizationScore = 162,
178
- GameTooltipSharedLabelCivilizationScoreFull = 163,
179
- GameTooltipSharedLabelDoodadSkillAdjacent = 164,
180
- GameTooltipSharedLabelAdjacentSkillBonus = 165,
181
- GameTooltipSharedLabelGrowingSpeed = 166,
182
- GameTooltipSharedLabelInsulation = 167,
183
- GameTooltipSharedLabelStoredInsulation = 168,
184
- GameTooltipSharedLabelPreservation = 169,
185
- GameTooltipSharedLabelDurability = 170,
186
- GameTooltipSharedLabelPurification = 171,
187
- GameTooltipSharedLabelPurificationTurns = 172,
188
- GameTooltipSharedDurabilityMagicalDamageReduction = 173,
189
- GameTooltipSharedDurabilityMagicalDamageUnreduction = 174,
190
- GameTooltipSharedDecayMagicalReduction = 175,
191
- GameTooltipSharedDecayMagicalUnreduction = 176,
192
- GameTooltipSharedDurabilityMagicalDamageRegeneration = 177,
193
- GameTooltipSharedDurabilityMagicalDamageDegeneration = 178,
194
- GameTooltipSharedLabelContents = 179,
195
- GameTooltipSkill = 180,
196
- GameTooltipSkillCurrent = 181,
197
- GameTooltipSkillCanIncrease = 182,
198
- GameTooltipSkillItemBonuses = 183,
199
- GameTooltipSkillDoodadBonuses = 184,
200
- GameTooltipSkillBonus = 185,
201
- GameTooltipMilestone = 186,
202
- GameTooltipMilestoneProgress = 187,
203
- GameTooltipMilestoneDiscovered = 188,
204
- GameTooltipMilestoneHintClickToUseAsTitle = 189,
205
- GameTooltipMilestoneUsingAsTitle = 190,
206
- GameTooltipSharedMagicalProperty = 191,
207
- GameTooltipSharedMagicalPropertyOutOf = 192,
208
- GameTooltipSharedLabel = 193,
209
- GameTooltipSharedLabelDash = 194,
210
- GameTooltipSharedLabelHead = 195,
211
- GameTooltipSharedLabelTail = 196,
212
- GameTooltipSharedLabelStart = 197,
213
- GameTooltipSharedLabelStartNoSpace = 198,
214
- GameTooltipSharedLabelEnd = 199,
215
- GameTooltipSharedResistsAndVulnsLabelVulnerableTo = 200,
216
- GameTooltipSharedResistsAndVulnsLabelResistantTo = 201,
217
- GameTooltipSharedResistsAndVulnsLabelImmuneTo = 202,
218
- GameTooltipSharedResistsAndVulnsLabelHealsFrom = 203,
219
- GameTooltipSharedResistsAndVulnsDamageType = 204,
220
- GameTooltipIslandBiome = 205,
221
- GameTooltipIslandSeed = 206,
222
- GameTooltipIslandDaysSpent = 207,
223
- GameTooltipIslandDaysSpentDaysUnit = 208,
224
- GameTooltipIslandDaysSpentCumulative = 209,
225
- GameTooltipIslandUndiscovered = 210,
226
- GameTooltipIslandUnnamed = 211,
227
- GameTooltipIslandSelf = 212,
228
- GameTooltipIslandPlayers = 213,
229
- GameTooltipIslandPorts = 214,
230
- GameTooltipIslandNPCs = 215,
231
- GameTooltipIslandModifiers = 216,
232
- GameTooltipIslandMaps = 217,
233
- GameTooltipIslandCoordinates = 218,
234
- GameTooltipIslandCoordinatesLabel = 219,
235
- GameTooltipNPCMerchantCredit = 220,
236
- GameTooltipNPCMerchantNewInventory = 221,
237
- GameTooltipNPCShipperNoItems = 222,
238
- GameTooltipNPCShipperContainedItems = 223,
239
- GameTooltipActionUndiscovered = 224,
240
- GameTooltipActionTierLabel = 225,
241
- GameTooltipSharedRuneChance = 226,
242
- GameToolTipSharedRuneChanceAction = 227,
243
- GameToolTipSharedRuneChanceCrafting = 228,
244
- GameToolTipSharedRuneChanceSkill = 229,
245
- GameTooltipEquipSlotOffHandDisabledTwoHandedOffHand = 230,
246
- GameTooltipEquipSlotOffHandDisabledTwoHandedMainHand = 231,
247
- GameTooltipStatSubtitle = 232,
248
- GameTooltipStatSubtitleCore = 233,
249
- GameTooltipStatAttackSectionMelee = 234,
250
- GameTooltipStatAttackSectionRanged = 235,
251
- GameTooltipStatAttackRange = 236,
252
- GameTooltipStatAttackMultiplier = 237,
253
- GameTooltipStatWeightLabelMax = 238,
254
- GameTooltipStatSharedLabelMax = 239,
255
- GameTooltipStatSharedLabelSkill = 240,
256
- GameTooltipStatSharedCoreStat = 241,
257
- GameTooltipStatSharedCoreStatLabelSkills = 242,
258
- GameTooltipStatSharedCoreStatSkillsListUndiscoveredSkills = 243,
259
- GameTooltipStatusMoreInformationRevealedAtSkillThreshold = 244,
260
- GameTooltipStatusLabelCures = 245,
261
- GameTooltipCurseEventCursebearer = 246,
262
- GameTooltipCreatureSubtitle = 247,
263
- GameTooltipCreatureColorContext = 248,
264
- GameTooltipCreatureLabelTamed = 249,
265
- GameTooltipCreatureLabelMood = 250,
266
- GameTooltipCreatureLabelCommand = 251,
267
- GameTooltipCreatureLabelCanPetIn = 252,
268
- GameTooltipCreatureCanPet = 253,
269
- GameTooltipCreatureLabelCanMilkIn = 254,
270
- GameTooltipCreatureLabelAberrant = 255,
271
- GameTooltipCreatureLabelStatuses = 256,
272
- GameTooltipCreatureAberrantDescriptionShort = 257,
273
- GameTooltipCreatureAberrantDescriptionExtra = 258,
274
- GameTooltipCreatureAberrantDescriptionVerbose = 259,
275
- GameTooltipCreatureProducingMilk = 260,
276
- GameTooltipCreatureExactHealth = 261,
277
- GameTooltipDeityLabelDomains = 262,
278
- GameTooltipStatFerocityScore = 263,
279
- GameTooltipStatFerocityCivilizationScore = 264,
280
- GameTooltipStatFerocityCivilizationScoreTerritory = 265,
281
- GameTooltipStatTerritoryTier = 266,
282
- GameTooltipStatFerocityTurn = 267,
283
- GameTooltipStatFerocityTicks = 268,
284
- GameTooltipStatFerocityNights = 269,
285
- GameTooltipStatFerocityDays = 270,
286
- GameTooltipSharedUndiscovered = 271,
287
- GameTooltipStatCurseFactors = 272,
288
- GameTooltipStatCurseFactor = 273,
289
- GameTooltipStatCurseTotalValues = 274,
290
- GameTooltipStatCurseTotalLabel = 275,
291
- GameTooltipMagicCurseDescription = 276,
292
- GameStatsStatAttack = 277,
293
- GameStatsStatGeneric = 278,
294
- GameStatsStatGenericWithMax = 279,
295
- GameStatsStatbar = 280,
296
- GameStatsMoreToDiscover = 281,
297
- GameMenuBarButtonTooltipBindable = 282,
298
- GameMenuBarButtonTooltipSaveSize = 283,
299
- GameMenuBarButtonTooltipSaveTurnsAgo = 284,
300
- GameMenuBarButtonTooltipSaveLastTime = 285,
301
- GameMenuBarButtonTooltipNotesUnread = 286,
302
- GameMenuBarButtonTooltipMilestonesDisabled = 287,
303
- GameMenuBarButtonTooltipQuestsDisabled = 288,
304
- GameMenuBarContextMenuActionRemoveItem = 289,
305
- GameMenuBarContextMenuActionInsertItem = 290,
306
- GameMenuBarContextMenuActionReset = 291,
307
- GameActionBarContextMenuDisplayBindings = 292,
308
- GameActionBarContextMenuAutoSelectPrimaryUse = 293,
309
- GameActionBarContextMenuBringSlotsIntoNewSaves = 294,
310
- GameActionBarContextMenuConfigure = 295,
311
- GameActionBarContextMenuSelectModifierOrder = 296,
312
- GameActionBarContextMenuSelectModifierOrderNoModifier = 297,
313
- GameActionBarContextMenuAutoSwitchToBestItemOnInaccessible = 298,
314
- GameActionBarConfigurationDrawerTitle = 299,
315
- GameActionBarConfigurationDrawerFooterDiscoveryHint = 300,
316
- GameActionBarConfigurationDrawerFooterDiscoveryHintProgress = 301,
317
- GameActionBarConfigurationDrawerSlotHintUse = 302,
318
- GameActionBarConfigurationDrawerSlotHintToggle = 303,
319
- GameActionBarConfigurationDrawerSlotHintToggleUseOnMove = 304,
320
- GameActionBarConfigurationDrawerColumnTitleActions = 305,
321
- GameActionBarConfigurationDrawerColumnTitleItemActions = 306,
322
- GameActionBarConfigurationDrawerColumnTitleConfiguration = 307,
323
- GameActionBarConfigurationDrawerButtonEditBindings = 308,
324
- GameActionBarConfigurationDrawerButtonClearSlot = 309,
325
- GameActionBarConfigurationDrawerColumnTitleInapplicable = 310,
326
- GameActionBarConfigurationDrawerButtonUseOnMove = 311,
327
- GameActionBarConfigurationDrawerButtonUseOnMoveDescription = 312,
328
- GameActionBarConfigurationDrawerButtonUseOnHoveredTile = 313,
329
- GameActionBarConfigurationDrawerButtonUseOnHoveredTileDescription = 314,
330
- GameActionBarConfigurationDrawerModeUseExact = 315,
331
- GameActionBarConfigurationDrawerModeUseExactNoItemSelected = 316,
332
- GameActionBarConfigurationDrawerModeUseBest = 317,
333
- GameActionBarConfigurationDrawerModeUseNone = 318,
334
- GameActionBarConfigurationDrawerModeUseHovered = 319,
335
- GameActionBarConfigurationDrawerItemDropdownAny = 320,
336
- GameActionBarConfigurationDrawerItemDropdownNoTypeSelected = 321,
337
- GameActionBarConfigurationDrawerButtonDone = 322,
338
- GameActionBarConfigurationDrawerButtonCraftType = 323,
339
- GameActionBarSlotTooltipHintUse = 324,
340
- GameActionBarSlotTooltipHintConfigure = 325,
341
- GameActionBarSlotTooltipHintUseOnMove = 326,
342
- GameActionBarSlotTooltipHintUseSlottedItem = 327,
343
- GameActionBarSlotTooltipHintClear = 328,
344
- GameActionBarButtonToggleUseWhenMovingTooltip = 329,
345
- GameActionBarButtonRemoveActionBarRowTooltip = 330,
346
- GameActionBarButtonAddActionBarRowTooltip = 331,
347
- GameActionBarButtonConfigureOptions = 332,
348
- GameMessagesButtonSend = 333,
349
- GameMessagesContextMenuShowAsDialog = 334,
350
- GameMessagesContextMenuClear = 335,
351
- GameMessagesContextMenuCopy = 336,
352
- GameMessagesContextMenuExport = 337,
353
- GameMessagesFilter = 338,
354
- GameMessagesFiltersEdit = 339,
355
- GameMessagesNewNote = 340,
356
- GameMessagesTurn = 341,
357
- GameMessagesDedicatedServerBackup = 342,
358
- GameMessagesDedicatedServerBackupLimitReached = 343,
359
- GameMessagesPlaceholderChat = 344,
360
- GameMessagesButtonShowNewest = 345,
361
- GameTileInspectionCannotSeeTile = 346,
362
- MenuAboutTitle = 347,
363
- MenuAboutDescription = 348,
364
- MenuAboutGameDescription = 349,
365
- MenuAboutSectionTeam = 350,
366
- MenuAboutTeamMemberName = 351,
367
- MenuAboutTeamMemberNickname = 352,
368
- MenuAboutSectionContributors = 353,
369
- MenuAboutSectionSpecialThanks = 354,
370
- MenuAboutTextSpecialThanksTestorsAndDonators = 355,
371
- MenuAboutSectionLibraries = 356,
372
- MenuAboutSectionLibrariesDescription = 357,
373
- MenuAboutLabelVersion = 358,
374
- MenuAboutLabelVersionBuild = 359,
375
- MenuAboutLabelVersionBuildTime = 360,
376
- MenuBindings = 361,
377
- MenuBindingsDescription = 362,
378
- MenuBindingsTooltipBindConflicts = 363,
379
- MenuBindingsManagedBindableGameActionBarUseSlot = 364,
380
- MenuBindingsManagedBindableGameActionBarAssignSlot = 365,
381
- MenuBindingsManagedBindableGameActionBarToggleUseOnMoveSlot = 366,
382
- MenuChangelogTitle = 367,
383
- MenuChangelogDescription = 368,
384
- MenuChangelogHeadingUnchartedWaters = 369,
385
- MenuChangelogFailedToLoadTitle = 370,
386
- MenuChangelogFailedToLoadDescription = 371,
387
- MenuChangelogHeadingChangeCount = 372,
388
- MenuChangelogButtonCopyChangelog = 373,
389
- MenuCharacterCreationButtonRandomizeName = 374,
390
- MenuCharacterCreationButtonExportTooltip = 375,
391
- MenuCharacterCreationButtonImportTooltip = 376,
392
- MenuCharacterCreationButtonStartGame = 377,
393
- MenuCharacterCreationButtonJoinGame = 378,
394
- MenuCharacterCreationDescription = 379,
395
- MenuCharacterCreationHeadingHairColor = 380,
396
- MenuCharacterCreationHeadingHairStyle = 381,
397
- MenuCharacterCreationHeadingSkinTone = 382,
398
- MenuCharacterCreationLabelName = 383,
399
- MenuCharacterCreationTitle = 384,
400
- MenuCharacterCreationButtonRotateLeftTooltip = 385,
401
- MenuCharacterCreationButtonRotateRightTooltip = 386,
402
- MenuCharacterCreationButtonRandomizeTooltip = 387,
403
- MenuCharacterSelectionButtonNewCharacter = 388,
404
- MenuCharacterSelectionDescription = 389,
405
- MenuCharacterSelectionHeadingNoCharacters = 390,
406
- MenuCharacterSelectionTitle = 391,
407
- MenuCharacterSelectionLabelLastUse = 392,
408
- MenuCharacterSelectionLabelUseCount = 393,
409
- MenuCharacterSelectionCharacterButtonDeleteTooltip = 394,
410
- MenuCharacterSelectionCharacterButtonCustomizeTooltip = 395,
411
- MenuDevelopmentBranchTitle = 396,
412
- MenuDevelopmentBranchSuperTitle = 397,
413
- MenuDevelopmentBranchWarning = 398,
414
- MenuDevelopmentBranchStatus = 399,
415
- MenuDevelopmentBranchStatusUnavailable = 400,
416
- MenuErrorReportingTitle = 401,
417
- MenuErrorReportingDescription = 402,
418
- MenuErrorReportingContentsTitle = 403,
419
- MenuErrorReportingContentsDescription = 404,
420
- MenuErrorReportingButtonNo = 405,
421
- MenuErrorReportingButtonYes = 406,
422
- MenuMultiplayerDescription = 407,
423
- MenuMultiplayerTitle = 408,
424
- MenuMultiplayerButtonJoinById = 409,
425
- MenuMultiplayerServerLabelDays = 410,
426
- MenuMultiplayerServerLabelIsland = 411,
427
- MenuMultiplayerButtonNewGame = 412,
428
- MenuMultiplayerButtonLoadGame = 413,
429
- MenuMultiplayerServerTooltipPVP = 414,
430
- MenuMultiplayerServerTooltipModsLabel = 415,
431
- MenuMultiplayerServerTooltipFriendsLabel = 416,
432
- MenuMultiplayerServerPlayers = 417,
433
- MenuMultiplayerServerLobbyType = 418,
434
- MenuMultiplayerServerRegion = 419,
435
- MenuMultiplayerServerHost = 420,
436
- MenuMultiplayerServerVersion = 421,
437
- MenuMultiplayerServerVersionUnknown = 422,
438
- MenuMultiplayerServerDedicated = 423,
439
- MenuMultiplayerHeadingPlayersOnline = 424,
440
- MenuMultiplayerServerModInfo = 425,
441
- MenuMultiplayerServerModUnableToLoad = 426,
442
- MenuMultiplayerServerLabelTerritoryTier = 427,
443
- MenuGameEndTitleDead = 428,
444
- MenuGameEndTitleWon = 429,
445
- MenuGameEndShareFacebook = 430,
446
- MenuGameEndShareTwitter = 431,
447
- MenuGameEndContinueAsGhost = 432,
448
- MenuGameEndRespawnInCasualMode = 433,
449
- MenuGameEndRespawnAsNewCharacter = 434,
450
- MenuGameEndReturnToIsland = 435,
451
- MenuGameEndExitToMenu = 436,
452
- MenuHelpTitle = 437,
453
- MenuHelpDescription = 438,
454
- MenuHelpLabelSearch = 439,
455
- MenuHighscoresTitle = 440,
456
- MenuHighscoresDescription = 441,
457
- MenuHighscoresDifficultyFilterAll = 442,
458
- MenuHighscoresHighscoreLabelDifficulty = 443,
459
- MenuHighscoresHighscoreLabelTurns = 444,
460
- MenuHighscoresHighscoreLabelScore = 445,
461
- MenuHighscoresHighscoreLabelPlace = 446,
462
- MenuHighscoresHighscoreLabelDate = 447,
463
- MenuHighscoresHighscoreLabelDeathBy = 448,
464
- MenuHighscoresHighscoreTitle = 449,
465
- MenuHighscoresCharacterNameUnknown = 450,
466
- MenuHighscoresHighscoreReplayWithSettings = 451,
467
- MenuLoadGameButtonSaveSlot = 452,
468
- MenuLoadGameButtonNewGame = 453,
469
- MenuLoadGameButtonNewGameButtonImportTooltip = 454,
470
- MenuLoadGameDescription = 455,
471
- MenuLoadGameSaveButtonDeleteTooltip = 456,
472
- MenuLoadGameSaveButtonEditNameTooltip = 457,
473
- MenuLoadGameSaveButtonExportTooltip = 458,
474
- MenuLoadGameSaveTooltipLabelCreatedTime = 459,
475
- MenuLoadGameSaveTooltipLabelSaveTime = 460,
476
- MenuLoadGameSaveTooltipLabelGameMode = 461,
477
- MenuLoadGameSaveTooltipLabelScore = 462,
478
- MenuLoadGameSaveTooltipLabelSeed = 463,
479
- MenuLoadGameSaveTooltipLabelTurns = 464,
480
- MenuLoadGameSaveTooltipLabelMods = 465,
481
- MenuLoadGameSaveTooltipLabelOriginalVersion = 466,
482
- MenuLoadGameSaveTooltipMod = 467,
483
- MenuLoadGameSaveTooltipNew = 468,
484
- MenuLoadGameSaveTooltipCorrupted = 469,
485
- MenuLoadGameSaveGame = 470,
486
- MenuLoadGameSaveGameDescription = 471,
487
- MenuLoadGameTitle = 472,
488
- MenuLoadGameLabelSelected = 473,
489
- MenuLoadGameButtonDeleteSelectedTooltip = 474,
490
- MenuLoadGameImportSaveFailure = 475,
491
- MenuLoadGameSectionSavedGames = 476,
492
- MenuLoadGameSectionImportFolders = 477,
493
- MenuLoadGameSectionImportFoldersPlaceholderPathToSaves = 478,
494
- MenuLoadGameSectionImportFoldersButtonAddFolder = 479,
495
- MenuLoadGameSectionImportFoldersButtonDeleteFolder = 480,
496
- MenuMainButtonAbout = 481,
497
- MenuMainButtonChangelog = 482,
498
- MenuMainButtonMultiplayer = 483,
499
- MenuMainButtonHighscores = 484,
500
- MenuMainButtonLoadGame = 485,
501
- MenuMainButtonMods = 486,
502
- MenuMainButtonModsTooltipLabelEnabledMods = 487,
503
- MenuMainButtonModsTooltipAndXOthers = 488,
504
- MenuMainButtonModsAllDisabled = 489,
505
- MenuMainButtonNewGame = 490,
506
- MenuMainButtonNews = 491,
507
- MenuMainButtonOptions = 492,
508
- MenuMainButtonQuitGame = 493,
509
- MenuModsWarningModsDisabledTitle = 494,
510
- MenuModsWarningModsDisabledDescription = 495,
511
- MenuModsButtonModdingGuide = 496,
512
- MenuModsButtonOpenFolder = 497,
513
- MenuModsButtonOpenWorkshop = 498,
514
- MenuModsButtonRefreshMods = 499,
515
- MenuModsDescription = 500,
516
- MenuModsTitle = 501,
517
- MenuModsTooltipLabelAuthor = 502,
518
- MenuModsTooltipLabelTags = 503,
519
- MenuModsTooltipLabelDependencies = 504,
520
- MenuModsTooltipLabelProvides = 505,
521
- MenuModsTooltipLabelVersion = 506,
522
- MenuModsTooltipLabelDescription = 507,
523
- MenuModsTooltipLabelInstallDate = 508,
524
- MenuModsTooltipLabelCreatedDate = 509,
525
- MenuModsTooltipLabelLastUpdatedDate = 510,
526
- MenuModsTooltipPreventsMilestoneUnlocks = 511,
527
- MenuModsTooltipModOptions = 512,
528
- MenuModsTooltipPublishMod = 513,
529
- MenuModsTooltipModMoreInformation = 514,
530
- MenuModsTooltipUninstallMod = 515,
531
- MenuModsTooltipViewInSteamWorkshop = 516,
532
- MenuModsTooltipViewGitHub = 517,
533
- MenuModsTooltipOpenFolder = 518,
534
- MenuModsButtonEditInternalMods = 519,
535
- MenuModsSectionHeading = 520,
536
- MenuModsSubmenuEditInternalModsTitle = 521,
537
- MenuModsSubmenuEditInternalModsDescription = 522,
538
- MenuModsSubmenuEditInternalModsPlaceholderAddNewInternalMod = 523,
539
- MenuModsSubmenuEditInternalModsSectionRootsName = 524,
540
- MenuModsSubmenuEditInternalModsSectionModsName = 525,
541
- MenuModsSubmenuEditInternalModsPlaceholderModRootName = 526,
542
- MenuModsSubmenuEditInternalModsPlaceholderModRootPath = 527,
543
- MenuNewGameButtonNext = 528,
544
- MenuNewGameButtonStartServer = 529,
545
- MenuNewGameDescription = 530,
546
- MenuNewGameLabelEditName = 531,
547
- MenuNewGameLabelEditSeed = 532,
548
- MenuNewGamePlaceholderEditSeed = 533,
549
- MenuNewGameTitle = 534,
550
- MenuNewGameChoiceDifficulty = 535,
551
- MenuNewGameChoiceSingleplayer = 536,
552
- MenuNewGameChoiceSingleplayerDescription = 537,
553
- MenuNewGameChoiceMultiplayer = 538,
554
- MenuNewGameChoiceMultiplayerDescription = 539,
555
- MenuNewGameChoiceTurnModeManual = 540,
556
- MenuNewGameChoiceTurnModeManualDescription = 541,
557
- MenuNewGameChoiceTurnModeRealTime = 542,
558
- MenuNewGameChoiceTurnModeRealTimeDescription = 543,
559
- MenuNewGameChoiceTurnModeSimulated = 544,
560
- MenuNewGameChoiceTurnModeSimulatedDescription = 545,
561
- MenuNewGameChoiceDifficultyTooltipCustomGameOptions = 546,
562
- MenuNewGameChoiceDifficultyChallengeDaily = 547,
563
- MenuNewGameChoiceDifficultyChallengeDailyTooltip = 548,
564
- MenuNewGameButtonMilestones = 549,
565
- MenuNewGameButtonMilestonesDescription = 550,
566
- MenuNewGameTabGameMode = 551,
567
- MenuNewGameTabMultiplayer = 552,
568
- MenuNewGameTabGameplayModifiers = 553,
569
- MenuNewGameHeadingGameMode = 554,
570
- MenuNewGameHeadingMultiplayer = 555,
571
- MenuNewGameHeadingGameplayModifiers = 556,
572
- MenuNewGameMilestoneModifiersUnlockableInMode = 557,
573
- MenuNewGameChoiceClientsInheritHostModifiers = 558,
574
- MenuNewGameChoiceClientsInheritHostModifiersDescription = 559,
575
- MenuNewGameChoiceCustomModifiers = 560,
576
- MenuNewGameChoiceCustomModifiersDescription = 561,
577
- MenuMilestoneModifiersTitle = 562,
578
- MenuMilestoneModifiersDescription = 563,
579
- MenuCustomGameOptionsTitle = 564,
580
- MenuCustomGameOptionsDescription = 565,
581
- MenuCustomGameOptionsRespawnOnDeath = 566,
582
- MenuCustomGameOptionsRespawnOnDeathDescription = 567,
583
- MenuCustomGameOptionsUseUnlockedRecipes = 568,
584
- MenuCustomGameOptionsStartingIslandBiome = 569,
585
- MenuCustomGameOptionsApplyTravelingEffects = 570,
586
- MenuCustomGameOptionsApplyTravelingEffectsDescription = 571,
587
- MenuCustomGameOptionsCreaturesPeaceful = 572,
588
- MenuCustomGameOptionsCreaturesDisableScared = 573,
589
- MenuCustomGameOptionsCreaturesDisableScaredDescription = 574,
590
- MenuCustomGameOptionsCreaturesAberrantSpawns = 575,
591
- MenuCustomGameOptionsCreaturesAberrantSpawnsDescription = 576,
592
- MenuCustomGameOptionsCreaturesAberrantSpawnsDescriptionDefault = 577,
593
- MenuCustomGameOptionsCreaturesAberrantSpawnsDescriptionExclusively = 578,
594
- MenuCustomGameOptionsCreaturesAberrantSpawnsDescriptionOff = 579,
595
- MenuCustomGameOptionsCreaturesHeadingIndividualConfigurations = 580,
596
- MenuCustomGameOptionsCreaturesAllowAberrantSpawns = 581,
597
- MenuCustomGameOptionsCreaturesAlwaysSpawn = 582,
598
- MenuCustomGameOptionsCreaturesAllowSpawning = 583,
599
- MenuCustomGameOptionsCreaturesSpawnLimit = 584,
600
- MenuCustomGameOptionsCreaturesSpawnLimitDescription = 585,
601
- MenuCustomGameOptionsCreaturesSpawnRateMultiplier = 586,
602
- MenuCustomGameOptionsCreaturesSpawnRateMultiplierDescription = 587,
603
- MenuCustomGameOptionsCreatureNone = 588,
604
- MenuCustomGameOptionsCreatureConfigure = 589,
605
- MenuCustomGameOptionsStatMultiplier = 590,
606
- MenuCustomGameOptionsStatMultiplierTooltip = 591,
607
- MenuCustomGameOptionsStatRegenerationMultiplierTooltip = 592,
608
- MenuCustomGameOptionsHeadingGeneral = 593,
609
- MenuCustomGameOptionsHeadingTravel = 594,
610
- MenuCustomGameOptionsHeadingTime = 595,
611
- MenuCustomGameOptionsHeadingStats = 596,
612
- MenuCustomGameOptionsHeadingItems = 597,
613
- MenuCustomGameOptionsHeadingCreatures = 598,
614
- MenuCustomGameOptionsHeadingSkills = 599,
615
- MenuCustomGameOptionsHeadingStatuses = 600,
616
- MenuCustomGameOptionsEternalNight = 601,
617
- MenuCustomGameOptionsEternalNightDescription = 602,
618
- MenuCustomGameOptionsEternalDay = 603,
619
- MenuCustomGameOptionsEternalDayDescription = 604,
620
- MenuCustomGameOptionsTimeFrozen = 605,
621
- MenuCustomGameOptionsTimeInitial = 606,
622
- MenuCustomGameOptionsTimeDayLength = 607,
623
- MenuCustomGameOptionsTimeDayLengthTooltip = 608,
624
- MenuCustomGameOptionsTimeDayPercent = 609,
625
- MenuCustomGameOptionsTimeDayPercentTooltip = 610,
626
- MenuCustomGameOptionsStatStarting = 611,
627
- MenuCustomGameOptionsStatMax = 612,
628
- MenuCustomGameOptionsStatStartingDisplay = 613,
629
- MenuCustomGameOptionsStatMaxDisplay = 614,
630
- MenuCustomGameOptionsStatNoChange = 615,
631
- MenuCustomGameOptionsStatBonus = 616,
632
- MenuCustomGameOptionsStatBonusDisplay = 617,
633
- MenuCustomGameOptionsStatusPassChanceMultiplier = 618,
634
- MenuCustomGameOptionsStatusPassChanceMultiplierTooltip = 619,
635
- MenuCustomGameOptionsStatusStartWith = 620,
636
- MenuCustomGameOptionsStatusUntreatable = 621,
637
- MenuCustomGameOptionsStatusUntreatableTooltip = 622,
638
- MenuCustomGameOptionsSkillInitialRandomCount = 623,
639
- MenuCustomGameOptionsSkillInitialRandomCountDescription = 624,
640
- MenuCustomGameOptionsSkillsHeadingIndividualConfigurations = 625,
641
- MenuCustomGameOptionsSkillsGlobal = 626,
642
- MenuCustomGameOptionsSkillNone = 627,
643
- MenuCustomGameOptionsSkillConfigure = 628,
644
- MenuCustomGameOptionsSkillInitial = 629,
645
- MenuCustomGameOptionsSkillMultiplier = 630,
646
- MenuCustomGameOptionsSkillMultiplierTooltip = 631,
647
- MenuCustomGameOptionsRandomItems = 632,
648
- MenuCustomGameOptionsRandomItemsDescription = 633,
649
- MenuCustomGameOptionsItemDurability = 634,
650
- MenuCustomGameOptionsItemDurabilityTooltip = 635,
651
- MenuCustomGameOptionsItemDecay = 636,
652
- MenuCustomGameOptionsItemDecayTooltip = 637,
653
- MenuCustomGameOptionsExport = 638,
654
- MenuCustomGameOptionsImport = 639,
655
- MenuCustomGameOptionsViewGroundItemsAsContainer = 640,
656
- MenuCustomGameOptionsViewGroundItemsAsContainerDescription = 641,
657
- MenuNewsDescription = 642,
658
- MenuNewsHeadingSocial = 643,
659
- MenuNewsTitle = 644,
660
- MenuNewsHeadingUnableToLoad = 645,
661
- MenuNewsButtonAllNews = 646,
662
- MenuNewsButtonViewChangelog = 647,
663
- MenuOptionsButtonDitherFogOfWar = 648,
664
- MenuOptionsButtonHealthVignette = 649,
665
- MenuOptionsButtonHealthVignetteTooltip = 650,
666
- MenuOptionsButtonDisableCustomCursor = 651,
667
- MenuOptionsButtonEnableSmoothZooming = 652,
668
- MenuOptionsButtonDisplayArticleInObjectNames = 653,
669
- MenuOptionsButtonDisplayArticleInObjectNamesTooltip = 654,
670
- MenuOptionsButtonFullscreen = 655,
671
- MenuOptionsButtonCustomTitleBar = 656,
672
- MenuOptionsButtonDeveloperMode = 657,
673
- MenuOptionsButtonReloadGame = 658,
674
- MenuOptionsButtonReloadStylesheets = 659,
675
- MenuOptionsButtonReloadTextures = 660,
676
- MenuOptionsButtonPrepackedSprites = 661,
677
- MenuOptionsButtonDisposeReflection = 662,
678
- MenuOptionsButtonExportGlobalSaveData = 663,
679
- MenuOptionsButtonImportGlobalSaveData = 664,
680
- MenuOptionsButtonSaveDataBackups = 665,
681
- MenuOptionsButtonSaveDataBackupsTooltip = 666,
682
- MenuOptionsButtonSaveDataClearAll = 667,
683
- MenuOptionsButtonSaveDataClearCharacters = 668,
684
- MenuOptionsButtonSaveDataClearUI = 669,
685
- MenuOptionsButtonSaveDataClearHighscores = 670,
686
- MenuOptionsButtonSaveDataClearMilestones = 671,
687
- MenuOptionsButtonSaveDataClearOptions = 672,
688
- MenuOptionsButtonSaveDataClearCraftingRecipes = 673,
689
- MenuOptionsButtonSaveDataClearSaves = 674,
690
- MenuOptionsButtonSkipSplash = 675,
691
- MenuOptionsButtonDisableQuitConfirmation = 676,
692
- MenuOptionsButtonToggleDevTools = 677,
693
- MenuOptionsButtonOpenBackupsFolder = 678,
694
- MenuOptionsButtonOpenLogsFolder = 679,
695
- MenuOptionsButtonDropLocationFacing = 680,
696
- MenuOptionsButtonDropLocationFeet = 681,
697
- MenuOptionsButtonStartTraceRecording = 682,
698
- MenuOptionsButtonStopTraceRecording = 683,
699
- MenuOptionsButtonTracingRecordingTooltip = 684,
700
- MenuOptionsButtonDropLocationFeetWhenFacingBlocked = 685,
701
- MenuOptionsDescription = 686,
702
- MenuOptionsHeadingAudio = 687,
703
- MenuOptionsHeadingDeveloper = 688,
704
- MenuOptionsHeadingGameplayOptions = 689,
705
- MenuOptionsHeadingGameplayOptionsDescription = 690,
706
- MenuOptionsHeadingGameplayOptionsButtonOpenDialog = 691,
707
- MenuOptionsHeadingOtherOptions = 692,
708
- MenuOptionsHeadingControls = 693,
709
- MenuOptionsHeadingModOptions = 694,
710
- MenuOptionsHeadingSaveData = 695,
711
- MenuOptionsHeadingTooltipsTile = 696,
712
- MenuOptionsHeadingVideo = 697,
713
- MenuOptionsLabelInterfaceScale = 698,
714
- MenuOptionsLabelHudWidth = 699,
715
- MenuOptionsLabelTooltipDelay = 700,
716
- MenuOptionsLabelDirectionTurnDelay = 701,
717
- MenuOptionsLabelMouseTurnDelay = 702,
718
- MenuOptionsLabelFontStyle = 703,
719
- MenuOptionsTooltipTurnDelay = 704,
720
- MenuOptionsTooltipMouseTurnDelay = 705,
721
- MenuOptionsTooltipControlsFilter = 706,
722
- MenuOptionsLabelVolumeEffects = 707,
723
- MenuOptionsLabelVolumeMusic = 708,
724
- MenuOptionsTabAudio = 709,
725
- MenuOptionsTabDeveloper = 710,
726
- MenuOptionsTabGameplay = 711,
727
- MenuOptionsTabTooltips = 712,
728
- MenuOptionsTabOther = 713,
729
- MenuOptionsTabLanguage = 714,
730
- MenuOptionsTabControls = 715,
731
- MenuOptionsTabMods = 716,
732
- MenuOptionsTabSaveData = 717,
733
- MenuOptionsTabVideo = 718,
734
- MenuOptionsTabPerformance = 719,
735
- MenuOptionsHeadingPerformance = 720,
736
- MenuOptionsTitle = 721,
737
- MenuOptionsTooltipMusicNextTrack = 722,
738
- MenuOptionsBindChoose = 723,
739
- MenuOptionsBindChooseAdd = 724,
740
- MenuOptionsBindButtonResetTooltip = 725,
741
- MenuOptionsBindButtonDeleteTooltip = 726,
742
- MenuOptionsBindButtonAddTooltip = 727,
743
- MenuOptionsBindButtonAddMacroTooltip = 728,
744
- MenuOptionsButtonDiscoverEverything = 729,
745
- MenuOptionsButtonDiscoverEverythingDescription = 730,
746
- MenuOptionsButtonGrantAllMilestoneModifiers = 731,
747
- MenuOptionsButtonGrantAllMilestoneModifiersDescription = 732,
748
- MenuOptionsButtonDisableMilestonesDescription = 733,
749
- MenuOptionsButtonAlternatingDirectionMovement = 734,
750
- MenuOptionsButtonAllowAlternatingDirectionMovementTooltip = 735,
751
- MenuOptionsButtonSteamInputKeyboardPosition = 736,
752
- MenuOptionsButtonAlwaysShowMoreInformationTooltip = 737,
753
- MenuOptionsButtonEnableLowPowerMode = 738,
754
- MenuOptionsButtonEnableLowPowerModeTooltip = 739,
755
- MenuOptionsButtonDisableAcrylicTransparency = 740,
756
- MenuOptionsButtonDisableAcrylicTransparencyTooltip = 741,
757
- MenuOptionsButtonDisableOverlaySupport = 742,
758
- MenuOptionsButtonDisableOverlaySupportTooltip = 743,
759
- MenuOptionsButtonDisableUIEffects = 744,
760
- MenuOptionsButtonDisableUIEffectsTooltip = 745,
761
- MenuOptionsButtonDisableUIAnimation = 746,
762
- MenuOptionsButtonDisableUIOpacity = 747,
763
- MenuOptionsButtonDisableUIOpacityTooltip = 748,
764
- MenuOptionsButtonDisableMovementAnimations = 749,
765
- MenuOptionsButtonDisableMovementAnimationsTooltip = 750,
766
- MenuOptionsButtonAutoAttack = 751,
767
- MenuOptionsButtonAutoAttackTooltip = 752,
768
- MenuOptionsButtonDropOnDismantle = 753,
769
- MenuOptionsButtonDropOnDismantleTooltip = 754,
770
- MenuOptionsButtonDropOnDisassemble = 755,
771
- MenuOptionsButtonDropOnDisassembleTooltip = 756,
772
- MenuOptionsButtonDisableCraftingProtectedItems = 757,
773
- MenuOptionsButtonDisableCraftingProtectedItemsTooltip = 758,
774
- MenuOptionsButtonDropOnGatherHarvest = 759,
775
- MenuOptionsButtonDropOnGatherHarvestTooltip = 760,
776
- MenuOptionsButtonUseAdjacentContainers = 761,
777
- MenuOptionsButtonUseAdjacentContainersTooltip = 762,
778
- MenuOptionsButtonHideEquippedHeadgear = 763,
779
- MenuOptionsButtonHideEquippedHeadgearTooltip = 764,
780
- MenuOptionsButtonDisableItemNotifiers = 765,
781
- MenuOptionsButtonDisableItemNotifiersTooltip = 766,
782
- MenuOptionsButtonLeftHanded = 767,
783
- MenuOptionsButtonLeftHandedTooltip = 768,
784
- MenuOptionsButtonAutoSave = 769,
785
- MenuOptionsRangeAutoSaveTimerLabel = 770,
786
- MenuOptionsRangeAutoSaveTimerTurnsDisplay = 771,
787
- MenuOptionsRangeAutoSaveTimerTimeDisplay = 772,
788
- MenuOptionsButtonDropIntoContainers = 773,
789
- MenuOptionsButtonDropIntoContainersTooltip = 774,
790
- MenuOptionsButtonWarnOnDangerousActions = 775,
791
- MenuOptionsButtonWarnOnDangerousActionsTooltip = 776,
792
- MenuOptionsButtonWarnOnDroppingActions = 777,
793
- MenuOptionsButtonWarnOnDroppingActionsTooltip = 778,
794
- MenuOptionsButtonWarnOnDestructiveActions = 779,
795
- MenuOptionsButtonWarnOnDestructiveActionsTooltip = 780,
796
- MenuOptionsButtonWarnWhenBreakingItemsOnCraft = 781,
797
- MenuOptionsButtonWarnWhenBreakingItemsOnCraftTooltip = 782,
798
- MenuOptionsButtonWarnWhenBreakingItemsOnUse = 783,
799
- MenuOptionsButtonWarnWhenBreakingItemsOnUseTooltip = 784,
800
- MenuOptionsHeadingWarnWhenBreakingItems = 785,
801
- MenuOptionsButtonSaveDataClearBindings = 786,
802
- MenuOptionsButtonDisableMilestones = 787,
803
- MenuOptionsLabelSaveDataRemoval = 788,
804
- MenuOptionsTooltipDialogOpacity = 789,
805
- MenuOptionsLabelDialogOpacity = 790,
806
- MenuOptionsDeveloperSteamBetas = 791,
807
- MenuOptionsDeveloperSteamBetaName = 792,
808
- MenuOptionsDeveloperLogSourceFilterHeading = 793,
809
- MenuOptionsDeveloperUIExperiments = 794,
810
- MenuOptionsDeveloperUIExperimentsDescription = 795,
811
- MenuOptionsDeveloperDebugging = 796,
812
- MenuOptionsDeveloperDebuggingDescription = 797,
813
- MenuOptionsDeveloperToggleContainerDesyncDebugging = 798,
814
- MenuOptionsDeveloperToggleContainerDesyncDebuggingDescription = 799,
815
- MenuOptionsDeveloperReportErrors = 800,
816
- MenuOptionsDeveloperReportErrorsDescription = 801,
817
- MenuOptionsAudioVolumeDisplay = 802,
818
- MenuOptionsAudioInputSoundOnTyping = 803,
819
- MenuOptionsAudioPlayAudioInBackground = 804,
820
- MenuOptionsMusicPlaylist = 805,
821
- MenuOptionsButtonConfigureBindings = 806,
822
- MenuOptionsButtonSaveCompression = 807,
823
- MenuOptionsButtonSaveCompressionTooltip = 808,
824
- MenuOptionsButtonSaveUIDataGlobally = 809,
825
- MenuOptionsButtonSaveUIDataGloballyTooltip = 810,
826
- MenuPauseButtonContinueGame = 811,
827
- MenuPauseButtonReturnToGame = 812,
828
- MenuPauseButtonOptions = 813,
829
- MenuPauseButtonGameSettings = 814,
830
- MenuPauseButtonPaused = 815,
831
- MenuPauseButtonMultiplayer = 816,
832
- MenuPauseButtonHelp = 817,
833
- MenuPauseButtonTitleScreen = 818,
834
- MenuPauseButtonStopServer = 819,
835
- MenuPauseButtonQuitWithoutSaving = 820,
836
- MenuPauseTooltipNotPaused = 821,
837
- MenuPauseLabelPaused = 822,
838
- MenuPauseLabelNotPaused = 823,
839
- MenuModesTitle = 824,
840
- MenuModesDescription = 825,
841
- MenuMultiplayerOptionsTitle = 826,
842
- MenuMultiplayerOptionsDescription = 827,
843
- MenuMultiplayerOptionsOpenServer = 828,
844
- MenuMultiplayerOptionsOpenServerDescription = 829,
845
- MenuMultiplayerOptionsCopyGameCode = 830,
846
- MenuMultiplayerOptionsCopyGameCodeTooltip = 831,
847
- MenuMultiplayerOptionsInviteSteamFriends = 832,
848
- MenuMultiplayerOptionsCheckConnectionHeading = 833,
849
- MenuMultiplayerOptionsCheckConnectionParagraph = 834,
850
- MenuMultiplayerOptionsCheckConnectionButton = 835,
851
- MenuMultiplayerOptionsCheckConnectionResultUnknown = 836,
852
- MenuMultiplayerOptionsCheckConnectionResultChecking = 837,
853
- MenuMultiplayerOptionsCheckConnectionResultSteamRelayNetwork = 838,
854
- MenuMultiplayerOptionsCheckConnectionResultSteamRelayNetworkFail = 839,
855
- MenuMultiplayerOptionsCheckConnectionResultSteamRelayNetworkUnavailable = 840,
856
- MenuMultiplayerOptionsCheckConnectionResultWebSocket = 841,
857
- MenuMultiplayerOptionsCheckConnectionResultWebSocketFail = 842,
858
- MenuMultiplayerOptionsCheckConnectionResultWebSocketUnavailable = 843,
859
- MenuMultiplayerOptionsCheckConnectionResultSuccess = 844,
860
- MenuJoinServerTitle = 845,
861
- MenuJoinServerDescription = 846,
862
- MenuJoinServerInputPlaceholder = 847,
863
- MenuJoinServerChooseModifiersTitle = 848,
864
- MenuJoinServerChooseModifiersDescription = 849,
865
- MenuSharedMultiplayerChoiceLobbyTypeFriends = 850,
866
- MenuSharedMultiplayerChoiceLobbyTypeFriendsDescription = 851,
867
- MenuSharedMultiplayerChoiceLobbyTypePublic = 852,
868
- MenuSharedMultiplayerChoiceLobbyTypePublicDescription = 853,
869
- MenuSharedMultiplayerChoiceLobbyTypePrivate = 854,
870
- MenuSharedMultiplayerChoiceLobbyTypePrivateDescription = 855,
871
- MenuSharedMultiplayerChoicePVP = 856,
872
- MenuSharedMultiplayerChoicePVPDescription = 857,
873
- MenuSharedMultiplayerChoiceAllowTraveling = 858,
874
- MenuSharedMultiplayerChoiceAllowTravelingDescription = 859,
875
- MenuSharedMultiplayerChoiceAllowHardcoreRespawns = 860,
876
- MenuSharedMultiplayerChoiceAllowHardcoreRespawnsDescription = 861,
877
- MenuSharedMultiplayerChoicePauseOnDesync = 862,
878
- MenuSharedMultiplayerChoicePauseOnDesyncDescription = 863,
879
- MenuSharedMultiplayerDescription = 864,
880
- MenuSharedMultiplayerMessageOfTheDay = 865,
881
- MenuSharedMultiplayerMaxPlayers = 866,
882
- MenuSharedRealTimeTickSpeedTooltip = 867,
883
- MenuSharedRealTimeTickSpeedLabel = 868,
884
- MenuSharedButtonDefault = 869,
885
- MenuSharedValueSeconds = 870,
886
- MenuSharedValueMilliseconds = 871,
887
- MenuSharedValuePercentage = 872,
888
- MenuSharedMilestonesNotUnlockable = 873,
889
- MenuSharedMilestonesNotUnlockableDescription = 874,
890
- MenuSharedMilestonesNotUnlockableButtonShowMods = 875,
891
- MenuSharedButtonDisableAll = 876,
892
- MenuSharedButtonEnableAll = 877,
893
- MenuSharedMilestoneModifiersSelected = 878,
894
- MiscSortBy = 879,
895
- MiscSortCustom = 880,
896
- MiscSortDirection = 881,
897
- MiscFilter = 882,
898
- MiscNone = 883,
899
- MiscPlayerNameDefault = 884,
900
- MiscPlayerNameServer = 885,
901
- MiscSaveNameDefault = 886,
902
- MiscSaveNameDailyChallenge = 887,
903
- MiscSaveNameChallenge = 888,
904
- MiscSaveVersionUnknown = 889,
905
- MiscVersion = 890,
906
- MiscVersionBuildInfoTooltip = 891,
907
- MiscVersionUpdate = 892,
908
- MiscTime = 893,
909
- MiscTimeMeridiem = 894,
910
- MiscError = 895,
911
- MiscContextMenuCopyTooltip = 896,
912
- MiscBindableNoBindings = 897,
913
- MiscBindingIcon = 898,
914
- MiscBindingIconThen = 899,
915
- DifficultyOptionsPeaceful = 900,
916
- DifficultyOptionsAberrantSpawnsDisabled = 901,
917
- DifficultyOptionsAberrantSpawnsOnly = 902,
918
- DifficultyOptionsCreatureSpawningDisabled = 903,
919
- DifficultyOptionsCreatureAlwaysSpawns = 904,
920
- DifficultyOptionsCreatureSpawnsDefault = 905,
921
- DifficultyOptionsCreatureSpawnsAberrantOnly = 906,
922
- DifficultyOptionsCreatureSpawnsNoAberrants = 907,
923
- DifficultyOptionsSpawnLimit = 908,
924
- DifficultyOptionsSpawnRateMultiplier = 909,
925
- DifficultyOptionsDisableScared = 910,
926
- DifficultyOptionsRespawn = 911,
927
- DifficultyOptionsEternalNight = 912,
928
- DifficultyOptionsEternalDay = 913,
929
- DifficultyOptionsTimeInitial = 914,
930
- DifficultyOptionsTimeFrozen = 915,
931
- DifficultyOptionsTimeDayLength = 916,
932
- DifficultyOptionsTimeDayPercent = 917,
933
- DifficultyOptionsNoItems = 918,
934
- DifficultyOptionsRecipes = 919,
935
- DifficultyOptionsStartingIsland = 920,
936
- DifficultyOptionsTravelingEffectsDisabled = 921,
937
- DifficultyOptionsLuck = 922,
938
- DifficultyOptionsWeightBonus = 923,
939
- DifficultyOptionsStatInitial = 924,
940
- DifficultyOptionsStatMax = 925,
941
- DifficultyOptionsStatMultiplier = 926,
942
- DifficultyOptionsStatusStartWith = 927,
943
- DifficultyOptionsStatusUntreatable = 928,
944
- DifficultyOptionsStatusPassChanceMultiplier = 929,
945
- DifficultyOptionsNoRandomSkills = 930,
946
- DifficultyOptionsSkillStartingCount = 931,
947
- DifficultyOptionsSkillGainMultiplier = 932,
948
- DifficultyOptionsSkillInitial = 933,
949
- DifficultyOptionsStatusPermanent = 934,
950
- DifficultyOptionsStatusRateMultiplier = 935,
951
- DifficultyOptionsStatusMultiplier = 936,
952
- DifficultyOptionsItemDurabilityMultiplier = 937,
953
- DifficultyOptionsItemDecayMultiplier = 938,
954
- DifficultyOptionsTileContainersEnabled = 939,
955
- TabCrafting = 940,
956
- TabDismantle = 941,
957
- WindowTitleContainer = 942,
958
- WindowTitleInventory = 943
97
+ GameTooltipStackItems = 82,
98
+ GameTooltipDefenseLabelBase = 83,
99
+ GameTooltipDefenseLabelVehicleBonus = 84,
100
+ GameTooltipDefenseLabelBaseDefenseMultiplier = 85,
101
+ GameTooltipItemUseLabelMaxWeight = 86,
102
+ GameTooltipSharedMagicalLabel = 87,
103
+ GameTooltipSharedMagicalCursesLabel = 88,
104
+ GameTooltipSharedUsesLabel = 89,
105
+ GameTooltipSharedLabelTurns = 90,
106
+ GameTooltipSharedLabelTurnsAgo = 91,
107
+ GameTooltipSharedLabelUntamesIn = 92,
108
+ GameTooltipSharedLabelTimesTamed = 93,
109
+ GameTooltipSharedLabelTimesPetted = 94,
110
+ GameTooltipRecipeLabelSkill = 95,
111
+ GameTooltipRecipeLabelLevel = 96,
112
+ GameTooltipRecipeLabelEfficacy = 97,
113
+ GameTooltipRecipeLabelEfficacyHigh = 98,
114
+ GameTooltipRecipeLabelEfficacyHighest = 99,
115
+ GameTooltipRecipeLabelEfficacyLow = 100,
116
+ GameTooltipRecipeLabelEfficacyLowest = 101,
117
+ GameTooltipRecipeLabelEfficacyMed = 102,
118
+ GameTooltipRecipeLabelEfficacyLabel = 103,
119
+ GameTooltipRecipeLabelSuccessChance = 104,
120
+ GameTooltipRecipeLabelQualityChance = 105,
121
+ GameTooltipRecipeLabelMasterCraftChance = 106,
122
+ GameTooltipRecipeNearby = 107,
123
+ GameTooltipRecipeFireSource = 108,
124
+ GameTooltipRecipeRequirement = 109,
125
+ GameTooltipRecipeLabelRequired = 110,
126
+ GameTooltipRecipeLabelConsumed = 111,
127
+ GameTooltipItemSkillSource = 112,
128
+ GameTooltipItemUseActionOnConsumeTooltipBase = 113,
129
+ GameTooltipItemUseActionOnConsumeTooltipSkill = 114,
130
+ GameTooltipItemUseActionOnConsumeTooltipQuality = 115,
131
+ GameTooltipItemUseActionOnConsumeTooltipMagical = 116,
132
+ GameTooltipItemUseActionOnConsumeTooltipMagicalStat = 117,
133
+ GameTooltipItemUseActionSharedLabelRequirements = 118,
134
+ GameTooltipItemUseActionDismantleProduces = 119,
135
+ GameTooltipSharedUseLabelLightSource = 120,
136
+ GameTooltipItemUseLabelTelescopy = 121,
137
+ GameTooltipItemDecay = 122,
138
+ GameTooltipItemDecayExact = 123,
139
+ GameTooltipItemDecayRate = 124,
140
+ GameTooltipItemDecayRateTooltip = 125,
141
+ GameTooltipItemWeight = 126,
142
+ GameTooltipItemInvoke = 127,
143
+ GameTooltipItemWeightBase = 128,
144
+ GameTooltipItemWeightStored = 129,
145
+ GameTooltipItemWeightStoredReduction = 130,
146
+ GameTooltipItemLabelRange = 131,
147
+ GameTooltipItemLabelAccuracy = 132,
148
+ GameTooltipItemMagicalSource = 133,
149
+ GameTooltipItemGroupingsLabel = 134,
150
+ GameTooltipItemGroup = 135,
151
+ GameTooltipItemLabelUsesWhenBuilt = 136,
152
+ GameTooltipItemWorth = 137,
153
+ GameTooltipItemProtected = 138,
154
+ GameTooltipItemProtectedSimpleDescription = 139,
155
+ GameTooltipItemProtectedContainer = 140,
156
+ GameTooltipItemVehicle = 141,
157
+ GameTooltipItemVehicleMovementSpeed = 142,
158
+ GameTooltipItemVehicleDefenseBonus = 143,
159
+ GameTooltipItemLabelDismantle = 144,
160
+ GameTooltipItemLabelDismantleRequirement = 145,
161
+ GameTooltipItemQuantityMultiplier = 146,
162
+ GameTooltipItemUseAttack = 147,
163
+ GameTooltipItemUseThrowDamage = 148,
164
+ GameTooltipItemUseCrafting = 149,
165
+ GameTooltipSharedLabelDoodadCraftingBonus = 150,
166
+ GameTooltipItemUseOffering = 151,
167
+ GameTooltipItemUseEquipDefense = 152,
168
+ GameTooltipItemUseEquipDefenseAttribute = 153,
169
+ GameTooltipItemUseMainHand = 154,
170
+ GameTooltipItemUseOffhand = 155,
171
+ GameTooltipItemLabelDamage = 156,
172
+ GameTooltipItemBarterCreditTradeAvailable = 157,
173
+ GameTooltipItemBarterCreditTrade = 158,
174
+ GameTooltipItemBarterCredit = 159,
175
+ GameTooltipItemLabelIsland = 160,
176
+ GameTooltipSharedLabelWeightCapacity = 161,
177
+ GameTooltipSharedLabelScareRadius = 162,
178
+ GameTooltipSharedLabelCivilizationScore = 163,
179
+ GameTooltipSharedLabelCivilizationScoreFull = 164,
180
+ GameTooltipSharedLabelDoodadSkillAdjacent = 165,
181
+ GameTooltipSharedLabelAdjacentSkillBonus = 166,
182
+ GameTooltipSharedLabelGrowingSpeed = 167,
183
+ GameTooltipSharedLabelInsulation = 168,
184
+ GameTooltipSharedLabelStoredInsulation = 169,
185
+ GameTooltipSharedLabelPreservation = 170,
186
+ GameTooltipSharedLabelDurability = 171,
187
+ GameTooltipSharedLabelPurification = 172,
188
+ GameTooltipSharedLabelPurificationTurns = 173,
189
+ GameTooltipSharedDurabilityMagicalDamageReduction = 174,
190
+ GameTooltipSharedDurabilityMagicalDamageUnreduction = 175,
191
+ GameTooltipSharedDecayMagicalReduction = 176,
192
+ GameTooltipSharedDecayMagicalUnreduction = 177,
193
+ GameTooltipSharedDurabilityMagicalDamageRegeneration = 178,
194
+ GameTooltipSharedDurabilityMagicalDamageDegeneration = 179,
195
+ GameTooltipSharedLabelContents = 180,
196
+ GameTooltipSkill = 181,
197
+ GameTooltipSkillCurrent = 182,
198
+ GameTooltipSkillCanIncrease = 183,
199
+ GameTooltipSkillItemBonuses = 184,
200
+ GameTooltipSkillDoodadBonuses = 185,
201
+ GameTooltipSkillBonus = 186,
202
+ GameTooltipMilestone = 187,
203
+ GameTooltipMilestoneProgress = 188,
204
+ GameTooltipMilestoneDiscovered = 189,
205
+ GameTooltipMilestoneHintClickToUseAsTitle = 190,
206
+ GameTooltipMilestoneUsingAsTitle = 191,
207
+ GameTooltipSharedMagicalProperty = 192,
208
+ GameTooltipSharedMagicalPropertyOutOf = 193,
209
+ GameTooltipSharedLabel = 194,
210
+ GameTooltipSharedLabelDash = 195,
211
+ GameTooltipSharedLabelHead = 196,
212
+ GameTooltipSharedLabelTail = 197,
213
+ GameTooltipSharedLabelStart = 198,
214
+ GameTooltipSharedLabelStartNoSpace = 199,
215
+ GameTooltipSharedLabelEnd = 200,
216
+ GameTooltipSharedResistsAndVulnsLabelVulnerableTo = 201,
217
+ GameTooltipSharedResistsAndVulnsLabelResistantTo = 202,
218
+ GameTooltipSharedResistsAndVulnsLabelImmuneTo = 203,
219
+ GameTooltipSharedResistsAndVulnsLabelHealsFrom = 204,
220
+ GameTooltipSharedResistsAndVulnsDamageType = 205,
221
+ GameTooltipIslandBiome = 206,
222
+ GameTooltipIslandSeed = 207,
223
+ GameTooltipIslandDaysSpent = 208,
224
+ GameTooltipIslandDaysSpentDaysUnit = 209,
225
+ GameTooltipIslandDaysSpentCumulative = 210,
226
+ GameTooltipIslandUndiscovered = 211,
227
+ GameTooltipIslandUnnamed = 212,
228
+ GameTooltipIslandSelf = 213,
229
+ GameTooltipIslandPlayers = 214,
230
+ GameTooltipIslandPorts = 215,
231
+ GameTooltipIslandNPCs = 216,
232
+ GameTooltipIslandModifiers = 217,
233
+ GameTooltipIslandMaps = 218,
234
+ GameTooltipIslandCoordinates = 219,
235
+ GameTooltipIslandCoordinatesLabel = 220,
236
+ GameTooltipNPCMerchantCredit = 221,
237
+ GameTooltipNPCMerchantNewInventory = 222,
238
+ GameTooltipNPCShipperNoItems = 223,
239
+ GameTooltipNPCShipperContainedItems = 224,
240
+ GameTooltipActionUndiscovered = 225,
241
+ GameTooltipActionTierLabel = 226,
242
+ GameTooltipSharedRuneChance = 227,
243
+ GameToolTipSharedRuneChanceAction = 228,
244
+ GameToolTipSharedRuneChanceCrafting = 229,
245
+ GameToolTipSharedRuneChanceSkill = 230,
246
+ GameTooltipEquipSlotOffHandDisabledTwoHandedOffHand = 231,
247
+ GameTooltipEquipSlotOffHandDisabledTwoHandedMainHand = 232,
248
+ GameTooltipStatSubtitle = 233,
249
+ GameTooltipStatSubtitleCore = 234,
250
+ GameTooltipStatAttackSectionMelee = 235,
251
+ GameTooltipStatAttackSectionRanged = 236,
252
+ GameTooltipStatAttackRange = 237,
253
+ GameTooltipStatAttackMultiplier = 238,
254
+ GameTooltipStatWeightLabelMax = 239,
255
+ GameTooltipStatSharedLabelMax = 240,
256
+ GameTooltipStatSharedLabelSkill = 241,
257
+ GameTooltipStatSharedCoreStat = 242,
258
+ GameTooltipStatSharedCoreStatLabelSkills = 243,
259
+ GameTooltipStatSharedCoreStatSkillsListUndiscoveredSkills = 244,
260
+ GameTooltipStatusMoreInformationRevealedAtSkillThreshold = 245,
261
+ GameTooltipStatusLabelCures = 246,
262
+ GameTooltipCurseEventCursebearer = 247,
263
+ GameTooltipCreatureSubtitle = 248,
264
+ GameTooltipCreatureColorContext = 249,
265
+ GameTooltipCreatureLabelTamed = 250,
266
+ GameTooltipCreatureLabelMood = 251,
267
+ GameTooltipCreatureLabelCommand = 252,
268
+ GameTooltipCreatureLabelCanPetIn = 253,
269
+ GameTooltipCreatureCanPet = 254,
270
+ GameTooltipCreatureLabelCanMilkIn = 255,
271
+ GameTooltipCreatureLabelAberrant = 256,
272
+ GameTooltipCreatureLabelStatuses = 257,
273
+ GameTooltipCreatureAberrantDescriptionShort = 258,
274
+ GameTooltipCreatureAberrantDescriptionExtra = 259,
275
+ GameTooltipCreatureAberrantDescriptionVerbose = 260,
276
+ GameTooltipCreatureProducingMilk = 261,
277
+ GameTooltipCreatureExactHealth = 262,
278
+ GameTooltipDeityLabelDomains = 263,
279
+ GameTooltipStatFerocityScore = 264,
280
+ GameTooltipStatFerocityCivilizationScore = 265,
281
+ GameTooltipStatFerocityCivilizationScoreTerritory = 266,
282
+ GameTooltipStatTerritoryTier = 267,
283
+ GameTooltipStatFerocityTurn = 268,
284
+ GameTooltipStatFerocityTicks = 269,
285
+ GameTooltipStatFerocityNights = 270,
286
+ GameTooltipStatFerocityDays = 271,
287
+ GameTooltipSharedUndiscovered = 272,
288
+ GameTooltipStatCurseFactors = 273,
289
+ GameTooltipStatCurseFactor = 274,
290
+ GameTooltipStatCurseTotalValues = 275,
291
+ GameTooltipStatCurseTotalLabel = 276,
292
+ GameTooltipStatCurseDisabled = 277,
293
+ GameTooltipMagicCurseDescription = 278,
294
+ GameStatsStatAttack = 279,
295
+ GameStatsStatGeneric = 280,
296
+ GameStatsStatGenericWithMax = 281,
297
+ GameStatsStatbar = 282,
298
+ GameStatsMoreToDiscover = 283,
299
+ GameMenuBarButtonTooltipBindable = 284,
300
+ GameMenuBarButtonTooltipSaveSize = 285,
301
+ GameMenuBarButtonTooltipSaveTurnsAgo = 286,
302
+ GameMenuBarButtonTooltipSaveLastTime = 287,
303
+ GameMenuBarButtonTooltipNotesUnread = 288,
304
+ GameMenuBarButtonTooltipMilestonesDisabled = 289,
305
+ GameMenuBarButtonTooltipQuestsDisabled = 290,
306
+ GameMenuBarContextMenuActionRemoveItem = 291,
307
+ GameMenuBarContextMenuActionInsertItem = 292,
308
+ GameMenuBarContextMenuActionReset = 293,
309
+ GameActionBarContextMenuDisplayBindings = 294,
310
+ GameActionBarContextMenuAutoSelectPrimaryUse = 295,
311
+ GameActionBarContextMenuBringSlotsIntoNewSaves = 296,
312
+ GameActionBarContextMenuConfigure = 297,
313
+ GameActionBarContextMenuSelectModifierOrder = 298,
314
+ GameActionBarContextMenuSelectModifierOrderNoModifier = 299,
315
+ GameActionBarContextMenuAutoSwitchToBestItemOnInaccessible = 300,
316
+ GameActionBarConfigurationDrawerTitle = 301,
317
+ GameActionBarConfigurationDrawerFooterDiscoveryHint = 302,
318
+ GameActionBarConfigurationDrawerFooterDiscoveryHintProgress = 303,
319
+ GameActionBarConfigurationDrawerSlotHintUse = 304,
320
+ GameActionBarConfigurationDrawerSlotHintToggle = 305,
321
+ GameActionBarConfigurationDrawerSlotHintToggleUseOnMove = 306,
322
+ GameActionBarConfigurationDrawerColumnTitleActions = 307,
323
+ GameActionBarConfigurationDrawerColumnTitleItemActions = 308,
324
+ GameActionBarConfigurationDrawerColumnTitleConfiguration = 309,
325
+ GameActionBarConfigurationDrawerButtonEditBindings = 310,
326
+ GameActionBarConfigurationDrawerButtonClearSlot = 311,
327
+ GameActionBarConfigurationDrawerColumnTitleInapplicable = 312,
328
+ GameActionBarConfigurationDrawerButtonUseOnMove = 313,
329
+ GameActionBarConfigurationDrawerButtonUseOnMoveDescription = 314,
330
+ GameActionBarConfigurationDrawerButtonUseOnHoveredTile = 315,
331
+ GameActionBarConfigurationDrawerButtonUseOnHoveredTileDescription = 316,
332
+ GameActionBarConfigurationDrawerModeUseExact = 317,
333
+ GameActionBarConfigurationDrawerModeUseExactNoItemSelected = 318,
334
+ GameActionBarConfigurationDrawerModeUseBest = 319,
335
+ GameActionBarConfigurationDrawerModeUseNone = 320,
336
+ GameActionBarConfigurationDrawerModeUseHovered = 321,
337
+ GameActionBarConfigurationDrawerItemDropdownAny = 322,
338
+ GameActionBarConfigurationDrawerItemDropdownNoTypeSelected = 323,
339
+ GameActionBarConfigurationDrawerButtonDone = 324,
340
+ GameActionBarConfigurationDrawerButtonCraftType = 325,
341
+ GameActionBarSlotTooltipHintUse = 326,
342
+ GameActionBarSlotTooltipHintConfigure = 327,
343
+ GameActionBarSlotTooltipHintUseOnMove = 328,
344
+ GameActionBarSlotTooltipHintUseSlottedItem = 329,
345
+ GameActionBarSlotTooltipHintClear = 330,
346
+ GameActionBarButtonToggleUseWhenMovingTooltip = 331,
347
+ GameActionBarButtonRemoveActionBarRowTooltip = 332,
348
+ GameActionBarButtonAddActionBarRowTooltip = 333,
349
+ GameActionBarButtonConfigureOptions = 334,
350
+ GameMessagesButtonSend = 335,
351
+ GameMessagesContextMenuShowAsDialog = 336,
352
+ GameMessagesContextMenuClear = 337,
353
+ GameMessagesContextMenuCopy = 338,
354
+ GameMessagesContextMenuExport = 339,
355
+ GameMessagesFilter = 340,
356
+ GameMessagesFiltersEdit = 341,
357
+ GameMessagesNewNote = 342,
358
+ GameMessagesTurn = 343,
359
+ GameMessagesDedicatedServerBackup = 344,
360
+ GameMessagesDedicatedServerBackupLimitReached = 345,
361
+ GameMessagesPlaceholderChat = 346,
362
+ GameMessagesButtonShowNewest = 347,
363
+ GameTileInspectionCannotSeeTile = 348,
364
+ MenuAboutTitle = 349,
365
+ MenuAboutDescription = 350,
366
+ MenuAboutGameDescription = 351,
367
+ MenuAboutSectionTeam = 352,
368
+ MenuAboutTeamMemberName = 353,
369
+ MenuAboutTeamMemberNickname = 354,
370
+ MenuAboutSectionContributors = 355,
371
+ MenuAboutSectionSpecialThanks = 356,
372
+ MenuAboutTextSpecialThanksTestorsAndDonators = 357,
373
+ MenuAboutSectionLibraries = 358,
374
+ MenuAboutSectionLibrariesDescription = 359,
375
+ MenuAboutLabelVersion = 360,
376
+ MenuAboutLabelVersionBuild = 361,
377
+ MenuAboutLabelVersionBuildTime = 362,
378
+ MenuBindings = 363,
379
+ MenuBindingsDescription = 364,
380
+ MenuBindingsTooltipBindConflicts = 365,
381
+ MenuBindingsManagedBindableGameActionBarUseSlot = 366,
382
+ MenuBindingsManagedBindableGameActionBarAssignSlot = 367,
383
+ MenuBindingsManagedBindableGameActionBarToggleUseOnMoveSlot = 368,
384
+ MenuChangelogTitle = 369,
385
+ MenuChangelogDescription = 370,
386
+ MenuChangelogHeadingUnchartedWaters = 371,
387
+ MenuChangelogFailedToLoadTitle = 372,
388
+ MenuChangelogFailedToLoadDescription = 373,
389
+ MenuChangelogHeadingChangeCount = 374,
390
+ MenuChangelogButtonCopyChangelog = 375,
391
+ MenuCharacterCreationButtonRandomizeName = 376,
392
+ MenuCharacterCreationButtonExportTooltip = 377,
393
+ MenuCharacterCreationButtonImportTooltip = 378,
394
+ MenuCharacterCreationButtonStartGame = 379,
395
+ MenuCharacterCreationButtonJoinGame = 380,
396
+ MenuCharacterCreationDescription = 381,
397
+ MenuCharacterCreationHeadingHairColor = 382,
398
+ MenuCharacterCreationHeadingHairStyle = 383,
399
+ MenuCharacterCreationHeadingSkinTone = 384,
400
+ MenuCharacterCreationLabelName = 385,
401
+ MenuCharacterCreationTitle = 386,
402
+ MenuCharacterCreationButtonRotateLeftTooltip = 387,
403
+ MenuCharacterCreationButtonRotateRightTooltip = 388,
404
+ MenuCharacterCreationButtonRandomizeTooltip = 389,
405
+ MenuCharacterSelectionButtonNewCharacter = 390,
406
+ MenuCharacterSelectionDescription = 391,
407
+ MenuCharacterSelectionHeadingNoCharacters = 392,
408
+ MenuCharacterSelectionTitle = 393,
409
+ MenuCharacterSelectionLabelLastUse = 394,
410
+ MenuCharacterSelectionLabelUseCount = 395,
411
+ MenuCharacterSelectionCharacterButtonDeleteTooltip = 396,
412
+ MenuCharacterSelectionCharacterButtonCustomizeTooltip = 397,
413
+ MenuDevelopmentBranchTitle = 398,
414
+ MenuDevelopmentBranchSuperTitle = 399,
415
+ MenuDevelopmentBranchWarning = 400,
416
+ MenuDevelopmentBranchStatus = 401,
417
+ MenuDevelopmentBranchStatusUnavailable = 402,
418
+ MenuErrorReportingTitle = 403,
419
+ MenuErrorReportingDescription = 404,
420
+ MenuErrorReportingContentsTitle = 405,
421
+ MenuErrorReportingContentsDescription = 406,
422
+ MenuErrorReportingButtonNo = 407,
423
+ MenuErrorReportingButtonYes = 408,
424
+ MenuMultiplayerDescription = 409,
425
+ MenuMultiplayerTitle = 410,
426
+ MenuMultiplayerButtonJoinById = 411,
427
+ MenuMultiplayerServerLabelDays = 412,
428
+ MenuMultiplayerServerLabelIsland = 413,
429
+ MenuMultiplayerButtonNewGame = 414,
430
+ MenuMultiplayerButtonLoadGame = 415,
431
+ MenuMultiplayerServerTooltipPVP = 416,
432
+ MenuMultiplayerServerTooltipModsLabel = 417,
433
+ MenuMultiplayerServerTooltipFriendsLabel = 418,
434
+ MenuMultiplayerServerPlayers = 419,
435
+ MenuMultiplayerServerLobbyType = 420,
436
+ MenuMultiplayerServerRegion = 421,
437
+ MenuMultiplayerServerHost = 422,
438
+ MenuMultiplayerServerVersion = 423,
439
+ MenuMultiplayerServerVersionUnknown = 424,
440
+ MenuMultiplayerServerDedicated = 425,
441
+ MenuMultiplayerHeadingPlayersOnline = 426,
442
+ MenuMultiplayerServerModInfo = 427,
443
+ MenuMultiplayerServerModUnableToLoad = 428,
444
+ MenuMultiplayerServerLabelTerritoryTier = 429,
445
+ MenuGameEndTitleDead = 430,
446
+ MenuGameEndTitleWon = 431,
447
+ MenuGameEndShareFacebook = 432,
448
+ MenuGameEndShareTwitter = 433,
449
+ MenuGameEndContinueAsGhost = 434,
450
+ MenuGameEndRespawnInCasualMode = 435,
451
+ MenuGameEndRespawnAsNewCharacter = 436,
452
+ MenuGameEndReturnToIsland = 437,
453
+ MenuGameEndExitToMenu = 438,
454
+ MenuHelpTitle = 439,
455
+ MenuHelpDescription = 440,
456
+ MenuHelpLabelSearch = 441,
457
+ MenuHighscoresTitle = 442,
458
+ MenuHighscoresDescription = 443,
459
+ MenuHighscoresDifficultyFilterAll = 444,
460
+ MenuHighscoresHighscoreLabelDifficulty = 445,
461
+ MenuHighscoresHighscoreLabelTurns = 446,
462
+ MenuHighscoresHighscoreLabelScore = 447,
463
+ MenuHighscoresHighscoreLabelPlace = 448,
464
+ MenuHighscoresHighscoreLabelDate = 449,
465
+ MenuHighscoresHighscoreLabelDeathBy = 450,
466
+ MenuHighscoresHighscoreTitle = 451,
467
+ MenuHighscoresCharacterNameUnknown = 452,
468
+ MenuHighscoresHighscoreReplayWithSettings = 453,
469
+ MenuLoadGameButtonSaveSlot = 454,
470
+ MenuLoadGameButtonNewGame = 455,
471
+ MenuLoadGameButtonNewGameButtonImportTooltip = 456,
472
+ MenuLoadGameDescription = 457,
473
+ MenuLoadGameSaveButtonDeleteTooltip = 458,
474
+ MenuLoadGameSaveButtonEditNameTooltip = 459,
475
+ MenuLoadGameSaveButtonExportTooltip = 460,
476
+ MenuLoadGameSaveTooltipLabelCreatedTime = 461,
477
+ MenuLoadGameSaveTooltipLabelSaveTime = 462,
478
+ MenuLoadGameSaveTooltipLabelGameMode = 463,
479
+ MenuLoadGameSaveTooltipLabelScore = 464,
480
+ MenuLoadGameSaveTooltipLabelSeed = 465,
481
+ MenuLoadGameSaveTooltipLabelTurns = 466,
482
+ MenuLoadGameSaveTooltipLabelMods = 467,
483
+ MenuLoadGameSaveTooltipLabelOriginalVersion = 468,
484
+ MenuLoadGameSaveTooltipMod = 469,
485
+ MenuLoadGameSaveTooltipNew = 470,
486
+ MenuLoadGameSaveTooltipCorrupted = 471,
487
+ MenuLoadGameSaveGame = 472,
488
+ MenuLoadGameSaveGameDescription = 473,
489
+ MenuLoadGameTitle = 474,
490
+ MenuLoadGameLabelSelected = 475,
491
+ MenuLoadGameButtonDeleteSelectedTooltip = 476,
492
+ MenuLoadGameImportSaveFailure = 477,
493
+ MenuLoadGameSectionSavedGames = 478,
494
+ MenuLoadGameSectionImportFolders = 479,
495
+ MenuLoadGameSectionImportFoldersPlaceholderPathToSaves = 480,
496
+ MenuLoadGameSectionImportFoldersButtonAddFolder = 481,
497
+ MenuLoadGameSectionImportFoldersButtonDeleteFolder = 482,
498
+ MenuMainButtonAbout = 483,
499
+ MenuMainButtonChangelog = 484,
500
+ MenuMainButtonMultiplayer = 485,
501
+ MenuMainButtonHighscores = 486,
502
+ MenuMainButtonLoadGame = 487,
503
+ MenuMainButtonMods = 488,
504
+ MenuMainButtonModsTooltipLabelEnabledMods = 489,
505
+ MenuMainButtonModsTooltipAndXOthers = 490,
506
+ MenuMainButtonModsAllDisabled = 491,
507
+ MenuMainButtonNewGame = 492,
508
+ MenuMainButtonNews = 493,
509
+ MenuMainButtonOptions = 494,
510
+ MenuMainButtonQuitGame = 495,
511
+ MenuModsWarningModsDisabledTitle = 496,
512
+ MenuModsWarningModsDisabledDescription = 497,
513
+ MenuModsButtonModdingGuide = 498,
514
+ MenuModsButtonOpenFolder = 499,
515
+ MenuModsButtonOpenWorkshop = 500,
516
+ MenuModsButtonRefreshMods = 501,
517
+ MenuModsDescription = 502,
518
+ MenuModsTitle = 503,
519
+ MenuModsTooltipLabelAuthor = 504,
520
+ MenuModsTooltipLabelTags = 505,
521
+ MenuModsTooltipLabelDependencies = 506,
522
+ MenuModsTooltipLabelProvides = 507,
523
+ MenuModsTooltipLabelVersion = 508,
524
+ MenuModsTooltipLabelDescription = 509,
525
+ MenuModsTooltipLabelInstallDate = 510,
526
+ MenuModsTooltipLabelCreatedDate = 511,
527
+ MenuModsTooltipLabelLastUpdatedDate = 512,
528
+ MenuModsTooltipPreventsMilestoneUnlocks = 513,
529
+ MenuModsTooltipModOptions = 514,
530
+ MenuModsTooltipPublishMod = 515,
531
+ MenuModsTooltipModMoreInformation = 516,
532
+ MenuModsTooltipUninstallMod = 517,
533
+ MenuModsTooltipViewInSteamWorkshop = 518,
534
+ MenuModsTooltipViewGitHub = 519,
535
+ MenuModsTooltipOpenFolder = 520,
536
+ MenuModsButtonEditInternalMods = 521,
537
+ MenuModsSectionHeading = 522,
538
+ MenuModsSubmenuEditInternalModsTitle = 523,
539
+ MenuModsSubmenuEditInternalModsDescription = 524,
540
+ MenuModsSubmenuEditInternalModsPlaceholderAddNewInternalMod = 525,
541
+ MenuModsSubmenuEditInternalModsSectionRootsName = 526,
542
+ MenuModsSubmenuEditInternalModsSectionModsName = 527,
543
+ MenuModsSubmenuEditInternalModsPlaceholderModRootName = 528,
544
+ MenuModsSubmenuEditInternalModsPlaceholderModRootPath = 529,
545
+ MenuNewGameButtonNext = 530,
546
+ MenuNewGameButtonStartServer = 531,
547
+ MenuNewGameDescription = 532,
548
+ MenuNewGameLabelEditName = 533,
549
+ MenuNewGameLabelEditSeed = 534,
550
+ MenuNewGamePlaceholderEditSeed = 535,
551
+ MenuNewGameTitle = 536,
552
+ MenuNewGameChoiceDifficulty = 537,
553
+ MenuNewGameChoiceSingleplayer = 538,
554
+ MenuNewGameChoiceSingleplayerDescription = 539,
555
+ MenuNewGameChoiceMultiplayer = 540,
556
+ MenuNewGameChoiceMultiplayerDescription = 541,
557
+ MenuNewGameChoiceTurnModeManual = 542,
558
+ MenuNewGameChoiceTurnModeManualDescription = 543,
559
+ MenuNewGameChoiceTurnModeRealTime = 544,
560
+ MenuNewGameChoiceTurnModeRealTimeDescription = 545,
561
+ MenuNewGameChoiceTurnModeSimulated = 546,
562
+ MenuNewGameChoiceTurnModeSimulatedDescription = 547,
563
+ MenuNewGameChoiceDifficultyTooltipCustomGameOptions = 548,
564
+ MenuNewGameChoiceDifficultyChallengeDaily = 549,
565
+ MenuNewGameChoiceDifficultyChallengeDailyTooltip = 550,
566
+ MenuNewGameButtonMilestones = 551,
567
+ MenuNewGameButtonMilestonesDescription = 552,
568
+ MenuNewGameTabGameMode = 553,
569
+ MenuNewGameTabMultiplayer = 554,
570
+ MenuNewGameTabGameplayModifiers = 555,
571
+ MenuNewGameHeadingGameMode = 556,
572
+ MenuNewGameHeadingMultiplayer = 557,
573
+ MenuNewGameHeadingGameplayModifiers = 558,
574
+ MenuNewGameMilestoneModifiersUnlockableInMode = 559,
575
+ MenuNewGameChoiceClientsInheritHostModifiers = 560,
576
+ MenuNewGameChoiceClientsInheritHostModifiersDescription = 561,
577
+ MenuNewGameChoiceCustomModifiers = 562,
578
+ MenuNewGameChoiceCustomModifiersDescription = 563,
579
+ MenuMilestoneModifiersTitle = 564,
580
+ MenuMilestoneModifiersDescription = 565,
581
+ MenuCustomGameOptionsTitle = 566,
582
+ MenuCustomGameOptionsDescription = 567,
583
+ MenuCustomGameOptionsRespawnOnDeath = 568,
584
+ MenuCustomGameOptionsRespawnOnDeathDescription = 569,
585
+ MenuCustomGameOptionsUseUnlockedRecipes = 570,
586
+ MenuCustomGameOptionsStartingIslandBiome = 571,
587
+ MenuCustomGameOptionsApplyTravelingEffects = 572,
588
+ MenuCustomGameOptionsApplyTravelingEffectsDescription = 573,
589
+ MenuCustomGameOptionsCreaturesPeaceful = 574,
590
+ MenuCustomGameOptionsCreaturesDisableScared = 575,
591
+ MenuCustomGameOptionsCreaturesDisableScaredDescription = 576,
592
+ MenuCustomGameOptionsCreaturesAberrantSpawns = 577,
593
+ MenuCustomGameOptionsCreaturesAberrantSpawnsDescription = 578,
594
+ MenuCustomGameOptionsCreaturesAberrantSpawnsDescriptionDefault = 579,
595
+ MenuCustomGameOptionsCreaturesAberrantSpawnsDescriptionExclusively = 580,
596
+ MenuCustomGameOptionsCreaturesAberrantSpawnsDescriptionOff = 581,
597
+ MenuCustomGameOptionsCreaturesHeadingIndividualConfigurations = 582,
598
+ MenuCustomGameOptionsCreaturesAllowAberrantSpawns = 583,
599
+ MenuCustomGameOptionsCreaturesAlwaysSpawn = 584,
600
+ MenuCustomGameOptionsCreaturesAllowSpawning = 585,
601
+ MenuCustomGameOptionsCreaturesSpawnLimit = 586,
602
+ MenuCustomGameOptionsCreaturesSpawnLimitDescription = 587,
603
+ MenuCustomGameOptionsCreaturesSpawnRateMultiplier = 588,
604
+ MenuCustomGameOptionsCreaturesSpawnRateMultiplierDescription = 589,
605
+ MenuCustomGameOptionsCreatureNone = 590,
606
+ MenuCustomGameOptionsCreatureConfigure = 591,
607
+ MenuCustomGameOptionsStatMultiplier = 592,
608
+ MenuCustomGameOptionsStatMultiplierTooltip = 593,
609
+ MenuCustomGameOptionsStatRegenerationMultiplierTooltip = 594,
610
+ MenuCustomGameOptionsHeadingGeneral = 595,
611
+ MenuCustomGameOptionsHeadingTravel = 596,
612
+ MenuCustomGameOptionsHeadingTime = 597,
613
+ MenuCustomGameOptionsHeadingStats = 598,
614
+ MenuCustomGameOptionsHeadingItems = 599,
615
+ MenuCustomGameOptionsHeadingCreatures = 600,
616
+ MenuCustomGameOptionsHeadingSkills = 601,
617
+ MenuCustomGameOptionsHeadingStatuses = 602,
618
+ MenuCustomGameOptionsEternalNight = 603,
619
+ MenuCustomGameOptionsEternalNightDescription = 604,
620
+ MenuCustomGameOptionsEternalDay = 605,
621
+ MenuCustomGameOptionsEternalDayDescription = 606,
622
+ MenuCustomGameOptionsTimeFrozen = 607,
623
+ MenuCustomGameOptionsTimeInitial = 608,
624
+ MenuCustomGameOptionsTimeDayLength = 609,
625
+ MenuCustomGameOptionsTimeDayLengthTooltip = 610,
626
+ MenuCustomGameOptionsTimeDayPercent = 611,
627
+ MenuCustomGameOptionsTimeDayPercentTooltip = 612,
628
+ MenuCustomGameOptionsStatStarting = 613,
629
+ MenuCustomGameOptionsStatMax = 614,
630
+ MenuCustomGameOptionsStatStartingDisplay = 615,
631
+ MenuCustomGameOptionsStatMaxDisplay = 616,
632
+ MenuCustomGameOptionsStatNoChange = 617,
633
+ MenuCustomGameOptionsStatBonus = 618,
634
+ MenuCustomGameOptionsStatBonusDisplay = 619,
635
+ MenuCustomGameOptionsStatusPassChanceMultiplier = 620,
636
+ MenuCustomGameOptionsStatusPassChanceMultiplierTooltip = 621,
637
+ MenuCustomGameOptionsStatusStartWith = 622,
638
+ MenuCustomGameOptionsStatusUntreatable = 623,
639
+ MenuCustomGameOptionsStatusUntreatableTooltip = 624,
640
+ MenuCustomGameOptionsSkillInitialRandomCount = 625,
641
+ MenuCustomGameOptionsSkillInitialRandomCountDescription = 626,
642
+ MenuCustomGameOptionsSkillsHeadingIndividualConfigurations = 627,
643
+ MenuCustomGameOptionsSkillsGlobal = 628,
644
+ MenuCustomGameOptionsSkillNone = 629,
645
+ MenuCustomGameOptionsSkillConfigure = 630,
646
+ MenuCustomGameOptionsSkillInitial = 631,
647
+ MenuCustomGameOptionsSkillMultiplier = 632,
648
+ MenuCustomGameOptionsSkillMultiplierTooltip = 633,
649
+ MenuCustomGameOptionsRandomItems = 634,
650
+ MenuCustomGameOptionsRandomItemsDescription = 635,
651
+ MenuCustomGameOptionsItemDurability = 636,
652
+ MenuCustomGameOptionsItemDurabilityTooltip = 637,
653
+ MenuCustomGameOptionsItemDecay = 638,
654
+ MenuCustomGameOptionsItemDecayTooltip = 639,
655
+ MenuCustomGameOptionsExport = 640,
656
+ MenuCustomGameOptionsImport = 641,
657
+ MenuCustomGameOptionsViewGroundItemsAsContainer = 642,
658
+ MenuCustomGameOptionsViewGroundItemsAsContainerDescription = 643,
659
+ MenuNewsDescription = 644,
660
+ MenuNewsHeadingSocial = 645,
661
+ MenuNewsTitle = 646,
662
+ MenuNewsHeadingUnableToLoad = 647,
663
+ MenuNewsButtonAllNews = 648,
664
+ MenuNewsButtonViewChangelog = 649,
665
+ MenuOptionsButtonDitherFogOfWar = 650,
666
+ MenuOptionsButtonHealthVignette = 651,
667
+ MenuOptionsButtonHealthVignetteTooltip = 652,
668
+ MenuOptionsButtonDisableCustomCursor = 653,
669
+ MenuOptionsButtonEnableSmoothZooming = 654,
670
+ MenuOptionsButtonDisplayArticleInObjectNames = 655,
671
+ MenuOptionsButtonDisplayArticleInObjectNamesTooltip = 656,
672
+ MenuOptionsButtonFullscreen = 657,
673
+ MenuOptionsButtonCustomTitleBar = 658,
674
+ MenuOptionsButtonDeveloperMode = 659,
675
+ MenuOptionsButtonReloadGame = 660,
676
+ MenuOptionsButtonReloadStylesheets = 661,
677
+ MenuOptionsButtonReloadTextures = 662,
678
+ MenuOptionsButtonPrepackedSprites = 663,
679
+ MenuOptionsButtonDisposeReflection = 664,
680
+ MenuOptionsButtonExportGlobalSaveData = 665,
681
+ MenuOptionsButtonImportGlobalSaveData = 666,
682
+ MenuOptionsButtonSaveDataBackups = 667,
683
+ MenuOptionsButtonSaveDataBackupsTooltip = 668,
684
+ MenuOptionsButtonSaveDataClearAll = 669,
685
+ MenuOptionsButtonSaveDataClearCharacters = 670,
686
+ MenuOptionsButtonSaveDataClearUI = 671,
687
+ MenuOptionsButtonSaveDataClearHighscores = 672,
688
+ MenuOptionsButtonSaveDataClearMilestones = 673,
689
+ MenuOptionsButtonSaveDataClearOptions = 674,
690
+ MenuOptionsButtonSaveDataClearCraftingRecipes = 675,
691
+ MenuOptionsButtonSaveDataClearSaves = 676,
692
+ MenuOptionsButtonSkipSplash = 677,
693
+ MenuOptionsButtonDisableQuitConfirmation = 678,
694
+ MenuOptionsButtonToggleDevTools = 679,
695
+ MenuOptionsButtonOpenBackupsFolder = 680,
696
+ MenuOptionsButtonOpenLogsFolder = 681,
697
+ MenuOptionsButtonDropLocationFacing = 682,
698
+ MenuOptionsButtonDropLocationFeet = 683,
699
+ MenuOptionsButtonStartTraceRecording = 684,
700
+ MenuOptionsButtonStopTraceRecording = 685,
701
+ MenuOptionsButtonTracingRecordingTooltip = 686,
702
+ MenuOptionsButtonDropLocationFeetWhenFacingBlocked = 687,
703
+ MenuOptionsDescription = 688,
704
+ MenuOptionsHeadingAudio = 689,
705
+ MenuOptionsHeadingDeveloper = 690,
706
+ MenuOptionsHeadingGameplayOptions = 691,
707
+ MenuOptionsHeadingGameplayOptionsDescription = 692,
708
+ MenuOptionsHeadingGameplayOptionsButtonOpenDialog = 693,
709
+ MenuOptionsHeadingOtherOptions = 694,
710
+ MenuOptionsHeadingControls = 695,
711
+ MenuOptionsHeadingModOptions = 696,
712
+ MenuOptionsHeadingSaveData = 697,
713
+ MenuOptionsHeadingTooltipsTile = 698,
714
+ MenuOptionsHeadingVideo = 699,
715
+ MenuOptionsLabelInterfaceScale = 700,
716
+ MenuOptionsLabelHudWidth = 701,
717
+ MenuOptionsLabelTooltipDelay = 702,
718
+ MenuOptionsLabelDirectionTurnDelay = 703,
719
+ MenuOptionsLabelMouseTurnDelay = 704,
720
+ MenuOptionsLabelFontStyle = 705,
721
+ MenuOptionsTooltipTurnDelay = 706,
722
+ MenuOptionsTooltipMouseTurnDelay = 707,
723
+ MenuOptionsTooltipControlsFilter = 708,
724
+ MenuOptionsLabelVolumeEffects = 709,
725
+ MenuOptionsLabelVolumeMusic = 710,
726
+ MenuOptionsTabAudio = 711,
727
+ MenuOptionsTabDeveloper = 712,
728
+ MenuOptionsTabGameplay = 713,
729
+ MenuOptionsTabTooltips = 714,
730
+ MenuOptionsTabOther = 715,
731
+ MenuOptionsTabLanguage = 716,
732
+ MenuOptionsTabControls = 717,
733
+ MenuOptionsTabMods = 718,
734
+ MenuOptionsTabSaveData = 719,
735
+ MenuOptionsTabVideo = 720,
736
+ MenuOptionsTabPerformance = 721,
737
+ MenuOptionsHeadingPerformance = 722,
738
+ MenuOptionsTitle = 723,
739
+ MenuOptionsTooltipMusicNextTrack = 724,
740
+ MenuOptionsBindChoose = 725,
741
+ MenuOptionsBindChooseAdd = 726,
742
+ MenuOptionsBindButtonResetTooltip = 727,
743
+ MenuOptionsBindButtonDeleteTooltip = 728,
744
+ MenuOptionsBindButtonAddTooltip = 729,
745
+ MenuOptionsBindButtonAddMacroTooltip = 730,
746
+ MenuOptionsButtonDiscoverEverything = 731,
747
+ MenuOptionsButtonDiscoverEverythingDescription = 732,
748
+ MenuOptionsButtonGrantAllMilestoneModifiers = 733,
749
+ MenuOptionsButtonGrantAllMilestoneModifiersDescription = 734,
750
+ MenuOptionsButtonDisableMilestonesDescription = 735,
751
+ MenuOptionsButtonAlternatingDirectionMovement = 736,
752
+ MenuOptionsButtonAllowAlternatingDirectionMovementTooltip = 737,
753
+ MenuOptionsButtonSteamInputKeyboardPosition = 738,
754
+ MenuOptionsButtonAlwaysShowMoreInformationTooltip = 739,
755
+ MenuOptionsButtonEnableLowPowerMode = 740,
756
+ MenuOptionsButtonEnableLowPowerModeTooltip = 741,
757
+ MenuOptionsButtonDisableAcrylicTransparency = 742,
758
+ MenuOptionsButtonDisableAcrylicTransparencyTooltip = 743,
759
+ MenuOptionsButtonDisableOverlaySupport = 744,
760
+ MenuOptionsButtonDisableOverlaySupportTooltip = 745,
761
+ MenuOptionsButtonDisableUIEffects = 746,
762
+ MenuOptionsButtonDisableUIEffectsTooltip = 747,
763
+ MenuOptionsButtonDisableUIAnimation = 748,
764
+ MenuOptionsButtonDisableUIOpacity = 749,
765
+ MenuOptionsButtonDisableUIOpacityTooltip = 750,
766
+ MenuOptionsButtonDisableMovementAnimations = 751,
767
+ MenuOptionsButtonDisableMovementAnimationsTooltip = 752,
768
+ MenuOptionsButtonAutoAttack = 753,
769
+ MenuOptionsButtonAutoAttackTooltip = 754,
770
+ MenuOptionsButtonDropOnDismantle = 755,
771
+ MenuOptionsButtonDropOnDismantleTooltip = 756,
772
+ MenuOptionsButtonDropOnDisassemble = 757,
773
+ MenuOptionsButtonDropOnDisassembleTooltip = 758,
774
+ MenuOptionsButtonDisableCraftingProtectedItems = 759,
775
+ MenuOptionsButtonDisableCraftingProtectedItemsTooltip = 760,
776
+ MenuOptionsButtonDropOnGatherHarvest = 761,
777
+ MenuOptionsButtonDropOnGatherHarvestTooltip = 762,
778
+ MenuOptionsButtonUseAdjacentContainers = 763,
779
+ MenuOptionsButtonUseAdjacentContainersTooltip = 764,
780
+ MenuOptionsButtonHideEquippedHeadgear = 765,
781
+ MenuOptionsButtonHideEquippedHeadgearTooltip = 766,
782
+ MenuOptionsButtonDisableItemNotifiers = 767,
783
+ MenuOptionsButtonDisableItemNotifiersTooltip = 768,
784
+ MenuOptionsButtonLeftHanded = 769,
785
+ MenuOptionsButtonLeftHandedTooltip = 770,
786
+ MenuOptionsButtonAutoSave = 771,
787
+ MenuOptionsRangeAutoSaveTimerLabel = 772,
788
+ MenuOptionsRangeAutoSaveTimerTurnsDisplay = 773,
789
+ MenuOptionsRangeAutoSaveTimerTimeDisplay = 774,
790
+ MenuOptionsButtonDropIntoContainers = 775,
791
+ MenuOptionsButtonDropIntoContainersTooltip = 776,
792
+ MenuOptionsButtonWarnOnDangerousActions = 777,
793
+ MenuOptionsButtonWarnOnDangerousActionsTooltip = 778,
794
+ MenuOptionsButtonWarnOnDroppingActions = 779,
795
+ MenuOptionsButtonWarnOnDroppingActionsTooltip = 780,
796
+ MenuOptionsButtonWarnOnDestructiveActions = 781,
797
+ MenuOptionsButtonWarnOnDestructiveActionsTooltip = 782,
798
+ MenuOptionsButtonWarnWhenBreakingItemsOnCraft = 783,
799
+ MenuOptionsButtonWarnWhenBreakingItemsOnCraftTooltip = 784,
800
+ MenuOptionsButtonWarnWhenBreakingItemsOnUse = 785,
801
+ MenuOptionsButtonWarnWhenBreakingItemsOnUseTooltip = 786,
802
+ MenuOptionsHeadingWarnWhenBreakingItems = 787,
803
+ MenuOptionsButtonSaveDataClearBindings = 788,
804
+ MenuOptionsButtonDisableMilestones = 789,
805
+ MenuOptionsLabelSaveDataRemoval = 790,
806
+ MenuOptionsTooltipDialogOpacity = 791,
807
+ MenuOptionsLabelDialogOpacity = 792,
808
+ MenuOptionsDeveloperSteamBetas = 793,
809
+ MenuOptionsDeveloperSteamBetaName = 794,
810
+ MenuOptionsDeveloperLogSourceFilterHeading = 795,
811
+ MenuOptionsDeveloperUIExperiments = 796,
812
+ MenuOptionsDeveloperUIExperimentsDescription = 797,
813
+ MenuOptionsDeveloperDebugging = 798,
814
+ MenuOptionsDeveloperDebuggingDescription = 799,
815
+ MenuOptionsDeveloperToggleContainerDesyncDebugging = 800,
816
+ MenuOptionsDeveloperToggleContainerDesyncDebuggingDescription = 801,
817
+ MenuOptionsDeveloperReportErrors = 802,
818
+ MenuOptionsDeveloperReportErrorsDescription = 803,
819
+ MenuOptionsAudioVolumeDisplay = 804,
820
+ MenuOptionsAudioInputSoundOnTyping = 805,
821
+ MenuOptionsAudioPlayAudioInBackground = 806,
822
+ MenuOptionsMusicPlaylist = 807,
823
+ MenuOptionsButtonConfigureBindings = 808,
824
+ MenuOptionsButtonSaveCompression = 809,
825
+ MenuOptionsButtonSaveCompressionTooltip = 810,
826
+ MenuOptionsButtonSaveUIDataGlobally = 811,
827
+ MenuOptionsButtonSaveUIDataGloballyTooltip = 812,
828
+ MenuPauseButtonContinueGame = 813,
829
+ MenuPauseButtonReturnToGame = 814,
830
+ MenuPauseButtonOptions = 815,
831
+ MenuPauseButtonGameSettings = 816,
832
+ MenuPauseButtonPaused = 817,
833
+ MenuPauseButtonMultiplayer = 818,
834
+ MenuPauseButtonHelp = 819,
835
+ MenuPauseButtonTitleScreen = 820,
836
+ MenuPauseButtonStopServer = 821,
837
+ MenuPauseButtonQuitWithoutSaving = 822,
838
+ MenuPauseTooltipNotPaused = 823,
839
+ MenuPauseLabelPaused = 824,
840
+ MenuPauseLabelNotPaused = 825,
841
+ MenuModesTitle = 826,
842
+ MenuModesDescription = 827,
843
+ MenuMultiplayerOptionsTitle = 828,
844
+ MenuMultiplayerOptionsDescription = 829,
845
+ MenuMultiplayerOptionsOpenServer = 830,
846
+ MenuMultiplayerOptionsOpenServerDescription = 831,
847
+ MenuMultiplayerOptionsCopyGameCode = 832,
848
+ MenuMultiplayerOptionsCopyGameCodeTooltip = 833,
849
+ MenuMultiplayerOptionsInviteSteamFriends = 834,
850
+ MenuMultiplayerOptionsCheckConnectionHeading = 835,
851
+ MenuMultiplayerOptionsCheckConnectionParagraph = 836,
852
+ MenuMultiplayerOptionsCheckConnectionButton = 837,
853
+ MenuMultiplayerOptionsCheckConnectionResultUnknown = 838,
854
+ MenuMultiplayerOptionsCheckConnectionResultChecking = 839,
855
+ MenuMultiplayerOptionsCheckConnectionResultSteamRelayNetwork = 840,
856
+ MenuMultiplayerOptionsCheckConnectionResultSteamRelayNetworkFail = 841,
857
+ MenuMultiplayerOptionsCheckConnectionResultSteamRelayNetworkUnavailable = 842,
858
+ MenuMultiplayerOptionsCheckConnectionResultWebSocket = 843,
859
+ MenuMultiplayerOptionsCheckConnectionResultWebSocketFail = 844,
860
+ MenuMultiplayerOptionsCheckConnectionResultWebSocketUnavailable = 845,
861
+ MenuMultiplayerOptionsCheckConnectionResultSuccess = 846,
862
+ MenuJoinServerTitle = 847,
863
+ MenuJoinServerDescription = 848,
864
+ MenuJoinServerInputPlaceholder = 849,
865
+ MenuJoinServerChooseModifiersTitle = 850,
866
+ MenuJoinServerChooseModifiersDescription = 851,
867
+ MenuSharedMultiplayerChoiceLobbyTypeFriends = 852,
868
+ MenuSharedMultiplayerChoiceLobbyTypeFriendsDescription = 853,
869
+ MenuSharedMultiplayerChoiceLobbyTypePublic = 854,
870
+ MenuSharedMultiplayerChoiceLobbyTypePublicDescription = 855,
871
+ MenuSharedMultiplayerChoiceLobbyTypePrivate = 856,
872
+ MenuSharedMultiplayerChoiceLobbyTypePrivateDescription = 857,
873
+ MenuSharedMultiplayerChoicePVP = 858,
874
+ MenuSharedMultiplayerChoicePVPDescription = 859,
875
+ MenuSharedMultiplayerChoiceAllowTraveling = 860,
876
+ MenuSharedMultiplayerChoiceAllowTravelingDescription = 861,
877
+ MenuSharedMultiplayerChoiceAllowHardcoreRespawns = 862,
878
+ MenuSharedMultiplayerChoiceAllowHardcoreRespawnsDescription = 863,
879
+ MenuSharedMultiplayerChoicePauseOnDesync = 864,
880
+ MenuSharedMultiplayerChoicePauseOnDesyncDescription = 865,
881
+ MenuSharedMultiplayerDescription = 866,
882
+ MenuSharedMultiplayerMessageOfTheDay = 867,
883
+ MenuSharedMultiplayerMaxPlayers = 868,
884
+ MenuSharedRealTimeTickSpeedTooltip = 869,
885
+ MenuSharedRealTimeTickSpeedLabel = 870,
886
+ MenuSharedButtonDefault = 871,
887
+ MenuSharedValueSeconds = 872,
888
+ MenuSharedValueMilliseconds = 873,
889
+ MenuSharedValuePercentage = 874,
890
+ MenuSharedMilestonesNotUnlockable = 875,
891
+ MenuSharedMilestonesNotUnlockableDescription = 876,
892
+ MenuSharedMilestonesNotUnlockableButtonShowMods = 877,
893
+ MenuSharedButtonDisableAll = 878,
894
+ MenuSharedButtonEnableAll = 879,
895
+ MenuSharedMilestoneModifiersSelected = 880,
896
+ MiscSortBy = 881,
897
+ MiscSortCustom = 882,
898
+ MiscSortDirection = 883,
899
+ MiscFilter = 884,
900
+ MiscNone = 885,
901
+ MiscPlayerNameDefault = 886,
902
+ MiscPlayerNameServer = 887,
903
+ MiscSaveNameDefault = 888,
904
+ MiscSaveNameDailyChallenge = 889,
905
+ MiscSaveNameChallenge = 890,
906
+ MiscSaveVersionUnknown = 891,
907
+ MiscVersion = 892,
908
+ MiscVersionBuildInfoTooltip = 893,
909
+ MiscVersionUpdate = 894,
910
+ MiscTime = 895,
911
+ MiscTimeMeridiem = 896,
912
+ MiscError = 897,
913
+ MiscContextMenuCopyTooltip = 898,
914
+ MiscBindableNoBindings = 899,
915
+ MiscBindingIcon = 900,
916
+ MiscBindingIconThen = 901,
917
+ TabCrafting = 902,
918
+ TabDismantle = 903,
919
+ WindowTitleContainer = 904,
920
+ WindowTitleInventory = 905
959
921
  }
960
922
  export default UiTranslation;