@wayward/types 2.12.1-beta.dev.20221012.1 → 2.12.1-beta.dev.20221014.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. package/definitions/game/game/Game.d.ts +11 -1
  2. package/definitions/game/game/IGame.d.ts +5 -0
  3. package/definitions/game/game/entity/Human.d.ts +2 -0
  4. package/definitions/game/game/entity/action/usable/UsableAction.d.ts +1 -0
  5. package/definitions/game/game/entity/action/usable/actions/item/UsableActionsUseItem.d.ts +7 -1
  6. package/definitions/game/game/entity/player/PlayerManager.d.ts +4 -3
  7. package/definitions/game/game/inspection/InfoProvider.d.ts +1 -0
  8. package/definitions/game/game/inspection/inspections/IslandInspection.d.ts +2 -0
  9. package/definitions/game/game/item/Item.d.ts +1 -1
  10. package/definitions/game/game/item/ItemFinder.d.ts +6 -1
  11. package/definitions/game/game/meta/prompt/IPrompt.d.ts +29 -28
  12. package/definitions/game/game/meta/prompt/PromptDescriptions.d.ts +1 -0
  13. package/definitions/game/language/dictionary/Message.d.ts +930 -929
  14. package/definitions/game/language/dictionary/UiTranslation.d.ts +696 -690
  15. package/definitions/game/language/segment/LinkSegment.d.ts +1 -1
  16. package/definitions/game/multiplayer/IMultiplayer.d.ts +16 -14
  17. package/definitions/game/renderer/IRenderer.d.ts +4 -0
  18. package/definitions/game/ui/component/Dropdown.d.ts +3 -1
  19. package/definitions/game/ui/component/Input.d.ts +4 -4
  20. package/definitions/game/ui/component/Text.d.ts +1 -1
  21. package/definitions/game/ui/input/Bindable.d.ts +157 -156
  22. package/definitions/game/ui/input/BindableManager.d.ts +2 -2
  23. package/definitions/game/ui/screen/screens/game/static/ActionBar.d.ts +4 -1
  24. package/definitions/game/ui/screen/screens/menu/menus/PauseMenu.d.ts +1 -0
  25. package/definitions/game/ui/screen/screens/menu/menus/newgame/TabGameMode.d.ts +0 -4
  26. package/definitions/game/ui/screen/screens/menu/menus/newgame/TabGameplayModifiers.d.ts +4 -1
  27. package/definitions/game/ui/screen/screens/menu/menus/newgame/TabMultiplayer.d.ts +3 -0
  28. package/definitions/game/ui/screen/screens/menu/menus/options/IOptionsTabs.d.ts +6 -7
  29. package/definitions/game/ui/screen/screens/menu/menus/options/TabDeveloper.d.ts +4 -1
  30. package/package.json +1 -1
@@ -10,934 +10,935 @@
10
10
  */
11
11
  declare enum Message {
12
12
  None = 0,
13
- Aberrant = 1,
14
- AboutHours = 2,
15
- Absorb = 3,
16
- AbsorbNotPossible = 4,
17
- ActionAlterAltered = 5,
18
- ActionAlterFailed = 6,
19
- ActionAlterNotPossible = 7,
20
- ActionAttachContainerAlreadyHasContainer = 8,
21
- ActionAttachContainerAttachedContainer = 9,
22
- ActionAttachContainerAttachingContainer = 10,
23
- ActionAttachContainerCannotAttach = 11,
24
- ActionAttachContainerNothingToAttachContainerTo = 12,
25
- ActionAttackNoHandsSelected = 13,
26
- ActionButcherReleasesLava = 14,
27
- ActionCastAreaOverfished = 15,
28
- ActionConsumeItemTypeStats = 16,
29
- ActionCraft = 17,
30
- ActionCraftEfficacy = 18,
31
- ActionCraftEfficacyHigh = 19,
32
- ActionCraftEfficacyHighest = 20,
33
- ActionCraftEfficacyLow = 21,
34
- ActionCraftEfficacyLowest = 22,
35
- ActionCraftEfficacyMed = 23,
36
- ActionCraftEfficacyPercent = 24,
37
- ActionCraftYouLackTheRequirements = 25,
38
- ActionDetachContainerDetachContainer = 26,
39
- ActionDetachContainerNoDetach = 27,
40
- ActionDisassembleNoItemsSalvaged = 28,
41
- ActionDisassembleSalvaged = 29,
42
- ActionDismantleSeparated = 30,
43
- ActionDrinkInFrontNoDrink = 31,
44
- ActionEnhance = 32,
45
- ActionEnhanceEnhanced = 33,
46
- ActionEnhanceFailed = 34,
47
- ActionEnhanceNotPossible = 35,
48
- ActionFishingNothingBiting = 36,
49
- ActionFishingSlipped = 37,
50
- ActionFishingTooShallow = 38,
51
- ActionJumpCannotJump = 39,
52
- ActionMeleeNothingToAttack = 40,
53
- ActionMoveToSwimOffEdgeCannotCombatTides = 41,
54
- ActionNavigateMoon = 42,
55
- ActionNavigateNotOverworld = 43,
56
- ActionNavigateSun = 44,
57
- ActionNavigateUseSextant = 45,
58
- ActionPetCreatureRefused = 46,
59
- ActionPetNoTamedCreature = 47,
60
- ActionPickUpAllItemsNoItems = 48,
61
- ActionPickUpExcrementNoExcrement = 49,
62
- ActionPickUpItemNoItem = 50,
63
- ActionPickUpNoPickUp = 51,
64
- ActionRefineNoDurability = 52,
65
- ActionReleaseNoTamedCreature = 53,
66
- ActionRenameIsland = 54,
67
- ActionRenameNothing = 55,
68
- ActionSailToCivilizationNotInsideBoat = 56,
69
- ActionSailToIsland = 57,
70
- ActionSailToIslandArrived = 58,
71
- ActionSailToIslandPlayerArriving = 59,
72
- ActionSailToIslandPlayerDeparting = 60,
73
- ActionTameCreatureTamed = 61,
74
- ActionTameNoCreature = 62,
75
- ActionTestDepthNothingToTest = 63,
76
- ActionTestDepthWell = 64,
77
- ActionToggleContainerNoContainer = 65,
78
- ActionToggleDoorNoDoor = 66,
79
- ActionToggleHitchAlreadyHitched = 67,
80
- ActionToggleHitchAlreadyUnhitched = 68,
81
- ActionToggleHitchNoCreature = 69,
82
- ActionToggleHitchNoHitch = 70,
83
- ActionToggleTilledAlreadyPacked = 71,
84
- ActionToggleTilledAlreadyTilled = 72,
85
- ActionUpgrade = 73,
86
- ActionUpgradeFailed = 74,
87
- ActionUpgradeNotMagical = 75,
88
- ActionUpgradeNotPossible = 76,
89
- ActionUpgradeUpgraded = 77,
90
- ActionUseItemWeaponNeeded = 78,
91
- ActionWith = 79,
92
- AddedFuelToFire = 80,
93
- AddedFuelToTorch = 81,
94
- AddToQuickslot = 82,
95
- AllEquipmentUnEquipped = 83,
96
- AlreadyDesalinatedWaterInStill = 84,
97
- AlreadyFullyRefined = 85,
98
- AlreadyFullyRepaired = 86,
99
- AlreadyPreserved = 87,
100
- Alter = 88,
101
- AnotherIsland = 89,
102
- AnUnknownItem = 90,
103
- AppearedNotEffectiveForGathering = 91,
104
- AppearsToBeAberrant = 92,
105
- ArmorAppeared = 93,
106
- ArmorProtectedFromInjuryAgainst = 94,
107
- Attack = 95,
108
- AttemptedToDropAllIntoFire = 96,
109
- AttemptedToPlaceAllOnGround = 97,
110
- AttemptToSoothBurnInWater = 98,
111
- AttemptToTill = 99,
112
- AutoActionsNoItem = 100,
113
- BadlyBurnedLostHealth = 101,
114
- BarteringSkillsProvided = 102,
115
- BasedOnItSeems = 103,
116
- BeenPoisoned = 104,
117
- BeginSleeping = 105,
118
- BeginUsingVehicle = 106,
119
- BestForCrafting = 107,
120
- BleedingHasStopped = 108,
121
- BleedingProfusely = 109,
122
- BleedingToDeathLostHealth = 110,
123
- BookBlank = 111,
124
- BookContains = 112,
125
- BookCrumbles = 113,
126
- BookDiagrams = 114,
127
- BookEmpty = 115,
128
- BookNothing = 116,
129
- BookOpen = 117,
130
- BookScribbles = 118,
131
- BothEffectiveIneffective = 119,
132
- BrokeIntoPieces = 120,
133
- BrokenOnImpact = 121,
134
- BrokenWhileFiring = 122,
135
- Build = 123,
136
- Burned = 124,
137
- CannotAddAnyMoreFuel = 125,
138
- CannotBeCrafted = 126,
139
- CannotBePerformedOverWater = 127,
140
- CannotBePlacedHere = 128,
141
- CannotBePreserved = 129,
142
- CannotBeRefined = 130,
143
- CannotBeRefinedReinforcementNeeded = 131,
144
- CannotBeReinforced = 132,
145
- CannotBeRepaired = 133,
146
- CannotBuildHere = 134,
147
- CannotDoThatHere = 135,
148
- CannotDropHere = 136,
149
- CannotEquipThatThere = 137,
150
- CannotFishFor = 138,
151
- CannotHere = 139,
152
- CannotInWater = 140,
153
- CannotLeave = 141,
154
- CannotPickUpLockedContainer = 142,
155
- CannotPickUpWhileLit = 143,
156
- CannotPlaceContainerInItself = 144,
157
- CannotPlaceHere = 145,
158
- CannotPlaceThatFromHere = 146,
159
- CannotPlaceThatHere = 147,
160
- CannotPlaceThatOverWater = 148,
161
- CannotPlantHereTilled = 149,
162
- CannotRepairWhileLit = 150,
163
- CannotRestHere = 151,
164
- CannotSeeHere = 152,
165
- CannotSleepHere = 153,
166
- CannotStartFireHere = 154,
167
- CannotToTellTime = 155,
168
- CannotUseCommand = 156,
169
- CannotWhenProtected = 157,
170
- CannotWhenProtectedDangerousAction = 158,
171
- CarryingTooMuchWeight = 159,
172
- CarvedUpCorpse = 160,
173
- Carving = 161,
174
- CastYourLine = 162,
175
- Category = 163,
176
- CaughtFish = 164,
177
- ChatBanCommand = 165,
178
- ChatBannedCommand = 166,
179
- ChatCommandsCommand = 167,
180
- ChatCommandsCommandCommand = 168,
181
- ChatPingCommand = 169,
182
- ChatPlayerMessage = 170,
183
- ChatPlayersCommand = 171,
184
- ChatServerMessage = 172,
185
- ChatUnbanCommand = 173,
186
- ChatUnknownCommand = 174,
187
- Chop = 175,
188
- Chopping = 176,
189
- ClearedBlood = 177,
190
- ClearMessages = 178,
191
- Clockwise = 179,
192
- CloseContainer = 180,
193
- CloseDoor = 181,
194
- CloseGate = 182,
195
- CloseToBeingDestroyed = 183,
196
- Consumed = 184,
197
- Container = 185,
198
- ContextMenuActionHotkey = 186,
199
- ContextMenuHelpActions = 187,
200
- ContextMenuHelpAutoActions = 188,
201
- ContextMenuHelpItems = 189,
202
- CopiedMap = 190,
203
- CopySelectedText = 191,
204
- CopyX = 192,
205
- CorpseOf = 193,
206
- CorpseOfNamed = 194,
207
- CouldNotDecipher = 195,
208
- Counterclockwise = 196,
209
- Craft = 197,
210
- Crafted = 198,
211
- Crafts = 199,
212
- CreatureAngered = 200,
213
- CreatureAppears = 201,
214
- CreatureAppeased = 202,
215
- CreatureExcrement = 203,
216
- CreatureHappinessHigh = 204,
217
- CreatureHappinessLow = 205,
218
- CreatureHappinessLowest = 206,
219
- CreatureHappinessNormal = 207,
220
- CreatureIdolAttractedCreature = 208,
221
- CreatureRefusesToBeTamed = 209,
222
- CreatureRefusesYou = 210,
223
- CreatureUntamed = 211,
224
- CuredYourPoison = 212,
225
- Cut = 213,
226
- CutHasHealed = 214,
227
- CutLostHealth = 215,
228
- CutWasBandaged = 216,
229
- DamageAppeared = 217,
230
- DamagedByPouring = 218,
231
- DayQuarter1 = 219,
232
- DayQuarter2 = 220,
233
- DayQuarter3 = 221,
234
- DayQuarter4 = 222,
235
- DealtNoDamageToYou = 223,
236
- DeathBy = 224,
237
- DeathByBleeding = 225,
238
- DeathByBurning = 226,
239
- DeathByChallengeWinner = 227,
240
- DeathByConsumption = 228,
241
- DeathByCut = 229,
242
- DeathByDrowning = 230,
243
- DeathByExhaustion = 231,
244
- DeathByFistByPlayer = 232,
245
- DeathByFrostbite = 233,
246
- DeathByMalnutrition = 234,
247
- DeathByPoison = 235,
248
- DeathBySteppingOn = 236,
249
- DeathByTrap = 237,
250
- DeathByWeaponByPlayer = 238,
251
- Decay = 239,
252
- DestroyedFromUse = 240,
253
- DetachContainer = 241,
254
- Dexterity = 242,
255
- DexterityIncreasing = 243,
256
- DidNotSeemToBeHurting = 244,
257
- Dig = 245,
258
- DigAway = 246,
259
- Digging = 247,
260
- DigWithHands = 248,
261
- Disabled = 249,
262
- Disassemble = 250,
263
- DisassembleAction = 251,
264
- Disassembling = 252,
265
- DiscoveredCaveEntrance = 253,
266
- DiscoveredInTheBottle = 254,
267
- DiscoveredLavaPassage = 255,
268
- Dismantle = 256,
269
- DismantleAction = 257,
270
- DismantleLabel = 258,
271
- Dismantling = 259,
272
- DismantlingRequires = 260,
273
- Dismounted = 261,
274
- DisplacedPuddles = 262,
275
- DoNotHaveTreasureMaps = 263,
276
- DoNotProduceAnyResources = 264,
277
- DoodadCauseStatus = 265,
278
- DoodadGroupTier = 266,
279
- DrewSurroundings = 267,
280
- Drink = 268,
281
- Drop = 269,
282
- DropAll = 270,
283
- DropAllOfSameQuality = 271,
284
- DroppedIntoDepths = 272,
285
- DroppedIntoFire = 273,
286
- DroppedIntoTheVoid = 274,
287
- DryadSprouted = 275,
288
- DueToDehydration = 276,
289
- DueToStarvation = 277,
290
- DugTreasureOut = 278,
291
- DumpContentsOfContainerInInventory = 279,
292
- Durability = 280,
293
- DyingOfDehydration = 281,
294
- EarnedMilestone = 282,
295
- East = 283,
296
- EastNortheast = 284,
297
- EastSoutheast = 285,
298
- Effective = 286,
299
- Enabled = 287,
300
- Enchant = 288,
301
- EquipmentPreventedStatusEffects = 289,
302
- EquipTo = 290,
303
- ErrorHasOccured = 291,
304
- ExtinguishedFire = 292,
305
- ExtinguishedLightSource = 293,
306
- Exude = 294,
307
- ExudeNotPossible = 295,
308
- FailedToAbsorb = 296,
309
- FailedToAddFuelToTorch = 297,
310
- FailedToCatchFish = 298,
311
- FailedToCauseDamage = 299,
312
- FailedToCauseYouDamage = 300,
313
- FailedToCopy = 301,
314
- FailedToDraw = 302,
315
- FailedToEnchant = 303,
316
- FailedToExude = 304,
317
- FailedToIgniteTorch = 305,
318
- FailedToPickLock = 306,
319
- FailedToPreserve = 307,
320
- FailedToRefine = 308,
321
- FailedToReinforce = 309,
322
- FailedToRepair = 310,
323
- FailedToStartFire = 311,
324
- FailedToTame = 312,
325
- FailedToTransmogrify = 313,
326
- FarOffLands = 314,
327
- FeltBurningPainLostHealth = 315,
328
- FeltFrostbitePainLostHealth = 316,
329
- FewMinutes = 317,
330
- Filled = 318,
331
- FilledFrom = 319,
332
- FireAroundYouIsWarm = 320,
333
- FiredIntoObstacle = 321,
334
- FireOverflowed = 322,
335
- FireOverflowedFireElemental = 323,
336
- FireSource = 324,
337
- FishingWithNoBait = 325,
338
- Floating = 326,
339
- FreshWater = 327,
340
- FromTheStill = 328,
341
- Fuel = 329,
342
- FuelIsRequired = 330,
343
- FullyDecodedMap = 331,
344
- GameHasBeenSavedIsTakingUpMB = 332,
345
- Gather = 333,
346
- GatherDestroy = 334,
347
- Gathering = 335,
348
- GatherWithHands = 336,
349
- GhostNoActions = 337,
350
- GhostOf = 338,
351
- GoatHasNoMilk = 339,
352
- GrabAll = 340,
353
- Group = 341,
354
- HackAway = 342,
355
- HandProtectionPreventedInjury = 343,
356
- HandsNotEffectiveFor = 344,
357
- Harvest = 345,
358
- Harvesting = 346,
359
- HarvestWithHands = 347,
360
- HasBeenHurtByATrap = 348,
361
- HasDecayed = 349,
362
- HasHitYouForDamage = 350,
363
- HasNoEffect = 351,
364
- HasSetTrapOffNoDamage = 352,
365
- HasSplit = 353,
366
- Help = 354,
367
- HelpGrow = 355,
368
- Here = 356,
369
- Hints = 357,
370
- HintsDisabled = 358,
371
- HintsEnabled = 359,
372
- Hitch = 360,
373
- HitchAttempt = 361,
374
- HitchCreature = 362,
375
- HitchDisabled = 363,
376
- HitchInUse = 364,
377
- HitchUnhitch = 365,
378
- HitForDamage = 366,
379
- HitYouForDamage = 367,
380
- Hour = 368,
381
- Hours = 369,
382
- HurtHandsHittingWithoutWeapons = 370,
383
- HurtHandsWithNoTool = 371,
384
- Ignite = 372,
385
- IgnitedTorch = 373,
386
- Ineffective = 374,
387
- InjuredFromTrap = 375,
388
- InNeedOfRepair = 376,
389
- InspectItem = 377,
390
- InteractingWithHasInjuredYouForDamage = 378,
391
- Inventory = 379,
392
- IsInTheWayOfPickingUp = 380,
393
- It = 381,
394
- ItAlsoReveals = 382,
395
- ItAlsoSeems = 383,
396
- ItContains = 384,
397
- ItemFromWater = 385,
398
- JoinedAServer = 386,
399
- Jump = 387,
400
- Killed = 388,
401
- KnowledgeHasIncreased = 389,
402
- LabelActionTier = 390,
403
- LabelAdditionalRequirements = 391,
404
- LabelAttackFromTactics = 392,
405
- LabelBase = 393,
406
- LabelCanIncrease = 394,
407
- LabelCraftingReputation = 395,
408
- LabelCraftingRequires = 396,
409
- LabelCraftingSkillReputation = 397,
410
- LabelDecay = 398,
411
- LabelDefense = 399,
412
- LabelDismantlingRequires = 400,
413
- LabelDurability = 401,
414
- LabelEquip = 402,
415
- LabelGrouping = 403,
416
- LabelHave = 404,
417
- LabelLeftHandAttack = 405,
418
- LabelLevel = 406,
419
- LabelLightSourceWhenLit = 407,
420
- LabelOnCure = 408,
421
- LabelOnDrink = 409,
422
- LabelOnEat = 410,
423
- LabelOnEquip = 411,
424
- LabelOnHeal = 412,
425
- LabelOnOtherHeal = 413,
426
- LabelPreservationRate = 414,
427
- LabelProtected = 415,
428
- LabelRange = 416,
429
- LabelRanged = 417,
430
- LabelRangedAttack = 418,
431
- LabelRangedDamage = 419,
432
- LabelReputationImpact = 420,
433
- LabelResists = 421,
434
- LabelRightHandAttack = 422,
435
- LabelSkill = 423,
436
- LabelStokeFireStrength = 424,
437
- LabelThrowDamageType = 425,
438
- LabelTrapDamage = 426,
439
- LabelUse = 427,
440
- LabelUses = 428,
441
- LabelVulnerabilities = 429,
442
- LabelWeight = 430,
443
- LabelWeightCapacity = 431,
444
- LabelWeightReduction = 432,
445
- LabelWorth = 433,
446
- LastPlaceYouLeftOff = 434,
447
- LearnedHowToCreate = 435,
448
- LeftHand = 436,
449
- LikelyFailures = 437,
450
- Limited = 438,
451
- Lockpick = 439,
452
- Magical = 440,
453
- MagicalItemDamage = 441,
454
- MapDestroyed = 442,
455
- MapNearlyDestroyed = 443,
456
- MapNotOfThisArea = 444,
457
- MaterialsDestroyed = 445,
458
- MerchantAlreadyTradedItem = 446,
459
- MessageOfTheDay = 447,
460
- Metabolism = 448,
461
- MetabolismSlowed = 449,
462
- Milk = 450,
463
- Mine = 451,
464
- Mining = 452,
465
- MissedWith = 453,
466
- MissedYouWith = 454,
467
- MoveAllOfSameQualityToFacingContainer = 455,
468
- MoveAllOfSameQualityToInventory = 456,
469
- MoveAllOfSameQualityToLastOpenedContainer = 457,
470
- MoveAllOfSameQualityToOpenedContainer = 458,
471
- MoveAllToFacingContainer = 459,
472
- MoveAllToInventory = 460,
473
- MoveAllToLastOpenedContainer = 461,
474
- MoveAllToOpenedContainer = 462,
475
- MovedItem = 463,
476
- MoveOverTrapButDoNotSetOff = 464,
477
- MoveToFacingContainer = 465,
478
- MoveToInventory = 466,
479
- MoveToLastOpenedContainer = 467,
480
- MoveToOpenedContainer = 468,
481
- MultiplayerGamePaused = 469,
482
- MultiplayerGameResumed = 470,
483
- MultiplayerPlayerConnected = 471,
484
- MultiplayerPlayerDied = 472,
485
- MultiplayerPlayerDisconnected = 473,
486
- MultiplayerPlayerJoined = 474,
487
- MultipleQuickslots = 475,
488
- MustBeEquippedToIgnite = 476,
489
- Mysteriously = 477,
490
- Name = 478,
491
- NearlyBurnedEquipmentProtectedYou = 479,
492
- NeedToStartTravelsOutside = 480,
493
- NeedWaterForBoat = 481,
494
- Negatively = 482,
495
- NightQuarter1 = 483,
496
- NightQuarter2 = 484,
497
- NightQuarter3 = 485,
498
- NightQuarter4 = 486,
499
- No = 487,
500
- NoAmmunitionForThatWeapon = 488,
501
- NoFireToStokeWith = 489,
502
- NoFishAtLocation = 490,
503
- NoGroundWater = 491,
504
- NoInkToDrawMap = 492,
505
- NoKindlingOrFuelItemsToStartFire = 493,
506
- NoKindlingToStartFire = 494,
507
- NoLongerFeelPainOfBeingBurned = 495,
508
- NoLongerFeelPainOfBeingFrostbitten = 496,
509
- NoLongerHostile = 497,
510
- NoMoreRoomInContainer = 498,
511
- NoPaperToDrawMap = 499,
512
- NoRequiredItemToFireWeapon = 500,
513
- NoReturnWithoutCompletingChallenges = 501,
514
- NoRoomForImprovement = 502,
515
- NoRoomToDrop = 503,
516
- North = 504,
517
- Northeast = 505,
518
- NorthNortheast = 506,
519
- NorthNorthwest = 507,
520
- Northwest = 508,
521
- NotAvailable = 509,
522
- NotEnoughPurifiedWaterYet = 510,
523
- NotEnoughTreasureToReturn = 511,
524
- NotFacingCreatureToOfferThisTo = 512,
525
- NotFacingLockedObject = 513,
526
- NotFacingOtherToHeal = 514,
527
- NotFacingValidItem = 515,
528
- NothingHereToButcher = 516,
529
- NothingHereToFill = 517,
530
- NothingHereToGrasp = 518,
531
- NothingTo = 519,
532
- NothingToGetFromThis = 520,
533
- NothingToHarvestFromThisGather = 521,
534
- NothingToSmother = 522,
535
- NothingUsefulToHarvestYet = 523,
536
- NoTinderToStartFire = 524,
537
- NotSuitableToPlant = 525,
538
- NoWaterInStill = 526,
539
- NPCStartingDialog1 = 527,
540
- NPCStartingDialog2 = 528,
541
- NPCStartingDialog3 = 529,
542
- NPCStartingDialog4 = 530,
543
- NPCWelcome = 531,
544
- NPCWelcomeCredit = 532,
545
- NumberEight = 533,
546
- NumberFive = 534,
547
- NumberFour = 535,
548
- NumberNine = 536,
549
- NumberOne = 537,
550
- NumberSeven = 538,
551
- NumberSix = 539,
552
- NumberTen = 540,
553
- NumberThree = 541,
554
- NumberTwo = 542,
555
- ObjectIsLocked = 543,
556
- ObjectIsLockedAttemptToBreakIt = 544,
557
- Offer = 545,
558
- OfferAberrantFail = 546,
559
- OfferAberrantFailButTamed = 547,
560
- Open = 548,
561
- OpenClose = 549,
562
- OpenCloseContainer = 550,
563
- OpenCloseDoor = 551,
564
- OpenCloseGate = 552,
565
- OpenDoor = 553,
566
- OpenGate = 554,
567
- OverEatingLostStamina = 555,
568
- OverHydratingLostStamina = 556,
569
- Pack = 557,
570
- PaperTurnedToMush = 558,
571
- ParryTheBlow = 559,
572
- PartiallyDecodedMap = 560,
573
- PenultimateAnd = 561,
574
- Pet = 562,
575
- PetCreature = 563,
576
- PickAway = 564,
577
- PickUp = 565,
578
- PickUpAllItems = 566,
579
- PickUpDoodad = 567,
580
- PickUpDoodadSpecific = 568,
581
- PickUpExcrement = 569,
582
- PickUpExcrementWithHands = 570,
583
- PickUpItem = 571,
584
- PickUpTheItem = 572,
585
- Place = 573,
586
- PlacedOnGround = 574,
587
- Plant = 575,
588
- PlantedInGround = 576,
589
- PlantGatheredPlant = 577,
590
- PlantGatheringWillDestroy = 578,
591
- PlantHasResourcesToGather = 579,
592
- PlantHasResourcesToHarvest = 580,
593
- PlantHighlyFertile = 581,
594
- Planting = 582,
595
- PlantIsBare = 583,
596
- PlantIsFertile = 584,
597
- PlantIsInStage = 585,
598
- PlantIsNotFertile = 586,
599
- PlantNotReadyToHarvest = 587,
600
- PlantReadyToGather = 588,
601
- PlantReadyToGatherNotMaximal = 589,
602
- PlantReadyToHarvest = 590,
603
- PlantReadyToHarvestNotMaximal = 591,
604
- Player = 592,
605
- PlayerHas = 593,
606
- PlayerHasCompletedChallengeRequirement = 594,
607
- PlayerHasWonChallenge = 595,
608
- Poisoned = 596,
609
- PoisonedLostHealth = 597,
610
- PoisonWorkedItsCourse = 598,
611
- Positively = 599,
612
- PouredOut = 600,
613
- PouredOutOnYourself = 601,
614
- PouredWaterIntoStill = 602,
615
- PourHarmedPlant = 603,
616
- PourHealedPlant = 604,
617
- PourHealedPlantFully = 605,
618
- PourHealedPlantPartially = 606,
619
- PourIncreasedFertility = 607,
620
- Pouring = 608,
621
- Prepare = 609,
622
- Prepared = 610,
623
- Preserve = 611,
624
- PreservedFood = 612,
625
- PurifiedWaterInStill = 613,
626
- Quality = 614,
627
- RandomEventsFire = 615,
628
- Recent = 616,
629
- ReduceLength = 617,
630
- Refine = 618,
631
- RefusedToBeTamed = 619,
632
- Reinforce = 620,
633
- Release = 621,
634
- RemoveAction = 622,
635
- RemoveFromQuickslot = 623,
636
- Repair = 624,
637
- ReputationDecreased = 625,
638
- ReputationIncreased = 626,
639
- ReputationUpdate = 627,
640
- RequiredForDisassembleLabel = 628,
641
- RequiredForDisassembly = 629,
642
- RequiresFireToBeLit = 630,
643
- RequiresYouFacingFireSource = 631,
644
- RequiresYouToBeAround = 632,
645
- Resistant = 633,
646
- ResistOrVuln = 634,
647
- ResistOrVulnAll = 635,
648
- Rest = 636,
649
- Rested = 637,
650
- Resting = 638,
651
- RestingOnGroundNotEffective = 639,
652
- RestInterrupted = 640,
653
- RestInterruptedDamage = 641,
654
- RestInterruptedDying = 642,
655
- RestInterruptedLoudNoise = 643,
656
- RestInterruptedPain = 644,
657
- RestInterruptedStirring = 645,
658
- RestInterruptedWaterPoured = 646,
659
- RestLongTime = 647,
660
- RestModerateTime = 648,
661
- RestOnBoat = 649,
662
- RestOnGround = 650,
663
- RestShortTime = 651,
664
- RestTime = 652,
665
- ReturnedToCivilization = 653,
666
- ReturningToCivilizationSetOffAgain = 654,
667
- ReturnsToLife = 655,
668
- Reveals = 656,
669
- RevealsEntityAppearsHurt = 657,
670
- RevealsEntityAppearsUnharmed = 658,
671
- RevealsEntityAppearsVeryHurt = 659,
672
- RevealsEntityIsAtPercentHealth = 660,
673
- RevealsEntityIsInjured = 661,
674
- RevealsEntityIsMostlyUninjured = 662,
675
- RevealsEntityIsOnTheVergeOfDeath = 663,
676
- RevealsEntityIsSeverelyInjured = 664,
677
- RevealsEntityIsUninjured = 665,
678
- RevealsEntitySeemsInjured = 666,
679
- RevealsEntitySeemsUninjured = 667,
680
- RevealsNumberOfResistancesAndVulnerabilities = 668,
681
- RevealsResistancesAndVulnerabilities = 669,
682
- RevealsSomeResistancesAndVulnerabilities = 670,
683
- Reverse = 671,
684
- RightHand = 672,
685
- Sailing = 673,
686
- ScrollMaster = 674,
687
- ScrollProvidedNoUsefulInsight = 675,
688
- Seawater = 676,
689
- SeemsToHaveDrawnEnergy = 677,
690
- SetTrapOffButNoDamage = 678,
691
- SetUp = 679,
692
- ShadowInTheWater = 680,
693
- Skill = 681,
694
- SkillHasRaised = 682,
695
- Skills = 683,
696
- Sleep = 684,
697
- Sleeping = 685,
698
- SleepOnBoat = 686,
699
- Slept = 687,
700
- SlitherSuckerConstricts = 688,
701
- SlitherSuckerJumpedOnHead = 689,
702
- SomethingInTheWayOf = 690,
703
- SomethingInTheWayOfButcherFirst = 691,
704
- SomethingInTheWayOfFire = 692,
705
- SomethingInTheWayOfFishing = 693,
706
- SomethingInTheWayOfPerforming = 694,
707
- SomethingInTheWayOfPlacing = 695,
708
- SomethingInTheWayOfPlanting = 696,
709
- SomethingInWayOfClosingDoor = 697,
710
- SoothedTheirBurnInjuries = 698,
711
- SoothedYourBurnInjuries = 699,
712
- Sort = 700,
713
- SortedByBestCraftingConsumables = 701,
714
- SortedByBestCraftingRequirements = 702,
715
- SortedByCategory = 703,
716
- SortedByDecay = 704,
717
- SortedByDurability = 705,
718
- SortedByGroup = 706,
719
- SortedByMagical = 707,
720
- SortedByName = 708,
721
- SortedByQuality = 709,
722
- SortedByRecent = 710,
723
- SortedBySkill = 711,
724
- SortedByUnlockedTime = 712,
725
- SortedByWeight = 713,
726
- SortedByWorth = 714,
727
- South = 715,
728
- Southeast = 716,
729
- SouthSoutheast = 717,
730
- SouthSouthwest = 718,
731
- Southwest = 719,
732
- StaminaIsFull = 720,
733
- StartedFire = 721,
734
- StartTravelInWater = 722,
735
- StarvingToDeath = 723,
736
- StatAmount = 724,
737
- StatGained = 725,
738
- StatLost = 726,
739
- StatQuenched = 727,
740
- StatRegained = 728,
741
- StatSated = 729,
742
- SteppingOn = 730,
743
- StillHasNoWaterToPurify = 731,
744
- StirredUpClawWorm = 732,
745
- StirredUpCreature = 733,
746
- StoppedYourBleeding = 734,
747
- StopUsingVehicle = 735,
748
- Strength = 736,
749
- StrengthIncreasing = 737,
750
- SummonedGuardiansByDiggingTreasure = 738,
751
- SummonedGuardiansByLockpicking = 739,
752
- SummonVoidDwellerItem = 740,
753
- SummonVoidDwellerRinging = 741,
754
- SummonVoidDwellerShiver = 742,
755
- SunNotBrightEnoughToStartFire = 743,
756
- SwampWater = 744,
757
- Swimming = 745,
758
- TakenFromGroundBecomeTamed = 746,
759
- Tame = 747,
760
- TamedCreature = 748,
761
- TeleportBlocked = 749,
762
- Teleported = 750,
763
- ThanksBuying = 751,
764
- ThanksSelling = 752,
765
- TheCreature = 753,
766
- TheirFist = 754,
767
- ThePlant = 755,
768
- ThereIsNoContainerOnTheStill = 756,
769
- ThereIsNoSunToStartFire = 757,
770
- ThisCannotBeMilked = 758,
771
- Throw = 759,
772
- ThrownIntoDepths = 760,
773
- ThrownIntoObstacle = 761,
774
- ThrownIntoVoid = 762,
775
- Tier = 763,
776
- TierGroup = 764,
777
- Till = 765,
778
- Tilling = 766,
779
- TillWithHands = 767,
780
- TimeIs = 768,
781
- TimeIsDawn = 769,
782
- TimeIsDaytime = 770,
783
- TimeIsDusk = 771,
784
- TimeIsNighttime = 772,
785
- TimeIsSunrise = 773,
786
- TimeIsSunset = 774,
787
- ToDamageAChest = 775,
788
- ToFight = 776,
789
- TooDamaged = 777,
790
- TooExhaustedToJump = 778,
791
- Touching = 779,
792
- TradeBarterCreditForItem = 780,
793
- TradeItemForBarterCredit = 781,
794
- TradingWith = 782,
795
- TrampledFire = 783,
796
- TrampledIntoGround = 784,
797
- TrampleIntoGround = 785,
798
- Trampling = 786,
799
- TransmogrificationNotPossible = 787,
800
- Transmogrified = 788,
801
- Transmogrify = 789,
802
- TrapMissed = 790,
803
- TrapStoppedYou = 791,
804
- Traveling = 792,
805
- TreasureIsBlocked = 793,
806
- UiActionCannotUseMissingSlottedItem = 794,
807
- UiActionCannotUseRequiresCreature = 795,
808
- UiActionCannotUseRequiresDoodad = 796,
809
- UiActionCannotUseRequiresItem = 797,
810
- UnEquip = 798,
811
- UnEquipAll = 799,
812
- Unhitch = 800,
813
- UnhitchCreature = 801,
814
- Unknown = 802,
815
- UnknownItem = 803,
816
- Unlimited = 804,
817
- UnlockedChest = 805,
818
- UnlockedTime = 806,
819
- UnpurifiedFreshWater = 807,
820
- UnpurifiedWaterInStill = 808,
821
- Use = 809,
822
- UsingBareHands = 810,
823
- VehicleDefense = 811,
824
- Vulnerable = 812,
825
- Water = 813,
826
- WaterGathering = 814,
827
- WaterPutOutFire = 815,
828
- Weight = 816,
829
- WellIsDry = 817,
830
- WellIsFull = 818,
831
- West = 819,
832
- WestNorthwest = 820,
833
- WestSouthwest = 821,
834
- WildGoatRefusedToBeMilked = 822,
835
- WillNotTrade = 823,
836
- WithYouSee = 824,
837
- WorkingYourselfIntoExhaustion = 825,
838
- WorkingYourselfIntoExhaustionAndDrowning = 826,
839
- Worth = 827,
840
- You = 828,
841
- YouAbsorb = 829,
842
- YouApplied = 830,
843
- YouAreAlready = 831,
844
- YouAte = 832,
845
- YouBeginResting = 833,
846
- YouCannotDoThatYet = 834,
847
- YouCanNowCombatTheTides = 835,
848
- YouCooledLava = 836,
849
- YouCrafted = 837,
850
- YouDied = 838,
851
- YouDoNotFindTreasureYet = 839,
852
- YouDrank = 840,
853
- YouDropTheTorch = 841,
854
- YouEnchant = 842,
855
- YouEquip = 843,
856
- YouExude = 844,
857
- YouExudeSome = 845,
858
- YouExudeSomeReasonConflicting = 846,
859
- YouExudeSomeReasonMax = 847,
860
- YouExudeSomeReasonProperties = 848,
861
- YouFailedTo = 849,
862
- YouFailedToExtinguishedFireFully = 850,
863
- YouFailedToHeal = 851,
864
- YouFailedToHealOther = 852,
865
- YouFire = 853,
866
- YouGathered = 854,
867
- YouGatheredAndDropped = 855,
868
- YouHarvested = 856,
869
- YouHarvestedAndDropped = 857,
870
- YouHave = 858,
871
- YouHaveAlreadyLearned = 859,
872
- YouHaveBeenCut = 860,
873
- YouHaveDied = 861,
874
- YouHaveEnabledDisabled = 862,
875
- YouHaveHealedOther = 863,
876
- YouHaveKilled = 864,
877
- YouHaveReleased = 865,
878
- YouHaveTamed = 866,
879
- YouNeedMoreCredit = 867,
880
- YouNeedXToY = 868,
881
- YouNoticeBarren = 869,
882
- YouNoticeBecomeEnraged = 870,
883
- YouNoticeDying = 871,
884
- YouNoticeFertilityDecreasing = 872,
885
- YouNoticeFertilityIncreasing = 873,
886
- YouNoticeGrowing = 874,
887
- YouNoticeLavaCooling = 875,
888
- YouNoticeLavaHardening = 876,
889
- YouNoticePerish = 877,
890
- YouNoticePlantDamage = 878,
891
- YouNoticePlantRegenerated = 879,
892
- YouNoticeRegrowing = 880,
893
- YouNoticeStumbleInjureItself = 881,
894
- YouNoticeTakeFromGround = 882,
895
- YouNoticeWoundsClosing = 883,
896
- YouNoticeZombieHorde = 884,
897
- YouOfferedToCreature = 885,
898
- YouOfferedToCreatureRejects = 886,
899
- YouOpen = 887,
900
- YouPacked = 888,
901
- YouPickedUp = 889,
902
- YouRefine = 890,
903
- YouReinforce = 891,
904
- YouRepair = 892,
905
- YouReturnFromCivilizationWith = 893,
906
- YourFist = 894,
907
- YourHands = 895,
908
- YourHighSkill = 896,
909
- YourInventory = 897,
910
- YourIsland = 898,
911
- YourLowSkill = 899,
912
- YourModerateSkill = 900,
913
- YourRubbingNoEffect = 901,
914
- YouRub = 902,
915
- YouSee = 903,
916
- YouSeeALivingMushroomSpore = 904,
917
- YouSeeAnAberrant = 905,
918
- YouSeeASkeletonCollapse = 906,
919
- YouSeeASlimeCombine = 907,
920
- YouSeeAZombieBleeding = 908,
921
- YouSeeCoolDown = 909,
922
- YouSeeDrop = 910,
923
- YouSeeEngulfFire = 911,
924
- YouSeeFireSpread = 912,
925
- YouSeeHelpingPlant = 913,
926
- YouSeeLay = 914,
927
- YouSeeLayingTrap = 915,
928
- YouSeeSpewLava = 916,
929
- YouSeeSpitAcid = 917,
930
- YouSeeSpringForth = 918,
931
- YouSeeSummon = 919,
932
- YouSeeSwampFlood = 920,
933
- YouSeeTrampling = 921,
934
- YouSetTheTrapOff = 922,
935
- YouStokeTheFireElemental = 923,
936
- YouSwapMainHandAndOffHand = 924,
937
- YouThrew = 925,
938
- YouTilled = 926,
939
- YouUnequip = 927,
940
- YouUsed = 928,
941
- YouWhileTraveling = 929
13
+ Multiple = 1,
14
+ Aberrant = 2,
15
+ AboutHours = 3,
16
+ Absorb = 4,
17
+ AbsorbNotPossible = 5,
18
+ ActionAlterAltered = 6,
19
+ ActionAlterFailed = 7,
20
+ ActionAlterNotPossible = 8,
21
+ ActionAttachContainerAlreadyHasContainer = 9,
22
+ ActionAttachContainerAttachedContainer = 10,
23
+ ActionAttachContainerAttachingContainer = 11,
24
+ ActionAttachContainerCannotAttach = 12,
25
+ ActionAttachContainerNothingToAttachContainerTo = 13,
26
+ ActionAttackNoHandsSelected = 14,
27
+ ActionButcherReleasesLava = 15,
28
+ ActionCastAreaOverfished = 16,
29
+ ActionConsumeItemTypeStats = 17,
30
+ ActionCraft = 18,
31
+ ActionCraftEfficacy = 19,
32
+ ActionCraftEfficacyHigh = 20,
33
+ ActionCraftEfficacyHighest = 21,
34
+ ActionCraftEfficacyLow = 22,
35
+ ActionCraftEfficacyLowest = 23,
36
+ ActionCraftEfficacyMed = 24,
37
+ ActionCraftEfficacyPercent = 25,
38
+ ActionCraftYouLackTheRequirements = 26,
39
+ ActionDetachContainerDetachContainer = 27,
40
+ ActionDetachContainerNoDetach = 28,
41
+ ActionDisassembleNoItemsSalvaged = 29,
42
+ ActionDisassembleSalvaged = 30,
43
+ ActionDismantleSeparated = 31,
44
+ ActionDrinkInFrontNoDrink = 32,
45
+ ActionEnhance = 33,
46
+ ActionEnhanceEnhanced = 34,
47
+ ActionEnhanceFailed = 35,
48
+ ActionEnhanceNotPossible = 36,
49
+ ActionFishingNothingBiting = 37,
50
+ ActionFishingSlipped = 38,
51
+ ActionFishingTooShallow = 39,
52
+ ActionJumpCannotJump = 40,
53
+ ActionMeleeNothingToAttack = 41,
54
+ ActionMoveToSwimOffEdgeCannotCombatTides = 42,
55
+ ActionNavigateMoon = 43,
56
+ ActionNavigateNotOverworld = 44,
57
+ ActionNavigateSun = 45,
58
+ ActionNavigateUseSextant = 46,
59
+ ActionPetCreatureRefused = 47,
60
+ ActionPetNoTamedCreature = 48,
61
+ ActionPickUpAllItemsNoItems = 49,
62
+ ActionPickUpExcrementNoExcrement = 50,
63
+ ActionPickUpItemNoItem = 51,
64
+ ActionPickUpNoPickUp = 52,
65
+ ActionRefineNoDurability = 53,
66
+ ActionReleaseNoTamedCreature = 54,
67
+ ActionRenameIsland = 55,
68
+ ActionRenameNothing = 56,
69
+ ActionSailToCivilizationNotInsideBoat = 57,
70
+ ActionSailToIsland = 58,
71
+ ActionSailToIslandArrived = 59,
72
+ ActionSailToIslandPlayerArriving = 60,
73
+ ActionSailToIslandPlayerDeparting = 61,
74
+ ActionTameCreatureTamed = 62,
75
+ ActionTameNoCreature = 63,
76
+ ActionTestDepthNothingToTest = 64,
77
+ ActionTestDepthWell = 65,
78
+ ActionToggleContainerNoContainer = 66,
79
+ ActionToggleDoorNoDoor = 67,
80
+ ActionToggleHitchAlreadyHitched = 68,
81
+ ActionToggleHitchAlreadyUnhitched = 69,
82
+ ActionToggleHitchNoCreature = 70,
83
+ ActionToggleHitchNoHitch = 71,
84
+ ActionToggleTilledAlreadyPacked = 72,
85
+ ActionToggleTilledAlreadyTilled = 73,
86
+ ActionUpgrade = 74,
87
+ ActionUpgradeFailed = 75,
88
+ ActionUpgradeNotMagical = 76,
89
+ ActionUpgradeNotPossible = 77,
90
+ ActionUpgradeUpgraded = 78,
91
+ ActionUseItemWeaponNeeded = 79,
92
+ ActionWith = 80,
93
+ AddedFuelToFire = 81,
94
+ AddedFuelToTorch = 82,
95
+ AddToQuickslot = 83,
96
+ AllEquipmentUnEquipped = 84,
97
+ AlreadyDesalinatedWaterInStill = 85,
98
+ AlreadyFullyRefined = 86,
99
+ AlreadyFullyRepaired = 87,
100
+ AlreadyPreserved = 88,
101
+ Alter = 89,
102
+ AnotherIsland = 90,
103
+ AnUnknownItem = 91,
104
+ AppearedNotEffectiveForGathering = 92,
105
+ AppearsToBeAberrant = 93,
106
+ ArmorAppeared = 94,
107
+ ArmorProtectedFromInjuryAgainst = 95,
108
+ Attack = 96,
109
+ AttemptedToDropAllIntoFire = 97,
110
+ AttemptedToPlaceAllOnGround = 98,
111
+ AttemptToSoothBurnInWater = 99,
112
+ AttemptToTill = 100,
113
+ AutoActionsNoItem = 101,
114
+ BadlyBurnedLostHealth = 102,
115
+ BarteringSkillsProvided = 103,
116
+ BasedOnItSeems = 104,
117
+ BeenPoisoned = 105,
118
+ BeginSleeping = 106,
119
+ BeginUsingVehicle = 107,
120
+ BestForCrafting = 108,
121
+ BleedingHasStopped = 109,
122
+ BleedingProfusely = 110,
123
+ BleedingToDeathLostHealth = 111,
124
+ BookBlank = 112,
125
+ BookContains = 113,
126
+ BookCrumbles = 114,
127
+ BookDiagrams = 115,
128
+ BookEmpty = 116,
129
+ BookNothing = 117,
130
+ BookOpen = 118,
131
+ BookScribbles = 119,
132
+ BothEffectiveIneffective = 120,
133
+ BrokeIntoPieces = 121,
134
+ BrokenOnImpact = 122,
135
+ BrokenWhileFiring = 123,
136
+ Build = 124,
137
+ Burned = 125,
138
+ CannotAddAnyMoreFuel = 126,
139
+ CannotBeCrafted = 127,
140
+ CannotBePerformedOverWater = 128,
141
+ CannotBePlacedHere = 129,
142
+ CannotBePreserved = 130,
143
+ CannotBeRefined = 131,
144
+ CannotBeRefinedReinforcementNeeded = 132,
145
+ CannotBeReinforced = 133,
146
+ CannotBeRepaired = 134,
147
+ CannotBuildHere = 135,
148
+ CannotDoThatHere = 136,
149
+ CannotDropHere = 137,
150
+ CannotEquipThatThere = 138,
151
+ CannotFishFor = 139,
152
+ CannotHere = 140,
153
+ CannotInWater = 141,
154
+ CannotLeave = 142,
155
+ CannotPickUpLockedContainer = 143,
156
+ CannotPickUpWhileLit = 144,
157
+ CannotPlaceContainerInItself = 145,
158
+ CannotPlaceHere = 146,
159
+ CannotPlaceThatFromHere = 147,
160
+ CannotPlaceThatHere = 148,
161
+ CannotPlaceThatOverWater = 149,
162
+ CannotPlantHereTilled = 150,
163
+ CannotRepairWhileLit = 151,
164
+ CannotRestHere = 152,
165
+ CannotSeeHere = 153,
166
+ CannotSleepHere = 154,
167
+ CannotStartFireHere = 155,
168
+ CannotToTellTime = 156,
169
+ CannotUseCommand = 157,
170
+ CannotWhenProtected = 158,
171
+ CannotWhenProtectedDangerousAction = 159,
172
+ CarryingTooMuchWeight = 160,
173
+ CarvedUpCorpse = 161,
174
+ Carving = 162,
175
+ CastYourLine = 163,
176
+ Category = 164,
177
+ CaughtFish = 165,
178
+ ChatBanCommand = 166,
179
+ ChatBannedCommand = 167,
180
+ ChatCommandsCommand = 168,
181
+ ChatCommandsCommandCommand = 169,
182
+ ChatPingCommand = 170,
183
+ ChatPlayerMessage = 171,
184
+ ChatPlayersCommand = 172,
185
+ ChatServerMessage = 173,
186
+ ChatUnbanCommand = 174,
187
+ ChatUnknownCommand = 175,
188
+ Chop = 176,
189
+ Chopping = 177,
190
+ ClearedBlood = 178,
191
+ ClearMessages = 179,
192
+ Clockwise = 180,
193
+ CloseContainer = 181,
194
+ CloseDoor = 182,
195
+ CloseGate = 183,
196
+ CloseToBeingDestroyed = 184,
197
+ Consumed = 185,
198
+ Container = 186,
199
+ ContextMenuActionHotkey = 187,
200
+ ContextMenuHelpActions = 188,
201
+ ContextMenuHelpAutoActions = 189,
202
+ ContextMenuHelpItems = 190,
203
+ CopiedMap = 191,
204
+ CopySelectedText = 192,
205
+ CopyX = 193,
206
+ CorpseOf = 194,
207
+ CorpseOfNamed = 195,
208
+ CouldNotDecipher = 196,
209
+ Counterclockwise = 197,
210
+ Craft = 198,
211
+ Crafted = 199,
212
+ Crafts = 200,
213
+ CreatureAngered = 201,
214
+ CreatureAppears = 202,
215
+ CreatureAppeased = 203,
216
+ CreatureExcrement = 204,
217
+ CreatureHappinessHigh = 205,
218
+ CreatureHappinessLow = 206,
219
+ CreatureHappinessLowest = 207,
220
+ CreatureHappinessNormal = 208,
221
+ CreatureIdolAttractedCreature = 209,
222
+ CreatureRefusesToBeTamed = 210,
223
+ CreatureRefusesYou = 211,
224
+ CreatureUntamed = 212,
225
+ CuredYourPoison = 213,
226
+ Cut = 214,
227
+ CutHasHealed = 215,
228
+ CutLostHealth = 216,
229
+ CutWasBandaged = 217,
230
+ DamageAppeared = 218,
231
+ DamagedByPouring = 219,
232
+ DayQuarter1 = 220,
233
+ DayQuarter2 = 221,
234
+ DayQuarter3 = 222,
235
+ DayQuarter4 = 223,
236
+ DealtNoDamageToYou = 224,
237
+ DeathBy = 225,
238
+ DeathByBleeding = 226,
239
+ DeathByBurning = 227,
240
+ DeathByChallengeWinner = 228,
241
+ DeathByConsumption = 229,
242
+ DeathByCut = 230,
243
+ DeathByDrowning = 231,
244
+ DeathByExhaustion = 232,
245
+ DeathByFistByPlayer = 233,
246
+ DeathByFrostbite = 234,
247
+ DeathByMalnutrition = 235,
248
+ DeathByPoison = 236,
249
+ DeathBySteppingOn = 237,
250
+ DeathByTrap = 238,
251
+ DeathByWeaponByPlayer = 239,
252
+ Decay = 240,
253
+ DestroyedFromUse = 241,
254
+ DetachContainer = 242,
255
+ Dexterity = 243,
256
+ DexterityIncreasing = 244,
257
+ DidNotSeemToBeHurting = 245,
258
+ Dig = 246,
259
+ DigAway = 247,
260
+ Digging = 248,
261
+ DigWithHands = 249,
262
+ Disabled = 250,
263
+ Disassemble = 251,
264
+ DisassembleAction = 252,
265
+ Disassembling = 253,
266
+ DiscoveredCaveEntrance = 254,
267
+ DiscoveredInTheBottle = 255,
268
+ DiscoveredLavaPassage = 256,
269
+ Dismantle = 257,
270
+ DismantleAction = 258,
271
+ DismantleLabel = 259,
272
+ Dismantling = 260,
273
+ DismantlingRequires = 261,
274
+ Dismounted = 262,
275
+ DisplacedPuddles = 263,
276
+ DoNotHaveTreasureMaps = 264,
277
+ DoNotProduceAnyResources = 265,
278
+ DoodadCauseStatus = 266,
279
+ DoodadGroupTier = 267,
280
+ DrewSurroundings = 268,
281
+ Drink = 269,
282
+ Drop = 270,
283
+ DropAll = 271,
284
+ DropAllOfSameQuality = 272,
285
+ DroppedIntoDepths = 273,
286
+ DroppedIntoFire = 274,
287
+ DroppedIntoTheVoid = 275,
288
+ DryadSprouted = 276,
289
+ DueToDehydration = 277,
290
+ DueToStarvation = 278,
291
+ DugTreasureOut = 279,
292
+ DumpContentsOfContainerInInventory = 280,
293
+ Durability = 281,
294
+ DyingOfDehydration = 282,
295
+ EarnedMilestone = 283,
296
+ East = 284,
297
+ EastNortheast = 285,
298
+ EastSoutheast = 286,
299
+ Effective = 287,
300
+ Enabled = 288,
301
+ Enchant = 289,
302
+ EquipmentPreventedStatusEffects = 290,
303
+ EquipTo = 291,
304
+ ErrorHasOccured = 292,
305
+ ExtinguishedFire = 293,
306
+ ExtinguishedLightSource = 294,
307
+ Exude = 295,
308
+ ExudeNotPossible = 296,
309
+ FailedToAbsorb = 297,
310
+ FailedToAddFuelToTorch = 298,
311
+ FailedToCatchFish = 299,
312
+ FailedToCauseDamage = 300,
313
+ FailedToCauseYouDamage = 301,
314
+ FailedToCopy = 302,
315
+ FailedToDraw = 303,
316
+ FailedToEnchant = 304,
317
+ FailedToExude = 305,
318
+ FailedToIgniteTorch = 306,
319
+ FailedToPickLock = 307,
320
+ FailedToPreserve = 308,
321
+ FailedToRefine = 309,
322
+ FailedToReinforce = 310,
323
+ FailedToRepair = 311,
324
+ FailedToStartFire = 312,
325
+ FailedToTame = 313,
326
+ FailedToTransmogrify = 314,
327
+ FarOffLands = 315,
328
+ FeltBurningPainLostHealth = 316,
329
+ FeltFrostbitePainLostHealth = 317,
330
+ FewMinutes = 318,
331
+ Filled = 319,
332
+ FilledFrom = 320,
333
+ FireAroundYouIsWarm = 321,
334
+ FiredIntoObstacle = 322,
335
+ FireOverflowed = 323,
336
+ FireOverflowedFireElemental = 324,
337
+ FireSource = 325,
338
+ FishingWithNoBait = 326,
339
+ Floating = 327,
340
+ FreshWater = 328,
341
+ FromTheStill = 329,
342
+ Fuel = 330,
343
+ FuelIsRequired = 331,
344
+ FullyDecodedMap = 332,
345
+ GameHasBeenSavedIsTakingUpMB = 333,
346
+ Gather = 334,
347
+ GatherDestroy = 335,
348
+ Gathering = 336,
349
+ GatherWithHands = 337,
350
+ GhostNoActions = 338,
351
+ GhostOf = 339,
352
+ GoatHasNoMilk = 340,
353
+ GrabAll = 341,
354
+ Group = 342,
355
+ HackAway = 343,
356
+ HandProtectionPreventedInjury = 344,
357
+ HandsNotEffectiveFor = 345,
358
+ Harvest = 346,
359
+ Harvesting = 347,
360
+ HarvestWithHands = 348,
361
+ HasBeenHurtByATrap = 349,
362
+ HasDecayed = 350,
363
+ HasHitYouForDamage = 351,
364
+ HasNoEffect = 352,
365
+ HasSetTrapOffNoDamage = 353,
366
+ HasSplit = 354,
367
+ Help = 355,
368
+ HelpGrow = 356,
369
+ Here = 357,
370
+ Hints = 358,
371
+ HintsDisabled = 359,
372
+ HintsEnabled = 360,
373
+ Hitch = 361,
374
+ HitchAttempt = 362,
375
+ HitchCreature = 363,
376
+ HitchDisabled = 364,
377
+ HitchInUse = 365,
378
+ HitchUnhitch = 366,
379
+ HitForDamage = 367,
380
+ HitYouForDamage = 368,
381
+ Hour = 369,
382
+ Hours = 370,
383
+ HurtHandsHittingWithoutWeapons = 371,
384
+ HurtHandsWithNoTool = 372,
385
+ Ignite = 373,
386
+ IgnitedTorch = 374,
387
+ Ineffective = 375,
388
+ InjuredFromTrap = 376,
389
+ InNeedOfRepair = 377,
390
+ InspectItem = 378,
391
+ InteractingWithHasInjuredYouForDamage = 379,
392
+ Inventory = 380,
393
+ IsInTheWayOfPickingUp = 381,
394
+ It = 382,
395
+ ItAlsoReveals = 383,
396
+ ItAlsoSeems = 384,
397
+ ItContains = 385,
398
+ ItemFromWater = 386,
399
+ JoinedAServer = 387,
400
+ Jump = 388,
401
+ Killed = 389,
402
+ KnowledgeHasIncreased = 390,
403
+ LabelActionTier = 391,
404
+ LabelAdditionalRequirements = 392,
405
+ LabelAttackFromTactics = 393,
406
+ LabelBase = 394,
407
+ LabelCanIncrease = 395,
408
+ LabelCraftingReputation = 396,
409
+ LabelCraftingRequires = 397,
410
+ LabelCraftingSkillReputation = 398,
411
+ LabelDecay = 399,
412
+ LabelDefense = 400,
413
+ LabelDismantlingRequires = 401,
414
+ LabelDurability = 402,
415
+ LabelEquip = 403,
416
+ LabelGrouping = 404,
417
+ LabelHave = 405,
418
+ LabelLeftHandAttack = 406,
419
+ LabelLevel = 407,
420
+ LabelLightSourceWhenLit = 408,
421
+ LabelOnCure = 409,
422
+ LabelOnDrink = 410,
423
+ LabelOnEat = 411,
424
+ LabelOnEquip = 412,
425
+ LabelOnHeal = 413,
426
+ LabelOnOtherHeal = 414,
427
+ LabelPreservationRate = 415,
428
+ LabelProtected = 416,
429
+ LabelRange = 417,
430
+ LabelRanged = 418,
431
+ LabelRangedAttack = 419,
432
+ LabelRangedDamage = 420,
433
+ LabelReputationImpact = 421,
434
+ LabelResists = 422,
435
+ LabelRightHandAttack = 423,
436
+ LabelSkill = 424,
437
+ LabelStokeFireStrength = 425,
438
+ LabelThrowDamageType = 426,
439
+ LabelTrapDamage = 427,
440
+ LabelUse = 428,
441
+ LabelUses = 429,
442
+ LabelVulnerabilities = 430,
443
+ LabelWeight = 431,
444
+ LabelWeightCapacity = 432,
445
+ LabelWeightReduction = 433,
446
+ LabelWorth = 434,
447
+ LastPlaceYouLeftOff = 435,
448
+ LearnedHowToCreate = 436,
449
+ LeftHand = 437,
450
+ LikelyFailures = 438,
451
+ Limited = 439,
452
+ Lockpick = 440,
453
+ Magical = 441,
454
+ MagicalItemDamage = 442,
455
+ MapDestroyed = 443,
456
+ MapNearlyDestroyed = 444,
457
+ MapNotOfThisArea = 445,
458
+ MaterialsDestroyed = 446,
459
+ MerchantAlreadyTradedItem = 447,
460
+ MessageOfTheDay = 448,
461
+ Metabolism = 449,
462
+ MetabolismSlowed = 450,
463
+ Milk = 451,
464
+ Mine = 452,
465
+ Mining = 453,
466
+ MissedWith = 454,
467
+ MissedYouWith = 455,
468
+ MoveAllOfSameQualityToFacingContainer = 456,
469
+ MoveAllOfSameQualityToInventory = 457,
470
+ MoveAllOfSameQualityToLastOpenedContainer = 458,
471
+ MoveAllOfSameQualityToOpenedContainer = 459,
472
+ MoveAllToFacingContainer = 460,
473
+ MoveAllToInventory = 461,
474
+ MoveAllToLastOpenedContainer = 462,
475
+ MoveAllToOpenedContainer = 463,
476
+ MovedItem = 464,
477
+ MoveOverTrapButDoNotSetOff = 465,
478
+ MoveToFacingContainer = 466,
479
+ MoveToInventory = 467,
480
+ MoveToLastOpenedContainer = 468,
481
+ MoveToOpenedContainer = 469,
482
+ MultiplayerGamePaused = 470,
483
+ MultiplayerGameResumed = 471,
484
+ MultiplayerPlayerConnected = 472,
485
+ MultiplayerPlayerDied = 473,
486
+ MultiplayerPlayerDisconnected = 474,
487
+ MultiplayerPlayerJoined = 475,
488
+ MultipleQuickslots = 476,
489
+ MustBeEquippedToIgnite = 477,
490
+ Mysteriously = 478,
491
+ Name = 479,
492
+ NearlyBurnedEquipmentProtectedYou = 480,
493
+ NeedToStartTravelsOutside = 481,
494
+ NeedWaterForBoat = 482,
495
+ Negatively = 483,
496
+ NightQuarter1 = 484,
497
+ NightQuarter2 = 485,
498
+ NightQuarter3 = 486,
499
+ NightQuarter4 = 487,
500
+ No = 488,
501
+ NoAmmunitionForThatWeapon = 489,
502
+ NoFireToStokeWith = 490,
503
+ NoFishAtLocation = 491,
504
+ NoGroundWater = 492,
505
+ NoInkToDrawMap = 493,
506
+ NoKindlingOrFuelItemsToStartFire = 494,
507
+ NoKindlingToStartFire = 495,
508
+ NoLongerFeelPainOfBeingBurned = 496,
509
+ NoLongerFeelPainOfBeingFrostbitten = 497,
510
+ NoLongerHostile = 498,
511
+ NoMoreRoomInContainer = 499,
512
+ NoPaperToDrawMap = 500,
513
+ NoRequiredItemToFireWeapon = 501,
514
+ NoReturnWithoutCompletingChallenges = 502,
515
+ NoRoomForImprovement = 503,
516
+ NoRoomToDrop = 504,
517
+ North = 505,
518
+ Northeast = 506,
519
+ NorthNortheast = 507,
520
+ NorthNorthwest = 508,
521
+ Northwest = 509,
522
+ NotAvailable = 510,
523
+ NotEnoughPurifiedWaterYet = 511,
524
+ NotEnoughTreasureToReturn = 512,
525
+ NotFacingCreatureToOfferThisTo = 513,
526
+ NotFacingLockedObject = 514,
527
+ NotFacingOtherToHeal = 515,
528
+ NotFacingValidItem = 516,
529
+ NothingHereToButcher = 517,
530
+ NothingHereToFill = 518,
531
+ NothingHereToGrasp = 519,
532
+ NothingTo = 520,
533
+ NothingToGetFromThis = 521,
534
+ NothingToHarvestFromThisGather = 522,
535
+ NothingToSmother = 523,
536
+ NothingUsefulToHarvestYet = 524,
537
+ NoTinderToStartFire = 525,
538
+ NotSuitableToPlant = 526,
539
+ NoWaterInStill = 527,
540
+ NPCStartingDialog1 = 528,
541
+ NPCStartingDialog2 = 529,
542
+ NPCStartingDialog3 = 530,
543
+ NPCStartingDialog4 = 531,
544
+ NPCWelcome = 532,
545
+ NPCWelcomeCredit = 533,
546
+ NumberEight = 534,
547
+ NumberFive = 535,
548
+ NumberFour = 536,
549
+ NumberNine = 537,
550
+ NumberOne = 538,
551
+ NumberSeven = 539,
552
+ NumberSix = 540,
553
+ NumberTen = 541,
554
+ NumberThree = 542,
555
+ NumberTwo = 543,
556
+ ObjectIsLocked = 544,
557
+ ObjectIsLockedAttemptToBreakIt = 545,
558
+ Offer = 546,
559
+ OfferAberrantFail = 547,
560
+ OfferAberrantFailButTamed = 548,
561
+ Open = 549,
562
+ OpenClose = 550,
563
+ OpenCloseContainer = 551,
564
+ OpenCloseDoor = 552,
565
+ OpenCloseGate = 553,
566
+ OpenDoor = 554,
567
+ OpenGate = 555,
568
+ OverEatingLostStamina = 556,
569
+ OverHydratingLostStamina = 557,
570
+ Pack = 558,
571
+ PaperTurnedToMush = 559,
572
+ ParryTheBlow = 560,
573
+ PartiallyDecodedMap = 561,
574
+ PenultimateAnd = 562,
575
+ Pet = 563,
576
+ PetCreature = 564,
577
+ PickAway = 565,
578
+ PickUp = 566,
579
+ PickUpAllItems = 567,
580
+ PickUpDoodad = 568,
581
+ PickUpDoodadSpecific = 569,
582
+ PickUpExcrement = 570,
583
+ PickUpExcrementWithHands = 571,
584
+ PickUpItem = 572,
585
+ PickUpTheItem = 573,
586
+ Place = 574,
587
+ PlacedOnGround = 575,
588
+ Plant = 576,
589
+ PlantedInGround = 577,
590
+ PlantGatheredPlant = 578,
591
+ PlantGatheringWillDestroy = 579,
592
+ PlantHasResourcesToGather = 580,
593
+ PlantHasResourcesToHarvest = 581,
594
+ PlantHighlyFertile = 582,
595
+ Planting = 583,
596
+ PlantIsBare = 584,
597
+ PlantIsFertile = 585,
598
+ PlantIsInStage = 586,
599
+ PlantIsNotFertile = 587,
600
+ PlantNotReadyToHarvest = 588,
601
+ PlantReadyToGather = 589,
602
+ PlantReadyToGatherNotMaximal = 590,
603
+ PlantReadyToHarvest = 591,
604
+ PlantReadyToHarvestNotMaximal = 592,
605
+ Player = 593,
606
+ PlayerHas = 594,
607
+ PlayerHasCompletedChallengeRequirement = 595,
608
+ PlayerHasWonChallenge = 596,
609
+ Poisoned = 597,
610
+ PoisonedLostHealth = 598,
611
+ PoisonWorkedItsCourse = 599,
612
+ Positively = 600,
613
+ PouredOut = 601,
614
+ PouredOutOnYourself = 602,
615
+ PouredWaterIntoStill = 603,
616
+ PourHarmedPlant = 604,
617
+ PourHealedPlant = 605,
618
+ PourHealedPlantFully = 606,
619
+ PourHealedPlantPartially = 607,
620
+ PourIncreasedFertility = 608,
621
+ Pouring = 609,
622
+ Prepare = 610,
623
+ Prepared = 611,
624
+ Preserve = 612,
625
+ PreservedFood = 613,
626
+ PurifiedWaterInStill = 614,
627
+ Quality = 615,
628
+ RandomEventsFire = 616,
629
+ Recent = 617,
630
+ ReduceLength = 618,
631
+ Refine = 619,
632
+ RefusedToBeTamed = 620,
633
+ Reinforce = 621,
634
+ Release = 622,
635
+ RemoveAction = 623,
636
+ RemoveFromQuickslot = 624,
637
+ Repair = 625,
638
+ ReputationDecreased = 626,
639
+ ReputationIncreased = 627,
640
+ ReputationUpdate = 628,
641
+ RequiredForDisassembleLabel = 629,
642
+ RequiredForDisassembly = 630,
643
+ RequiresFireToBeLit = 631,
644
+ RequiresYouFacingFireSource = 632,
645
+ RequiresYouToBeAround = 633,
646
+ Resistant = 634,
647
+ ResistOrVuln = 635,
648
+ ResistOrVulnAll = 636,
649
+ Rest = 637,
650
+ Rested = 638,
651
+ Resting = 639,
652
+ RestingOnGroundNotEffective = 640,
653
+ RestInterrupted = 641,
654
+ RestInterruptedDamage = 642,
655
+ RestInterruptedDying = 643,
656
+ RestInterruptedLoudNoise = 644,
657
+ RestInterruptedPain = 645,
658
+ RestInterruptedStirring = 646,
659
+ RestInterruptedWaterPoured = 647,
660
+ RestLongTime = 648,
661
+ RestModerateTime = 649,
662
+ RestOnBoat = 650,
663
+ RestOnGround = 651,
664
+ RestShortTime = 652,
665
+ RestTime = 653,
666
+ ReturnedToCivilization = 654,
667
+ ReturningToCivilizationSetOffAgain = 655,
668
+ ReturnsToLife = 656,
669
+ Reveals = 657,
670
+ RevealsEntityAppearsHurt = 658,
671
+ RevealsEntityAppearsUnharmed = 659,
672
+ RevealsEntityAppearsVeryHurt = 660,
673
+ RevealsEntityIsAtPercentHealth = 661,
674
+ RevealsEntityIsInjured = 662,
675
+ RevealsEntityIsMostlyUninjured = 663,
676
+ RevealsEntityIsOnTheVergeOfDeath = 664,
677
+ RevealsEntityIsSeverelyInjured = 665,
678
+ RevealsEntityIsUninjured = 666,
679
+ RevealsEntitySeemsInjured = 667,
680
+ RevealsEntitySeemsUninjured = 668,
681
+ RevealsNumberOfResistancesAndVulnerabilities = 669,
682
+ RevealsResistancesAndVulnerabilities = 670,
683
+ RevealsSomeResistancesAndVulnerabilities = 671,
684
+ Reverse = 672,
685
+ RightHand = 673,
686
+ Sailing = 674,
687
+ ScrollMaster = 675,
688
+ ScrollProvidedNoUsefulInsight = 676,
689
+ Seawater = 677,
690
+ SeemsToHaveDrawnEnergy = 678,
691
+ SetTrapOffButNoDamage = 679,
692
+ SetUp = 680,
693
+ ShadowInTheWater = 681,
694
+ Skill = 682,
695
+ SkillHasRaised = 683,
696
+ Skills = 684,
697
+ Sleep = 685,
698
+ Sleeping = 686,
699
+ SleepOnBoat = 687,
700
+ Slept = 688,
701
+ SlitherSuckerConstricts = 689,
702
+ SlitherSuckerJumpedOnHead = 690,
703
+ SomethingInTheWayOf = 691,
704
+ SomethingInTheWayOfButcherFirst = 692,
705
+ SomethingInTheWayOfFire = 693,
706
+ SomethingInTheWayOfFishing = 694,
707
+ SomethingInTheWayOfPerforming = 695,
708
+ SomethingInTheWayOfPlacing = 696,
709
+ SomethingInTheWayOfPlanting = 697,
710
+ SomethingInWayOfClosingDoor = 698,
711
+ SoothedTheirBurnInjuries = 699,
712
+ SoothedYourBurnInjuries = 700,
713
+ Sort = 701,
714
+ SortedByBestCraftingConsumables = 702,
715
+ SortedByBestCraftingRequirements = 703,
716
+ SortedByCategory = 704,
717
+ SortedByDecay = 705,
718
+ SortedByDurability = 706,
719
+ SortedByGroup = 707,
720
+ SortedByMagical = 708,
721
+ SortedByName = 709,
722
+ SortedByQuality = 710,
723
+ SortedByRecent = 711,
724
+ SortedBySkill = 712,
725
+ SortedByUnlockedTime = 713,
726
+ SortedByWeight = 714,
727
+ SortedByWorth = 715,
728
+ South = 716,
729
+ Southeast = 717,
730
+ SouthSoutheast = 718,
731
+ SouthSouthwest = 719,
732
+ Southwest = 720,
733
+ StaminaIsFull = 721,
734
+ StartedFire = 722,
735
+ StartTravelInWater = 723,
736
+ StarvingToDeath = 724,
737
+ StatAmount = 725,
738
+ StatGained = 726,
739
+ StatLost = 727,
740
+ StatQuenched = 728,
741
+ StatRegained = 729,
742
+ StatSated = 730,
743
+ SteppingOn = 731,
744
+ StillHasNoWaterToPurify = 732,
745
+ StirredUpClawWorm = 733,
746
+ StirredUpCreature = 734,
747
+ StoppedYourBleeding = 735,
748
+ StopUsingVehicle = 736,
749
+ Strength = 737,
750
+ StrengthIncreasing = 738,
751
+ SummonedGuardiansByDiggingTreasure = 739,
752
+ SummonedGuardiansByLockpicking = 740,
753
+ SummonVoidDwellerItem = 741,
754
+ SummonVoidDwellerRinging = 742,
755
+ SummonVoidDwellerShiver = 743,
756
+ SunNotBrightEnoughToStartFire = 744,
757
+ SwampWater = 745,
758
+ Swimming = 746,
759
+ TakenFromGroundBecomeTamed = 747,
760
+ Tame = 748,
761
+ TamedCreature = 749,
762
+ TeleportBlocked = 750,
763
+ Teleported = 751,
764
+ ThanksBuying = 752,
765
+ ThanksSelling = 753,
766
+ TheCreature = 754,
767
+ TheirFist = 755,
768
+ ThePlant = 756,
769
+ ThereIsNoContainerOnTheStill = 757,
770
+ ThereIsNoSunToStartFire = 758,
771
+ ThisCannotBeMilked = 759,
772
+ Throw = 760,
773
+ ThrownIntoDepths = 761,
774
+ ThrownIntoObstacle = 762,
775
+ ThrownIntoVoid = 763,
776
+ Tier = 764,
777
+ TierGroup = 765,
778
+ Till = 766,
779
+ Tilling = 767,
780
+ TillWithHands = 768,
781
+ TimeIs = 769,
782
+ TimeIsDawn = 770,
783
+ TimeIsDaytime = 771,
784
+ TimeIsDusk = 772,
785
+ TimeIsNighttime = 773,
786
+ TimeIsSunrise = 774,
787
+ TimeIsSunset = 775,
788
+ ToDamageAChest = 776,
789
+ ToFight = 777,
790
+ TooDamaged = 778,
791
+ TooExhaustedToJump = 779,
792
+ Touching = 780,
793
+ TradeBarterCreditForItem = 781,
794
+ TradeItemForBarterCredit = 782,
795
+ TradingWith = 783,
796
+ TrampledFire = 784,
797
+ TrampledIntoGround = 785,
798
+ TrampleIntoGround = 786,
799
+ Trampling = 787,
800
+ TransmogrificationNotPossible = 788,
801
+ Transmogrified = 789,
802
+ Transmogrify = 790,
803
+ TrapMissed = 791,
804
+ TrapStoppedYou = 792,
805
+ Traveling = 793,
806
+ TreasureIsBlocked = 794,
807
+ UiActionCannotUseMissingSlottedItem = 795,
808
+ UiActionCannotUseRequiresCreature = 796,
809
+ UiActionCannotUseRequiresDoodad = 797,
810
+ UiActionCannotUseRequiresItem = 798,
811
+ UnEquip = 799,
812
+ UnEquipAll = 800,
813
+ Unhitch = 801,
814
+ UnhitchCreature = 802,
815
+ Unknown = 803,
816
+ UnknownItem = 804,
817
+ Unlimited = 805,
818
+ UnlockedChest = 806,
819
+ UnlockedTime = 807,
820
+ UnpurifiedFreshWater = 808,
821
+ UnpurifiedWaterInStill = 809,
822
+ Use = 810,
823
+ UsingBareHands = 811,
824
+ VehicleDefense = 812,
825
+ Vulnerable = 813,
826
+ Water = 814,
827
+ WaterGathering = 815,
828
+ WaterPutOutFire = 816,
829
+ Weight = 817,
830
+ WellIsDry = 818,
831
+ WellIsFull = 819,
832
+ West = 820,
833
+ WestNorthwest = 821,
834
+ WestSouthwest = 822,
835
+ WildGoatRefusedToBeMilked = 823,
836
+ WillNotTrade = 824,
837
+ WithYouSee = 825,
838
+ WorkingYourselfIntoExhaustion = 826,
839
+ WorkingYourselfIntoExhaustionAndDrowning = 827,
840
+ Worth = 828,
841
+ You = 829,
842
+ YouAbsorb = 830,
843
+ YouApplied = 831,
844
+ YouAreAlready = 832,
845
+ YouAte = 833,
846
+ YouBeginResting = 834,
847
+ YouCannotDoThatYet = 835,
848
+ YouCanNowCombatTheTides = 836,
849
+ YouCooledLava = 837,
850
+ YouCrafted = 838,
851
+ YouDied = 839,
852
+ YouDoNotFindTreasureYet = 840,
853
+ YouDrank = 841,
854
+ YouDropTheTorch = 842,
855
+ YouEnchant = 843,
856
+ YouEquip = 844,
857
+ YouExude = 845,
858
+ YouExudeSome = 846,
859
+ YouExudeSomeReasonConflicting = 847,
860
+ YouExudeSomeReasonMax = 848,
861
+ YouExudeSomeReasonProperties = 849,
862
+ YouFailedTo = 850,
863
+ YouFailedToExtinguishedFireFully = 851,
864
+ YouFailedToHeal = 852,
865
+ YouFailedToHealOther = 853,
866
+ YouFire = 854,
867
+ YouGathered = 855,
868
+ YouGatheredAndDropped = 856,
869
+ YouHarvested = 857,
870
+ YouHarvestedAndDropped = 858,
871
+ YouHave = 859,
872
+ YouHaveAlreadyLearned = 860,
873
+ YouHaveBeenCut = 861,
874
+ YouHaveDied = 862,
875
+ YouHaveEnabledDisabled = 863,
876
+ YouHaveHealedOther = 864,
877
+ YouHaveKilled = 865,
878
+ YouHaveReleased = 866,
879
+ YouHaveTamed = 867,
880
+ YouNeedMoreCredit = 868,
881
+ YouNeedXToY = 869,
882
+ YouNoticeBarren = 870,
883
+ YouNoticeBecomeEnraged = 871,
884
+ YouNoticeDying = 872,
885
+ YouNoticeFertilityDecreasing = 873,
886
+ YouNoticeFertilityIncreasing = 874,
887
+ YouNoticeGrowing = 875,
888
+ YouNoticeLavaCooling = 876,
889
+ YouNoticeLavaHardening = 877,
890
+ YouNoticePerish = 878,
891
+ YouNoticePlantDamage = 879,
892
+ YouNoticePlantRegenerated = 880,
893
+ YouNoticeRegrowing = 881,
894
+ YouNoticeStumbleInjureItself = 882,
895
+ YouNoticeTakeFromGround = 883,
896
+ YouNoticeWoundsClosing = 884,
897
+ YouNoticeZombieHorde = 885,
898
+ YouOfferedToCreature = 886,
899
+ YouOfferedToCreatureRejects = 887,
900
+ YouOpen = 888,
901
+ YouPacked = 889,
902
+ YouPickedUp = 890,
903
+ YouRefine = 891,
904
+ YouReinforce = 892,
905
+ YouRepair = 893,
906
+ YouReturnFromCivilizationWith = 894,
907
+ YourFist = 895,
908
+ YourHands = 896,
909
+ YourHighSkill = 897,
910
+ YourInventory = 898,
911
+ YourIsland = 899,
912
+ YourLowSkill = 900,
913
+ YourModerateSkill = 901,
914
+ YourRubbingNoEffect = 902,
915
+ YouRub = 903,
916
+ YouSee = 904,
917
+ YouSeeALivingMushroomSpore = 905,
918
+ YouSeeAnAberrant = 906,
919
+ YouSeeASkeletonCollapse = 907,
920
+ YouSeeASlimeCombine = 908,
921
+ YouSeeAZombieBleeding = 909,
922
+ YouSeeCoolDown = 910,
923
+ YouSeeDrop = 911,
924
+ YouSeeEngulfFire = 912,
925
+ YouSeeFireSpread = 913,
926
+ YouSeeHelpingPlant = 914,
927
+ YouSeeLay = 915,
928
+ YouSeeLayingTrap = 916,
929
+ YouSeeSpewLava = 917,
930
+ YouSeeSpitAcid = 918,
931
+ YouSeeSpringForth = 919,
932
+ YouSeeSummon = 920,
933
+ YouSeeSwampFlood = 921,
934
+ YouSeeTrampling = 922,
935
+ YouSetTheTrapOff = 923,
936
+ YouStokeTheFireElemental = 924,
937
+ YouSwapMainHandAndOffHand = 925,
938
+ YouThrew = 926,
939
+ YouTilled = 927,
940
+ YouUnequip = 928,
941
+ YouUsed = 929,
942
+ YouWhileTraveling = 930
942
943
  }
943
944
  export default Message;