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