@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,835 +16,860 @@ declare enum Message {
16
16
  AbsorbNotPossible = 4,
17
17
  ActionAlterAltered = 5,
18
18
  ActionAlterFailed = 6,
19
- ActionAlterNotPossible = 7,
20
- ActionAscendDescendNotCaveEntrance = 8,
21
- ActionAttachAlreadyHasItem = 9,
22
- ActionAttachAttachedItem = 10,
23
- ActionAttachAttachingItem = 11,
24
- ActionAttachCannotAttach = 12,
25
- ActionAttachNothingToAttachItemTo = 13,
26
- ActionBuildTooDeep = 14,
27
- ActionButcherReleasesLava = 15,
28
- ActionCageCreatureCannotBeCaged = 16,
29
- ActionCageCreatureNoCreature = 17,
30
- ActionCastAreaOverfished = 18,
31
- ActionConsecrateNoRunes = 19,
32
- ActionConsecrateRunesConsecrated = 20,
33
- ActionConsecrateRunesConsecratedChaos = 21,
34
- ActionConsecrateRunesConsecratedEvil = 22,
35
- ActionConsecrateRunesConsecratedGood = 23,
36
- ActionConsecrateRunesConsecratedNothingUpgraded = 24,
37
- ActionConsecrateRunesConsecratedResults = 25,
38
- ActionConsumeItemTypeStats = 26,
39
- ActionContextAllowedFireToSpread = 27,
40
- ActionContextGainedSkill = 28,
41
- ActionContextKilledCreature = 29,
42
- ActionContextKilledPlayer = 30,
43
- ActionContextKilledPlayerWithPet = 31,
44
- ActionContextRested = 32,
45
- ActionContextSlept = 33,
46
- ActionContextTamedCreature = 34,
47
- ActionCraftEfficacy = 35,
48
- ActionCraftEfficacyHigh = 36,
49
- ActionCraftEfficacyHighest = 37,
50
- ActionCraftEfficacyLow = 38,
51
- ActionCraftEfficacyLowest = 39,
52
- ActionCraftEfficacyMed = 40,
53
- ActionCraftEfficacyPercent = 41,
54
- ActionCraftYouLackTheRequirements = 42,
55
- ActionDetachContainerDetachContainer = 43,
56
- ActionDetachContainerNoDetach = 44,
57
- ActionDigTooDeep = 45,
58
- ActionDigWaterFilledHole = 46,
59
- ActionDisassembleNoItemsSalvaged = 47,
60
- ActionDisassembleSalvaged = 48,
61
- ActionDismantleSeparated = 49,
62
- ActionDisplayItemDisplayed = 50,
63
- ActionDisplayItemEmptyContainerBeforehand = 51,
64
- ActionDisplayItemReturned = 52,
65
- ActionDrinkInFrontNoDrink = 53,
66
- ActionDropCannotUseBlocked = 54,
67
- ActionDropCannotUseItemEquipped = 55,
68
- ActionDropCannotUseItemProtected = 56,
69
- ActionDropCannotUseItemProtectedDangerous = 57,
70
- ActionDropCannotUseNoItems = 58,
71
- ActionDropCannotUseNoRoomMultipleItems = 59,
72
- ActionDumpItemsCannotUseBlocked = 60,
73
- ActionDumpItemsCannotUseNothingToDumpOut = 61,
74
- ActionDumpItemsDumpedItems = 62,
75
- ActionEnhanceEnhanced = 63,
76
- ActionEnhanceFailed = 64,
77
- ActionEnhanceNotPossible = 65,
78
- ActionEquipWillBreakOnDamage = 66,
79
- ActionFishingNothingBiting = 67,
80
- ActionFishingSlipped = 68,
81
- ActionFishingTooShallow = 69,
82
- ActionInvokeCannotUseSilence = 70,
83
- ActionInvokeChaosNoEffect = 71,
84
- ActionInvokeEvilCreaturesAttracted = 72,
85
- ActionInvokeEvilCreaturesNoneSummoned = 73,
86
- ActionInvokeGoodCreaturesPacified = 74,
87
- ActionInvokeGoodCreaturesPacifiedAttacked = 75,
88
- ActionInvokeGoodCreaturesPacifiedNone = 76,
89
- ActionJumpCannotJump = 77,
90
- ActionMeleeNothingToAttack = 78,
91
- ActionMoveItemCannotUseContainerTooFarAway = 79,
92
- ActionMoveItemCannotUseEquipped = 80,
93
- ActionMoveItemCannotUseFromInvalidContainer = 81,
94
- ActionMoveItemCannotUseInvalidContainer = 82,
95
- ActionMoveItemCannotUseItemFilteredOut = 83,
96
- ActionMoveItemCannotUseItemQualityOrTypeIncorrect = 84,
97
- ActionMoveItemCannotUseItemTooFarAway = 85,
98
- ActionMoveItemCannotUseMovingFromMultipleContainers = 86,
99
- ActionMoveItemCannotUseNoContainerToMoveTo = 87,
100
- ActionMoveItemCannotUseNoItems = 88,
101
- ActionMoveItemCannotUseNoRoom = 89,
102
- ActionMoveItemCannotUseProtected = 90,
103
- ActionMoveToSwimOffEdgeCannotCombatTides = 91,
104
- ActionNavigateMoon = 92,
105
- ActionNavigateNotOverworld = 93,
106
- ActionNavigateSun = 94,
107
- ActionNavigateUseSextant = 95,
108
- ActionPetCreatureRefused = 96,
109
- ActionPetNoTamedCreature = 97,
110
- ActionPickUpAllItemsNoItems = 98,
111
- ActionPickUpDoodadCannotUseContainsItems = 99,
112
- ActionPickUpExcrementNoExcrement = 100,
113
- ActionPickUpItemNoItem = 101,
114
- ActionPickUpNoPickUp = 102,
115
- ActionPourNoEffect = 103,
116
- ActionRefineNoDurability = 104,
117
- ActionReleaseNoTamedCreature = 105,
118
- ActionRenameIsland = 106,
119
- ActionRepairMaxDurabilityTooLow = 107,
120
- ActionReshapeFailed = 108,
121
- ActionReshapeNotPossibleBonus = 109,
122
- ActionReshapeReshaped = 110,
123
- ActionSailToCivilizationNotInsideBoat = 111,
124
- ActionSailToIsland = 112,
125
- ActionSailToIslandArrived = 113,
126
- ActionSailToIslandCannotUseCannotReachEdge = 114,
127
- ActionSailToIslandCannotUseCannotReachPort = 115,
128
- ActionSailToIslandCannotUseGhost = 116,
129
- ActionSailToIslandCannotUseInvalidDestination = 117,
130
- ActionSailToIslandCannotUseNoDestination = 118,
131
- ActionSailToIslandCannotUseNotEnoughStamina = 119,
132
- ActionSailToIslandCannotUseNotEnoughSwimmingSkill = 120,
133
- ActionSailToIslandCannotUseTravellingIsDisallowedInTheseLands = 121,
134
- ActionSailToIslandPlayerArriving = 122,
135
- ActionSailToIslandPlayerDeparting = 123,
136
- ActionSetCreatureAiAlreadyCommanded = 124,
137
- ActionSetCreatureAiCannotCommand = 125,
138
- ActionSetCreatureAiNotEnoughSkill = 126,
139
- ActionSetCreatureAiNotEnoughTames = 127,
140
- ActionSetDownNotEnoughRoom = 128,
141
- ActionShipToIslandNoDestination = 129,
142
- ActionSwapEquipmentCannotUseNoEquipmentToSwap = 130,
143
- ActionTameCreatureTamed = 131,
144
- ActionTameNoCreature = 132,
145
- ActionTestDepthNothingToTest = 133,
146
- ActionTestDepthWell = 134,
147
- ActionToggleContainerCannotUseAlreadyClosed = 135,
148
- ActionToggleContainerCannotUseNoContainer = 136,
149
- ActionToggleContainerCannotUseNoContainerToClose = 137,
150
- ActionToggleContainerCannotUseNoContainerToOpen = 138,
151
- ActionToggleContainerCannotUseNotAccessible = 139,
152
- ActionToggleContainerCannotUseUnknownContainer = 140,
153
- ActionToggleDoorNoDoor = 141,
154
- ActionToggleHitchAlreadyHitched = 142,
155
- ActionToggleHitchAlreadyUnhitched = 143,
156
- ActionToggleHitchNoCreature = 144,
157
- ActionToggleHitchNoHitch = 145,
158
- ActionToggleTilledAlreadyPacked = 146,
159
- ActionToggleTilledAlreadyTilled = 147,
160
- ActionToggleTilledDug = 148,
161
- ActionTradeCannotUseExceedsCarryWeight = 149,
162
- ActionTradeCannotUseNotEnoughCredit = 150,
163
- ActionTradeCannotUseNothingToTrade = 151,
164
- ActionTradeCannotUseTradedTooMuch = 152,
165
- ActionTradeCreditChange = 153,
166
- ActionTradeCreditChangeDecrease = 154,
167
- ActionTradeCreditChangeIncrease = 155,
168
- ActionTradeDialogue1 = 156,
169
- ActionTradeDialogue2 = 157,
170
- ActionTradeDialogue3 = 158,
171
- ActionTradeDialogue4 = 159,
172
- ActionTradeIndicateUntradable = 160,
173
- ActionTradeMerchantItems = 161,
174
- ActionTradeYourItems = 162,
175
- ActionUncageCannotUncageHere = 163,
176
- ActionUpgradeFailed = 164,
177
- ActionUpgradeNotMagical = 165,
178
- ActionUpgradeNotPossible = 166,
179
- ActionUpgradeUpgraded = 167,
180
- ActionUseItemWeaponNeeded = 168,
181
- ActionViewItemsCannotUseBlocked = 169,
182
- AddedFuelToFire = 170,
183
- AddedFuelToTorch = 171,
184
- AllEquipmentUnEquipped = 172,
185
- AlreadyDesalinatedWaterInStill = 173,
186
- AlreadyFullyRefined = 174,
187
- AlreadyFullyRepaired = 175,
188
- AlreadyPreserved = 176,
189
- AnotherIsland = 177,
190
- AnUnknownItem = 178,
191
- AppearedNotEffectiveForGathering = 179,
192
- ArmorAppeared = 180,
193
- ArmorProtectedFromInjuryAgainst = 181,
194
- AttemptToSoothBurnInWater = 182,
195
- AttemptToSoothFrostbiteWithFire = 183,
196
- AttemptToSoothFrostbiteWithFireTooHot = 184,
197
- AttemptToTill = 185,
198
- BadlyBurnedLostHealth = 186,
199
- BeenPoisoned = 187,
200
- BeginSleeping = 188,
201
- BeginUsingVehicle = 189,
202
- BleedingHasStopped = 190,
203
- BleedingProfusely = 191,
204
- BleedingToDeathLostHealth = 192,
205
- BookBlank = 193,
206
- BookContains = 194,
207
- BookCrumbles = 195,
208
- BookDiagrams = 196,
209
- BookEmpty = 197,
210
- BookNothing = 198,
211
- BookOpen = 199,
212
- BookScribbles = 200,
213
- BothEffectiveIneffective = 201,
214
- BrokeIntoPieces = 202,
215
- BrokenOnImpact = 203,
216
- BrokenWhileFiring = 204,
217
- Build = 205,
218
- Burned = 206,
219
- CannotAddAnyMoreFuel = 207,
220
- CannotAnythingHere = 208,
221
- CannotBeCrafted = 209,
222
- CannotBePerformedOverWater = 210,
223
- CannotBePlacedHere = 211,
224
- CannotBePreserved = 212,
225
- CannotBeRefined = 213,
226
- CannotBeRefinedReinforcementNeeded = 214,
227
- CannotBeReinforced = 215,
228
- CannotBeRepaired = 216,
229
- CannotBuildHere = 217,
230
- CannotDigWithHands = 218,
231
- CannotEquipThatThere = 219,
232
- CannotFishFor = 220,
233
- CannotFromHere = 221,
234
- CannotHere = 222,
235
- CannotInWater = 223,
236
- CannotLeave = 224,
237
- CannotNoTreasure = 225,
238
- CannotPickUpLockedContainer = 226,
239
- CannotPickUpWhileLit = 227,
240
- CannotPlaceContainerInItself = 228,
241
- CannotPlaceHere = 229,
242
- CannotPlaceThatFromHere = 230,
243
- CannotPlaceThatHere = 231,
244
- CannotPlaceThatOverWater = 232,
245
- CannotPlantHereTilled = 233,
246
- CannotRepairWhileLit = 234,
247
- CannotRestHere = 235,
248
- CannotShipNoItems = 236,
249
- CannotShipNoPath = 237,
250
- CannotSleepHere = 238,
251
- CannotStartFireHere = 239,
252
- CannotToAnythingHere = 240,
253
- CannotToTellTime = 241,
254
- CannotUseCommand = 242,
255
- CannotWhenProtected = 243,
256
- CannotWhenProtectedDangerousAction = 244,
257
- CannotWhenProtectedDurability = 245,
258
- CarryingTooMuchWeight = 246,
259
- CarvedUpCorpse = 247,
260
- Carving = 248,
261
- CastYourLine = 249,
262
- CaughtFish = 250,
263
- ChatBanCommand = 251,
264
- ChatBannedCommand = 252,
265
- ChatCommandsCommand = 253,
266
- ChatCommandsCommandCommand = 254,
267
- ChatPingCommand = 255,
268
- ChatPlayerMessage = 256,
269
- ChatPlayersCommand = 257,
270
- ChatServerMessage = 258,
271
- ChatUnbanCommand = 259,
272
- ChatUnknownCommand = 260,
273
- Chop = 261,
274
- Chopping = 262,
275
- ClearedBlood = 263,
276
- CloseToBeingDestroyed = 264,
277
- CommandAttack = 265,
278
- CommandDefend = 266,
279
- CommandFollowClose = 267,
280
- CommandFollowFar = 268,
281
- CommandHeel = 269,
282
- CommandStay = 270,
283
- CopiedMap = 271,
284
- CorpseOf = 272,//#used via other translations
285
- CorpseOfNamed = 273,//#used via other translations
286
- Craft = 274,
287
- Crafted = 275,
288
- Crafts = 276,
289
- CreatureAngered = 277,
290
- CreatureAppears = 278,
291
- CreatureAppeased = 279,
292
- CreatureExcrement = 280,
293
- CreatureHappinessHigh = 281,
294
- CreatureHappinessLow = 282,
295
- CreatureHappinessLowest = 283,
296
- CreatureHappinessNormal = 284,
297
- CreatureIdolAttractedCreature = 285,
298
- CreatureRefusesToBeTamed = 286,
299
- CreatureRefusesYou = 287,
300
- CreatureUntamed = 288,
301
- CreatureZoneBiomeChanged = 289,
302
- CreatureZoneLayerChanged = 290,
303
- CreatureZoneRerolled = 291,
304
- CreatureZoneTierDecreased = 292,
305
- CreatureZoneTierIncreased = 293,
306
- CuredYourPoison = 294,
307
- Cut = 295,
308
- CutHasHealed = 296,
309
- CutLostHealth = 297,
310
- CutWasBandaged = 298,
311
- DamageAppeared = 299,
312
- DamagedByPouring = 300,
313
- DangerousMove = 301,
314
- DangerousOpen = 302,
315
- DayQuarter1 = 303,
316
- DayQuarter2 = 304,
317
- DayQuarter3 = 305,
318
- DayQuarter4 = 306,
319
- DealtNoDamageToYou = 307,
320
- DeathBy = 308,
321
- DeathByBleeding = 309,
322
- DeathByBurning = 310,
323
- DeathByChallengeWinner = 311,
324
- DeathByConsumption = 312,
325
- DeathByCut = 313,
326
- DeathByDrowning = 314,
327
- DeathByExhaustion = 315,
328
- DeathByFistByPlayer = 316,
329
- DeathByFrostbite = 317,
330
- DeathByFrostbiteTemperatureShock = 318,
331
- DeathByMalnutrition = 319,
332
- DeathByPoison = 320,
333
- DeathBySteppingOn = 321,
334
- DeathByTrap = 322,
335
- DeathByWeaponByPlayer = 323,
336
- DedicatedTitleAlreadySelected = 324,
337
- DedicatedTitleMilestoneNotAllowed = 325,
338
- DestroyedFromUse = 326,
339
- DidNotSeemToBeHurting = 327,
340
- Dig = 328,
341
- DigAway = 329,
342
- Digging = 330,
343
- Disassemble = 331,
344
- Disassembling = 332,
345
- DiscoveredCaveEntrance = 333,
346
- DiscoveredColdInsulation = 334,
347
- DiscoveredHeatInsulation = 335,
348
- DiscoveredInTheBottle = 336,
349
- DiscoveredLavaPassage = 337,
350
- DiscoveredQuality = 338,
351
- Dismantle = 339,
352
- Dismantling = 340,
353
- DismantlingRequires = 341,
354
- Dismounted = 342,
355
- DisplacedPuddles = 343,
356
- DoNotProduceAnyResources = 344,
357
- DoodadCauseStatus = 345,
358
- DoodadGroupTier = 346,
359
- DrewSurroundings = 347,
360
- Dripstone = 348,
361
- DroppedIntoDepths = 349,
362
- DroppedIntoFire = 350,
363
- DroppedIntoTheVoid = 351,
364
- DryadSprouted = 352,
365
- DueToDehydration = 353,
366
- DueToStarvation = 354,
367
- DugTreasureOut = 355,
368
- DugTreasureOutSurprise = 356,
369
- DumpContentsOfContainerInInventory = 357,
370
- DyingOfDehydration = 358,
371
- EarnedMilestone = 359,
372
- Effective = 360,
373
- EquipmentPreventedStatusEffects = 361,
374
- ErrorHasOccured = 362,
375
- ExtinguishedFire = 363,
376
- ExtinguishedLightSource = 364,
377
- ExudeNotPossible = 365,
378
- FailedToAbsorb = 366,
379
- FailedToAddFuelToTorch = 367,
380
- FailedToCage = 368,
381
- FailedToCatchFish = 369,
382
- FailedToCauseDamage = 370,
383
- FailedToCauseYouDamage = 371,
384
- FailedToCopy = 372,
385
- FailedToDraw = 373,
386
- FailedToEnchant = 374,
387
- FailedToExude = 375,
388
- FailedToIgniteTorch = 376,
389
- FailedToPickLock = 377,
390
- FailedToPreserve = 378,
391
- FailedToRefine = 379,
392
- FailedToReinforce = 380,
393
- FailedToRepair = 381,
394
- FailedToStartFire = 382,
395
- FailedToTame = 383,
396
- FailedToTransmogrify = 384,
397
- FarOffLands = 385,
398
- FeltBurningPainLostHealth = 386,
399
- FeltFrostbitePainLostHealth = 387,
400
- FewMinutes = 388,
401
- Filled = 389,
402
- FilledFrom = 390,
403
- FireAroundYouIsWarm = 391,
404
- FiredIntoObstacle = 392,
405
- FireOverflowed = 393,
406
- FireOverflowedFireElemental = 394,
407
- FireSource = 395,
408
- FishingWithNoBait = 396,
409
- Floating = 397,
410
- FreshWater = 398,
411
- FromTheStill = 399,
412
- FuelIsRequired = 400,
413
- Gather = 401,
414
- GatherDestroy = 402,
415
- Gathering = 403,
416
- GhostNoActions = 404,
417
- GhostOf = 405,
418
- GoatHasNoMilk = 406,
419
- HackAway = 407,
420
- HandProtectionPreventedInjury = 408,
421
- HandsNotEffectiveFor = 409,
422
- Harvest = 410,
423
- Harvesting = 411,
424
- HasBeenHurtByATrap = 412,
425
- HasDecayed = 413,
426
- HasHitYouForDamage = 414,
427
- HasNoEffect = 415,
428
- HasSetTrapOffNoDamage = 416,
429
- HasSplit = 417,
430
- HelpGrow = 418,
431
- HitchAttempt = 419,
432
- HitchCreature = 420,
433
- HitchDisabled = 421,
434
- HitchInUse = 422,
435
- HitForDamage = 423,
436
- HitYouForDamage = 424,
437
- Hour = 425,
438
- Hours = 426,
439
- HurtHandsHittingWithoutWeapons = 427,
440
- HurtHandsWithNoTool = 428,
441
- IgnitedTorch = 429,
442
- Ineffective = 430,
443
- InjuredFromTrap = 431,
444
- InNeedOfRepair = 432,
445
- InteractingWithHasInjuredYouForDamage = 433,
446
- InvalidContainer = 434,
447
- IsInTheWayOfPickingUp = 435,
448
- ItemFromWater = 436,
449
- JoinedAServer = 437,
450
- Jump = 438,
451
- Killed = 439,
452
- KnowledgeHasIncreased = 440,
453
- LastPlaceYouLeftOff = 441,
454
- LearnedHowToCreate = 442,
455
- LikelyFailures = 443,
456
- Limited = 444,
457
- Lockpick = 445,
458
- MapCompletedNotOfThisArea = 446,
459
- MapDestroyed = 447,
460
- MapNearlyDestroyed = 448,
461
- MapNotOfThisArea = 449,
462
- MaterialsDestroyed = 450,
463
- MessageOfTheDay = 451,
464
- MetabolismSlowed = 452,
465
- Milk = 453,
466
- Mine = 454,
467
- Mining = 455,
468
- MissedWith = 456,
469
- MissedYouWith = 457,
470
- MovedItem = 458,
471
- MovedItemFailed = 459,
472
- MoveOverTrapButDoNotSetOff = 460,
473
- MultiplayerGamePaused = 461,
474
- MultiplayerGameResumed = 462,
475
- MultiplayerPlayerConnected = 463,
476
- MultiplayerPlayerDied = 464,
477
- MultiplayerPlayerDisconnected = 465,
478
- MultiplayerPlayerJoined = 466,
479
- MustBeEquippedToIgnite = 467,
480
- Mysteriously = 468,
481
- NearlyBurnedEquipmentProtectedYou = 469,
482
- NeedToStartTravelsOutside = 470,
483
- NeedWaterForBoat = 471,
484
- NightQuarter1 = 472,
485
- NightQuarter2 = 473,
486
- NightQuarter3 = 474,
487
- NightQuarter4 = 475,
488
- No = 476,
489
- NoAmmunitionForThatWeapon = 477,
490
- NoFireToStokeWith = 478,
491
- NoFishAtLocation = 479,
492
- NoGroundWater = 480,
493
- NoInkToDrawMap = 481,
494
- NoKindlingOrFuelItemsToStartFire = 482,
495
- NoKindlingToStartFire = 483,
496
- NoLongerFeelPainOfBeingBurned = 484,
497
- NoLongerFeelPainOfBeingFrostbitten = 485,
498
- NoLongerHostile = 486,
499
- NoMoreRoomInContainer = 487,
500
- NoPaperToDrawMap = 488,
501
- NoRequiredItemToFireWeapon = 489,
502
- NoReturnWithoutCompletingChallenges = 490,
503
- NoRoomForImprovement = 491,
504
- NoRoomForVehicle = 492,
505
- NoRoomToDrop = 493,
506
- NoRoomToSummon = 494,
507
- NotEnoughPurifiedWaterYet = 495,
508
- NotEnoughTreasureToReturn = 496,
509
- NothingTo = 497,
510
- NothingToGetFromThis = 498,
511
- NothingToHarvestFromThisGather = 499,
512
- NothingToSmother = 500,
513
- NothingUsefulToHarvestYet = 501,
514
- NoTinderToStartFire = 502,
515
- NotSuitableToPlant = 503,
516
- NoWaterInStill = 504,
517
- NPCMerchantNewInventoryDialogue1 = 505,
518
- NPCMerchantNewInventoryDialogue2 = 506,
519
- NPCMerchantNewInventoryDialogue3 = 507,
520
- NPCMerchantNewInventoryDialogue4 = 508,
521
- NPCMerchantStartingDialogue1 = 509,
522
- NPCMerchantStartingDialogue2 = 510,
523
- NPCMerchantStartingDialogue3 = 511,
524
- NPCMerchantStartingDialogue4 = 512,
525
- NPCMerchantWelcomeCredit = 513,
526
- NPCShipperShipToIsland = 514,
527
- NPCShipperStartingDialogue1 = 515,
528
- NPCShipperStartingDialogue2 = 516,
529
- NPCShipperStartingDialogue3 = 517,
530
- NPCShipperStartingDialogue4 = 518,
531
- NPCWelcome = 519,
532
- ObjectIsLocked = 520,
533
- ObjectIsLockedAttemptToBreakIt = 521,
534
- OfferAberrantFail = 522,
535
- OfferAberrantFailButTamed = 523,
536
- Open = 524,
537
- OpenClose = 525,
538
- OverEatingLostStamina = 526,
539
- OverHydratingLostStamina = 527,
540
- Pack = 528,
541
- PaperTurnedToMush = 529,
542
- ParryTheBlow = 530,
543
- PetCreature = 531,
544
- PickAway = 532,
545
- PickUp = 533,
546
- PickUpExcrement = 534,
547
- PickUpTheItem = 535,
548
- Place = 536,
549
- PlacedItem = 537,
550
- PlacedItemFailed = 538,
551
- PlacedOnGround = 539,
552
- PlantedInGround = 540,
553
- PlantGatheredPlant = 541,
554
- PlantGatheringWillDestroy = 542,
555
- PlantHasResourcesToGather = 543,
556
- PlantHasResourcesToHarvest = 544,
557
- PlantHighlyFertile = 545,
558
- Planting = 546,
559
- PlantIsBare = 547,
560
- PlantIsFertile = 548,
561
- PlantIsInStage = 549,
562
- PlantIsNotFertile = 550,
563
- PlantNotReadyToHarvest = 551,
564
- PlantReadyToGather = 552,
565
- PlantReadyToGatherNotMaximal = 553,
566
- PlantReadyToHarvest = 554,
567
- PlantReadyToHarvestNotMaximal = 555,
568
- PlayerHas = 556,
569
- PlayerHasCompletedChallengeRequirement = 557,
570
- PlayerHasWonChallenge = 558,
571
- Poisoned = 559,
572
- PoisonedLostHealth = 560,
573
- PoisonWorkedItsCourse = 561,
574
- PouredOut = 562,
575
- PouredOutOnYourself = 563,
576
- PouredWaterIntoStill = 564,
577
- PourHarmedPlant = 565,
578
- PourHealedPlant = 566,
579
- PourHealedPlantFully = 567,
580
- PourHealedPlantPartially = 568,
581
- PourIncreasedFertility = 569,
582
- Pouring = 570,
583
- PourOverWatering = 571,
584
- Prepare = 572,
585
- Prepared = 573,
586
- PreservedFood = 574,
587
- PurifiedWaterInStill = 575,
588
- RandomEventsFire = 576,
589
- ReduceLength = 577,
590
- RefusedToBeTamed = 578,
591
- Repair = 579,
592
- RequiredForDisassembly = 580,
593
- RequiresFireToBeLit = 581,
594
- RequiresYouToBeAround = 582,
595
- Resistant = 583,
596
- Rest = 584,
597
- Rested = 585,
598
- Resting = 586,
599
- RestingOnGroundNotEffective = 587,
600
- RestInterrupted = 588,
601
- RestInterruptedDamage = 589,
602
- RestInterruptedDying = 590,
603
- RestInterruptedLoudNoise = 591,
604
- RestInterruptedPain = 592,
605
- RestInterruptedStirring = 593,
606
- RestInterruptedWaterPoured = 594,
607
- RestLongTime = 595,
608
- RestModerateTime = 596,
609
- RestOnBoat = 597,
610
- RestShortTime = 598,
611
- RestTime = 599,
612
- ReturnedToCivilization = 600,
613
- ReturningToCivilizationSetOffAgain = 601,
614
- ReturnsToLife = 602,
615
- Reverse = 603,
616
- Sailing = 604,
617
- ScrollMaster = 605,
618
- ScrollProvidedNoUsefulInsight = 606,
619
- Seawater = 607,
620
- SeemsToHaveDrawnEnergy = 608,
621
- SetTrapOffButNoDamage = 609,
622
- SetUp = 610,
623
- ShadowInTheWater = 611,
624
- SkillHasRaised = 612,
625
- Skills = 613,
626
- Sleep = 614,
627
- Sleeping = 615,
628
- SleepOnBoat = 616,
629
- Slept = 617,
630
- SlitherSuckerConstricts = 618,
631
- SlitherSuckerFailedToRemove = 619,
632
- SlitherSuckerFailedToRemoveOuch = 620,
633
- SlitherSuckerJumpedOnHead = 621,
634
- SolarStill = 622,
635
- SomethingInTheWayOf = 623,
636
- SomethingInTheWayOfButcherFirst = 624,
637
- SomethingInTheWayOfFire = 625,
638
- SomethingInTheWayOfFishing = 626,
639
- SomethingInTheWayOfPerforming = 627,
640
- SomethingInTheWayOfPlacing = 628,
641
- SomethingInTheWayOfReleasing = 629,
642
- SomethingInTheWayOfSummoning = 630,
643
- SomethingInWayOfClosingDoor = 631,
644
- SoothedTheirBurnInjuries = 632,
645
- SoothedYourBurnInjuries = 633,
646
- SortedByCategory = 634,
647
- SortedByCraftableOnly = 635,
648
- SortedByName = 636,
649
- SortedBySkill = 637,
650
- SortedByUnlockedTime = 638,
651
- StaminaIsFull = 639,
652
- StartedFire = 640,
653
- StartTravelInWater = 641,
654
- StarvingToDeath = 642,
655
- StatAmount = 643,
656
- StatChangeUnknown = 644,
657
- StatGained = 645,
658
- StatIncreasing = 646,
659
- StatLost = 647,
660
- StatQuenched = 648,
661
- StatRegained = 649,
662
- StatSated = 650,
663
- SteppingOn = 651,
664
- Still = 652,
665
- StillHasNoWaterToPurify = 653,
666
- StirredUpClawWorm = 654,
667
- StirredUpCreature = 655,
668
- StoppedYourBleeding = 656,
669
- StopUsingVehicle = 657,
670
- SummonedGuardiansByDiggingTreasure = 658,
671
- SummonedGuardiansByLockpicking = 659,
672
- SummonVoidDwellerItem = 660,
673
- SummonVoidDwellerRinging = 661,
674
- SummonVoidDwellerShiver = 662,
675
- SunNotBrightEnoughToStartFire = 663,
676
- SwampWater = 664,
677
- Swimming = 665,
678
- TakenFromGroundBecomeTamed = 666,
679
- TeleportBlocked = 667,
680
- Teleported = 668,
681
- TheirFist = 669,
682
- TheirInventory = 670,
683
- ThePlant = 671,
684
- ThereIsNoContainerOnTheStill = 672,
685
- ThereIsNoSunToStartFire = 673,
686
- ThisCannotBeMilked = 674,
687
- Throw = 675,
688
- ThrownIntoDepths = 676,
689
- ThrownIntoObstacle = 677,
690
- ThrownIntoVoid = 678,
691
- TierGroup = 679,
692
- Till = 680,
693
- Tilling = 681,
694
- TimeIs = 682,
695
- TimeIsDawn = 683,
696
- TimeIsDaytime = 684,
697
- TimeIsDusk = 685,
698
- TimeIsNighttime = 686,
699
- TimeIsSunrise = 687,
700
- TimeIsSunset = 688,
701
- ToFight = 689,
702
- TooDamaged = 690,
703
- TooExhaustedToJump = 691,
704
- Touching = 692,
705
- TrampledFire = 693,
706
- TrampledFireFail = 694,
707
- TrampledFirePartial = 695,
708
- TrampledIntoGround = 696,
709
- TrampleIntoGround = 697,
710
- Trampling = 698,
711
- TransmogrificationNotPossible = 699,
712
- Transmogrified = 700,
713
- TrapMissed = 701,
714
- TrapStoppedYou = 702,
715
- Traveling = 703,
716
- Treasure = 704,
717
- TreasureIsBlocked = 705,
718
- UiActionCannotUseInaccessibleItem = 706,
719
- UiActionCannotUseInThisSituation = 707,
720
- UiActionCannotUseNoItemHovered = 708,
721
- UiActionCannotUseNotInRange = 709,
722
- UiActionCannotUseOnThisIsland = 710,
723
- UiActionCannotUseRequiresCreature = 711,
724
- UiActionCannotUseRequiresDoodad = 712,
725
- UiActionCannotUseRequiresItem = 713,
726
- UiActionCannotUseRequiresNPC = 714,
727
- UiActionCannotUseRequiresVehicle = 715,
728
- UiDialogTradeIndicateTradeAlreadyTradedBuyDialogue1 = 716,
729
- UiDialogTradeIndicateTradeAlreadyTradedBuyDialogue2 = 717,
730
- UiDialogTradeIndicateTradeAlreadyTradedBuyDialogue3 = 718,
731
- UiDialogTradeIndicateTradeAlreadyTradedSellDialogue1 = 719,
732
- UiDialogTradeIndicateTradeAlreadyTradedSellDialogue2 = 720,
733
- UiDialogTradeIndicateTradeAlreadyTradedSellDialogue3 = 721,
734
- UiDialogTradeIndicateTradeTooMuchTradesDialogue1 = 722,
735
- UiDialogTradeIndicateTradeTooMuchTradesDialogue2 = 723,
736
- UiDialogTradeIndicateTradeTooMuchTradesDialogue3 = 724,
737
- UnhitchCreature = 725,
738
- Unknown = 726,
739
- Unlimited = 727,
740
- UnlockedChest = 728,
741
- UnpurifiedFreshWater = 729,
742
- UnpurifiedWaterInStill = 730,
743
- Use = 731,
744
- UsingBareHands = 732,
745
- VehicleDefense = 733,
746
- Vulnerable = 734,
747
- Water = 735,
748
- WaterGathering = 736,
749
- WaterPutOutFire = 737,
750
- WellIsDry = 738,
751
- WellIsFull = 739,
752
- WildGoatRefusedToBeMilked = 740,
753
- WorkingYourselfIntoExhaustion = 741,
754
- WorkingYourselfIntoExhaustionAndDrowning = 742,
755
- WorldContainer = 743,
756
- You = 744,
757
- YouAbsorb = 745,
758
- YouApplied = 746,
759
- YouAreAlready = 747,
760
- YouAte = 748,
761
- YouBeginResting = 749,
762
- YouCannotDoThatYet = 750,
763
- YouCanNowCombatTheTides = 751,
764
- YouCrafted = 752,
765
- YouDoNotFindTreasureYet = 753,
766
- YouDrank = 754,
767
- YouDropTheTorch = 755,
768
- YouEnchant = 756,
769
- YouEquip = 757,
770
- YouExude = 758,
771
- YouExudeSome = 759,
772
- YouExudeSomeReasonConflicting = 760,
773
- YouExudeSomeReasonMax = 761,
774
- YouExudeSomeReasonProperties = 762,
775
- YouFailedTo = 763,
776
- YouFailedToExtinguishedFireFully = 764,
777
- YouFailedToHeal = 765,
778
- YouFailedToHealOther = 766,
779
- YouFire = 767,
780
- YouGathered = 768,
781
- YouHarvested = 769,
782
- YouHave = 770,
783
- YouHaveAlreadyLearned = 771,
784
- YouHaveBeenCut = 772,
785
- YouHaveCaged = 773,
786
- YouHaveCommanded = 774,
787
- YouHaveDied = 775,
788
- YouHaveHealedOther = 776,
789
- YouHaveKilled = 777,
790
- YouHaveNotCommanded = 778,
791
- YouHaveReleased = 779,
792
- YouHaveSummoned = 780,
793
- YouHaveTamed = 781,
794
- YouHaveUncaged = 782,
795
- YouNoticeBarren = 783,
796
- YouNoticeBecomeEnraged = 784,
797
- YouNoticeDying = 785,
798
- YouNoticeFertilityDecreasing = 786,
799
- YouNoticeFertilityIncreasing = 787,
800
- YouNoticeGrowing = 788,
801
- YouNoticeLavaCooling = 789,
802
- YouNoticeLavaHardening = 790,
803
- YouNoticePerish = 791,
804
- YouNoticePlantDamage = 792,
805
- YouNoticePlantRegenerated = 793,
806
- YouNoticeRegrowing = 794,
807
- YouNoticeStumbleInjureItself = 795,
808
- YouNoticeTakeFromGround = 796,
809
- YouNoticeWoundsClosing = 797,
810
- YouOfferedToCreature = 798,
811
- YouOfferedToCreatureRejects = 799,
812
- YouOpen = 800,
813
- YouPacked = 801,
814
- YouPickedUp = 802,
815
- YouRefine = 803,
816
- YouReinforce = 804,
817
- YouRepair = 805,
818
- YouReturnFromCivilizationWith = 806,
819
- YourFist = 807,
820
- YourHands = 808,
821
- YourInventory = 809,
822
- YourIsland = 810,
823
- YouSeeALivingMushroomSpore = 811,
824
- YouSeeASkeletonCollapse = 812,
825
- YouSeeASlimeCombine = 813,
826
- YouSeeAZombieBleeding = 814,
827
- YouSeeCoolDown = 815,
828
- YouSeeDrop = 816,
829
- YouSeeEngulfFire = 817,
830
- YouSeeFireSpread = 818,
831
- YouSeeHelpingPlant = 819,
832
- YouSeeLay = 820,
833
- YouSeeLayingTrap = 821,
834
- YouSeeSpewLava = 822,
835
- YouSeeSpitAcid = 823,
836
- YouSeeSpringForth = 824,
837
- YouSeeSummon = 825,
838
- YouSeeSwampFlood = 826,
839
- YouSeeTrampling = 827,
840
- YouSetTheTrapOff = 828,
841
- YouStokeTheCreature = 829,
842
- YouSwapMainHandAndOffHand = 830,
843
- YouThrew = 831,
844
- YouTilled = 832,
845
- YouUnequip = 833,
846
- YouUsed = 834,
847
- YouViewTheItemsOn = 835,
848
- YouWhileTraveling = 836
19
+ ActionAlterNoEffect = 7,
20
+ ActionAlterNotPossible = 8,
21
+ ActionAscendDescendNotCaveEntrance = 9,
22
+ ActionAttachAlreadyHasItem = 10,
23
+ ActionAttachAttachedItem = 11,
24
+ ActionAttachAttachingItem = 12,
25
+ ActionAttachCannotAttach = 13,
26
+ ActionAttachNothingToAttachItemTo = 14,
27
+ ActionBuildNotDeepEnough = 15,
28
+ ActionBuildTooDeep = 16,
29
+ ActionButcherReleasesLava = 17,
30
+ ActionCageCreatureCannotBeCaged = 18,
31
+ ActionCageCreatureNoCreature = 19,
32
+ ActionCastAreaOverfished = 20,
33
+ ActionConsecrateNoRunes = 21,
34
+ ActionConsecrateRunesConsecrated = 22,
35
+ ActionConsecrateRunesConsecratedChaos = 23,
36
+ ActionConsecrateRunesConsecratedEvil = 24,
37
+ ActionConsecrateRunesConsecratedGood = 25,
38
+ ActionConsecrateRunesConsecratedNothingUpgraded = 26,
39
+ ActionConsecrateRunesConsecratedResults = 27,
40
+ ActionConsumeItemTypeStats = 28,
41
+ ActionContextAllowedFireToSpread = 29,
42
+ ActionContextGainedSkill = 30,
43
+ ActionContextKilledCreature = 31,
44
+ ActionContextKilledPlayer = 32,
45
+ ActionContextKilledPlayerWithPet = 33,
46
+ ActionContextRested = 34,
47
+ ActionContextSlept = 35,
48
+ ActionContextTamedCreature = 36,
49
+ ActionCraftEfficacy = 37,
50
+ ActionCraftEfficacyHigh = 38,
51
+ ActionCraftEfficacyHighest = 39,
52
+ ActionCraftEfficacyLow = 40,
53
+ ActionCraftEfficacyLowest = 41,
54
+ ActionCraftEfficacyMed = 42,
55
+ ActionCraftEfficacyPercent = 43,
56
+ ActionCraftYouLackTheRequirements = 44,
57
+ ActionDetachContainerDetachContainer = 45,
58
+ ActionDetachContainerNoDetach = 46,
59
+ ActionDigTooDeep = 47,
60
+ ActionDigWaterFilledHole = 48,
61
+ ActionDigWaterTooDeep = 49,
62
+ ActionDisassembleNoItemsSalvaged = 50,
63
+ ActionDisassembleSalvaged = 51,
64
+ ActionDismantleSeparated = 52,
65
+ ActionDisplayItemDisplayed = 53,
66
+ ActionDisplayItemEmptyContainerBeforehand = 54,
67
+ ActionDisplayItemReturned = 55,
68
+ ActionDrinkInFrontNoDrink = 56,
69
+ ActionDropCannotUseBlocked = 57,
70
+ ActionDropCannotUseItemEquipped = 58,
71
+ ActionDropCannotUseItemProtected = 59,
72
+ ActionDropCannotUseItemProtectedDangerous = 60,
73
+ ActionDropCannotUseNoItems = 61,
74
+ ActionDropCannotUseNoRoomMultipleItems = 62,
75
+ ActionDumpItemsCannotUseBlocked = 63,
76
+ ActionDumpItemsCannotUseNothingToDumpOut = 64,
77
+ ActionDumpItemsDumpedItems = 65,
78
+ ActionEnhanceEnhanced = 66,
79
+ ActionEnhanceFailed = 67,
80
+ ActionEnhanceNotPossible = 68,
81
+ ActionEquipWillBreakOnDamage = 69,
82
+ ActionExcavateCollapseExcavated = 70,
83
+ ActionExcavateCollapseExcavatedSurface = 71,
84
+ ActionExcavateCollapseFail = 72,
85
+ ActionExcavateCollapseNotDeepEnough = 73,
86
+ ActionExcavateCollapseNotPassable = 74,
87
+ ActionFishingNothingBiting = 75,
88
+ ActionFishingSlipped = 76,
89
+ ActionFishingTooShallow = 77,
90
+ ActionGatherNoResourceYet = 78,
91
+ ActionInvokeCannotUseSilence = 79,
92
+ ActionInvokeChaosNoEffect = 80,
93
+ ActionInvokeEvilCreaturesAttracted = 81,
94
+ ActionInvokeEvilCreaturesNoneSummoned = 82,
95
+ ActionInvokeGoodCreaturesPacified = 83,
96
+ ActionInvokeGoodCreaturesPacifiedAttacked = 84,
97
+ ActionInvokeGoodCreaturesPacifiedNone = 85,
98
+ ActionJumpCannotJump = 86,
99
+ ActionMeleeNothingToAttack = 87,
100
+ ActionMoveItemCannotUseContainerTooFarAway = 88,
101
+ ActionMoveItemCannotUseEquipped = 89,
102
+ ActionMoveItemCannotUseFromInvalidContainer = 90,
103
+ ActionMoveItemCannotUseInvalidContainer = 91,
104
+ ActionMoveItemCannotUseItemFilteredOut = 92,
105
+ ActionMoveItemCannotUseItemQualityOrTypeIncorrect = 93,
106
+ ActionMoveItemCannotUseItemTooFarAway = 94,
107
+ ActionMoveItemCannotUseMovingFromMultipleContainers = 95,
108
+ ActionMoveItemCannotUseNoContainerToMoveTo = 96,
109
+ ActionMoveItemCannotUseNoItems = 97,
110
+ ActionMoveItemCannotUseNoRoom = 98,
111
+ ActionMoveItemCannotUseProtected = 99,
112
+ ActionMoveToSwimOffEdgeCannotCombatTides = 100,
113
+ ActionNavigateMoon = 101,
114
+ ActionNavigateNotOverworld = 102,
115
+ ActionNavigateSun = 103,
116
+ ActionNavigateUseSextant = 104,
117
+ ActionPetCreatureRefused = 105,
118
+ ActionPetNotAccepted = 106,
119
+ ActionPetNoTamedCreature = 107,
120
+ ActionPickUpAllItemsNoItems = 108,
121
+ ActionPickUpDoodadCannotUseContainsItems = 109,
122
+ ActionPickUpExcrementNoExcrement = 110,
123
+ ActionPickUpItemNoItem = 111,
124
+ ActionPickUpNoPickUp = 112,
125
+ ActionPourNoEffect = 113,
126
+ ActionRefineNoDurability = 114,
127
+ ActionReleaseNoTamedCreature = 115,
128
+ ActionRenameIsland = 116,
129
+ ActionRepairMaxDurabilityTooLow = 117,
130
+ ActionReshapeFailed = 118,
131
+ ActionReshapeNotPossibleBonus = 119,
132
+ ActionReshapeReshaped = 120,
133
+ ActionRestAdjacentCreature = 121,
134
+ ActionSailToCivilizationNotInsideBoat = 122,
135
+ ActionSailToIsland = 123,
136
+ ActionSailToIslandArrived = 124,
137
+ ActionSailToIslandCannotUseCannotReachEdge = 125,
138
+ ActionSailToIslandCannotUseCannotReachPort = 126,
139
+ ActionSailToIslandCannotUseGhost = 127,
140
+ ActionSailToIslandCannotUseInvalidDestination = 128,
141
+ ActionSailToIslandCannotUseNoDestination = 129,
142
+ ActionSailToIslandCannotUseNotEnoughStamina = 130,
143
+ ActionSailToIslandCannotUseNotEnoughSwimmingSkill = 131,
144
+ ActionSailToIslandCannotUseTravellingIsDisallowedInTheseLands = 132,
145
+ ActionSailToIslandPlayerArriving = 133,
146
+ ActionSailToIslandPlayerDeparting = 134,
147
+ ActionSetCreatureAiAlreadyCommanded = 135,
148
+ ActionSetCreatureAiCannotCommand = 136,
149
+ ActionSetCreatureAiNotEnoughSkill = 137,
150
+ ActionSetCreatureAiNotEnoughTames = 138,
151
+ ActionSetDownNotEnoughRoom = 139,
152
+ ActionShipToIslandNoDestination = 140,
153
+ ActionSwapEquipmentCannotUseNoEquipmentToSwap = 141,
154
+ ActionTameCreatureTamed = 142,
155
+ ActionTameNoCreature = 143,
156
+ ActionTestDepthNothingToTest = 144,
157
+ ActionTestDepthWell = 145,
158
+ ActionToggleContainerCannotUseAlreadyClosed = 146,
159
+ ActionToggleContainerCannotUseNoContainer = 147,
160
+ ActionToggleContainerCannotUseNoContainerToClose = 148,
161
+ ActionToggleContainerCannotUseNoContainerToOpen = 149,
162
+ ActionToggleContainerCannotUseNotAccessible = 150,
163
+ ActionToggleContainerCannotUseUnknownContainer = 151,
164
+ ActionToggleDoorNoDoor = 152,
165
+ ActionToggleHitchAlreadyHitched = 153,
166
+ ActionToggleHitchAlreadyUnhitched = 154,
167
+ ActionToggleHitchNoCreature = 155,
168
+ ActionToggleHitchNoHitch = 156,
169
+ ActionToggleTilledAlreadyPacked = 157,
170
+ ActionToggleTilledAlreadyTilled = 158,
171
+ ActionToggleTilledDug = 159,
172
+ ActionTradeCannotUseExceedsCarryWeight = 160,
173
+ ActionTradeCannotUseNotEnoughCredit = 161,
174
+ ActionTradeCannotUseNothingToTrade = 162,
175
+ ActionTradeCannotUseTradedTooMuch = 163,
176
+ ActionTradeCreditChange = 164,
177
+ ActionTradeCreditChangeDecrease = 165,
178
+ ActionTradeCreditChangeIncrease = 166,
179
+ ActionTradeDialogue1 = 167,
180
+ ActionTradeDialogue2 = 168,
181
+ ActionTradeDialogue3 = 169,
182
+ ActionTradeDialogue4 = 170,
183
+ ActionTradeIndicateUntradable = 171,
184
+ ActionTradeMerchantItems = 172,
185
+ ActionTradeYourItems = 173,
186
+ ActionUncageCannotUncageHere = 174,
187
+ ActionUpgradeFailed = 175,
188
+ ActionUpgradeMagicalInert = 176,
189
+ ActionUpgradeNoEffect = 177,
190
+ ActionUpgradeNotMagical = 178,
191
+ ActionUpgradeNotPossible = 179,
192
+ ActionUpgradeUpgraded = 180,
193
+ ActionUseItemWeaponNeeded = 181,
194
+ ActionViewItemsCannotUseBlocked = 182,
195
+ AddedFuelToFire = 183,
196
+ AddedFuelToTorch = 184,
197
+ AllEquipmentUnEquipped = 185,
198
+ AlreadyDesalinatedWaterInStill = 186,
199
+ AlreadyFullyRefined = 187,
200
+ AlreadyFullyRepaired = 188,
201
+ AlreadyPreserved = 189,
202
+ AnotherIsland = 190,
203
+ AnUnknownItem = 191,
204
+ AppearedNotEffectiveForGathering = 192,
205
+ ArmorAppeared = 193,
206
+ ArmorProtectedFromInjuryAgainst = 194,
207
+ AttemptToSoothBurnInWater = 195,
208
+ AttemptToSoothFrostbiteWithFire = 196,
209
+ AttemptToSoothFrostbiteWithFireTooHot = 197,
210
+ AttemptToTill = 198,
211
+ BadlyBurnedLostHealth = 199,
212
+ BeenPoisoned = 200,
213
+ BeginSleeping = 201,
214
+ BeginUsingVehicle = 202,
215
+ BleedingHasStopped = 203,
216
+ BleedingProfusely = 204,
217
+ BleedingToDeathLostHealth = 205,
218
+ BookBlank = 206,
219
+ BookContains = 207,
220
+ BookCrumbles = 208,
221
+ BookDiagrams = 209,
222
+ BookEmpty = 210,
223
+ BookNothing = 211,
224
+ BookOpen = 212,
225
+ BookScribbles = 213,
226
+ BothEffectiveIneffective = 214,
227
+ BrokeIntoPieces = 215,
228
+ BrokenOnImpact = 216,
229
+ BrokenWhileFiring = 217,
230
+ Build = 218,
231
+ Burned = 219,
232
+ Butcher = 220,
233
+ CannotAddAnyMoreFuel = 221,
234
+ CannotAnythingHere = 222,
235
+ CannotBeCrafted = 223,
236
+ CannotBePerformedOverWater = 224,
237
+ CannotBePlacedHere = 225,
238
+ CannotBePreserved = 226,
239
+ CannotBeRefined = 227,
240
+ CannotBeRefinedReinforcementNeeded = 228,
241
+ CannotBeReinforced = 229,
242
+ CannotBeRepaired = 230,
243
+ CannotBuildHere = 231,
244
+ CannotDigWithHands = 232,
245
+ CannotEquipThatThere = 233,
246
+ CannotFishFor = 234,
247
+ CannotFromHere = 235,
248
+ CannotHere = 236,
249
+ CannotInWater = 237,
250
+ CannotLeave = 238,
251
+ CannotNoTreasure = 239,
252
+ CannotPickUpLockedContainer = 240,
253
+ CannotPickUpWhileLit = 241,
254
+ CannotPlaceContainerInItself = 242,
255
+ CannotPlaceHere = 243,
256
+ CannotPlaceThatFromHere = 244,
257
+ CannotPlaceThatHere = 245,
258
+ CannotPlaceThatOverWater = 246,
259
+ CannotPlantHereTilled = 247,
260
+ CannotRepairWhileLit = 248,
261
+ CannotRestHere = 249,
262
+ CannotShipNoItems = 250,
263
+ CannotShipNoPath = 251,
264
+ CannotSleepHere = 252,
265
+ CannotStartFireHere = 253,
266
+ CannotToAnythingHere = 254,
267
+ CannotToTellTime = 255,
268
+ CannotUseCommand = 256,
269
+ CannotWhenProtected = 257,
270
+ CannotWhenProtectedDangerousAction = 258,
271
+ CannotWhenProtectedDurability = 259,
272
+ CarryingTooMuchWeight = 260,
273
+ CarvedUpCorpse = 261,
274
+ Carving = 262,
275
+ CastYourLine = 263,
276
+ CaughtFish = 264,
277
+ ChatBanCommand = 265,
278
+ ChatBannedCommand = 266,
279
+ ChatCommandsCommand = 267,
280
+ ChatCommandsCommandCommand = 268,
281
+ ChatPingCommand = 269,
282
+ ChatPlayerMessage = 270,
283
+ ChatPlayersCommand = 271,
284
+ ChatServerMessage = 272,
285
+ ChatUnbanCommand = 273,
286
+ ChatUnknownCommand = 274,
287
+ Chop = 275,
288
+ Chopping = 276,
289
+ ClearedBlood = 277,
290
+ CloseToBeingDestroyed = 278,
291
+ Collapse = 279,
292
+ Collapsing = 280,
293
+ CommandAttack = 281,
294
+ CommandDefend = 282,
295
+ CommandFollowClose = 283,
296
+ CommandFollowFar = 284,
297
+ CommandHeel = 285,
298
+ CommandStay = 286,
299
+ CopiedMap = 287,
300
+ CorpseOf = 288,//#used via other translations
301
+ CorpseOfNamed = 289,//#used via other translations
302
+ Craft = 290,
303
+ Crafted = 291,
304
+ Crafts = 292,
305
+ CreatureAngered = 293,
306
+ CreatureAppears = 294,
307
+ CreatureAppeased = 295,
308
+ CreatureExcrement = 296,
309
+ CreatureHappinessHigh = 297,
310
+ CreatureHappinessLow = 298,
311
+ CreatureHappinessLowest = 299,
312
+ CreatureHappinessNormal = 300,
313
+ CreatureIdolAttractedCreature = 301,
314
+ CreatureRefusesToBeTamed = 302,
315
+ CreatureRefusesYou = 303,
316
+ CreatureUntamed = 304,
317
+ CreatureZoneBiomeChanged = 305,
318
+ CreatureZoneLayerChanged = 306,
319
+ CreatureZoneRerolled = 307,
320
+ CreatureZoneTierDecreased = 308,
321
+ CreatureZoneTierIncreased = 309,
322
+ CuredYourPoison = 310,
323
+ Cut = 311,
324
+ CutHasHealed = 312,
325
+ CutLostHealth = 313,
326
+ CutWasBandaged = 314,
327
+ DamageAppeared = 315,
328
+ DamagedByPouring = 316,
329
+ DangerousMove = 317,
330
+ DangerousOpen = 318,
331
+ DayQuarter1 = 319,
332
+ DayQuarter2 = 320,
333
+ DayQuarter3 = 321,
334
+ DayQuarter4 = 322,
335
+ DealtNoDamageToYou = 323,
336
+ DeathBy = 324,
337
+ DeathByBleeding = 325,
338
+ DeathByBurning = 326,
339
+ DeathByChallengeWinner = 327,
340
+ DeathByConsumption = 328,
341
+ DeathByCut = 329,
342
+ DeathByDrowning = 330,
343
+ DeathByExhaustion = 331,
344
+ DeathByFistByPlayer = 332,
345
+ DeathByFrostbite = 333,
346
+ DeathByFrostbiteTemperatureShock = 334,
347
+ DeathByMalnutrition = 335,
348
+ DeathByPoison = 336,
349
+ DeathBySteppingOn = 337,
350
+ DeathByTrap = 338,
351
+ DeathByWeaponByPlayer = 339,
352
+ DedicatedTitleAlreadySelected = 340,
353
+ DedicatedTitleMilestoneNotAllowed = 341,
354
+ DestroyedFromUse = 342,
355
+ DeveloperContainerDesync = 343,
356
+ DidNotSeemToBeHurting = 344,
357
+ Dig = 345,
358
+ DigAway = 346,
359
+ Digging = 347,
360
+ Disassemble = 348,
361
+ Disassembling = 349,
362
+ DiscoveredCaveEntrance = 350,
363
+ DiscoveredColdInsulation = 351,
364
+ DiscoveredHeatInsulation = 352,
365
+ DiscoveredInTheBottle = 353,
366
+ DiscoveredLavaPassage = 354,
367
+ DiscoveredQuality = 355,
368
+ Dismantle = 356,
369
+ Dismantling = 357,
370
+ DismantlingRequires = 358,
371
+ Dismounted = 359,
372
+ DisplacedPuddles = 360,
373
+ DoNotProduceAnyResources = 361,
374
+ DoodadCauseStatus = 362,
375
+ DoodadGroupTier = 363,
376
+ DrewSurroundings = 364,
377
+ Dripstone = 365,
378
+ DroppedIntoDepths = 366,
379
+ DroppedIntoFire = 367,
380
+ DroppedIntoTheVoid = 368,
381
+ DryadSprouted = 369,
382
+ DueToDehydration = 370,
383
+ DueToStarvation = 371,
384
+ DugTreasureOut = 372,
385
+ DugTreasureOutSurprise = 373,
386
+ DumpContentsOfContainerInInventory = 374,
387
+ DyingOfDehydration = 375,
388
+ EarnedMilestone = 376,
389
+ Effective = 377,
390
+ EquipmentPreventedStatusEffects = 378,
391
+ ErrorHasOccured = 379,
392
+ Excavating = 380,
393
+ ExtinguishedFire = 381,
394
+ ExtinguishedLightSource = 382,
395
+ ExudeNotPossible = 383,
396
+ FailedToAbsorb = 384,
397
+ FailedToAddFuelToTorch = 385,
398
+ FailedToCage = 386,
399
+ FailedToCatchFish = 387,
400
+ FailedToCauseDamage = 388,
401
+ FailedToCauseYouDamage = 389,
402
+ FailedToCopy = 390,
403
+ FailedToDraw = 391,
404
+ FailedToEnchant = 392,
405
+ FailedToExude = 393,
406
+ FailedToIgniteTorch = 394,
407
+ FailedToPickLock = 395,
408
+ FailedToPreserve = 396,
409
+ FailedToRefine = 397,
410
+ FailedToReinforce = 398,
411
+ FailedToRepair = 399,
412
+ FailedToStartFire = 400,
413
+ FailedToTame = 401,
414
+ FailedToTransmogrify = 402,
415
+ FarOffLands = 403,
416
+ FeltBurningPainLostHealth = 404,
417
+ FeltFrostbitePainLostHealth = 405,
418
+ FewMinutes = 406,
419
+ Filled = 407,
420
+ FilledFrom = 408,
421
+ FireAroundYouIsWarm = 409,
422
+ FiredIntoObstacle = 410,
423
+ FireOverflowed = 411,
424
+ FireOverflowedFireElemental = 412,
425
+ FireSource = 413,
426
+ FishingWithNoBait = 414,
427
+ Floating = 415,
428
+ FreshWater = 416,
429
+ FromTheStill = 417,
430
+ FuelIsRequired = 418,
431
+ Gather = 419,
432
+ GatherDestroy = 420,
433
+ Gathering = 421,
434
+ GhostNoActions = 422,
435
+ GhostOf = 423,
436
+ GoatHasNoMilk = 424,
437
+ HackAway = 425,
438
+ HandProtectionPreventedInjury = 426,
439
+ HandsNotEffectiveFor = 427,
440
+ Harvest = 428,
441
+ Harvesting = 429,
442
+ HasBeenHurtByATrap = 430,
443
+ HasDecayed = 431,
444
+ HasHitYouForDamage = 432,
445
+ HasNoEffect = 433,
446
+ HasSetTrapOffNoDamage = 434,
447
+ HasSplit = 435,
448
+ HelpGrow = 436,
449
+ HitchAttempt = 437,
450
+ HitchCreature = 438,
451
+ HitchDisabled = 439,
452
+ HitchInUse = 440,
453
+ HitForDamage = 441,
454
+ HitYouForDamage = 442,
455
+ Hour = 443,
456
+ Hours = 444,
457
+ HurtHandsHittingWithoutWeapons = 445,
458
+ HurtHandsWithNoTool = 446,
459
+ IgnitedTorch = 447,
460
+ Ineffective = 448,
461
+ InjuredFromTrap = 449,
462
+ InNeedOfRepair = 450,
463
+ InteractingWithHasInjuredYouForDamage = 451,
464
+ InvalidContainer = 452,
465
+ IsInTheWayOfPickingUp = 453,
466
+ ItemFromWater = 454,
467
+ JoinedAServer = 455,
468
+ Jump = 456,
469
+ Killed = 457,
470
+ KnowledgeHasIncreased = 458,
471
+ LastPlaceYouLeftOff = 459,
472
+ LearnedHowToCreate = 460,
473
+ LikelyFailures = 461,
474
+ Limited = 462,
475
+ Lockpick = 463,
476
+ MapCompletedNotOfThisArea = 464,
477
+ MapDestroyed = 465,
478
+ MapNearlyDestroyed = 466,
479
+ MapNotOfThisArea = 467,
480
+ MaterialsDestroyed = 468,
481
+ MessageOfTheDay = 469,
482
+ MetabolismSlowed = 470,
483
+ Milk = 471,
484
+ Mine = 472,
485
+ Mining = 473,
486
+ MissedWith = 474,
487
+ MissedYouWith = 475,
488
+ MovedItem = 476,
489
+ MovedItemFailed = 477,
490
+ MoveOverTrapButDoNotSetOff = 478,
491
+ MultiplayerGamePaused = 479,
492
+ MultiplayerGameResumed = 480,
493
+ MultiplayerPlayerConnected = 481,
494
+ MultiplayerPlayerDied = 482,
495
+ MultiplayerPlayerDisconnected = 483,
496
+ MultiplayerPlayerJoined = 484,
497
+ MustBeEquippedToIgnite = 485,
498
+ Mysteriously = 486,
499
+ NearlyBurnedEquipmentProtectedYou = 487,
500
+ NeedToStartTravelsOutside = 488,
501
+ NeedWaterForBoat = 489,
502
+ NightQuarter1 = 490,
503
+ NightQuarter2 = 491,
504
+ NightQuarter3 = 492,
505
+ NightQuarter4 = 493,
506
+ No = 494,
507
+ NoAmmunitionForThatWeapon = 495,
508
+ NoFireToStokeWith = 496,
509
+ NoFishAtLocation = 497,
510
+ NoGroundWater = 498,
511
+ NoInkToDrawMap = 499,
512
+ NoKindlingOrFuelItemsToStartFire = 500,
513
+ NoKindlingToStartFire = 501,
514
+ NoLongerFeelPainOfBeingBurned = 502,
515
+ NoLongerFeelPainOfBeingFrostbitten = 503,
516
+ NoLongerHostile = 504,
517
+ NoMoreRoomInContainer = 505,
518
+ NoPaperToDrawMap = 506,
519
+ NoRequiredItemToFireWeapon = 507,
520
+ NoReturnWithoutCompletingChallenges = 508,
521
+ NoRoomForImprovement = 509,
522
+ NoRoomForVehicle = 510,
523
+ NoRoomToDrop = 511,
524
+ NoRoomToSummon = 512,
525
+ NotEnoughPurifiedWaterYet = 513,
526
+ NotEnoughTreasureToReturn = 514,
527
+ NothingTo = 515,
528
+ NothingToGetFromThis = 516,
529
+ NothingToHarvestFromThisGather = 517,
530
+ NothingToSmother = 518,
531
+ NothingUsefulToHarvestYet = 519,
532
+ NoTinderToStartFire = 520,
533
+ NotSuitableToPlant = 521,
534
+ NoWaterInStill = 522,
535
+ NPCMerchantNewInventoryDialogue1 = 523,
536
+ NPCMerchantNewInventoryDialogue2 = 524,
537
+ NPCMerchantNewInventoryDialogue3 = 525,
538
+ NPCMerchantNewInventoryDialogue4 = 526,
539
+ NPCMerchantStartingDialogue1 = 527,
540
+ NPCMerchantStartingDialogue2 = 528,
541
+ NPCMerchantStartingDialogue3 = 529,
542
+ NPCMerchantStartingDialogue4 = 530,
543
+ NPCMerchantWelcomeCredit = 531,
544
+ NPCShipperShipToIsland = 532,
545
+ NPCShipperStartingDialogue1 = 533,
546
+ NPCShipperStartingDialogue2 = 534,
547
+ NPCShipperStartingDialogue3 = 535,
548
+ NPCShipperStartingDialogue4 = 536,
549
+ NPCWelcome = 537,
550
+ ObjectIsLocked = 538,
551
+ ObjectIsLockedAttemptToBreakIt = 539,
552
+ OfferAberrantFail = 540,
553
+ OfferAberrantFailButTamed = 541,
554
+ Open = 542,
555
+ OpenClose = 543,
556
+ OpenCollapse = 544,
557
+ OverEatingLostStamina = 545,
558
+ OverHydratingLostStamina = 546,
559
+ Pack = 547,
560
+ PaperTurnedToMush = 548,
561
+ ParryTheBlow = 549,
562
+ PetCreature = 550,
563
+ PickAway = 551,
564
+ PickUp = 552,
565
+ PickUpExcrement = 553,
566
+ PickUpTheItem = 554,
567
+ Place = 555,
568
+ PlacedItem = 556,
569
+ PlacedItemFailed = 557,
570
+ PlacedOnGround = 558,
571
+ PlantedInGround = 559,
572
+ PlantGatheredPlant = 560,
573
+ PlantGatheringWillDestroy = 561,
574
+ PlantHasResourcesToGather = 562,
575
+ PlantHasResourcesToHarvest = 563,
576
+ PlantHighlyFertile = 564,
577
+ Planting = 565,
578
+ PlantIsBare = 566,
579
+ PlantIsFertile = 567,
580
+ PlantIsInStage = 568,
581
+ PlantIsNotFertile = 569,
582
+ PlantNotReadyToHarvest = 570,
583
+ PlantReadyToGather = 571,
584
+ PlantReadyToGatherNotMaximal = 572,
585
+ PlantReadyToHarvest = 573,
586
+ PlantReadyToHarvestNotMaximal = 574,
587
+ PlayerHas = 575,
588
+ PlayerHasCompletedChallengeRequirement = 576,
589
+ PlayerHasWonChallenge = 577,
590
+ Poisoned = 578,
591
+ PoisonedLostHealth = 579,
592
+ PoisonWorkedItsCourse = 580,
593
+ PouredOut = 581,
594
+ PouredOutOnYourself = 582,
595
+ PouredWaterIntoStill = 583,
596
+ PourHarmedPlant = 584,
597
+ PourHealedPlant = 585,
598
+ PourHealedPlantFully = 586,
599
+ PourHealedPlantPartially = 587,
600
+ PourIncreasedFertility = 588,
601
+ Pouring = 589,
602
+ PourOverWatering = 590,
603
+ Prepare = 591,
604
+ Prepared = 592,
605
+ PreservedFood = 593,
606
+ PurifiedWaterInBottom = 594,
607
+ PurifiedWaterInStill = 595,
608
+ RandomEventsFire = 596,
609
+ ReduceLength = 597,
610
+ RefusedToBeTamed = 598,
611
+ Repair = 599,
612
+ RequiredForDisassembly = 600,
613
+ RequiresFireToBeLit = 601,
614
+ RequiresYouToBeAround = 602,
615
+ Resistant = 603,
616
+ Rest = 604,
617
+ Rested = 605,
618
+ Resting = 606,
619
+ RestingOnGroundNotEffective = 607,
620
+ RestInterrupted = 608,
621
+ RestInterruptedDamage = 609,
622
+ RestInterruptedDying = 610,
623
+ RestInterruptedLoudNoise = 611,
624
+ RestInterruptedPain = 612,
625
+ RestInterruptedStirring = 613,
626
+ RestInterruptedWaterPoured = 614,
627
+ RestLongTime = 615,
628
+ RestModerateTime = 616,
629
+ RestOnBoat = 617,
630
+ RestShortTime = 618,
631
+ RestTime = 619,
632
+ ReturnedToCivilization = 620,
633
+ ReturningToCivilizationSetOffAgain = 621,
634
+ ReturnsToLife = 622,
635
+ Reverse = 623,
636
+ Sailing = 624,
637
+ ScrollMaster = 625,
638
+ ScrollProvidedNoUsefulInsight = 626,
639
+ Seawater = 627,
640
+ SeemsToHaveDrawnEnergy = 628,
641
+ SetTrapOffButNoDamage = 629,
642
+ SetUp = 630,
643
+ ShadowInTheWater = 631,
644
+ SkillHasRaised = 632,
645
+ Skills = 633,
646
+ Sleep = 634,
647
+ Sleeping = 635,
648
+ SleepOnBoat = 636,
649
+ Slept = 637,
650
+ SlitherSuckerConstricts = 638,
651
+ SlitherSuckerFailedToRemove = 639,
652
+ SlitherSuckerFailedToRemoveOuch = 640,
653
+ SlitherSuckerJumpedOnHead = 641,
654
+ SolarStill = 642,
655
+ SomethingInTheWayOf = 643,
656
+ SomethingInTheWayOfButcherFirst = 644,
657
+ SomethingInTheWayOfFire = 645,
658
+ SomethingInTheWayOfFishing = 646,
659
+ SomethingInTheWayOfPerforming = 647,
660
+ SomethingInTheWayOfPlacing = 648,
661
+ SomethingInTheWayOfReleasing = 649,
662
+ SomethingInTheWayOfSummoning = 650,
663
+ SomethingInWayOfClosingDoor = 651,
664
+ SoothedTheirBurnInjuries = 652,
665
+ SoothedYourBurnInjuries = 653,
666
+ SortedByCategory = 654,
667
+ SortedByCraftableOnly = 655,
668
+ SortedByName = 656,
669
+ SortedBySkill = 657,
670
+ SortedByUnlockedTime = 658,
671
+ StaminaIsFull = 659,
672
+ StartedFire = 660,
673
+ StartTravelInWater = 661,
674
+ StarvingToDeath = 662,
675
+ StatAmount = 663,
676
+ StatChangeUnknown = 664,
677
+ StatGained = 665,
678
+ StatIncreasing = 666,
679
+ StatLost = 667,
680
+ StatQuenched = 668,
681
+ StatRegained = 669,
682
+ StatSated = 670,
683
+ SteppingOn = 671,
684
+ Still = 672,
685
+ StillHasNoWaterToPurify = 673,
686
+ StirredUpClawWorm = 674,
687
+ StirredUpCreature = 675,
688
+ StoppedYourBleeding = 676,
689
+ StopUsingVehicle = 677,
690
+ SummonedGuardiansByDiggingTreasure = 678,
691
+ SummonedGuardiansByLockpicking = 679,
692
+ SummonVoidDwellerItem = 680,
693
+ SummonVoidDwellerRinging = 681,
694
+ SummonVoidDwellerShiver = 682,
695
+ SunNotBrightEnoughToStartFire = 683,
696
+ SwampWater = 684,
697
+ Swimming = 685,
698
+ TakenFromGroundBecomeTamed = 686,
699
+ TeleportBlocked = 687,
700
+ Teleported = 688,
701
+ TheirFist = 689,
702
+ TheirInventory = 690,
703
+ ThePlant = 691,
704
+ ThereIsNoContainerOnTheStill = 692,
705
+ ThereIsNoSunToStartFire = 693,
706
+ ThisCannotBeMilked = 694,
707
+ Throw = 695,
708
+ ThrownIntoDepths = 696,
709
+ ThrownIntoObstacle = 697,
710
+ ThrownIntoVoid = 698,
711
+ TierGroup = 699,
712
+ TileMakeCaveEntranceNearby = 700,
713
+ TileMakeCaveEntrancePassable = 701,
714
+ TileMakeCaveEntranceVoid = 702,
715
+ Till = 703,
716
+ Tilling = 704,
717
+ TimeIs = 705,
718
+ TimeIsDawn = 706,
719
+ TimeIsDaytime = 707,
720
+ TimeIsDusk = 708,
721
+ TimeIsNighttime = 709,
722
+ TimeIsSunrise = 710,
723
+ TimeIsSunset = 711,
724
+ ToFight = 712,
725
+ TooDamaged = 713,
726
+ TooExhaustedToJump = 714,
727
+ Touching = 715,
728
+ TrampledFire = 716,
729
+ TrampledFireFail = 717,
730
+ TrampledFirePartial = 718,
731
+ TrampledIntoGround = 719,
732
+ TrampleIntoGround = 720,
733
+ Trampling = 721,
734
+ TransmogrificationNoEffect = 722,
735
+ TransmogrificationNotPossible = 723,
736
+ Transmogrified = 724,
737
+ TrapMissed = 725,
738
+ TrapStoppedYou = 726,
739
+ Traveling = 727,
740
+ Treasure = 728,
741
+ TreasureIsBlocked = 729,
742
+ UiActionCannotUseInaccessibleItem = 730,
743
+ UiActionCannotUseInThisSituation = 731,
744
+ UiActionCannotUseNoItemHovered = 732,
745
+ UiActionCannotUseNotInRange = 733,
746
+ UiActionCannotUseOnThisIsland = 734,
747
+ UiActionCannotUseRequiresCreature = 735,
748
+ UiActionCannotUseRequiresDoodad = 736,
749
+ UiActionCannotUseRequiresItem = 737,
750
+ UiActionCannotUseRequiresNPC = 738,
751
+ UiActionCannotUseRequiresVehicle = 739,
752
+ UiDialogTradeIndicateTradeAlreadyTradedBuyDialogue1 = 740,
753
+ UiDialogTradeIndicateTradeAlreadyTradedBuyDialogue2 = 741,
754
+ UiDialogTradeIndicateTradeAlreadyTradedBuyDialogue3 = 742,
755
+ UiDialogTradeIndicateTradeAlreadyTradedSellDialogue1 = 743,
756
+ UiDialogTradeIndicateTradeAlreadyTradedSellDialogue2 = 744,
757
+ UiDialogTradeIndicateTradeAlreadyTradedSellDialogue3 = 745,
758
+ UiDialogTradeIndicateTradeTooMuchTradesDialogue1 = 746,
759
+ UiDialogTradeIndicateTradeTooMuchTradesDialogue2 = 747,
760
+ UiDialogTradeIndicateTradeTooMuchTradesDialogue3 = 748,
761
+ UnhitchCreature = 749,
762
+ Unknown = 750,
763
+ Unlimited = 751,
764
+ UnlockedChest = 752,
765
+ UnpurifiedFreshWater = 753,
766
+ UnpurifiedWaterInStill = 754,
767
+ UnpurifiedWaterInTop = 755,
768
+ Use = 756,
769
+ UsingBareHands = 757,
770
+ VehicleDefense = 758,
771
+ Vulnerable = 759,
772
+ Water = 760,
773
+ WaterGathering = 761,
774
+ WaterPutOutFire = 762,
775
+ WellIsDry = 763,
776
+ WellIsFull = 764,
777
+ WildGoatRefusedToBeMilked = 765,
778
+ WorkingYourselfIntoExhaustion = 766,
779
+ WorkingYourselfIntoExhaustionAndDrowning = 767,
780
+ WorldContainer = 768,
781
+ You = 769,
782
+ YouAbsorb = 770,
783
+ YouApplied = 771,
784
+ YouAreAlready = 772,
785
+ YouAte = 773,
786
+ YouBeginResting = 774,
787
+ YouCannotDoThatYet = 775,
788
+ YouCanNowCombatTheTides = 776,
789
+ YouCrafted = 777,
790
+ YouDoNotFindTreasureYet = 778,
791
+ YouDrank = 779,
792
+ YouDropTheTorch = 780,
793
+ YouEnchant = 781,
794
+ YouEquip = 782,
795
+ YouExude = 783,
796
+ YouExudeSome = 784,
797
+ YouExudeSomeReasonConflicting = 785,
798
+ YouExudeSomeReasonMax = 786,
799
+ YouExudeSomeReasonProperties = 787,
800
+ YouFailedTo = 788,
801
+ YouFailedToExtinguishedFireFully = 789,
802
+ YouFailedToHeal = 790,
803
+ YouFailedToHealOther = 791,
804
+ YouFire = 792,
805
+ YouGathered = 793,
806
+ YouHarvested = 794,
807
+ YouHave = 795,
808
+ YouHaveAlreadyLearned = 796,
809
+ YouHaveBeenCut = 797,
810
+ YouHaveCaged = 798,
811
+ YouHaveCommanded = 799,
812
+ YouHaveDied = 800,
813
+ YouHaveHealedOther = 801,
814
+ YouHaveKilled = 802,
815
+ YouHaveNotCommanded = 803,
816
+ YouHaveReleased = 804,
817
+ YouHaveSummoned = 805,
818
+ YouHaveTamed = 806,
819
+ YouHaveUncaged = 807,
820
+ YouNoticeBarren = 808,
821
+ YouNoticeBecomeEnraged = 809,
822
+ YouNoticeDying = 810,
823
+ YouNoticeFertilityDecreasing = 811,
824
+ YouNoticeFertilityIncreasing = 812,
825
+ YouNoticeGrowing = 813,
826
+ YouNoticeLavaCooling = 814,
827
+ YouNoticeLavaHardening = 815,
828
+ YouNoticePerish = 816,
829
+ YouNoticePlantDamage = 817,
830
+ YouNoticePlantRegenerated = 818,
831
+ YouNoticeRegrowing = 819,
832
+ YouNoticeStumbleInjureItself = 820,
833
+ YouNoticeTakeFromGround = 821,
834
+ YouNoticeWoundsClosing = 822,
835
+ YouOfferedToCreature = 823,
836
+ YouOfferedToCreatureRejects = 824,
837
+ YouOpen = 825,
838
+ YouPacked = 826,
839
+ YouPickedUp = 827,
840
+ YouRefine = 828,
841
+ YouReinforce = 829,
842
+ YouRepair = 830,
843
+ YouReturnFromCivilizationWith = 831,
844
+ YourFist = 832,
845
+ YourHands = 833,
846
+ YourInventory = 834,
847
+ YourIsland = 835,
848
+ YouSeeALivingMushroomSpore = 836,
849
+ YouSeeASkeletonCollapse = 837,
850
+ YouSeeASlimeCombine = 838,
851
+ YouSeeAZombieBleeding = 839,
852
+ YouSeeCoolDown = 840,
853
+ YouSeeDrop = 841,
854
+ YouSeeEngulfFire = 842,
855
+ YouSeeFireSpread = 843,
856
+ YouSeeHelpingPlant = 844,
857
+ YouSeeLay = 845,
858
+ YouSeeLayingTrap = 846,
859
+ YouSeeSpewLava = 847,
860
+ YouSeeSpitAcid = 848,
861
+ YouSeeSpringForth = 849,
862
+ YouSeeSummon = 850,
863
+ YouSeeSwampFlood = 851,
864
+ YouSeeTrampling = 852,
865
+ YouSetTheTrapOff = 853,
866
+ YouStokeTheCreature = 854,
867
+ YouSwapMainHandAndOffHand = 855,
868
+ YouThrew = 856,
869
+ YouTilled = 857,
870
+ YouUnequip = 858,
871
+ YouUsed = 859,
872
+ YouViewTheItemsOn = 860,
873
+ YouWhileTraveling = 861
849
874
  }
850
875
  export default Message;