@wayward/types 2.14.0 → 2.14.1-beta.dev.20241215.1

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