@wayward/types 2.14.3-beta.dev.20241226.1 → 2.14.4-beta

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (294) hide show
  1. package/definitions/game/IGlobal.d.ts +2 -9
  2. package/definitions/game/game/Game.d.ts +7 -7
  3. package/definitions/game/game/IGame.d.ts +18 -2
  4. package/definitions/game/game/ILoot.d.ts +1 -0
  5. package/definitions/game/game/IObject.d.ts +3 -2
  6. package/definitions/game/game/doodad/Doodad.d.ts +18 -9
  7. package/definitions/game/game/doodad/DoodadManager.d.ts +2 -0
  8. package/definitions/game/game/doodad/DoodadUtilities.d.ts +25 -0
  9. package/definitions/game/game/doodad/IDoodad.d.ts +30 -0
  10. package/definitions/game/game/entity/Entity.d.ts +11 -4
  11. package/definitions/game/game/entity/EntityManager.d.ts +10 -3
  12. package/definitions/game/game/entity/Human.d.ts +17 -4
  13. package/definitions/game/game/entity/action/ActionExecutor.d.ts +9 -8
  14. package/definitions/game/game/entity/action/ActionsRegistration.d.ts +32 -30
  15. package/definitions/game/game/entity/action/IAction.d.ts +30 -23
  16. package/definitions/game/game/entity/action/actions/Absorb.d.ts +1 -1
  17. package/definitions/game/game/entity/action/actions/Alter.d.ts +1 -1
  18. package/definitions/game/game/entity/action/actions/CloseDoor.d.ts +1 -1
  19. package/definitions/game/game/entity/action/actions/Consecrate.d.ts +1 -1
  20. package/definitions/game/game/entity/action/actions/Craft.d.ts +1 -1
  21. package/definitions/game/game/entity/action/actions/CraftNew.d.ts +1 -1
  22. package/definitions/game/game/entity/action/actions/DetachContainer.d.ts +1 -1
  23. package/definitions/game/game/entity/action/actions/DiscoverRecipe.d.ts +14 -0
  24. package/definitions/game/game/entity/action/actions/Dismount.d.ts +1 -1
  25. package/definitions/game/game/entity/action/actions/DumpItems.d.ts +1 -1
  26. package/definitions/game/game/entity/action/actions/Enhance.d.ts +1 -1
  27. package/definitions/game/game/entity/action/actions/EquipFromArmorStand.d.ts +1 -1
  28. package/definitions/game/game/entity/action/actions/ExcavateCollapse.d.ts +24 -0
  29. package/definitions/game/game/entity/action/actions/Extinguish.d.ts +1 -1
  30. package/definitions/game/game/entity/action/actions/Exude.d.ts +1 -1
  31. package/definitions/game/game/entity/action/actions/Kneel.d.ts +1 -1
  32. package/definitions/game/game/entity/action/actions/OpenDoor.d.ts +1 -1
  33. package/definitions/game/game/entity/action/actions/PropOpenDoor.d.ts +1 -1
  34. package/definitions/game/game/entity/action/actions/Repair.d.ts +2 -1
  35. package/definitions/game/game/entity/action/actions/Rest.d.ts +1 -1
  36. package/definitions/game/game/entity/action/actions/Ride.d.ts +1 -1
  37. package/definitions/game/game/entity/action/actions/Rotate.d.ts +1 -1
  38. package/definitions/game/game/entity/action/actions/SetCreatureAi.d.ts +1 -1
  39. package/definitions/game/game/entity/action/actions/SetCreatureAiAll.d.ts +1 -1
  40. package/definitions/game/game/entity/action/actions/SetTitle.d.ts +1 -1
  41. package/definitions/game/game/entity/action/actions/Sleep.d.ts +1 -1
  42. package/definitions/game/game/entity/action/actions/Stack.d.ts +2 -2
  43. package/definitions/game/game/entity/action/actions/SwapWithArmorStand.d.ts +1 -1
  44. package/definitions/game/game/entity/action/actions/TakeFromArmorStand.d.ts +1 -1
  45. package/definitions/game/game/entity/action/actions/ToggleDoor.d.ts +1 -1
  46. package/definitions/game/game/entity/action/actions/ToggleVehicle.d.ts +1 -1
  47. package/definitions/game/game/entity/action/actions/Transmogrify.d.ts +1 -1
  48. package/definitions/game/game/entity/action/actions/helper/ConfirmDumpDropItems.d.ts +13 -0
  49. package/definitions/game/game/entity/action/usable/IUsableAction.d.ts +18 -1
  50. package/definitions/game/game/entity/action/usable/UsableAction.d.ts +2 -0
  51. package/definitions/game/game/entity/action/usable/UsableActionType.d.ts +3 -1
  52. package/definitions/game/game/entity/action/usable/actions/UsableActionsWorld.d.ts +1 -1
  53. package/definitions/game/game/entity/creature/Creature.d.ts +11 -2
  54. package/definitions/game/game/entity/creature/CreatureManager.d.ts +2 -1
  55. package/definitions/game/game/entity/creature/ICreature.d.ts +25 -1
  56. package/definitions/game/game/entity/player/Player.d.ts +17 -2
  57. package/definitions/game/game/entity/player/quest/quest/IQuest.d.ts +1 -0
  58. package/definitions/game/game/inspection/InfoProvider.d.ts +0 -2
  59. package/definitions/game/game/inspection/infoProviders/LevelValue.d.ts +3 -1
  60. package/definitions/game/game/inspection/infoProviders/MagicalDamageReduction.d.ts +1 -1
  61. package/definitions/game/game/inspection/infoProviders/MagicalDamageRegeneration.d.ts +1 -1
  62. package/definitions/game/game/inspection/infoProviders/MagicalPropertyValue.d.ts +3 -2
  63. package/definitions/game/game/inspection/infoProviders/creature/CreatureTamedInfo.d.ts +1 -0
  64. package/definitions/game/game/inspection/infoProviders/doodad/DoodadScareRadius.d.ts +20 -0
  65. package/definitions/game/game/inspection/infoProviders/doodad/StillWater.d.ts +3 -5
  66. package/definitions/game/game/inspection/infoProviders/item/ItemInvoke.d.ts +20 -0
  67. package/definitions/game/game/inspection/infoProviders/item/MagicalSourceTooltip.d.ts +2 -1
  68. package/definitions/game/game/inspection/infoProviders/item/use/ItemBuildInfo.d.ts +4 -1
  69. package/definitions/game/game/inspection/infoProviders/item/use/ItemConsumeInfo.d.ts +1 -1
  70. package/definitions/game/game/inspection/infoProviders/item/use/ItemEquipInfo.d.ts +1 -1
  71. package/definitions/game/game/inspection/infoProviders/stat/GenericInfo.d.ts +1 -0
  72. package/definitions/game/game/inspection/inspections/MagicInspection.d.ts +2 -2
  73. package/definitions/game/game/island/Island.d.ts +10 -3
  74. package/definitions/game/game/island/automation/IAutomation.d.ts +10 -0
  75. package/definitions/game/game/item/IItem.d.ts +28 -14
  76. package/definitions/game/game/item/IItemManager.d.ts +2 -2
  77. package/definitions/game/game/item/Item.d.ts +20 -8
  78. package/definitions/game/game/item/ItemFinder.d.ts +2 -1
  79. package/definitions/game/game/item/ItemManager.d.ts +7 -7
  80. package/definitions/game/game/item/ItemReference.d.ts +3 -3
  81. package/definitions/game/game/item/MagicalLoot.d.ts +21 -0
  82. package/definitions/game/game/magic/IMagicalProperty.d.ts +85 -0
  83. package/definitions/game/game/magic/MagicalPropertyManager.d.ts +7 -75
  84. package/definitions/game/game/magic/MagicalPropertyType.d.ts +25 -6
  85. package/definitions/game/game/mapgen/IMapGen.d.ts +1 -1
  86. package/definitions/game/game/mapgen/MapGenHelpers.d.ts +1 -1
  87. package/definitions/game/game/meta/SaveLoad.d.ts +1 -1
  88. package/definitions/game/game/meta/prompt/IPrompt.d.ts +111 -109
  89. package/definitions/game/game/meta/prompt/PromptDescriptions.d.ts +2 -0
  90. package/definitions/game/game/milestones/Milestones.d.ts +2 -0
  91. package/definitions/game/game/milestones/milestone/Runekeeper.d.ts +1 -1
  92. package/definitions/game/game/options/GameOptions.d.ts +1 -1
  93. package/definitions/game/game/options/modifiers/milestone/MilestoneModifier.d.ts +4 -0
  94. package/definitions/game/game/options/modifiers/milestone/MilestoneModifiersManager.d.ts +126 -0
  95. package/definitions/game/game/options/modifiers/milestone/modifiers/Afflicted.d.ts +2 -0
  96. package/definitions/game/game/options/modifiers/milestone/modifiers/Benevolent.d.ts +2 -0
  97. package/definitions/game/game/options/modifiers/milestone/modifiers/Boundless.d.ts +3 -0
  98. package/definitions/game/game/options/modifiers/milestone/modifiers/Crafter.d.ts +2 -0
  99. package/definitions/game/game/options/modifiers/milestone/modifiers/Curator.d.ts +2 -0
  100. package/definitions/game/game/options/modifiers/milestone/modifiers/Dedicated.d.ts +2 -0
  101. package/definitions/game/game/options/modifiers/milestone/modifiers/Diverse.d.ts +4 -0
  102. package/definitions/game/game/options/modifiers/milestone/modifiers/Doctor.d.ts +3 -0
  103. package/definitions/game/game/options/modifiers/milestone/modifiers/DragonSlayer.d.ts +2 -0
  104. package/definitions/game/game/options/modifiers/milestone/modifiers/Exsanguinated.d.ts +2 -0
  105. package/definitions/game/game/options/modifiers/milestone/modifiers/Exterminator.d.ts +2 -0
  106. package/definitions/game/game/options/modifiers/milestone/modifiers/Gardener.d.ts +2 -0
  107. package/definitions/game/game/options/modifiers/milestone/modifiers/Gatherer.d.ts +4 -0
  108. package/definitions/game/game/options/modifiers/milestone/modifiers/Grandmaster.d.ts +3 -0
  109. package/definitions/game/game/options/modifiers/milestone/modifiers/Helmsman.d.ts +3 -0
  110. package/definitions/game/game/options/modifiers/milestone/modifiers/Hounded.d.ts +2 -0
  111. package/definitions/game/game/options/modifiers/milestone/modifiers/Hunter.d.ts +2 -0
  112. package/definitions/game/game/options/modifiers/milestone/modifiers/Huntsman.d.ts +2 -0
  113. package/definitions/game/game/options/modifiers/milestone/modifiers/Invoker.d.ts +2 -0
  114. package/definitions/game/game/options/modifiers/milestone/modifiers/Locksmith.d.ts +2 -0
  115. package/definitions/game/game/options/modifiers/milestone/modifiers/Malevolent.d.ts +2 -0
  116. package/definitions/game/game/options/modifiers/milestone/modifiers/MasterOfAll.d.ts +4 -0
  117. package/definitions/game/game/options/modifiers/milestone/modifiers/Merchant.d.ts +3 -0
  118. package/definitions/game/game/options/modifiers/milestone/modifiers/Multitasker.d.ts +3 -0
  119. package/definitions/game/game/options/modifiers/milestone/modifiers/Navigator.d.ts +3 -0
  120. package/definitions/game/game/options/modifiers/milestone/modifiers/Operator.d.ts +3 -0
  121. package/definitions/game/game/options/modifiers/milestone/modifiers/Retailer.d.ts +2 -0
  122. package/definitions/game/game/options/modifiers/milestone/modifiers/Rouseabout.d.ts +4 -0
  123. package/definitions/game/game/options/modifiers/milestone/modifiers/RunekeeperModifier.d.ts +2 -0
  124. package/definitions/game/game/options/modifiers/milestone/modifiers/Serene.d.ts +2 -0
  125. package/definitions/game/game/options/modifiers/milestone/modifiers/Statistician.d.ts +2 -0
  126. package/definitions/game/game/options/modifiers/milestone/modifiers/Talented.d.ts +3 -0
  127. package/definitions/game/game/options/modifiers/milestone/modifiers/Thrower.d.ts +2 -0
  128. package/definitions/game/game/options/modifiers/milestone/modifiers/Traitor.d.ts +2 -0
  129. package/definitions/game/game/options/modifiers/milestone/modifiers/Trapper.d.ts +2 -0
  130. package/definitions/game/game/options/modifiers/milestone/modifiers/Treasurer.d.ts +2 -0
  131. package/definitions/game/game/options/modifiers/milestone/modifiers/Turbulent.d.ts +2 -0
  132. package/definitions/game/game/options/modifiers/milestone/modifiers/Versatile.d.ts +2 -0
  133. package/definitions/game/game/options/modifiers/milestone/modifiers/shared/StatBonusMilestoneModifier.d.ts +2 -0
  134. package/definitions/game/game/reference/IReferenceManager.d.ts +2 -1
  135. package/definitions/game/game/reference/ReferenceManager.d.ts +1 -1
  136. package/definitions/game/game/tile/ITileEvent.d.ts +2 -1
  137. package/definitions/game/game/tile/Tile.d.ts +37 -3
  138. package/definitions/game/game/tile/TileEvent.d.ts +0 -1
  139. package/definitions/game/game/tile/TileEventManager.d.ts +1 -1
  140. package/definitions/game/game/tile/events/Fire.d.ts +1 -1
  141. package/definitions/game/game/tile/events/MeltingTile.d.ts +1 -1
  142. package/definitions/game/game/tile/events/Puddles.d.ts +1 -1
  143. package/definitions/game/game/time/TimeManager.d.ts +8 -0
  144. package/definitions/game/language/Dictionary.d.ts +60 -58
  145. package/definitions/game/language/DictionaryMap.d.ts +122 -114
  146. package/definitions/game/language/ITranslation.d.ts +2 -0
  147. package/definitions/game/{multiplayer/packets/shared/DiscoverRecipePacket.d.ts → language/MagicAffix.d.ts} +5 -9
  148. package/definitions/game/language/Translation.d.ts +1 -2
  149. package/definitions/game/language/dictionary/Health.d.ts +2 -1
  150. package/definitions/game/language/dictionary/Message.d.ts +855 -830
  151. package/definitions/game/language/dictionary/Misc.d.ts +31 -26
  152. package/definitions/game/language/dictionary/UiTranslation.d.ts +931 -910
  153. package/definitions/game/language/english/item/MagicalPropertyAffixes.d.ts +13 -0
  154. package/definitions/game/language/english/item/MagicalSubPropertyAffixes.d.ts +13 -0
  155. package/definitions/game/language/impl/TranslationImpl.d.ts +8 -2
  156. package/definitions/game/mod/IMod.d.ts +1 -1
  157. package/definitions/game/multiplayer/IMultiplayer.d.ts +79 -76
  158. package/definitions/game/multiplayer/Multiplayer.d.ts +1 -1
  159. package/definitions/game/multiplayer/SyncRegion.d.ts +22 -0
  160. package/definitions/game/multiplayer/packets/IPacket.d.ts +3 -1
  161. package/definitions/game/renderer/IRenderer.d.ts +27 -26
  162. package/definitions/game/renderer/RenderersNotifiers.d.ts +2 -2
  163. package/definitions/game/renderer/notifier/INotifier.d.ts +51 -2
  164. package/definitions/game/renderer/notifier/Notifier.d.ts +2 -2
  165. package/definitions/game/renderer/world/WorldRenderer.d.ts +2 -1
  166. package/definitions/game/resource/IResourceLoader.d.ts +18 -18
  167. package/definitions/game/save/ISaveManager.d.ts +1 -1
  168. package/definitions/game/save/SaveManager.d.ts +1 -1
  169. package/definitions/game/save/SaveMetadata.d.ts +1 -1
  170. package/definitions/game/save/data/ISaveData.d.ts +23 -0
  171. package/definitions/game/save/data/ISaveDataGlobal.d.ts +3 -0
  172. package/definitions/game/save/data/SaveData.d.ts +10 -1
  173. package/definitions/game/save/data/SaveDataGlobal.d.ts +1 -1
  174. package/definitions/game/save/serializer/ISerializer.d.ts +1 -1
  175. package/definitions/game/save/serializer/PropertiesToSerialize.d.ts +5 -1
  176. package/definitions/game/save/serializer/Serializer.d.ts +1 -1
  177. package/definitions/game/save/upgrade/UpgradePlayer.d.ts +1 -1
  178. package/definitions/game/save/upgrade/UpgradeSaveDataGlobal.d.ts +1 -1
  179. package/definitions/game/save/upgrade/UpgradeVersion.d.ts +18 -3
  180. package/definitions/game/save/upgrade/UpgradeVersionRegistry.d.ts +4 -1
  181. package/definitions/game/save/upgrade/versions/beta2.14.0/_beta.2.14.0-dev20240828.d.ts +1 -1
  182. package/definitions/game/save/upgrade/versions/beta2.14.0/beta2.14.0-dev00000001.d.ts +1 -1
  183. package/definitions/game/save/upgrade/versions/beta2.14.0/beta2.14.0-dev00000002.d.ts +1 -1
  184. package/definitions/game/save/upgrade/versions/beta2.14.0/beta2.14.0-dev20240827.d.ts +1 -1
  185. package/definitions/game/save/upgrade/versions/beta2.14.0/beta2.14.0-dev20240828.d.ts +1 -1
  186. package/definitions/game/save/upgrade/versions/beta2.14.0/beta2.14.0-dev20240829.d.ts +1 -1
  187. package/definitions/game/save/upgrade/versions/beta2.14.0/beta2.14.0-dev20240901.d.ts +1 -1
  188. package/definitions/game/save/upgrade/versions/beta2.14.0/beta2.14.0-dev20240905.d.ts +1 -1
  189. package/definitions/game/save/upgrade/versions/beta2.14.0/beta2.14.0-dev20241024.d.ts +1 -1
  190. package/definitions/game/save/upgrade/versions/beta2.14.0/beta2.14.0-dev20241129.d.ts +1 -1
  191. package/definitions/game/save/upgrade/versions/beta2.14.3/beta2.14.3-dev20241223.d.ts +1 -1
  192. package/definitions/game/save/upgrade/versions/beta2.14.4/beta.2.14.4-dev20250422.d.ts +12 -0
  193. package/definitions/game/save/upgrade/versions/beta2.14.4/beta2.14.4-dev20241231.d.ts +12 -0
  194. package/definitions/game/save/upgrade/versions/beta2.14.4/beta2.14.4-dev20250220.d.ts +12 -0
  195. package/definitions/game/steamworks/ISteamworks.d.ts +1 -6
  196. package/definitions/game/steamworks/Steamworks.d.ts +14 -5
  197. package/definitions/game/ui/{screen/screens/splash → component}/Notice.d.ts +4 -2
  198. package/definitions/game/ui/component/dropdown/IslandDropdown.d.ts +1 -1
  199. package/definitions/game/ui/component/dropdown/MagicalPropertyDropdown.d.ts +1 -2
  200. package/definitions/game/ui/input/Bindable.d.ts +143 -142
  201. package/definitions/game/ui/input/InputManager.d.ts +4 -2
  202. package/definitions/game/ui/input/Macros.d.ts +1 -1
  203. package/definitions/game/ui/screen/screens/SplashScreen.d.ts +1 -1
  204. package/definitions/game/ui/screen/screens/game/DialogManager.d.ts +8 -3
  205. package/definitions/game/ui/screen/screens/game/InspectionsTooltipHandler.d.ts +5 -1
  206. package/definitions/game/ui/screen/screens/game/ReferenceTooltipHandler.d.ts +1 -1
  207. package/definitions/game/ui/screen/screens/game/component/InspectionsList.d.ts +0 -1
  208. package/definitions/game/ui/screen/screens/game/component/ItemComponent.d.ts +6 -0
  209. package/definitions/game/ui/screen/screens/game/component/container/ContainerBucketItemList.d.ts +4 -0
  210. package/definitions/game/ui/screen/screens/game/component/item/ItemComponentEventBus.d.ts +2 -1
  211. package/definitions/game/ui/screen/screens/game/dialog/EquipmentDialog.d.ts +1 -1
  212. package/definitions/game/ui/screen/screens/game/dialog/MilestonesDialog.d.ts +1 -0
  213. package/definitions/game/ui/screen/screens/game/dialog/QuestDialog.d.ts +1 -0
  214. package/definitions/game/ui/screen/screens/game/dialog/equipment/EquipmentSlotTooltip.d.ts +1 -1
  215. package/definitions/game/ui/screen/screens/game/dialog/unlockables/UnlockablesDialog.d.ts +1 -0
  216. package/definitions/game/ui/screen/screens/game/static/actions/ActionSlot.d.ts +2 -0
  217. package/definitions/game/ui/screen/screens/game/static/messages/MessageLog.d.ts +1 -0
  218. package/definitions/game/ui/screen/screens/game/util/item/ItemStylesheet.d.ts +12 -0
  219. package/definitions/game/ui/screen/screens/menu/menus/main/ChangelogMenu.d.ts +1 -1
  220. package/definitions/game/ui/screen/screens/menu/menus/options/ErrorReportingNotice.d.ts +14 -0
  221. package/definitions/game/ui/screen/screens/menu/menus/options/TabDeveloper.d.ts +3 -1
  222. package/definitions/game/ui/screen/screens/menu/menus/options/TabSaveData.d.ts +1 -0
  223. package/definitions/game/ui/screen/screens/splash/DevelopmentBranchNotice.d.ts +1 -1
  224. package/definitions/game/ui/tooltip/Tooltip.d.ts +2 -2
  225. package/definitions/game/ui/util/ComponentManipulator.d.ts +6 -5
  226. package/definitions/game/ui/util/Draggable.d.ts +8 -15
  227. package/definitions/game/ui/util/HighlightManager.d.ts +11 -1
  228. package/definitions/game/ui/util/IHighlight.d.ts +1 -0
  229. package/definitions/game/utilities/Observer.d.ts +1 -1
  230. package/definitions/game/utilities/VersionTranslation.d.ts +18 -0
  231. package/definitions/game/utilities/dev/Debug.d.ts +4 -0
  232. package/definitions/game/utilities/dev/Performance2.d.ts +1 -0
  233. package/definitions/game/utilities/memory/MemoryLeakDetector.d.ts +8 -2
  234. package/definitions/game/utilities/object/Merge.d.ts +3 -0
  235. package/definitions/game/utilities/object/PrettyJsonStringify.d.ts +23 -0
  236. package/definitions/game/utilities/trello/ITrello.d.ts +1 -1
  237. package/definitions/game/utilities/trello/Trello.d.ts +1 -1
  238. package/definitions/hosts/node/nodeLoader.d.ts +1 -0
  239. package/definitions/hosts/shared/globalTypes.d.ts +6 -0
  240. package/definitions/hosts/shared/globals.d.ts +2 -2
  241. package/definitions/lint/condition-complexity.d.mts +31 -0
  242. package/definitions/{devserver/middleware/util → server/core}/Middleware.d.ts +1 -0
  243. package/definitions/{devserver → server/core}/middleware/E404.d.ts +1 -1
  244. package/definitions/server/core/middleware/Probe.d.ts +13 -0
  245. package/definitions/{devserver → server/core}/middleware/Static.d.ts +1 -1
  246. package/definitions/{devserver → server/core}/middleware/Validate.d.ts +1 -1
  247. package/definitions/{devserver/middleware → server/core}/util/SendFile.d.ts +1 -1
  248. package/definitions/{matchmakingserver → server/dev}/index.d.ts +1 -3
  249. package/definitions/{devserver → server/dev}/middleware/CustomInternalMods.d.ts +1 -1
  250. package/definitions/{devserver → server/dev}/middleware/SaveFolder.d.ts +1 -1
  251. package/definitions/server/error/Router.d.ts +13 -0
  252. package/definitions/server/error/index.d.ts +11 -0
  253. package/definitions/server/error/middleware/ReportError.d.ts +13 -0
  254. package/definitions/server/error/util/SendDiscordMessage.d.ts +19 -0
  255. package/definitions/{matchmakingserver → server/matchmaking}/dedicatedServer.d.ts +1 -1
  256. package/definitions/test/core/applicationDom.d.ts +4 -2
  257. package/definitions/test/core/applicationInteractions.d.ts +4 -0
  258. package/definitions/test/suite/functionalTests/singleplayer/ui/DialogLeak.d.ts +13 -0
  259. package/definitions/{devserver/index.d.ts → utilities/ApplyTsConfigPaths.d.ts} +1 -1
  260. package/definitions/utilities/Errors.d.ts +4 -0
  261. package/definitions/utilities/Functions.d.ts +1 -1
  262. package/definitions/utilities/Log.d.ts +35 -3
  263. package/definitions/{game/utilities → utilities}/Version.d.ts +5 -9
  264. package/definitions/utilities/dev/DebugShared.d.ts +23 -0
  265. package/definitions/utilities/event/EventEmitter.d.ts +39 -7
  266. package/definitions/utilities/memory/ILifetime.d.ts +5 -1
  267. package/definitions/utilities/object/Objects.d.ts +9 -0
  268. package/definitions/utilities/prototype/Array.d.ts +2 -1
  269. package/definitions/utilities/prototype/Define.d.ts +2 -0
  270. package/definitions/utilities/random/IRandom.d.ts +1 -1
  271. package/definitions/utilities/random/Random.d.ts +1 -1
  272. package/definitions/utilities/random/RandomUtilities.d.ts +2 -2
  273. package/definitions/utilities/random/SeededGenerator.d.ts +1 -1
  274. package/definitions/utilities/{typesglobal → types}/Types.d.ts +3 -0
  275. package/definitions/utilities/types.d.ts +18 -0
  276. package/package.json +3 -3
  277. /package/definitions/game/game/entity/action/actions/helper/{ConfirmGatherHarvest.d.ts → ConfirmGatherHarvestButcher.d.ts} +0 -0
  278. /package/definitions/{devserver → server/core}/util/Log.d.ts +0 -0
  279. /package/definitions/{devserver → server/dev}/Router.d.ts +0 -0
  280. /package/definitions/{devserver/middleware → server/dev}/util/GameLogFilter.d.ts +0 -0
  281. /package/definitions/{matchmakingserver → server/matchmaking}/directoryConnection.d.ts +0 -0
  282. /package/definitions/{matchmakingserver → server/matchmaking}/globalMatchmaking.d.ts +0 -0
  283. /package/definitions/{matchmakingserver → server/matchmaking}/globalServerDirectory.d.ts +0 -0
  284. /package/definitions/{matchmakingserver/vps.d.ts → server/matchmaking/index.d.ts} +0 -0
  285. /package/definitions/{matchmakingserver → server/matchmaking}/server.d.ts +0 -0
  286. /package/definitions/{matchmakingserver → server/matchmaking}/shared.d.ts +0 -0
  287. /package/definitions/utilities/{types → type}/Assert.d.ts +0 -0
  288. /package/definitions/utilities/{typesglobal → types}/Class.d.ts +0 -0
  289. /package/definitions/utilities/{typesglobal → types}/Descriptions.d.ts +0 -0
  290. /package/definitions/utilities/{typesglobal → types}/Function.d.ts +0 -0
  291. /package/definitions/utilities/{typesglobal → types}/Immutable.d.ts +0 -0
  292. /package/definitions/utilities/{typesglobal → types}/Iterables.d.ts +0 -0
  293. /package/definitions/utilities/{typesglobal → types}/Misc.d.ts +0 -0
  294. /package/definitions/utilities/{typesglobal → types}/Objects.d.ts +0 -0
@@ -16,915 +16,936 @@ declare enum UiTranslation {
16
16
  SharedDropdownMatching = 1,
17
17
  SharedRangeChoiceListSummary = 2,
18
18
  SharedButtonProceed = 3,
19
- GameSharedInspectionSectionSummary = 4,
20
- GameContextMenuTooltipOpenBindings = 5,
21
- GameStaticButtonRespawn = 6,
22
- GameStaticButtonRespawnInCasualMode = 7,
23
- GameStaticButtonRespawnAsNewCharacter = 8,
24
- GameStaticPopupNightLabel = 9,
25
- GameDialogSharedContextMenuResetPosition = 10,
26
- GameDialogSharedIslandDropdownLabel = 11,
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
- GameActionBarConfigurationDrawerModeUseExact = 302,
318
- GameActionBarConfigurationDrawerModeUseExactNoItemSelected = 303,
319
- GameActionBarConfigurationDrawerModeUseBest = 304,
320
- GameActionBarConfigurationDrawerModeUseNone = 305,
321
- GameActionBarConfigurationDrawerModeUseHovered = 306,
322
- GameActionBarConfigurationDrawerItemDropdownAny = 307,
323
- GameActionBarConfigurationDrawerItemDropdownNoTypeSelected = 308,
324
- GameActionBarConfigurationDrawerButtonDone = 309,
325
- GameActionBarConfigurationDrawerButtonCraftType = 310,
326
- GameActionBarSlotTooltipHintUse = 311,
327
- GameActionBarSlotTooltipHintConfigure = 312,
328
- GameActionBarSlotTooltipHintUseOnMove = 313,
329
- GameActionBarSlotTooltipHintUseSlottedItem = 314,
330
- GameActionBarSlotTooltipHintClear = 315,
331
- GameActionBarButtonToggleUseWhenMovingTooltip = 316,
332
- GameActionBarButtonRemoveActionBarRowTooltip = 317,
333
- GameActionBarButtonAddActionBarRowTooltip = 318,
334
- GameActionBarButtonConfigureOptions = 319,
335
- GameMessagesButtonSend = 320,
336
- GameMessagesContextMenuShowAsDialog = 321,
337
- GameMessagesContextMenuClear = 322,
338
- GameMessagesContextMenuCopy = 323,
339
- GameMessagesContextMenuExport = 324,
340
- GameMessagesFilter = 325,
341
- GameMessagesFiltersEdit = 326,
342
- GameMessagesNewNote = 327,
343
- GameMessagesTurn = 328,
344
- GameMessagesDedicatedServerBackup = 329,
345
- GameMessagesDedicatedServerBackupLimitReached = 330,
346
- GameMessagesPlaceholderChat = 331,
347
- GameMessagesButtonShowNewest = 332,
348
- GameTileInspectionCannotSeeTile = 333,
349
- MenuAboutTitle = 334,
350
- MenuAboutDescription = 335,
351
- MenuAboutGameDescription = 336,
352
- MenuAboutSectionTeam = 337,
353
- MenuAboutTeamMemberName = 338,
354
- MenuAboutTeamMemberNickname = 339,
355
- MenuAboutSectionContributors = 340,
356
- MenuAboutSectionSpecialThanks = 341,
357
- MenuAboutTextSpecialThanksTestorsAndDonators = 342,
358
- MenuAboutSectionLibraries = 343,
359
- MenuAboutSectionLibrariesDescription = 344,
360
- MenuAboutLabelVersion = 345,
361
- MenuAboutLabelVersionBuild = 346,
362
- MenuAboutLabelVersionBuildTime = 347,
363
- MenuBindings = 348,
364
- MenuBindingsDescription = 349,
365
- MenuBindingsTooltipBindConflicts = 350,
366
- MenuBindingsManagedBindableGameActionBarUseSlot = 351,
367
- MenuBindingsManagedBindableGameActionBarAssignSlot = 352,
368
- MenuBindingsManagedBindableGameActionBarToggleUseOnMoveSlot = 353,
369
- MenuChangelogTitle = 354,
370
- MenuChangelogDescription = 355,
371
- MenuChangelogHeadingUnchartedWaters = 356,
372
- MenuChangelogFailedToLoadTitle = 357,
373
- MenuChangelogFailedToLoadDescription = 358,
374
- MenuChangelogHeadingChangeCount = 359,
375
- MenuChangelogButtonCopyChangelog = 360,
376
- MenuChangelogButtonCopyAltChangelog = 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
- MenuOptionsButtonDropOnDismantle = 731,
747
- MenuOptionsButtonDropOnDismantleTooltip = 732,
748
- MenuOptionsButtonDropOnDisassemble = 733,
749
- MenuOptionsButtonDropOnDisassembleTooltip = 734,
750
- MenuOptionsButtonDisableCraftingProtectedItems = 735,
751
- MenuOptionsButtonDisableCraftingProtectedItemsTooltip = 736,
752
- MenuOptionsButtonDropOnGatherHarvest = 737,
753
- MenuOptionsButtonDropOnGatherHarvestTooltip = 738,
754
- MenuOptionsButtonUseAdjacentContainers = 739,
755
- MenuOptionsButtonUseAdjacentContainersTooltip = 740,
756
- MenuOptionsButtonHideEquippedHeadgear = 741,
757
- MenuOptionsButtonHideEquippedHeadgearTooltip = 742,
758
- MenuOptionsButtonDisableItemNotifiers = 743,
759
- MenuOptionsButtonDisableItemNotifiersTooltip = 744,
760
- MenuOptionsButtonLeftHanded = 745,
761
- MenuOptionsButtonLeftHandedTooltip = 746,
762
- MenuOptionsButtonAutoSave = 747,
763
- MenuOptionsRangeAutoSaveTimerLabel = 748,
764
- MenuOptionsRangeAutoSaveTimerTurnsDisplay = 749,
765
- MenuOptionsRangeAutoSaveTimerTimeDisplay = 750,
766
- MenuOptionsButtonDropIntoContainers = 751,
767
- MenuOptionsButtonDropIntoContainersTooltip = 752,
768
- MenuOptionsButtonWarnOnDangerousActions = 753,
769
- MenuOptionsButtonWarnOnDangerousActionsTooltip = 754,
770
- MenuOptionsButtonWarnOnDestructiveActions = 755,
771
- MenuOptionsButtonWarnOnDestructiveActionsTooltip = 756,
772
- MenuOptionsButtonWarnWhenBreakingItemsOnCraft = 757,
773
- MenuOptionsButtonWarnWhenBreakingItemsOnCraftTooltip = 758,
774
- MenuOptionsButtonWarnWhenBreakingItemsOnUse = 759,
775
- MenuOptionsButtonWarnWhenBreakingItemsOnUseTooltip = 760,
776
- MenuOptionsHeadingWarnWhenBreakingItems = 761,
777
- MenuOptionsButtonSaveDataClearBindings = 762,
778
- MenuOptionsButtonDisableMilestones = 763,
779
- MenuOptionsLabelSaveDataRemoval = 764,
780
- MenuOptionsTooltipDialogOpacity = 765,
781
- MenuOptionsLabelDialogOpacity = 766,
782
- MenuOptionsDeveloperSteamBetas = 767,
783
- MenuOptionsDeveloperSteamBetaName = 768,
784
- MenuOptionsDeveloperLogSourceFilterHeading = 769,
785
- MenuOptionsDeveloperUIExperiments = 770,
786
- MenuOptionsDeveloperUIExperimentsDescription = 771,
787
- MenuOptionsAudioVolumeDisplay = 772,
788
- MenuOptionsAudioInputSoundOnTyping = 773,
789
- MenuOptionsAudioPlayAudioInBackground = 774,
790
- MenuOptionsMusicPlaylist = 775,
791
- MenuOptionsButtonConfigureBindings = 776,
792
- MenuOptionsButtonSaveCompression = 777,
793
- MenuOptionsButtonSaveCompressionTooltip = 778,
794
- MenuOptionsButtonSaveUIDataGlobally = 779,
795
- MenuOptionsButtonSaveUIDataGloballyTooltip = 780,
796
- MenuPauseButtonContinueGame = 781,
797
- MenuPauseButtonReturnToGame = 782,
798
- MenuPauseButtonOptions = 783,
799
- MenuPauseButtonGameSettings = 784,
800
- MenuPauseButtonPaused = 785,
801
- MenuPauseButtonMultiplayer = 786,
802
- MenuPauseButtonHelp = 787,
803
- MenuPauseButtonTitleScreen = 788,
804
- MenuPauseButtonStopServer = 789,
805
- MenuPauseButtonQuitWithoutSaving = 790,
806
- MenuPauseTooltipNotPaused = 791,
807
- MenuPauseLabelPaused = 792,
808
- MenuPauseLabelNotPaused = 793,
809
- MenuModesTitle = 794,
810
- MenuModesDescription = 795,
811
- MenuMultiplayerOptionsTitle = 796,
812
- MenuMultiplayerOptionsDescription = 797,
813
- MenuMultiplayerOptionsOpenServer = 798,
814
- MenuMultiplayerOptionsOpenServerDescription = 799,
815
- MenuMultiplayerOptionsCopyGameCode = 800,
816
- MenuMultiplayerOptionsCopyGameCodeTooltip = 801,
817
- MenuMultiplayerOptionsInviteSteamFriends = 802,
818
- MenuMultiplayerOptionsCheckConnectionHeading = 803,
819
- MenuMultiplayerOptionsCheckConnectionParagraph = 804,
820
- MenuMultiplayerOptionsCheckConnectionButton = 805,
821
- MenuMultiplayerOptionsCheckConnectionResultUnknown = 806,
822
- MenuMultiplayerOptionsCheckConnectionResultChecking = 807,
823
- MenuMultiplayerOptionsCheckConnectionResultSteamRelayNetwork = 808,
824
- MenuMultiplayerOptionsCheckConnectionResultSteamRelayNetworkFail = 809,
825
- MenuMultiplayerOptionsCheckConnectionResultSteamRelayNetworkUnavailable = 810,
826
- MenuMultiplayerOptionsCheckConnectionResultWebSocket = 811,
827
- MenuMultiplayerOptionsCheckConnectionResultWebSocketFail = 812,
828
- MenuMultiplayerOptionsCheckConnectionResultWebSocketUnavailable = 813,
829
- MenuMultiplayerOptionsCheckConnectionResultSuccess = 814,
830
- MenuJoinServerTitle = 815,
831
- MenuJoinServerDescription = 816,
832
- MenuJoinServerInputPlaceholder = 817,
833
- MenuJoinServerChooseModifiersTitle = 818,
834
- MenuJoinServerChooseModifiersDescription = 819,
835
- MenuSharedMultiplayerChoiceLobbyTypeFriends = 820,
836
- MenuSharedMultiplayerChoiceLobbyTypeFriendsDescription = 821,
837
- MenuSharedMultiplayerChoiceLobbyTypePublic = 822,
838
- MenuSharedMultiplayerChoiceLobbyTypePublicDescription = 823,
839
- MenuSharedMultiplayerChoiceLobbyTypePrivate = 824,
840
- MenuSharedMultiplayerChoiceLobbyTypePrivateDescription = 825,
841
- MenuSharedMultiplayerChoicePVP = 826,
842
- MenuSharedMultiplayerChoicePVPDescription = 827,
843
- MenuSharedMultiplayerChoiceAllowTraveling = 828,
844
- MenuSharedMultiplayerChoiceAllowTravelingDescription = 829,
845
- MenuSharedMultiplayerChoiceAllowHardcoreRespawns = 830,
846
- MenuSharedMultiplayerChoiceAllowHardcoreRespawnsDescription = 831,
847
- MenuSharedMultiplayerChoicePauseOnDesync = 832,
848
- MenuSharedMultiplayerChoicePauseOnDesyncDescription = 833,
849
- MenuSharedMultiplayerDescription = 834,
850
- MenuSharedMultiplayerMessageOfTheDay = 835,
851
- MenuSharedMultiplayerMaxPlayers = 836,
852
- MenuSharedRealTimeTickSpeedTooltip = 837,
853
- MenuSharedRealTimeTickSpeedLabel = 838,
854
- MenuSharedButtonDefault = 839,
855
- MenuSharedValueSeconds = 840,
856
- MenuSharedValueMilliseconds = 841,
857
- MenuSharedValuePercentage = 842,
858
- MenuSharedMilestonesNotUnlockable = 843,
859
- MenuSharedMilestonesNotUnlockableDescription = 844,
860
- MenuSharedMilestonesNotUnlockableButtonShowMods = 845,
861
- MenuSharedButtonDisableAll = 846,
862
- MenuSharedButtonEnableAll = 847,
863
- MenuSharedMilestoneModifiersSelected = 848,
864
- MiscSortBy = 849,
865
- MiscSortCustom = 850,
866
- MiscSortDirection = 851,
867
- MiscFilter = 852,
868
- MiscNone = 853,
869
- MiscPlayerNameDefault = 854,
870
- MiscPlayerNameServer = 855,
871
- MiscSaveNameDefault = 856,
872
- MiscSaveNameDailyChallenge = 857,
873
- MiscSaveNameChallenge = 858,
874
- MiscSaveVersionUnknown = 859,
875
- MiscVersion = 860,
876
- MiscVersionBuildInfoTooltip = 861,
877
- MiscVersionUpdate = 862,
878
- MiscTime = 863,
879
- MiscTimeMeridiem = 864,
880
- MiscError = 865,
881
- MiscContextMenuCopyTooltip = 866,
882
- MiscBindableNoBindings = 867,
883
- MiscBindingIcon = 868,
884
- MiscBindingIconThen = 869,
885
- DifficultyOptionsPeaceful = 870,
886
- DifficultyOptionsAberrantSpawnsDisabled = 871,
887
- DifficultyOptionsAberrantSpawnsOnly = 872,
888
- DifficultyOptionsCreatureSpawningDisabled = 873,
889
- DifficultyOptionsCreatureAlwaysSpawns = 874,
890
- DifficultyOptionsCreatureSpawnsDefault = 875,
891
- DifficultyOptionsCreatureSpawnsAberrantOnly = 876,
892
- DifficultyOptionsCreatureSpawnsNoAberrants = 877,
893
- DifficultyOptionsSpawnLimit = 878,
894
- DifficultyOptionsSpawnRateMultiplier = 879,
895
- DifficultyOptionsDisableScared = 880,
896
- DifficultyOptionsRespawn = 881,
897
- DifficultyOptionsEternalNight = 882,
898
- DifficultyOptionsEternalDay = 883,
899
- DifficultyOptionsTimeInitial = 884,
900
- DifficultyOptionsTimeFrozen = 885,
901
- DifficultyOptionsTimeDayLength = 886,
902
- DifficultyOptionsTimeDayPercent = 887,
903
- DifficultyOptionsNoItems = 888,
904
- DifficultyOptionsRecipes = 889,
905
- DifficultyOptionsStartingIsland = 890,
906
- DifficultyOptionsTravelingEffectsDisabled = 891,
907
- DifficultyOptionsLuck = 892,
908
- DifficultyOptionsWeightBonus = 893,
909
- DifficultyOptionsStatInitial = 894,
910
- DifficultyOptionsStatMax = 895,
911
- DifficultyOptionsStatMultiplier = 896,
912
- DifficultyOptionsStatusStartWith = 897,
913
- DifficultyOptionsStatusUntreatable = 898,
914
- DifficultyOptionsStatusPassChanceMultiplier = 899,
915
- DifficultyOptionsNoRandomSkills = 900,
916
- DifficultyOptionsSkillStartingCount = 901,
917
- DifficultyOptionsSkillGainMultiplier = 902,
918
- DifficultyOptionsSkillInitial = 903,
919
- DifficultyOptionsStatusPermanent = 904,
920
- DifficultyOptionsStatusRateMultiplier = 905,
921
- DifficultyOptionsStatusMultiplier = 906,
922
- DifficultyOptionsItemDurabilityMultiplier = 907,
923
- DifficultyOptionsItemDecayMultiplier = 908,
924
- DifficultyOptionsTileContainersEnabled = 909,
925
- TabCrafting = 910,
926
- TabDismantle = 911,
927
- WindowTitleContainer = 912,
928
- WindowTitleInventory = 913
19
+ SharedButtonCancel = 4,
20
+ GameSharedInspectionSectionSummary = 5,
21
+ GameContextMenuTooltipOpenBindings = 6,
22
+ GameStaticButtonRespawn = 7,
23
+ GameStaticButtonRespawnInCasualMode = 8,
24
+ GameStaticButtonRespawnAsNewCharacter = 9,
25
+ GameStaticPopupNightLabel = 10,
26
+ GameDialogSharedContextMenuResetPosition = 11,
27
+ GameDialogSharedIslandDropdownLabel = 12,
28
+ GameDialogContainerSetActiveButtonTooltipTitle = 13,
29
+ GameDialogContainerSetActiveButtonTooltipDescription = 14,
30
+ GameDialogContainerMoveAllTooltipTitle = 15,
31
+ GameDialogContainerMoveAllTooltipDescription = 16,
32
+ GameDialogContainerTradeContainerMerchantTradesTitle = 17,
33
+ GameDialogContainerTradeContainerYouTradeTitle = 18,
34
+ GameDialogContainerTradeButtonTrade = 19,
35
+ GameDialogContainerTradeContainerMerchantWeight = 20,
36
+ GameDialogContainerTradeContainerMerchantWeightLimit = 21,
37
+ GameDialogContainerTradeContainerYouCurrentCredit = 22,
38
+ GameDialogContainerAltarButtonOffer = 23,
39
+ GameDialogEquipmentTooltipUnequip = 24,
40
+ GameDialogMessagesOptionTimestamp = 25,
41
+ GameDialogMessagesOptionShowSendButton = 26,
42
+ GameDialogMessagesOptionShowOptionsButton = 27,
43
+ GameDialogMessagesOptionUnfocusOnSend = 28,
44
+ GameDialogMessagesEditFiltersLabelName = 29,
45
+ GameDialogMessagesEditFiltersButtonDelete = 30,
46
+ GameDialogMessagesEditFiltersButtonSave = 31,
47
+ GameDialogMessagesEditFiltersButtonReset = 32,
48
+ GameDialogMessagesEditFiltersButtonNew = 33,
49
+ GameDialogMessagesEditFiltersMessageTooltipLabelSources = 34,
50
+ GameDialogMessagesEditFiltersMessageTooltipLabelSourcesSummary = 35,
51
+ GameDialogNotesNoteTime = 36,
52
+ GameDialogNotesNoteNumber = 37,
53
+ GameDialogNotesNoteLockedTitle = 38,
54
+ GameDialogNotesNoteLockedDescription = 39,
55
+ GameDialogNotesLinkId = 40,
56
+ GameDialogNotesLinkLearnMore = 41,
57
+ GameDialogNotesSettingsPinUnreadNotesAutomatically = 42,
58
+ GameDialogMilestonesInvisibleMilestone = 43,
59
+ GameDialogMilestonesProgress = 44,
60
+ GameDialogMilestonesProgressHidden = 45,
61
+ GameDialogMilestonesMilestone = 46,
62
+ GameDialogMilestonesTooltipMystery = 47,
63
+ GameDialogMilestonesTooltipInvisible = 48,
64
+ GameDialogUnlockablesHeadingNotUnlockableInMode = 49,
65
+ GameDialogUnlockablesHeadingAlreadyUnlocked = 50,
66
+ GameDialogUnlockablesLabelPlusHidden = 51,
67
+ GameDialogUnlockablesNotUnlockable = 52,
68
+ GameDialogSkillsSkill = 53,
69
+ GameDialogSkillsSkillHover = 54,
70
+ GameDialogMapDurability = 55,
71
+ GameDialogMapTooltipRiddle = 56,
72
+ GameDialogMapTooltipRotateClockwise = 57,
73
+ GameDialogMapTooltipRotateCounterClockwise = 58,
74
+ GameDialogMapTooltipFlipHorizontal = 59,
75
+ GameDialogMapTooltipFlipVertical = 60,
76
+ GameDialogMapTooltipResetView = 61,
77
+ GameDialogMapTooltipCopyMap = 62,
78
+ GameDialogMapTooltipCopyMapRequirementMissing = 63,
79
+ GameDialogMapCheckButtonAlwaysOpaque = 64,
80
+ GameDialogMapCheckButtonUseOnlyIntegerZoomLevels = 65,
81
+ GameDialogMapLabelTheme = 66,
82
+ GameDialogQuestsLink = 67,
83
+ GameDialogQuestsLinkChildQuest = 68,
84
+ GameDialogQuestsChildQuests = 69,
85
+ GameDialogQuestsRequirements = 70,
86
+ GameDialogQuestsActiveQuests = 71,
87
+ GameDialogQuestsCompletedQuests = 72,
88
+ GameDialogQuestsCompleteQuest = 73,
89
+ GameDialogQuestsRequirementSkip = 74,
90
+ GameDialogQuestsReActivateQuest = 75,
91
+ GameDialogIslandsCloseOnTravel = 76,
92
+ GameDialogIslandsShipTitle = 77,
93
+ GameDialogIslandsNoPort = 78,
94
+ GameDialogIslandsConstructLighthousesToBuildMorePorts = 79,
95
+ GameTooltipInspect = 80,
96
+ GameTooltipShowMoreInformation = 81,
97
+ GameTooltipDefenseLabelBase = 82,
98
+ GameTooltipDefenseLabelVehicleBonus = 83,
99
+ GameTooltipDefenseLabelBaseDefenseMultiplier = 84,
100
+ GameTooltipDefenseInsulationWeight = 85,
101
+ GameTooltipDefenseInsulationWeightLabel = 86,
102
+ GameTooltipDefenseInsulationWeightTooltip = 87,
103
+ GameTooltipDefenseInsulationNotRequired = 88,
104
+ GameTooltipDefenseInsulationNotRequiredTooltip = 89,
105
+ GameTooltipItemUseLabelMaxWeight = 90,
106
+ GameTooltipMagicalLabel = 91,
107
+ GameTooltipSharedUsesLabel = 92,
108
+ GameTooltipSharedLabelTurns = 93,
109
+ GameTooltipSharedLabelTurnsAgo = 94,
110
+ GameTooltipSharedLabelUntamesIn = 95,
111
+ GameTooltipSharedLabelTimesTamed = 96,
112
+ GameTooltipSharedLabelTimesPetted = 97,
113
+ GameTooltipRecipeLabelSkill = 98,
114
+ GameTooltipRecipeLabelLevel = 99,
115
+ GameTooltipRecipeLabelEfficacy = 100,
116
+ GameTooltipRecipeLabelEfficacyHigh = 101,
117
+ GameTooltipRecipeLabelEfficacyHighest = 102,
118
+ GameTooltipRecipeLabelEfficacyLow = 103,
119
+ GameTooltipRecipeLabelEfficacyLowest = 104,
120
+ GameTooltipRecipeLabelEfficacyMed = 105,
121
+ GameTooltipRecipeLabelEfficacyLabel = 106,
122
+ GameTooltipRecipeLabelSuccessChance = 107,
123
+ GameTooltipRecipeLabelQualityChance = 108,
124
+ GameTooltipRecipeLabelMasterCraftChance = 109,
125
+ GameTooltipRecipeNearby = 110,
126
+ GameTooltipRecipeFireSource = 111,
127
+ GameTooltipRecipeRequirement = 112,
128
+ GameTooltipRecipeLabelRequired = 113,
129
+ GameTooltipRecipeLabelConsumed = 114,
130
+ GameTooltipItemSkillSource = 115,
131
+ GameTooltipItemUseActionOnConsumeTooltipBase = 116,
132
+ GameTooltipItemUseActionOnConsumeTooltipSkill = 117,
133
+ GameTooltipItemUseActionOnConsumeTooltipQuality = 118,
134
+ GameTooltipItemUseActionOnConsumeTooltipMagical = 119,
135
+ GameTooltipItemUseActionOnConsumeTooltipMagicalStat = 120,
136
+ GameTooltipItemUseActionSharedLabelRequirements = 121,
137
+ GameTooltipItemUseActionDismantleProduces = 122,
138
+ GameTooltipSharedUseLabelLightSource = 123,
139
+ GameTooltipItemUseLabelTelescopy = 124,
140
+ GameTooltipItemDecay = 125,
141
+ GameTooltipItemDecayExact = 126,
142
+ GameTooltipItemDecayRate = 127,
143
+ GameTooltipItemDecayRateTooltip = 128,
144
+ GameTooltipItemWeight = 129,
145
+ GameTooltipItemInvoke = 130,
146
+ GameTooltipItemWeightBase = 131,
147
+ GameTooltipItemWeightStored = 132,
148
+ GameTooltipItemWeightStoredReduction = 133,
149
+ GameTooltipItemLabelRange = 134,
150
+ GameTooltipItemLabelAccuracy = 135,
151
+ GameTooltipItemMagicalSource = 136,
152
+ GameTooltipItemGroupingsLabel = 137,
153
+ GameTooltipItemGroup = 138,
154
+ GameTooltipItemLabelUsesWhenBuilt = 139,
155
+ GameTooltipItemWorth = 140,
156
+ GameTooltipItemProtected = 141,
157
+ GameTooltipItemProtectedSimpleDescription = 142,
158
+ GameTooltipItemProtectedContainer = 143,
159
+ GameTooltipItemVehicle = 144,
160
+ GameTooltipItemVehicleMovementSpeed = 145,
161
+ GameTooltipItemVehicleDefenseBonus = 146,
162
+ GameTooltipItemLabelDismantle = 147,
163
+ GameTooltipItemLabelDismantleRequirement = 148,
164
+ GameTooltipItemQuantityMultiplier = 149,
165
+ GameTooltipItemUseAttack = 150,
166
+ GameTooltipItemUseThrowDamage = 151,
167
+ GameTooltipItemUseCrafting = 152,
168
+ GameTooltipSharedLabelDoodadCraftingBonus = 153,
169
+ GameTooltipItemUseOffering = 154,
170
+ GameTooltipItemUseEquipDefense = 155,
171
+ GameTooltipItemUseEquipDefenseAttribute = 156,
172
+ GameTooltipItemUseMainHand = 157,
173
+ GameTooltipItemUseOffhand = 158,
174
+ GameTooltipItemLabelDamage = 159,
175
+ GameTooltipItemBarterCreditTradeAvailable = 160,
176
+ GameTooltipItemBarterCreditTrade = 161,
177
+ GameTooltipItemBarterCredit = 162,
178
+ GameTooltipItemLabelIsland = 163,
179
+ GameTooltipSharedLabelWeightCapacity = 164,
180
+ GameTooltipSharedLabelScareRadius = 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
+ GameTooltipCreatureLabelAberrant = 254,
270
+ GameTooltipCreatureLabelStatuses = 255,
271
+ GameTooltipCreatureAberrantDescriptionShort = 256,
272
+ GameTooltipCreatureAberrantDescriptionExtra = 257,
273
+ GameTooltipCreatureAberrantDescriptionVerbose = 258,
274
+ GameTooltipCreatureProducingMilk = 259,
275
+ GameTooltipCreatureExactHealth = 260,
276
+ GameTooltipDeityLabelDomains = 261,
277
+ GameTooltipStatFerocityScore = 262,
278
+ GameTooltipStatFerocityCivilizationScore = 263,
279
+ GameTooltipStatFerocityCivilizationScoreTerritory = 264,
280
+ GameTooltipStatTerritoryTier = 265,
281
+ GameTooltipStatFerocityTurn = 266,
282
+ GameTooltipStatFerocityTicks = 267,
283
+ GameTooltipStatFerocityNights = 268,
284
+ GameTooltipStatFerocityDays = 269,
285
+ GameTooltipSharedUndiscovered = 270,
286
+ GameTooltipStatCurseFactors = 271,
287
+ GameStatsStatAttack = 272,
288
+ GameStatsStatGeneric = 273,
289
+ GameStatsStatGenericWithMax = 274,
290
+ GameStatsStatbar = 275,
291
+ GameMenuBarButtonTooltipBindable = 276,
292
+ GameMenuBarButtonTooltipSaveSize = 277,
293
+ GameMenuBarButtonTooltipSaveTurnsAgo = 278,
294
+ GameMenuBarButtonTooltipSaveLastTime = 279,
295
+ GameMenuBarButtonTooltipNotesUnread = 280,
296
+ GameMenuBarButtonTooltipMilestonesDisabled = 281,
297
+ GameMenuBarButtonTooltipQuestsDisabled = 282,
298
+ GameMenuBarContextMenuActionRemoveItem = 283,
299
+ GameMenuBarContextMenuActionInsertItem = 284,
300
+ GameMenuBarContextMenuActionReset = 285,
301
+ GameActionBarContextMenuDisplayBindings = 286,
302
+ GameActionBarContextMenuAutoSelectPrimaryUse = 287,
303
+ GameActionBarContextMenuBringSlotsIntoNewSaves = 288,
304
+ GameActionBarContextMenuConfigure = 289,
305
+ GameActionBarContextMenuSelectModifierOrder = 290,
306
+ GameActionBarContextMenuSelectModifierOrderNoModifier = 291,
307
+ GameActionBarContextMenuAutoSwitchToBestItemOnInaccessible = 292,
308
+ GameActionBarConfigurationDrawerTitle = 293,
309
+ GameActionBarConfigurationDrawerFooterDiscoveryHint = 294,
310
+ GameActionBarConfigurationDrawerFooterDiscoveryHintProgress = 295,
311
+ GameActionBarConfigurationDrawerSlotHintUse = 296,
312
+ GameActionBarConfigurationDrawerSlotHintToggle = 297,
313
+ GameActionBarConfigurationDrawerSlotHintToggleUseOnMove = 298,
314
+ GameActionBarConfigurationDrawerColumnTitleActions = 299,
315
+ GameActionBarConfigurationDrawerColumnTitleItemActions = 300,
316
+ GameActionBarConfigurationDrawerColumnTitleConfiguration = 301,
317
+ GameActionBarConfigurationDrawerButtonEditBindings = 302,
318
+ GameActionBarConfigurationDrawerButtonClearSlot = 303,
319
+ GameActionBarConfigurationDrawerColumnTitleInapplicable = 304,
320
+ GameActionBarConfigurationDrawerButtonUseOnMove = 305,
321
+ GameActionBarConfigurationDrawerButtonUseOnMoveDescription = 306,
322
+ GameActionBarConfigurationDrawerButtonUseOnHoveredTile = 307,
323
+ GameActionBarConfigurationDrawerButtonUseOnHoveredTileDescription = 308,
324
+ GameActionBarConfigurationDrawerModeUseExact = 309,
325
+ GameActionBarConfigurationDrawerModeUseExactNoItemSelected = 310,
326
+ GameActionBarConfigurationDrawerModeUseBest = 311,
327
+ GameActionBarConfigurationDrawerModeUseNone = 312,
328
+ GameActionBarConfigurationDrawerModeUseHovered = 313,
329
+ GameActionBarConfigurationDrawerItemDropdownAny = 314,
330
+ GameActionBarConfigurationDrawerItemDropdownNoTypeSelected = 315,
331
+ GameActionBarConfigurationDrawerButtonDone = 316,
332
+ GameActionBarConfigurationDrawerButtonCraftType = 317,
333
+ GameActionBarSlotTooltipHintUse = 318,
334
+ GameActionBarSlotTooltipHintConfigure = 319,
335
+ GameActionBarSlotTooltipHintUseOnMove = 320,
336
+ GameActionBarSlotTooltipHintUseSlottedItem = 321,
337
+ GameActionBarSlotTooltipHintClear = 322,
338
+ GameActionBarButtonToggleUseWhenMovingTooltip = 323,
339
+ GameActionBarButtonRemoveActionBarRowTooltip = 324,
340
+ GameActionBarButtonAddActionBarRowTooltip = 325,
341
+ GameActionBarButtonConfigureOptions = 326,
342
+ GameMessagesButtonSend = 327,
343
+ GameMessagesContextMenuShowAsDialog = 328,
344
+ GameMessagesContextMenuClear = 329,
345
+ GameMessagesContextMenuCopy = 330,
346
+ GameMessagesContextMenuExport = 331,
347
+ GameMessagesFilter = 332,
348
+ GameMessagesFiltersEdit = 333,
349
+ GameMessagesNewNote = 334,
350
+ GameMessagesTurn = 335,
351
+ GameMessagesDedicatedServerBackup = 336,
352
+ GameMessagesDedicatedServerBackupLimitReached = 337,
353
+ GameMessagesPlaceholderChat = 338,
354
+ GameMessagesButtonShowNewest = 339,
355
+ GameTileInspectionCannotSeeTile = 340,
356
+ MenuAboutTitle = 341,
357
+ MenuAboutDescription = 342,
358
+ MenuAboutGameDescription = 343,
359
+ MenuAboutSectionTeam = 344,
360
+ MenuAboutTeamMemberName = 345,
361
+ MenuAboutTeamMemberNickname = 346,
362
+ MenuAboutSectionContributors = 347,
363
+ MenuAboutSectionSpecialThanks = 348,
364
+ MenuAboutTextSpecialThanksTestorsAndDonators = 349,
365
+ MenuAboutSectionLibraries = 350,
366
+ MenuAboutSectionLibrariesDescription = 351,
367
+ MenuAboutLabelVersion = 352,
368
+ MenuAboutLabelVersionBuild = 353,
369
+ MenuAboutLabelVersionBuildTime = 354,
370
+ MenuBindings = 355,
371
+ MenuBindingsDescription = 356,
372
+ MenuBindingsTooltipBindConflicts = 357,
373
+ MenuBindingsManagedBindableGameActionBarUseSlot = 358,
374
+ MenuBindingsManagedBindableGameActionBarAssignSlot = 359,
375
+ MenuBindingsManagedBindableGameActionBarToggleUseOnMoveSlot = 360,
376
+ MenuChangelogTitle = 361,
377
+ MenuChangelogDescription = 362,
378
+ MenuChangelogHeadingUnchartedWaters = 363,
379
+ MenuChangelogFailedToLoadTitle = 364,
380
+ MenuChangelogFailedToLoadDescription = 365,
381
+ MenuChangelogHeadingChangeCount = 366,
382
+ MenuChangelogButtonCopyChangelog = 367,
383
+ MenuCharacterCreationButtonRandomizeName = 368,
384
+ MenuCharacterCreationButtonExportTooltip = 369,
385
+ MenuCharacterCreationButtonImportTooltip = 370,
386
+ MenuCharacterCreationButtonStartGame = 371,
387
+ MenuCharacterCreationButtonJoinGame = 372,
388
+ MenuCharacterCreationDescription = 373,
389
+ MenuCharacterCreationHeadingHairColor = 374,
390
+ MenuCharacterCreationHeadingHairStyle = 375,
391
+ MenuCharacterCreationHeadingSkinTone = 376,
392
+ MenuCharacterCreationLabelName = 377,
393
+ MenuCharacterCreationTitle = 378,
394
+ MenuCharacterCreationButtonRotateLeftTooltip = 379,
395
+ MenuCharacterCreationButtonRotateRightTooltip = 380,
396
+ MenuCharacterCreationButtonRandomizeTooltip = 381,
397
+ MenuCharacterSelectionButtonNewCharacter = 382,
398
+ MenuCharacterSelectionDescription = 383,
399
+ MenuCharacterSelectionHeadingNoCharacters = 384,
400
+ MenuCharacterSelectionTitle = 385,
401
+ MenuCharacterSelectionLabelLastUse = 386,
402
+ MenuCharacterSelectionLabelUseCount = 387,
403
+ MenuCharacterSelectionCharacterButtonDeleteTooltip = 388,
404
+ MenuCharacterSelectionCharacterButtonCustomizeTooltip = 389,
405
+ MenuDevelopmentBranchTitle = 390,
406
+ MenuDevelopmentBranchSuperTitle = 391,
407
+ MenuDevelopmentBranchWarning = 392,
408
+ MenuDevelopmentBranchStatus = 393,
409
+ MenuDevelopmentBranchStatusUnavailable = 394,
410
+ MenuErrorReportingTitle = 395,
411
+ MenuErrorReportingDescription = 396,
412
+ MenuErrorReportingContentsTitle = 397,
413
+ MenuErrorReportingContentsDescription = 398,
414
+ MenuMultiplayerDescription = 399,
415
+ MenuMultiplayerTitle = 400,
416
+ MenuMultiplayerButtonJoinById = 401,
417
+ MenuMultiplayerServerLabelDays = 402,
418
+ MenuMultiplayerServerLabelIsland = 403,
419
+ MenuMultiplayerButtonNewGame = 404,
420
+ MenuMultiplayerButtonLoadGame = 405,
421
+ MenuMultiplayerServerTooltipPVP = 406,
422
+ MenuMultiplayerServerTooltipModsLabel = 407,
423
+ MenuMultiplayerServerTooltipFriendsLabel = 408,
424
+ MenuMultiplayerServerPlayers = 409,
425
+ MenuMultiplayerServerLobbyType = 410,
426
+ MenuMultiplayerServerRegion = 411,
427
+ MenuMultiplayerServerHost = 412,
428
+ MenuMultiplayerServerVersion = 413,
429
+ MenuMultiplayerServerVersionUnknown = 414,
430
+ MenuMultiplayerServerDedicated = 415,
431
+ MenuMultiplayerHeadingPlayersOnline = 416,
432
+ MenuMultiplayerServerModInfo = 417,
433
+ MenuMultiplayerServerModUnableToLoad = 418,
434
+ MenuMultiplayerServerLabelTerritoryTier = 419,
435
+ MenuGameEndTitleDead = 420,
436
+ MenuGameEndTitleWon = 421,
437
+ MenuGameEndShareFacebook = 422,
438
+ MenuGameEndShareTwitter = 423,
439
+ MenuGameEndContinueAsGhost = 424,
440
+ MenuGameEndRespawnInCasualMode = 425,
441
+ MenuGameEndRespawnAsNewCharacter = 426,
442
+ MenuGameEndReturnToIsland = 427,
443
+ MenuGameEndExitToMenu = 428,
444
+ MenuHelpTitle = 429,
445
+ MenuHelpDescription = 430,
446
+ MenuHelpLabelSearch = 431,
447
+ MenuHighscoresTitle = 432,
448
+ MenuHighscoresDescription = 433,
449
+ MenuHighscoresDifficultyFilterAll = 434,
450
+ MenuHighscoresHighscoreLabelDifficulty = 435,
451
+ MenuHighscoresHighscoreLabelTurns = 436,
452
+ MenuHighscoresHighscoreLabelScore = 437,
453
+ MenuHighscoresHighscoreLabelPlace = 438,
454
+ MenuHighscoresHighscoreLabelDate = 439,
455
+ MenuHighscoresHighscoreLabelDeathBy = 440,
456
+ MenuHighscoresHighscoreTitle = 441,
457
+ MenuHighscoresCharacterNameUnknown = 442,
458
+ MenuHighscoresHighscoreReplayWithSettings = 443,
459
+ MenuLoadGameButtonSaveSlot = 444,
460
+ MenuLoadGameButtonNewGame = 445,
461
+ MenuLoadGameButtonNewGameButtonImportTooltip = 446,
462
+ MenuLoadGameDescription = 447,
463
+ MenuLoadGameSaveButtonDeleteTooltip = 448,
464
+ MenuLoadGameSaveButtonEditNameTooltip = 449,
465
+ MenuLoadGameSaveButtonExportTooltip = 450,
466
+ MenuLoadGameSaveTooltipLabelCreatedTime = 451,
467
+ MenuLoadGameSaveTooltipLabelSaveTime = 452,
468
+ MenuLoadGameSaveTooltipLabelGameMode = 453,
469
+ MenuLoadGameSaveTooltipLabelScore = 454,
470
+ MenuLoadGameSaveTooltipLabelSeed = 455,
471
+ MenuLoadGameSaveTooltipLabelTurns = 456,
472
+ MenuLoadGameSaveTooltipLabelMods = 457,
473
+ MenuLoadGameSaveTooltipLabelOriginalVersion = 458,
474
+ MenuLoadGameSaveTooltipMod = 459,
475
+ MenuLoadGameSaveTooltipNew = 460,
476
+ MenuLoadGameSaveTooltipCorrupted = 461,
477
+ MenuLoadGameSaveGame = 462,
478
+ MenuLoadGameSaveGameDescription = 463,
479
+ MenuLoadGameTitle = 464,
480
+ MenuLoadGameLabelSelected = 465,
481
+ MenuLoadGameButtonDeleteSelectedTooltip = 466,
482
+ MenuLoadGameImportSaveFailure = 467,
483
+ MenuLoadGameSectionSavedGames = 468,
484
+ MenuLoadGameSectionImportFolders = 469,
485
+ MenuLoadGameSectionImportFoldersPlaceholderPathToSaves = 470,
486
+ MenuLoadGameSectionImportFoldersButtonAddFolder = 471,
487
+ MenuLoadGameSectionImportFoldersButtonDeleteFolder = 472,
488
+ MenuMainButtonAbout = 473,
489
+ MenuMainButtonChangelog = 474,
490
+ MenuMainButtonMultiplayer = 475,
491
+ MenuMainButtonHighscores = 476,
492
+ MenuMainButtonLoadGame = 477,
493
+ MenuMainButtonMods = 478,
494
+ MenuMainButtonModsTooltipLabelEnabledMods = 479,
495
+ MenuMainButtonModsTooltipAndXOthers = 480,
496
+ MenuMainButtonModsAllDisabled = 481,
497
+ MenuMainButtonNewGame = 482,
498
+ MenuMainButtonNews = 483,
499
+ MenuMainButtonOptions = 484,
500
+ MenuMainButtonQuitGame = 485,
501
+ MenuModsWarningModsDisabledTitle = 486,
502
+ MenuModsWarningModsDisabledDescription = 487,
503
+ MenuModsButtonModdingGuide = 488,
504
+ MenuModsButtonOpenFolder = 489,
505
+ MenuModsButtonOpenWorkshop = 490,
506
+ MenuModsButtonRefreshMods = 491,
507
+ MenuModsDescription = 492,
508
+ MenuModsTitle = 493,
509
+ MenuModsTooltipLabelAuthor = 494,
510
+ MenuModsTooltipLabelTags = 495,
511
+ MenuModsTooltipLabelDependencies = 496,
512
+ MenuModsTooltipLabelProvides = 497,
513
+ MenuModsTooltipLabelVersion = 498,
514
+ MenuModsTooltipLabelDescription = 499,
515
+ MenuModsTooltipLabelInstallDate = 500,
516
+ MenuModsTooltipLabelCreatedDate = 501,
517
+ MenuModsTooltipLabelLastUpdatedDate = 502,
518
+ MenuModsTooltipPreventsMilestoneUnlocks = 503,
519
+ MenuModsTooltipModOptions = 504,
520
+ MenuModsTooltipPublishMod = 505,
521
+ MenuModsTooltipModMoreInformation = 506,
522
+ MenuModsTooltipUninstallMod = 507,
523
+ MenuModsTooltipViewInSteamWorkshop = 508,
524
+ MenuModsTooltipViewGitHub = 509,
525
+ MenuModsTooltipOpenFolder = 510,
526
+ MenuModsButtonEditInternalMods = 511,
527
+ MenuModsSectionHeading = 512,
528
+ MenuModsSubmenuEditInternalModsTitle = 513,
529
+ MenuModsSubmenuEditInternalModsDescription = 514,
530
+ MenuModsSubmenuEditInternalModsPlaceholderAddNewInternalMod = 515,
531
+ MenuModsSubmenuEditInternalModsSectionRootsName = 516,
532
+ MenuModsSubmenuEditInternalModsSectionModsName = 517,
533
+ MenuModsSubmenuEditInternalModsPlaceholderModRootName = 518,
534
+ MenuModsSubmenuEditInternalModsPlaceholderModRootPath = 519,
535
+ MenuNewGameButtonNext = 520,
536
+ MenuNewGameButtonStartServer = 521,
537
+ MenuNewGameDescription = 522,
538
+ MenuNewGameLabelEditName = 523,
539
+ MenuNewGameLabelEditSeed = 524,
540
+ MenuNewGamePlaceholderEditSeed = 525,
541
+ MenuNewGameTitle = 526,
542
+ MenuNewGameChoiceDifficulty = 527,
543
+ MenuNewGameChoiceSingleplayer = 528,
544
+ MenuNewGameChoiceSingleplayerDescription = 529,
545
+ MenuNewGameChoiceMultiplayer = 530,
546
+ MenuNewGameChoiceMultiplayerDescription = 531,
547
+ MenuNewGameChoiceTurnModeManual = 532,
548
+ MenuNewGameChoiceTurnModeManualDescription = 533,
549
+ MenuNewGameChoiceTurnModeRealTime = 534,
550
+ MenuNewGameChoiceTurnModeRealTimeDescription = 535,
551
+ MenuNewGameChoiceTurnModeSimulated = 536,
552
+ MenuNewGameChoiceTurnModeSimulatedDescription = 537,
553
+ MenuNewGameChoiceDifficultyTooltipCustomGameOptions = 538,
554
+ MenuNewGameChoiceDifficultyChallengeDaily = 539,
555
+ MenuNewGameChoiceDifficultyChallengeDailyTooltip = 540,
556
+ MenuNewGameButtonMilestones = 541,
557
+ MenuNewGameButtonMilestonesDescription = 542,
558
+ MenuNewGameTabGameMode = 543,
559
+ MenuNewGameTabMultiplayer = 544,
560
+ MenuNewGameTabGameplayModifiers = 545,
561
+ MenuNewGameHeadingGameMode = 546,
562
+ MenuNewGameHeadingMultiplayer = 547,
563
+ MenuNewGameHeadingGameplayModifiers = 548,
564
+ MenuNewGameMilestoneModifiersUnlockableInMode = 549,
565
+ MenuNewGameChoiceClientsInheritHostModifiers = 550,
566
+ MenuNewGameChoiceClientsInheritHostModifiersDescription = 551,
567
+ MenuNewGameChoiceCustomModifiers = 552,
568
+ MenuNewGameChoiceCustomModifiersDescription = 553,
569
+ MenuMilestoneModifiersTitle = 554,
570
+ MenuMilestoneModifiersDescription = 555,
571
+ MenuCustomGameOptionsTitle = 556,
572
+ MenuCustomGameOptionsDescription = 557,
573
+ MenuCustomGameOptionsRespawnOnDeath = 558,
574
+ MenuCustomGameOptionsRespawnOnDeathDescription = 559,
575
+ MenuCustomGameOptionsUseUnlockedRecipes = 560,
576
+ MenuCustomGameOptionsStartingIslandBiome = 561,
577
+ MenuCustomGameOptionsApplyTravelingEffects = 562,
578
+ MenuCustomGameOptionsApplyTravelingEffectsDescription = 563,
579
+ MenuCustomGameOptionsCreaturesPeaceful = 564,
580
+ MenuCustomGameOptionsCreaturesDisableScared = 565,
581
+ MenuCustomGameOptionsCreaturesDisableScaredDescription = 566,
582
+ MenuCustomGameOptionsCreaturesAberrantSpawns = 567,
583
+ MenuCustomGameOptionsCreaturesAberrantSpawnsDescription = 568,
584
+ MenuCustomGameOptionsCreaturesAberrantSpawnsDescriptionDefault = 569,
585
+ MenuCustomGameOptionsCreaturesAberrantSpawnsDescriptionExclusively = 570,
586
+ MenuCustomGameOptionsCreaturesAberrantSpawnsDescriptionOff = 571,
587
+ MenuCustomGameOptionsCreaturesHeadingIndividualConfigurations = 572,
588
+ MenuCustomGameOptionsCreaturesAllowAberrantSpawns = 573,
589
+ MenuCustomGameOptionsCreaturesAlwaysSpawn = 574,
590
+ MenuCustomGameOptionsCreaturesAllowSpawning = 575,
591
+ MenuCustomGameOptionsCreaturesSpawnLimit = 576,
592
+ MenuCustomGameOptionsCreaturesSpawnLimitDescription = 577,
593
+ MenuCustomGameOptionsCreaturesSpawnRateMultiplier = 578,
594
+ MenuCustomGameOptionsCreaturesSpawnRateMultiplierDescription = 579,
595
+ MenuCustomGameOptionsCreatureNone = 580,
596
+ MenuCustomGameOptionsCreatureConfigure = 581,
597
+ MenuCustomGameOptionsStatMultiplier = 582,
598
+ MenuCustomGameOptionsStatMultiplierTooltip = 583,
599
+ MenuCustomGameOptionsStatRegenerationMultiplierTooltip = 584,
600
+ MenuCustomGameOptionsHeadingGeneral = 585,
601
+ MenuCustomGameOptionsHeadingTravel = 586,
602
+ MenuCustomGameOptionsHeadingTime = 587,
603
+ MenuCustomGameOptionsHeadingStats = 588,
604
+ MenuCustomGameOptionsHeadingItems = 589,
605
+ MenuCustomGameOptionsHeadingCreatures = 590,
606
+ MenuCustomGameOptionsHeadingSkills = 591,
607
+ MenuCustomGameOptionsHeadingStatuses = 592,
608
+ MenuCustomGameOptionsEternalNight = 593,
609
+ MenuCustomGameOptionsEternalNightDescription = 594,
610
+ MenuCustomGameOptionsEternalDay = 595,
611
+ MenuCustomGameOptionsEternalDayDescription = 596,
612
+ MenuCustomGameOptionsTimeFrozen = 597,
613
+ MenuCustomGameOptionsTimeInitial = 598,
614
+ MenuCustomGameOptionsTimeDayLength = 599,
615
+ MenuCustomGameOptionsTimeDayLengthTooltip = 600,
616
+ MenuCustomGameOptionsTimeDayPercent = 601,
617
+ MenuCustomGameOptionsTimeDayPercentTooltip = 602,
618
+ MenuCustomGameOptionsStatStarting = 603,
619
+ MenuCustomGameOptionsStatMax = 604,
620
+ MenuCustomGameOptionsStatStartingDisplay = 605,
621
+ MenuCustomGameOptionsStatMaxDisplay = 606,
622
+ MenuCustomGameOptionsStatNoChange = 607,
623
+ MenuCustomGameOptionsStatBonus = 608,
624
+ MenuCustomGameOptionsStatBonusDisplay = 609,
625
+ MenuCustomGameOptionsStatusPassChanceMultiplier = 610,
626
+ MenuCustomGameOptionsStatusPassChanceMultiplierTooltip = 611,
627
+ MenuCustomGameOptionsStatusStartWith = 612,
628
+ MenuCustomGameOptionsStatusUntreatable = 613,
629
+ MenuCustomGameOptionsStatusUntreatableTooltip = 614,
630
+ MenuCustomGameOptionsSkillInitialRandomCount = 615,
631
+ MenuCustomGameOptionsSkillInitialRandomCountDescription = 616,
632
+ MenuCustomGameOptionsSkillsHeadingIndividualConfigurations = 617,
633
+ MenuCustomGameOptionsSkillsGlobal = 618,
634
+ MenuCustomGameOptionsSkillNone = 619,
635
+ MenuCustomGameOptionsSkillConfigure = 620,
636
+ MenuCustomGameOptionsSkillInitial = 621,
637
+ MenuCustomGameOptionsSkillMultiplier = 622,
638
+ MenuCustomGameOptionsSkillMultiplierTooltip = 623,
639
+ MenuCustomGameOptionsRandomItems = 624,
640
+ MenuCustomGameOptionsRandomItemsDescription = 625,
641
+ MenuCustomGameOptionsItemDurability = 626,
642
+ MenuCustomGameOptionsItemDurabilityTooltip = 627,
643
+ MenuCustomGameOptionsItemDecay = 628,
644
+ MenuCustomGameOptionsItemDecayTooltip = 629,
645
+ MenuCustomGameOptionsExport = 630,
646
+ MenuCustomGameOptionsImport = 631,
647
+ MenuCustomGameOptionsViewGroundItemsAsContainer = 632,
648
+ MenuCustomGameOptionsViewGroundItemsAsContainerDescription = 633,
649
+ MenuNewsDescription = 634,
650
+ MenuNewsHeadingSocial = 635,
651
+ MenuNewsTitle = 636,
652
+ MenuNewsHeadingUnableToLoad = 637,
653
+ MenuNewsButtonAllNews = 638,
654
+ MenuNewsButtonViewChangelog = 639,
655
+ MenuOptionsButtonDitherFogOfWar = 640,
656
+ MenuOptionsButtonHealthVignette = 641,
657
+ MenuOptionsButtonHealthVignetteTooltip = 642,
658
+ MenuOptionsButtonDisableCustomCursor = 643,
659
+ MenuOptionsButtonEnableSmoothZooming = 644,
660
+ MenuOptionsButtonDisplayArticleInObjectNames = 645,
661
+ MenuOptionsButtonDisplayArticleInObjectNamesTooltip = 646,
662
+ MenuOptionsButtonFullscreen = 647,
663
+ MenuOptionsButtonCustomTitleBar = 648,
664
+ MenuOptionsButtonDeveloperMode = 649,
665
+ MenuOptionsButtonReloadGame = 650,
666
+ MenuOptionsButtonReloadStylesheets = 651,
667
+ MenuOptionsButtonReloadTextures = 652,
668
+ MenuOptionsButtonPrepackedSprites = 653,
669
+ MenuOptionsButtonDisposeReflection = 654,
670
+ MenuOptionsButtonExportGlobalSaveData = 655,
671
+ MenuOptionsButtonImportGlobalSaveData = 656,
672
+ MenuOptionsButtonSaveDataBackups = 657,
673
+ MenuOptionsButtonSaveDataBackupsTooltip = 658,
674
+ MenuOptionsButtonSaveDataClearAll = 659,
675
+ MenuOptionsButtonSaveDataClearCharacters = 660,
676
+ MenuOptionsButtonSaveDataClearUI = 661,
677
+ MenuOptionsButtonSaveDataClearHighscores = 662,
678
+ MenuOptionsButtonSaveDataClearMilestones = 663,
679
+ MenuOptionsButtonSaveDataClearOptions = 664,
680
+ MenuOptionsButtonSaveDataClearCraftingRecipes = 665,
681
+ MenuOptionsButtonSaveDataClearSaves = 666,
682
+ MenuOptionsButtonSkipSplash = 667,
683
+ MenuOptionsButtonDisableQuitConfirmation = 668,
684
+ MenuOptionsButtonToggleDevTools = 669,
685
+ MenuOptionsButtonOpenBackupsFolder = 670,
686
+ MenuOptionsButtonOpenLogsFolder = 671,
687
+ MenuOptionsButtonDropLocationFacing = 672,
688
+ MenuOptionsButtonDropLocationFeet = 673,
689
+ MenuOptionsButtonStartTraceRecording = 674,
690
+ MenuOptionsButtonStopTraceRecording = 675,
691
+ MenuOptionsButtonTracingRecordingTooltip = 676,
692
+ MenuOptionsButtonDropLocationFeetWhenFacingBlocked = 677,
693
+ MenuOptionsDescription = 678,
694
+ MenuOptionsHeadingAudio = 679,
695
+ MenuOptionsHeadingDeveloper = 680,
696
+ MenuOptionsHeadingGameplayOptions = 681,
697
+ MenuOptionsHeadingGameplayOptionsDescription = 682,
698
+ MenuOptionsHeadingGameplayOptionsButtonOpenDialog = 683,
699
+ MenuOptionsHeadingOtherOptions = 684,
700
+ MenuOptionsHeadingControls = 685,
701
+ MenuOptionsHeadingModOptions = 686,
702
+ MenuOptionsHeadingSaveData = 687,
703
+ MenuOptionsHeadingTooltipsTile = 688,
704
+ MenuOptionsHeadingVideo = 689,
705
+ MenuOptionsLabelInterfaceScale = 690,
706
+ MenuOptionsLabelHudWidth = 691,
707
+ MenuOptionsLabelTooltipDelay = 692,
708
+ MenuOptionsLabelDirectionTurnDelay = 693,
709
+ MenuOptionsLabelMouseTurnDelay = 694,
710
+ MenuOptionsLabelFontStyle = 695,
711
+ MenuOptionsTooltipTurnDelay = 696,
712
+ MenuOptionsTooltipMouseTurnDelay = 697,
713
+ MenuOptionsTooltipControlsFilter = 698,
714
+ MenuOptionsLabelVolumeEffects = 699,
715
+ MenuOptionsLabelVolumeMusic = 700,
716
+ MenuOptionsTabAudio = 701,
717
+ MenuOptionsTabDeveloper = 702,
718
+ MenuOptionsTabGameplay = 703,
719
+ MenuOptionsTabTooltips = 704,
720
+ MenuOptionsTabOther = 705,
721
+ MenuOptionsTabLanguage = 706,
722
+ MenuOptionsTabControls = 707,
723
+ MenuOptionsTabMods = 708,
724
+ MenuOptionsTabSaveData = 709,
725
+ MenuOptionsTabVideo = 710,
726
+ MenuOptionsTabPerformance = 711,
727
+ MenuOptionsHeadingPerformance = 712,
728
+ MenuOptionsTitle = 713,
729
+ MenuOptionsTooltipMusicNextTrack = 714,
730
+ MenuOptionsBindChoose = 715,
731
+ MenuOptionsBindChooseAdd = 716,
732
+ MenuOptionsBindButtonResetTooltip = 717,
733
+ MenuOptionsBindButtonDeleteTooltip = 718,
734
+ MenuOptionsBindButtonAddTooltip = 719,
735
+ MenuOptionsBindButtonAddMacroTooltip = 720,
736
+ MenuOptionsButtonDiscoverEverything = 721,
737
+ MenuOptionsButtonDiscoverEverythingDescription = 722,
738
+ MenuOptionsButtonGrantAllMilestoneModifiers = 723,
739
+ MenuOptionsButtonGrantAllMilestoneModifiersDescription = 724,
740
+ MenuOptionsButtonDisableMilestonesDescription = 725,
741
+ MenuOptionsButtonAlternatingDirectionMovement = 726,
742
+ MenuOptionsButtonAllowAlternatingDirectionMovementTooltip = 727,
743
+ MenuOptionsButtonSteamInputKeyboardPosition = 728,
744
+ MenuOptionsButtonAlwaysShowMoreInformationTooltip = 729,
745
+ MenuOptionsButtonEnableLowPowerMode = 730,
746
+ MenuOptionsButtonEnableLowPowerModeTooltip = 731,
747
+ MenuOptionsButtonDisableAcrylicTransparency = 732,
748
+ MenuOptionsButtonDisableAcrylicTransparencyTooltip = 733,
749
+ MenuOptionsButtonDisableOverlaySupport = 734,
750
+ MenuOptionsButtonDisableOverlaySupportTooltip = 735,
751
+ MenuOptionsButtonDisableUIEffects = 736,
752
+ MenuOptionsButtonDisableUIEffectsTooltip = 737,
753
+ MenuOptionsButtonDisableUIOpacity = 738,
754
+ MenuOptionsButtonDisableUIOpacityTooltip = 739,
755
+ MenuOptionsButtonDisableMovementAnimations = 740,
756
+ MenuOptionsButtonDisableMovementAnimationsTooltip = 741,
757
+ MenuOptionsButtonAutoAttack = 742,
758
+ MenuOptionsButtonAutoAttackTooltip = 743,
759
+ MenuOptionsButtonDropOnDismantle = 744,
760
+ MenuOptionsButtonDropOnDismantleTooltip = 745,
761
+ MenuOptionsButtonDropOnDisassemble = 746,
762
+ MenuOptionsButtonDropOnDisassembleTooltip = 747,
763
+ MenuOptionsButtonDisableCraftingProtectedItems = 748,
764
+ MenuOptionsButtonDisableCraftingProtectedItemsTooltip = 749,
765
+ MenuOptionsButtonDropOnGatherHarvest = 750,
766
+ MenuOptionsButtonDropOnGatherHarvestTooltip = 751,
767
+ MenuOptionsButtonUseAdjacentContainers = 752,
768
+ MenuOptionsButtonUseAdjacentContainersTooltip = 753,
769
+ MenuOptionsButtonHideEquippedHeadgear = 754,
770
+ MenuOptionsButtonHideEquippedHeadgearTooltip = 755,
771
+ MenuOptionsButtonDisableItemNotifiers = 756,
772
+ MenuOptionsButtonDisableItemNotifiersTooltip = 757,
773
+ MenuOptionsButtonLeftHanded = 758,
774
+ MenuOptionsButtonLeftHandedTooltip = 759,
775
+ MenuOptionsButtonAutoSave = 760,
776
+ MenuOptionsRangeAutoSaveTimerLabel = 761,
777
+ MenuOptionsRangeAutoSaveTimerTurnsDisplay = 762,
778
+ MenuOptionsRangeAutoSaveTimerTimeDisplay = 763,
779
+ MenuOptionsButtonDropIntoContainers = 764,
780
+ MenuOptionsButtonDropIntoContainersTooltip = 765,
781
+ MenuOptionsButtonWarnOnDangerousActions = 766,
782
+ MenuOptionsButtonWarnOnDangerousActionsTooltip = 767,
783
+ MenuOptionsButtonWarnOnDroppingActions = 768,
784
+ MenuOptionsButtonWarnOnDroppingActionsTooltip = 769,
785
+ MenuOptionsButtonWarnOnDestructiveActions = 770,
786
+ MenuOptionsButtonWarnOnDestructiveActionsTooltip = 771,
787
+ MenuOptionsButtonWarnWhenBreakingItemsOnCraft = 772,
788
+ MenuOptionsButtonWarnWhenBreakingItemsOnCraftTooltip = 773,
789
+ MenuOptionsButtonWarnWhenBreakingItemsOnUse = 774,
790
+ MenuOptionsButtonWarnWhenBreakingItemsOnUseTooltip = 775,
791
+ MenuOptionsHeadingWarnWhenBreakingItems = 776,
792
+ MenuOptionsButtonSaveDataClearBindings = 777,
793
+ MenuOptionsButtonDisableMilestones = 778,
794
+ MenuOptionsLabelSaveDataRemoval = 779,
795
+ MenuOptionsTooltipDialogOpacity = 780,
796
+ MenuOptionsLabelDialogOpacity = 781,
797
+ MenuOptionsDeveloperSteamBetas = 782,
798
+ MenuOptionsDeveloperSteamBetaName = 783,
799
+ MenuOptionsDeveloperLogSourceFilterHeading = 784,
800
+ MenuOptionsDeveloperUIExperiments = 785,
801
+ MenuOptionsDeveloperUIExperimentsDescription = 786,
802
+ MenuOptionsDeveloperDebugging = 787,
803
+ MenuOptionsDeveloperDebuggingDescription = 788,
804
+ MenuOptionsDeveloperToggleContainerDesyncDebugging = 789,
805
+ MenuOptionsDeveloperToggleContainerDesyncDebuggingDescription = 790,
806
+ MenuOptionsDeveloperReportErrors = 791,
807
+ MenuOptionsDeveloperReportErrorsDescription = 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
+ MenuSharedValuePercentage = 863,
879
+ MenuSharedMilestonesNotUnlockable = 864,
880
+ MenuSharedMilestonesNotUnlockableDescription = 865,
881
+ MenuSharedMilestonesNotUnlockableButtonShowMods = 866,
882
+ MenuSharedButtonDisableAll = 867,
883
+ MenuSharedButtonEnableAll = 868,
884
+ MenuSharedMilestoneModifiersSelected = 869,
885
+ MiscSortBy = 870,
886
+ MiscSortCustom = 871,
887
+ MiscSortDirection = 872,
888
+ MiscFilter = 873,
889
+ MiscNone = 874,
890
+ MiscPlayerNameDefault = 875,
891
+ MiscPlayerNameServer = 876,
892
+ MiscSaveNameDefault = 877,
893
+ MiscSaveNameDailyChallenge = 878,
894
+ MiscSaveNameChallenge = 879,
895
+ MiscSaveVersionUnknown = 880,
896
+ MiscVersion = 881,
897
+ MiscVersionBuildInfoTooltip = 882,
898
+ MiscVersionUpdate = 883,
899
+ MiscTime = 884,
900
+ MiscTimeMeridiem = 885,
901
+ MiscError = 886,
902
+ MiscContextMenuCopyTooltip = 887,
903
+ MiscBindableNoBindings = 888,
904
+ MiscBindingIcon = 889,
905
+ MiscBindingIconThen = 890,
906
+ DifficultyOptionsPeaceful = 891,
907
+ DifficultyOptionsAberrantSpawnsDisabled = 892,
908
+ DifficultyOptionsAberrantSpawnsOnly = 893,
909
+ DifficultyOptionsCreatureSpawningDisabled = 894,
910
+ DifficultyOptionsCreatureAlwaysSpawns = 895,
911
+ DifficultyOptionsCreatureSpawnsDefault = 896,
912
+ DifficultyOptionsCreatureSpawnsAberrantOnly = 897,
913
+ DifficultyOptionsCreatureSpawnsNoAberrants = 898,
914
+ DifficultyOptionsSpawnLimit = 899,
915
+ DifficultyOptionsSpawnRateMultiplier = 900,
916
+ DifficultyOptionsDisableScared = 901,
917
+ DifficultyOptionsRespawn = 902,
918
+ DifficultyOptionsEternalNight = 903,
919
+ DifficultyOptionsEternalDay = 904,
920
+ DifficultyOptionsTimeInitial = 905,
921
+ DifficultyOptionsTimeFrozen = 906,
922
+ DifficultyOptionsTimeDayLength = 907,
923
+ DifficultyOptionsTimeDayPercent = 908,
924
+ DifficultyOptionsNoItems = 909,
925
+ DifficultyOptionsRecipes = 910,
926
+ DifficultyOptionsStartingIsland = 911,
927
+ DifficultyOptionsTravelingEffectsDisabled = 912,
928
+ DifficultyOptionsLuck = 913,
929
+ DifficultyOptionsWeightBonus = 914,
930
+ DifficultyOptionsStatInitial = 915,
931
+ DifficultyOptionsStatMax = 916,
932
+ DifficultyOptionsStatMultiplier = 917,
933
+ DifficultyOptionsStatusStartWith = 918,
934
+ DifficultyOptionsStatusUntreatable = 919,
935
+ DifficultyOptionsStatusPassChanceMultiplier = 920,
936
+ DifficultyOptionsNoRandomSkills = 921,
937
+ DifficultyOptionsSkillStartingCount = 922,
938
+ DifficultyOptionsSkillGainMultiplier = 923,
939
+ DifficultyOptionsSkillInitial = 924,
940
+ DifficultyOptionsStatusPermanent = 925,
941
+ DifficultyOptionsStatusRateMultiplier = 926,
942
+ DifficultyOptionsStatusMultiplier = 927,
943
+ DifficultyOptionsItemDurabilityMultiplier = 928,
944
+ DifficultyOptionsItemDecayMultiplier = 929,
945
+ DifficultyOptionsTileContainersEnabled = 930,
946
+ TabCrafting = 931,
947
+ TabDismantle = 932,
948
+ WindowTitleContainer = 933,
949
+ WindowTitleInventory = 934
929
950
  }
930
951
  export default UiTranslation;