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