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