@wayward/types 2.15.3-beta.dev.20260322.1 → 2.15.4-beta

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