@wayward/types 2.13.0-beta.dev.20230511.1 → 2.13.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 (84) hide show
  1. package/LICENSE +20 -20
  2. package/README.md +10 -10
  3. package/definitions/game/game/Game.d.ts +1 -1
  4. package/definitions/game/game/biome/coastal/mapGen/2.13.1.d.ts +12 -0
  5. package/definitions/game/game/doodad/Doodad.d.ts +1 -0
  6. package/definitions/game/game/entity/IHuman.d.ts +8 -6
  7. package/definitions/game/game/entity/action/ActionsRegistration.d.ts +18 -13
  8. package/definitions/game/game/entity/action/actions/Chop.d.ts +1 -1
  9. package/definitions/game/game/entity/action/actions/Dismount.d.ts +1 -1
  10. package/definitions/game/game/entity/action/actions/Drop.d.ts +20 -1
  11. package/definitions/game/game/entity/action/actions/Extinguish.d.ts +1 -1
  12. package/definitions/game/game/entity/action/actions/Gather.d.ts +1 -1
  13. package/definitions/game/game/entity/action/actions/Harvest.d.ts +1 -1
  14. package/definitions/game/game/entity/action/actions/Mine.d.ts +1 -1
  15. package/definitions/game/game/entity/action/actions/Rename.d.ts +1 -1
  16. package/definitions/game/game/entity/action/actions/Repair.d.ts +1 -1
  17. package/definitions/game/game/entity/action/actions/Rest.d.ts +1 -1
  18. package/definitions/game/game/entity/action/actions/Ride.d.ts +1 -1
  19. package/definitions/game/game/entity/action/actions/Sleep.d.ts +1 -1
  20. package/definitions/game/game/entity/action/actions/ToggleVehicle.d.ts +1 -1
  21. package/definitions/game/game/entity/action/usable/IUsableAction.d.ts +27 -10
  22. package/definitions/game/game/entity/action/usable/UsableAction.d.ts +3 -3
  23. package/definitions/game/game/entity/action/usable/actions/UsableActionsWorld.d.ts +1 -1
  24. package/definitions/game/game/entity/npc/NPC.d.ts +1 -1
  25. package/definitions/game/game/entity/npc/npcs/Merchant.d.ts +1 -0
  26. package/definitions/game/game/entity/npc/npcs/Shipper.d.ts +1 -1
  27. package/definitions/game/game/entity/player/Player.d.ts +9 -2
  28. package/definitions/game/game/inspection/infoProviders/shared/SharedLightSourceInfo.d.ts +1 -1
  29. package/definitions/game/game/island/IIsland.d.ts +6 -1
  30. package/definitions/game/game/island/Island.d.ts +1 -2
  31. package/definitions/game/game/item/IItemManager.d.ts +1 -0
  32. package/definitions/game/game/item/ItemManager.d.ts +3 -2
  33. package/definitions/game/game/mapgen/IMapGen.d.ts +1 -0
  34. package/definitions/game/game/mapgen/version/2.13.1.d.ts +20 -0
  35. package/definitions/game/game/mapping/Background.d.ts +1 -1
  36. package/definitions/game/game/mapping/Obfuscation.d.ts +1 -1
  37. package/definitions/game/game/milestones/IMilestone.d.ts +2 -1
  38. package/definitions/game/game/milestones/MilestoneDefinition.d.ts +2 -0
  39. package/definitions/game/game/milestones/MilestoneManager.d.ts +1 -1
  40. package/definitions/game/game/options/modifiers/milestone/MilestoneModifiersManager.d.ts +1 -1
  41. package/definitions/game/game/reference/ReferenceManager.d.ts +1 -1
  42. package/definitions/game/game/temperature/TemperatureManager.d.ts +1 -1
  43. package/definitions/game/language/dictionary/Message.d.ts +752 -744
  44. package/definitions/game/language/dictionary/UiTranslation.d.ts +794 -796
  45. package/definitions/game/multiplayer/IMultiplayer.d.ts +3 -1
  46. package/definitions/game/multiplayer/packets/server/UpdateUiDataPacket.d.ts +23 -0
  47. package/definitions/game/multiplayer/packets/server/UpdateUiInfoPacket.d.ts +30 -0
  48. package/definitions/game/renderer/IRenderer.d.ts +32 -39
  49. package/definitions/game/renderer/Renderer.d.ts +0 -1
  50. package/definitions/game/renderer/context/RendererContext.d.ts +1 -1
  51. package/definitions/game/renderer/fieldOfView/FieldOfView.d.ts +1 -1
  52. package/definitions/game/renderer/world/World.d.ts +17 -11
  53. package/definitions/game/renderer/world/WorldLayer.d.ts +23 -8
  54. package/definitions/game/save/serializer/ISerializer.d.ts +3 -2
  55. package/definitions/game/ui/component/Article.d.ts +14 -0
  56. package/definitions/game/ui/component/Text.d.ts +3 -2
  57. package/definitions/game/ui/old/functional/IFunctionalTooltip.d.ts +37 -0
  58. package/definitions/game/ui/old/screens/InGameScreen.d.ts +2 -0
  59. package/definitions/game/ui/screen/screens/GameScreen.d.ts +5 -1
  60. package/definitions/game/ui/screen/screens/game/component/GameDetails.d.ts +3 -10
  61. package/definitions/game/ui/screen/screens/game/component/Item.d.ts +1 -1
  62. package/definitions/game/ui/screen/screens/game/component/PopupOverlay.d.ts +31 -0
  63. package/definitions/game/ui/screen/screens/game/component/QuadrantComponent.d.ts +1 -1
  64. package/definitions/game/ui/screen/screens/game/static/ActionBar.d.ts +1 -0
  65. package/definitions/game/ui/screen/screens/game/static/actions/ActionsDrawer.d.ts +1 -0
  66. package/definitions/game/ui/screen/screens/game/static/stats/IStatDisplayDescription.d.ts +26 -1
  67. package/definitions/game/ui/screen/screens/game/static/stats/Reputation.d.ts +1 -1
  68. package/definitions/game/ui/screen/screens/game/static/stats/StatDisplayDescriptions.d.ts +2 -25
  69. package/definitions/game/ui/screen/screens/game/static/stats/component/Stat.d.ts +5 -2
  70. package/definitions/game/utilities/Functions.d.ts +5 -0
  71. package/definitions/hosts/shared/globals.d.ts +1 -1
  72. package/definitions/launcher/ui/Article.d.ts +19 -0
  73. package/definitions/launcher/ui/Button.d.ts +36 -0
  74. package/definitions/launcher/ui/Component.d.ts +95 -0
  75. package/definitions/launcher/ui/InputButton.d.ts +23 -0
  76. package/definitions/launcher/ui/Section.d.ts +17 -0
  77. package/definitions/launcher/ui/main/FolderButton.d.ts +29 -0
  78. package/definitions/launcher/ui/main/FolderSelector.d.ts +48 -0
  79. package/definitions/launcher/ui/main/Mods.d.ts +20 -0
  80. package/definitions/launcher/ui/main/Resources.d.ts +23 -0
  81. package/definitions/test/core/applicationInteractions.d.ts +3 -3
  82. package/package.json +24 -24
  83. package/tsconfig.json +7 -7
  84. package/tsconfig.mod.base.json +44 -44
@@ -45,749 +45,757 @@ declare enum Message {
45
45
  ActionDisassembleSalvaged = 33,
46
46
  ActionDismantleSeparated = 34,
47
47
  ActionDrinkInFrontNoDrink = 35,
48
- ActionEnhance = 36,
49
- ActionEnhanceEnhanced = 37,
50
- ActionEnhanceFailed = 38,
51
- ActionEnhanceNotPossible = 39,
52
- ActionEquipWillBreakOnDamage = 40,
53
- ActionFishingNothingBiting = 41,
54
- ActionFishingSlipped = 42,
55
- ActionFishingTooShallow = 43,
56
- ActionJumpCannotJump = 44,
57
- ActionMeleeNothingToAttack = 45,
58
- ActionMoveToSwimOffEdgeCannotCombatTides = 46,
59
- ActionNavigateMoon = 47,
60
- ActionNavigateNotOverworld = 48,
61
- ActionNavigateSun = 49,
62
- ActionNavigateUseSextant = 50,
63
- ActionPetCreatureRefused = 51,
64
- ActionPetNoTamedCreature = 52,
65
- ActionPickUpAllItemsNoItems = 53,
66
- ActionPickUpExcrementNoExcrement = 54,
67
- ActionPickUpItemNoItem = 55,
68
- ActionPickUpNoPickUp = 56,
69
- ActionRefineNoDurability = 57,
70
- ActionReleaseNoTamedCreature = 58,
71
- ActionRenameIsland = 59,
72
- ActionSailToCivilizationNotInsideBoat = 60,
73
- ActionSailToIsland = 61,
74
- ActionSailToIslandArrived = 62,
75
- ActionSailToIslandCannotUseCannotReachEdge = 63,
76
- ActionSailToIslandCannotUseCannotReachPort = 64,
77
- ActionSailToIslandCannotUseGhost = 65,
78
- ActionSailToIslandCannotUseInvalidDestination = 66,
79
- ActionSailToIslandCannotUseNoDestination = 67,
80
- ActionSailToIslandCannotUseNotEnoughStamina = 68,
81
- ActionSailToIslandCannotUseNotEnoughSwimmingSkill = 69,
82
- ActionSailToIslandCannotUseTravellingIsDisallowedInTheseLands = 70,
83
- ActionSailToIslandPlayerArriving = 71,
84
- ActionSailToIslandPlayerDeparting = 72,
85
- ActionSetCreatureAiAlreadyCommanded = 73,
86
- ActionSetCreatureAiCannotCommand = 74,
87
- ActionSetCreatureAiNotEnoughSkill = 75,
88
- ActionSetCreatureAiNotEnoughTames = 76,
89
- ActionShipToIslandNoDestination = 77,
90
- ActionTameCreatureTamed = 78,
91
- ActionTameNoCreature = 79,
92
- ActionTestDepthNothingToTest = 80,
93
- ActionTestDepthWell = 81,
94
- ActionToggleContainerNoContainer = 82,
95
- ActionToggleDoorNoDoor = 83,
96
- ActionToggleHitchAlreadyHitched = 84,
97
- ActionToggleHitchAlreadyUnhitched = 85,
98
- ActionToggleHitchNoCreature = 86,
99
- ActionToggleHitchNoHitch = 87,
100
- ActionToggleTilledAlreadyPacked = 88,
101
- ActionToggleTilledAlreadyTilled = 89,
102
- ActionUncageCannotUncageHere = 90,
103
- ActionUpgrade = 91,
104
- ActionUpgradeFailed = 92,
105
- ActionUpgradeNotMagical = 93,
106
- ActionUpgradeNotPossible = 94,
107
- ActionUpgradeUpgraded = 95,
108
- ActionUseItemWeaponNeeded = 96,
109
- AddedFuelToFire = 97,
110
- AddedFuelToTorch = 98,
111
- AllEquipmentUnEquipped = 99,
112
- AlreadyDesalinatedWaterInStill = 100,
113
- AlreadyFullyRefined = 101,
114
- AlreadyFullyRepaired = 102,
115
- AlreadyPreserved = 103,
116
- Alter = 104,
117
- AnotherIsland = 105,
118
- AnUnknownItem = 106,
119
- AppearedNotEffectiveForGathering = 107,
120
- ArmorAppeared = 108,
121
- ArmorProtectedFromInjuryAgainst = 109,
122
- AttemptedToDropAllIntoFire = 110,
123
- AttemptedToPlaceAllOnGround = 111,
124
- AttemptToSoothBurnInWater = 112,
125
- AttemptToSoothFrostbiteWithFire = 113,
126
- AttemptToSoothFrostbiteWithFireTheFrostbitePersists = 114,
127
- AttemptToSoothFrostbiteWithFireTooHot = 115,
128
- AttemptToTill = 116,
129
- BadlyBurnedLostHealth = 117,
130
- BarteringSkillsProvided = 118,
131
- BeenPoisoned = 119,
132
- BeginSleeping = 120,
133
- BeginUsingVehicle = 121,
134
- BleedingHasStopped = 122,
135
- BleedingProfusely = 123,
136
- BleedingToDeathLostHealth = 124,
137
- BookBlank = 125,
138
- BookContains = 126,
139
- BookCrumbles = 127,
140
- BookDiagrams = 128,
141
- BookEmpty = 129,
142
- BookNothing = 130,
143
- BookOpen = 131,
144
- BookScribbles = 132,
145
- BothEffectiveIneffective = 133,
146
- BrokeIntoPieces = 134,
147
- BrokenOnImpact = 135,
148
- BrokenWhileFiring = 136,
149
- Build = 137,
150
- Burned = 138,
151
- CannotAddAnyMoreFuel = 139,
152
- CannotBeCrafted = 140,
153
- CannotBePerformedOverWater = 141,
154
- CannotBePlacedHere = 142,
155
- CannotBePreserved = 143,
156
- CannotBeRefined = 144,
157
- CannotBeRefinedReinforcementNeeded = 145,
158
- CannotBeReinforced = 146,
159
- CannotBeRepaired = 147,
160
- CannotBuildHere = 148,
161
- CannotDoThatHere = 149,
162
- CannotDropHere = 150,
163
- CannotEquipThatThere = 151,
164
- CannotFishFor = 152,
165
- CannotHere = 153,
166
- CannotInWater = 154,
167
- CannotLeave = 155,
168
- CannotNoTreasure = 156,
169
- CannotPickUpLockedContainer = 157,
170
- CannotPickUpWhileLit = 158,
171
- CannotPlaceContainerInItself = 159,
172
- CannotPlaceHere = 160,
173
- CannotPlaceThatFromHere = 161,
174
- CannotPlaceThatHere = 162,
175
- CannotPlaceThatOverWater = 163,
176
- CannotPlantHereTilled = 164,
177
- CannotRepairWhileLit = 165,
178
- CannotRestHere = 166,
179
- CannotShipNoItems = 167,
180
- CannotShipNoPath = 168,
181
- CannotSleepHere = 169,
182
- CannotStartFireHere = 170,
183
- CannotToTellTime = 171,
184
- CannotUseCommand = 172,
185
- CannotWhenProtected = 173,
186
- CannotWhenProtectedDangerousAction = 174,
187
- CannotWhenProtectedDurability = 175,
188
- CarryingTooMuchWeight = 176,
189
- CarvedUpCorpse = 177,
190
- Carving = 178,
191
- CastYourLine = 179,
192
- CaughtFish = 180,
193
- ChatBanCommand = 181,
194
- ChatBannedCommand = 182,
195
- ChatCommandsCommand = 183,
196
- ChatCommandsCommandCommand = 184,
197
- ChatPingCommand = 185,
198
- ChatPlayerMessage = 186,
199
- ChatPlayersCommand = 187,
200
- ChatServerMessage = 188,
201
- ChatUnbanCommand = 189,
202
- ChatUnknownCommand = 190,
203
- Chop = 191,
204
- Chopping = 192,
205
- ClearedBlood = 193,
206
- Clockwise = 194,
207
- CloseToBeingDestroyed = 195,
208
- CommandAttack = 196,
209
- CommandDefend = 197,
210
- CommandFollowClose = 198,
211
- CommandFollowFar = 199,
212
- CommandStay = 200,
213
- Container = 201,
214
- CopiedMap = 202,
215
- CorpseOf = 203,
216
- CorpseOfNamed = 204,
217
- Counterclockwise = 205,
218
- Craft = 206,
219
- Crafted = 207,
220
- Crafts = 208,
221
- CreatureAngered = 209,
222
- CreatureAppears = 210,
223
- CreatureAppeased = 211,
224
- CreatureExcrement = 212,
225
- CreatureHappinessHigh = 213,
226
- CreatureHappinessLow = 214,
227
- CreatureHappinessLowest = 215,
228
- CreatureHappinessNormal = 216,
229
- CreatureIdolAttractedCreature = 217,
230
- CreatureRefusesToBeTamed = 218,
231
- CreatureRefusesYou = 219,
232
- CreatureUntamed = 220,
233
- CuredYourPoison = 221,
234
- Cut = 222,
235
- CutHasHealed = 223,
236
- CutLostHealth = 224,
237
- CutWasBandaged = 225,
238
- DamageAppeared = 226,
239
- DamagedByPouring = 227,
240
- DangerousMove = 228,
241
- DangerousOpen = 229,
242
- DayQuarter1 = 230,
243
- DayQuarter2 = 231,
244
- DayQuarter3 = 232,
245
- DayQuarter4 = 233,
246
- DealtNoDamageToYou = 234,
247
- DeathBy = 235,
248
- DeathByBleeding = 236,
249
- DeathByBurning = 237,
250
- DeathByChallengeWinner = 238,
251
- DeathByConsumption = 239,
252
- DeathByCut = 240,
253
- DeathByDrowning = 241,
254
- DeathByExhaustion = 242,
255
- DeathByFistByPlayer = 243,
256
- DeathByFrostbite = 244,
257
- DeathByFrostbiteTemperatureShock = 245,
258
- DeathByMalnutrition = 246,
259
- DeathByPoison = 247,
260
- DeathBySteppingOn = 248,
261
- DeathByTrap = 249,
262
- DeathByWeaponByPlayer = 250,
263
- DestroyedFromUse = 251,
264
- Dexterity = 252,
265
- DidNotSeemToBeHurting = 253,
266
- Dig = 254,
267
- DigAway = 255,
268
- Digging = 256,
269
- Disassemble = 257,
270
- Disassembling = 258,
271
- DiscoveredCaveEntrance = 259,
272
- DiscoveredInTheBottle = 260,
273
- DiscoveredLavaPassage = 261,
274
- Dismantle = 262,
275
- Dismantling = 263,
276
- DismantlingRequires = 264,
277
- Dismounted = 265,
278
- DisplacedPuddles = 266,
279
- DoNotProduceAnyResources = 267,
280
- DoodadCauseStatus = 268,
281
- DoodadGroupTier = 269,
282
- DrewSurroundings = 270,
283
- Drop = 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
- DyingOfDehydration = 280,
293
- EarnedMilestone = 281,
294
- Effective = 282,
295
- Enchant = 283,
296
- EquipmentPreventedStatusEffects = 284,
297
- ErrorHasOccured = 285,
298
- ExtinguishedFire = 286,
299
- ExtinguishedLightSource = 287,
300
- Exude = 288,
301
- ExudeNotPossible = 289,
302
- FailedToAbsorb = 290,
303
- FailedToAddFuelToTorch = 291,
304
- FailedToCatchFish = 292,
305
- FailedToCauseDamage = 293,
306
- FailedToCauseYouDamage = 294,
307
- FailedToCopy = 295,
308
- FailedToDraw = 296,
309
- FailedToEnchant = 297,
310
- FailedToExude = 298,
311
- FailedToIgniteTorch = 299,
312
- FailedToPickLock = 300,
313
- FailedToPreserve = 301,
314
- FailedToRefine = 302,
315
- FailedToReinforce = 303,
316
- FailedToRepair = 304,
317
- FailedToStartFire = 305,
318
- FailedToTame = 306,
319
- FailedToTransmogrify = 307,
320
- FarOffLands = 308,
321
- FeltBurningPainLostHealth = 309,
322
- FeltFrostbitePainLostHealth = 310,
323
- FewMinutes = 311,
324
- Filled = 312,
325
- FilledFrom = 313,
326
- FireAroundYouIsWarm = 314,
327
- FiredIntoObstacle = 315,
328
- FireOverflowed = 316,
329
- FireOverflowedFireElemental = 317,
330
- FireSource = 318,
331
- FishingWithNoBait = 319,
332
- Floating = 320,
333
- FreshWater = 321,
334
- FromTheStill = 322,
335
- Fuel = 323,
336
- FuelIsRequired = 324,
337
- Gather = 325,
338
- GatherDestroy = 326,
339
- Gathering = 327,
340
- GhostNoActions = 328,
341
- GhostOf = 329,
342
- GoatHasNoMilk = 330,
343
- GrabAll = 331,
344
- HackAway = 332,
345
- HandProtectionPreventedInjury = 333,
346
- HandsNotEffectiveFor = 334,
347
- Harvest = 335,
348
- Harvesting = 336,
349
- HasBeenHurtByATrap = 337,
350
- HasDecayed = 338,
351
- HasHitYouForDamage = 339,
352
- HasNoEffect = 340,
353
- HasSetTrapOffNoDamage = 341,
354
- HasSplit = 342,
355
- Help = 343,
356
- HelpGrow = 344,
357
- Hitch = 345,
358
- HitchAttempt = 346,
359
- HitchCreature = 347,
360
- HitchDisabled = 348,
361
- HitchInUse = 349,
362
- HitForDamage = 350,
363
- HitYouForDamage = 351,
364
- Hour = 352,
365
- Hours = 353,
366
- HurtHandsHittingWithoutWeapons = 354,
367
- HurtHandsWithNoTool = 355,
368
- Ignite = 356,
369
- IgnitedTorch = 357,
370
- Ineffective = 358,
371
- InjuredFromTrap = 359,
372
- InNeedOfRepair = 360,
373
- InteractingWithHasInjuredYouForDamage = 361,
374
- Inventory = 362,
375
- IsInTheWayOfPickingUp = 363,
376
- It = 364,
377
- ItemFromWater = 365,
378
- JoinedAServer = 366,
379
- Jump = 367,
380
- Killed = 368,
381
- KnowledgeHasIncreased = 369,
382
- LastPlaceYouLeftOff = 370,
383
- LearnedHowToCreate = 371,
384
- LikelyFailures = 372,
385
- Limited = 373,
386
- Lockpick = 374,
387
- MapCompletedNotOfThisArea = 375,
388
- MapDestroyed = 376,
389
- MapNearlyDestroyed = 377,
390
- MapNotOfThisArea = 378,
391
- MaterialsDestroyed = 379,
392
- MerchantAlreadyTradedItem = 380,
393
- MessageOfTheDay = 381,
394
- Metabolism = 382,
395
- MetabolismSlowed = 383,
396
- Milk = 384,
397
- Mine = 385,
398
- Mining = 386,
399
- MissedWith = 387,
400
- MissedYouWith = 388,
401
- MovedItem = 389,
402
- MoveOverTrapButDoNotSetOff = 390,
403
- MultiplayerGamePaused = 391,
404
- MultiplayerGameResumed = 392,
405
- MultiplayerPlayerConnected = 393,
406
- MultiplayerPlayerDied = 394,
407
- MultiplayerPlayerDisconnected = 395,
408
- MultiplayerPlayerJoined = 396,
409
- MustBeEquippedToIgnite = 397,
410
- Mysteriously = 398,
411
- NearlyBurnedEquipmentProtectedYou = 399,
412
- NeedToStartTravelsOutside = 400,
413
- NeedWaterForBoat = 401,
414
- Negatively = 402,
415
- NightQuarter1 = 403,
416
- NightQuarter2 = 404,
417
- NightQuarter3 = 405,
418
- NightQuarter4 = 406,
419
- No = 407,
420
- NoAmmunitionForThatWeapon = 408,
421
- NoFireToStokeWith = 409,
422
- NoFishAtLocation = 410,
423
- NoGroundWater = 411,
424
- NoInkToDrawMap = 412,
425
- NoKindlingOrFuelItemsToStartFire = 413,
426
- NoKindlingToStartFire = 414,
427
- NoLongerFeelPainOfBeingBurned = 415,
428
- NoLongerFeelPainOfBeingFrostbitten = 416,
429
- NoLongerHostile = 417,
430
- NoMoreRoomInContainer = 418,
431
- NoPaperToDrawMap = 419,
432
- NoRequiredItemToFireWeapon = 420,
433
- NoReturnWithoutCompletingChallenges = 421,
434
- NoRoomForImprovement = 422,
435
- NoRoomToDrop = 423,
436
- NoRoomToSummon = 424,
437
- NotEnoughPurifiedWaterYet = 425,
438
- NotEnoughTreasureToReturn = 426,
439
- NotFacingCreatureToOfferThisTo = 427,
440
- NotFacingLockedObject = 428,
441
- NotFacingOtherToHeal = 429,
442
- NotFacingValidItem = 430,
443
- NothingHereToButcher = 431,
444
- NothingHereToFill = 432,
445
- NothingHereToGrasp = 433,
446
- NothingTo = 434,
447
- NothingToGetFromThis = 435,
448
- NothingToHarvestFromThisGather = 436,
449
- NothingToSmother = 437,
450
- NothingUsefulToHarvestYet = 438,
451
- NoTinderToStartFire = 439,
452
- NotSuitableToPlant = 440,
453
- NoWaterInStill = 441,
454
- NPCMerchantNewInventoryDialog1 = 442,
455
- NPCMerchantNewInventoryDialog2 = 443,
456
- NPCMerchantNewInventoryDialog3 = 444,
457
- NPCMerchantNewInventoryDialog4 = 445,
458
- NPCMerchantStartingDialog1 = 446,
459
- NPCMerchantStartingDialog2 = 447,
460
- NPCMerchantStartingDialog3 = 448,
461
- NPCMerchantStartingDialog4 = 449,
462
- NPCMerchantWelcomeCredit = 450,
463
- NPCShipperShipToIsland = 451,
464
- NPCShipperStartingDialog1 = 452,
465
- NPCShipperStartingDialog2 = 453,
466
- NPCShipperStartingDialog3 = 454,
467
- NPCShipperStartingDialog4 = 455,
468
- NPCWelcome = 456,
469
- ObjectIsLocked = 457,
470
- ObjectIsLockedAttemptToBreakIt = 458,
471
- OfferAberrantFail = 459,
472
- OfferAberrantFailButTamed = 460,
473
- Open = 461,
474
- OpenClose = 462,
475
- OverEatingLostStamina = 463,
476
- OverHydratingLostStamina = 464,
477
- Pack = 465,
478
- PaperTurnedToMush = 466,
479
- ParryTheBlow = 467,
480
- Pet = 468,
481
- PetCreature = 469,
482
- PickAway = 470,
483
- PickUp = 471,
484
- PickUpExcrement = 472,
485
- PickUpTheItem = 473,
486
- Place = 474,
487
- PlacedOnGround = 475,
488
- Plant = 476,
489
- PlantedInGround = 477,
490
- PlantGatheredPlant = 478,
491
- PlantGatheringWillDestroy = 479,
492
- PlantHasResourcesToGather = 480,
493
- PlantHasResourcesToHarvest = 481,
494
- PlantHighlyFertile = 482,
495
- Planting = 483,
496
- PlantIsBare = 484,
497
- PlantIsFertile = 485,
498
- PlantIsInStage = 486,
499
- PlantIsNotFertile = 487,
500
- PlantNotReadyToHarvest = 488,
501
- PlantReadyToGather = 489,
502
- PlantReadyToGatherNotMaximal = 490,
503
- PlantReadyToHarvest = 491,
504
- PlantReadyToHarvestNotMaximal = 492,
505
- Player = 493,
506
- PlayerHas = 494,
507
- PlayerHasCompletedChallengeRequirement = 495,
508
- PlayerHasWonChallenge = 496,
509
- Poisoned = 497,
510
- PoisonedLostHealth = 498,
511
- PoisonWorkedItsCourse = 499,
512
- Positively = 500,
513
- PouredOut = 501,
514
- PouredOutOnYourself = 502,
515
- PouredWaterIntoStill = 503,
516
- PourHarmedPlant = 504,
517
- PourHealedPlant = 505,
518
- PourHealedPlantFully = 506,
519
- PourHealedPlantPartially = 507,
520
- PourIncreasedFertility = 508,
521
- Pouring = 509,
522
- Prepare = 510,
523
- Prepared = 511,
524
- Preserve = 512,
525
- PreservedFood = 513,
526
- PurifiedWaterInStill = 514,
527
- RandomEventsFire = 515,
528
- ReduceLength = 516,
529
- Refine = 517,
530
- RefusedToBeTamed = 518,
531
- Reinforce = 519,
532
- Repair = 520,
533
- ReputationDecreased = 521,
534
- ReputationIncreased = 522,
535
- ReputationUpdate = 523,
536
- RequiredForDisassembly = 524,
537
- RequiresFireToBeLit = 525,
538
- RequiresYouFacingFireSource = 526,
539
- RequiresYouToBeAround = 527,
540
- Resistant = 528,
541
- Rest = 529,
542
- Rested = 530,
543
- Resting = 531,
544
- RestingOnGroundNotEffective = 532,
545
- RestInterrupted = 533,
546
- RestInterruptedDamage = 534,
547
- RestInterruptedDying = 535,
548
- RestInterruptedLoudNoise = 536,
549
- RestInterruptedPain = 537,
550
- RestInterruptedStirring = 538,
551
- RestInterruptedWaterPoured = 539,
552
- RestLongTime = 540,
553
- RestModerateTime = 541,
554
- RestOnBoat = 542,
555
- RestShortTime = 543,
556
- RestTime = 544,
557
- ReturnedToCivilization = 545,
558
- ReturningToCivilizationSetOffAgain = 546,
559
- ReturnsToLife = 547,
560
- Reverse = 548,
561
- Sailing = 549,
562
- ScrollMaster = 550,
563
- ScrollProvidedNoUsefulInsight = 551,
564
- Seawater = 552,
565
- SeemsToHaveDrawnEnergy = 553,
566
- SetTrapOffButNoDamage = 554,
567
- SetUp = 555,
568
- ShadowInTheWater = 556,
569
- Skill = 557,
570
- SkillHasRaised = 558,
571
- Skills = 559,
572
- Sleep = 560,
573
- Sleeping = 561,
574
- SleepOnBoat = 562,
575
- Slept = 563,
576
- SlitherSuckerConstricts = 564,
577
- SlitherSuckerJumpedOnHead = 565,
578
- SomethingInTheWayOf = 566,
579
- SomethingInTheWayOfButcherFirst = 567,
580
- SomethingInTheWayOfFire = 568,
581
- SomethingInTheWayOfFishing = 569,
582
- SomethingInTheWayOfPerforming = 570,
583
- SomethingInTheWayOfPlacing = 571,
584
- SomethingInTheWayOfReleasing = 572,
585
- SomethingInTheWayOfSummoning = 573,
586
- SomethingInWayOfClosingDoor = 574,
587
- SoothedTheirBurnInjuries = 575,
588
- SoothedYourBurnInjuries = 576,
589
- Sort = 577,
590
- SortedByBestCraftingRequirements = 578,
591
- SortedByCategory = 579,
592
- SortedByCraftableOnly = 580,
593
- SortedByDecay = 581,
594
- SortedByDurability = 582,
595
- SortedByGroup = 583,
596
- SortedByMagical = 584,
597
- SortedByName = 585,
598
- SortedByQuality = 586,
599
- SortedByRecent = 587,
600
- SortedBySkill = 588,
601
- SortedByUnlockedTime = 589,
602
- SortedByWeight = 590,
603
- SortedByWorth = 591,
604
- StaminaIsFull = 592,
605
- StartedFire = 593,
606
- StartTravelInWater = 594,
607
- StarvingToDeath = 595,
608
- StatAmount = 596,
609
- StatGained = 597,
610
- StatIncreasing = 598,
611
- StatLost = 599,
612
- StatQuenched = 600,
613
- StatRegained = 601,
614
- StatSated = 602,
615
- SteppingOn = 603,
616
- StillHasNoWaterToPurify = 604,
617
- StirredUpClawWorm = 605,
618
- StirredUpCreature = 606,
619
- StoppedYourBleeding = 607,
620
- StopUsingVehicle = 608,
621
- Strength = 609,
622
- SummonedGuardiansByDiggingTreasure = 610,
623
- SummonedGuardiansByLockpicking = 611,
624
- SummonVoidDwellerItem = 612,
625
- SummonVoidDwellerRinging = 613,
626
- SummonVoidDwellerShiver = 614,
627
- SunNotBrightEnoughToStartFire = 615,
628
- SwampWater = 616,
629
- Swimming = 617,
630
- TakenFromGroundBecomeTamed = 618,
631
- TeleportBlocked = 619,
632
- Teleported = 620,
633
- ThanksBuying = 621,
634
- ThanksSelling = 622,
635
- TheirFist = 623,
636
- ThePlant = 624,
637
- ThereIsNoContainerOnTheStill = 625,
638
- ThereIsNoSunToStartFire = 626,
639
- ThisCannotBeMilked = 627,
640
- Throw = 628,
641
- ThrownIntoDepths = 629,
642
- ThrownIntoObstacle = 630,
643
- ThrownIntoVoid = 631,
644
- Tier = 632,
645
- TierGroup = 633,
646
- Till = 634,
647
- Tilling = 635,
648
- TimeIs = 636,
649
- TimeIsDawn = 637,
650
- TimeIsDaytime = 638,
651
- TimeIsDusk = 639,
652
- TimeIsNighttime = 640,
653
- TimeIsSunrise = 641,
654
- TimeIsSunset = 642,
655
- ToFight = 643,
656
- TooDamaged = 644,
657
- TooExhaustedToJump = 645,
658
- Touching = 646,
659
- TradingWith = 647,
660
- TrampledFire = 648,
661
- TrampledIntoGround = 649,
662
- TrampleIntoGround = 650,
663
- Trampling = 651,
664
- TransmogrificationNotPossible = 652,
665
- Transmogrified = 653,
666
- Transmogrify = 654,
667
- TrapMissed = 655,
668
- TrapStoppedYou = 656,
669
- Traveling = 657,
670
- TreasureIsBlocked = 658,
671
- UiActionCannotUseRequiresCreature = 659,
672
- UiActionCannotUseRequiresDoodad = 660,
673
- UiActionCannotUseRequiresItem = 661,
674
- Unhitch = 662,
675
- UnhitchCreature = 663,
676
- Unknown = 664,
677
- Unlimited = 665,
678
- UnlockedChest = 666,
679
- UnpurifiedFreshWater = 667,
680
- UnpurifiedWaterInStill = 668,
681
- Use = 669,
682
- UsingBareHands = 670,
683
- VehicleDefense = 671,
684
- Vulnerable = 672,
685
- Water = 673,
686
- WaterGathering = 674,
687
- WaterPutOutFire = 675,
688
- WellIsDry = 676,
689
- WellIsFull = 677,
690
- WildGoatRefusedToBeMilked = 678,
691
- WillNotTrade = 679,
692
- WorkingYourselfIntoExhaustion = 680,
693
- WorkingYourselfIntoExhaustionAndDrowning = 681,
694
- You = 682,
695
- YouAbsorb = 683,
696
- YouApplied = 684,
697
- YouAreAlready = 685,
698
- YouAte = 686,
699
- YouBeginResting = 687,
700
- YouCannotDoThatYet = 688,
701
- YouCanNowCombatTheTides = 689,
702
- YouCrafted = 690,
703
- YouDoNotFindTreasureYet = 691,
704
- YouDrank = 692,
705
- YouDropTheTorch = 693,
706
- YouEnchant = 694,
707
- YouEquip = 695,
708
- YouExude = 696,
709
- YouExudeSome = 697,
710
- YouExudeSomeReasonConflicting = 698,
711
- YouExudeSomeReasonMax = 699,
712
- YouExudeSomeReasonProperties = 700,
713
- YouFailedTo = 701,
714
- YouFailedToExtinguishedFireFully = 702,
715
- YouFailedToHeal = 703,
716
- YouFailedToHealOther = 704,
717
- YouFire = 705,
718
- YouGathered = 706,
719
- YouGatheredAndDropped = 707,
720
- YouHarvested = 708,
721
- YouHarvestedAndDropped = 709,
722
- YouHave = 710,
723
- YouHaveAlreadyLearned = 711,
724
- YouHaveBeenCut = 712,
725
- YouHaveCaged = 713,
726
- YouHaveCommanded = 714,
727
- YouHaveDied = 715,
728
- YouHaveHealedOther = 716,
729
- YouHaveKilled = 717,
730
- YouHaveReleased = 718,
731
- YouHaveSummoned = 719,
732
- YouHaveTamed = 720,
733
- YouHaveUncaged = 721,
734
- YouNeedMoreCredit = 722,
735
- YouNoticeBarren = 723,
736
- YouNoticeBecomeEnraged = 724,
737
- YouNoticeDying = 725,
738
- YouNoticeFertilityDecreasing = 726,
739
- YouNoticeFertilityIncreasing = 727,
740
- YouNoticeGrowing = 728,
741
- YouNoticeLavaCooling = 729,
742
- YouNoticeLavaHardening = 730,
743
- YouNoticePerish = 731,
744
- YouNoticePlantDamage = 732,
745
- YouNoticePlantRegenerated = 733,
746
- YouNoticeRegrowing = 734,
747
- YouNoticeStumbleInjureItself = 735,
748
- YouNoticeTakeFromGround = 736,
749
- YouNoticeWoundsClosing = 737,
750
- YouNoticeZombieHorde = 738,
751
- YouOfferedToCreature = 739,
752
- YouOfferedToCreatureRejects = 740,
753
- YouOpen = 741,
754
- YouPacked = 742,
755
- YouPickedUp = 743,
756
- YouRefine = 744,
757
- YouReinforce = 745,
758
- YouRepair = 746,
759
- YouReturnFromCivilizationWith = 747,
760
- YourFist = 748,
761
- YourHands = 749,
762
- YourInventory = 750,
763
- YourIsland = 751,
764
- YourRubbingNoEffect = 752,
765
- YouRub = 753,
766
- YouSee = 754,
767
- YouSeeALivingMushroomSpore = 755,
768
- YouSeeASkeletonCollapse = 756,
769
- YouSeeASlimeCombine = 757,
770
- YouSeeAZombieBleeding = 758,
771
- YouSeeCoolDown = 759,
772
- YouSeeDrop = 760,
773
- YouSeeEngulfFire = 761,
774
- YouSeeFireSpread = 762,
775
- YouSeeHelpingPlant = 763,
776
- YouSeeLay = 764,
777
- YouSeeLayingTrap = 765,
778
- YouSeeSpewLava = 766,
779
- YouSeeSpitAcid = 767,
780
- YouSeeSpringForth = 768,
781
- YouSeeSummon = 769,
782
- YouSeeSwampFlood = 770,
783
- YouSeeTrampling = 771,
784
- YouSetTheTrapOff = 772,
785
- YouStokeTheCreature = 773,
786
- YouSwapMainHandAndOffHand = 774,
787
- YouThrew = 775,
788
- YouTilled = 776,
789
- YouUnequip = 777,
790
- YouUsed = 778,
791
- YouWhileTraveling = 779
48
+ ActionDropCannotUseBlocked = 36,
49
+ ActionDropCannotUseItemFilteredOut = 37,
50
+ ActionDropCannotUseItemProtected = 38,
51
+ ActionDropCannotUseItemProtectedDangerous = 39,
52
+ ActionDropCannotUseItemQualityIncorrect = 40,
53
+ ActionDropCannotUseNoItems = 41,
54
+ ActionEnhance = 42,
55
+ ActionEnhanceEnhanced = 43,
56
+ ActionEnhanceFailed = 44,
57
+ ActionEnhanceNotPossible = 45,
58
+ ActionEquipWillBreakOnDamage = 46,
59
+ ActionFishingNothingBiting = 47,
60
+ ActionFishingSlipped = 48,
61
+ ActionFishingTooShallow = 49,
62
+ ActionJumpCannotJump = 50,
63
+ ActionMeleeNothingToAttack = 51,
64
+ ActionMoveItemCannotUseMovingFromMultipleContainers = 52,
65
+ ActionMoveItemCannotUseMovingToSameContainer = 53,
66
+ ActionMoveItemCannotUseNoItems = 54,
67
+ ActionMoveItemCannotUseNoRoom = 55,
68
+ ActionMoveToSwimOffEdgeCannotCombatTides = 56,
69
+ ActionNavigateMoon = 57,
70
+ ActionNavigateNotOverworld = 58,
71
+ ActionNavigateSun = 59,
72
+ ActionNavigateUseSextant = 60,
73
+ ActionPetCreatureRefused = 61,
74
+ ActionPetNoTamedCreature = 62,
75
+ ActionPickUpAllItemsNoItems = 63,
76
+ ActionPickUpExcrementNoExcrement = 64,
77
+ ActionPickUpItemNoItem = 65,
78
+ ActionPickUpNoPickUp = 66,
79
+ ActionRefineNoDurability = 67,
80
+ ActionReleaseNoTamedCreature = 68,
81
+ ActionRenameIsland = 69,
82
+ ActionSailToCivilizationNotInsideBoat = 70,
83
+ ActionSailToIsland = 71,
84
+ ActionSailToIslandArrived = 72,
85
+ ActionSailToIslandCannotUseCannotReachEdge = 73,
86
+ ActionSailToIslandCannotUseCannotReachPort = 74,
87
+ ActionSailToIslandCannotUseGhost = 75,
88
+ ActionSailToIslandCannotUseInvalidDestination = 76,
89
+ ActionSailToIslandCannotUseNoDestination = 77,
90
+ ActionSailToIslandCannotUseNotEnoughStamina = 78,
91
+ ActionSailToIslandCannotUseNotEnoughSwimmingSkill = 79,
92
+ ActionSailToIslandCannotUseTravellingIsDisallowedInTheseLands = 80,
93
+ ActionSailToIslandPlayerArriving = 81,
94
+ ActionSailToIslandPlayerDeparting = 82,
95
+ ActionSetCreatureAiAlreadyCommanded = 83,
96
+ ActionSetCreatureAiCannotCommand = 84,
97
+ ActionSetCreatureAiNotEnoughSkill = 85,
98
+ ActionSetCreatureAiNotEnoughTames = 86,
99
+ ActionShipToIslandNoDestination = 87,
100
+ ActionTameCreatureTamed = 88,
101
+ ActionTameNoCreature = 89,
102
+ ActionTestDepthNothingToTest = 90,
103
+ ActionTestDepthWell = 91,
104
+ ActionToggleContainerNoContainer = 92,
105
+ ActionToggleDoorNoDoor = 93,
106
+ ActionToggleHitchAlreadyHitched = 94,
107
+ ActionToggleHitchAlreadyUnhitched = 95,
108
+ ActionToggleHitchNoCreature = 96,
109
+ ActionToggleHitchNoHitch = 97,
110
+ ActionToggleTilledAlreadyPacked = 98,
111
+ ActionToggleTilledAlreadyTilled = 99,
112
+ ActionUncageCannotUncageHere = 100,
113
+ ActionUpgrade = 101,
114
+ ActionUpgradeFailed = 102,
115
+ ActionUpgradeNotMagical = 103,
116
+ ActionUpgradeNotPossible = 104,
117
+ ActionUpgradeUpgraded = 105,
118
+ ActionUseItemWeaponNeeded = 106,
119
+ AddedFuelToFire = 107,
120
+ AddedFuelToTorch = 108,
121
+ AllEquipmentUnEquipped = 109,
122
+ AlreadyDesalinatedWaterInStill = 110,
123
+ AlreadyFullyRefined = 111,
124
+ AlreadyFullyRepaired = 112,
125
+ AlreadyPreserved = 113,
126
+ Alter = 114,
127
+ AnotherIsland = 115,
128
+ AnUnknownItem = 116,
129
+ APileOfItems = 117,
130
+ AppearedNotEffectiveForGathering = 118,
131
+ ArmorAppeared = 119,
132
+ ArmorProtectedFromInjuryAgainst = 120,
133
+ AttemptToSoothBurnInWater = 121,
134
+ AttemptToSoothFrostbiteWithFire = 122,
135
+ AttemptToSoothFrostbiteWithFireTooHot = 123,
136
+ AttemptToTill = 124,
137
+ BadlyBurnedLostHealth = 125,
138
+ BarteringSkillsProvided = 126,
139
+ BeenPoisoned = 127,
140
+ BeginSleeping = 128,
141
+ BeginUsingVehicle = 129,
142
+ BleedingHasStopped = 130,
143
+ BleedingProfusely = 131,
144
+ BleedingToDeathLostHealth = 132,
145
+ BookBlank = 133,
146
+ BookContains = 134,
147
+ BookCrumbles = 135,
148
+ BookDiagrams = 136,
149
+ BookEmpty = 137,
150
+ BookNothing = 138,
151
+ BookOpen = 139,
152
+ BookScribbles = 140,
153
+ BothEffectiveIneffective = 141,
154
+ BrokeIntoPieces = 142,
155
+ BrokenOnImpact = 143,
156
+ BrokenWhileFiring = 144,
157
+ Build = 145,
158
+ Burned = 146,
159
+ CannotAddAnyMoreFuel = 147,
160
+ CannotBeCrafted = 148,
161
+ CannotBePerformedOverWater = 149,
162
+ CannotBePlacedHere = 150,
163
+ CannotBePreserved = 151,
164
+ CannotBeRefined = 152,
165
+ CannotBeRefinedReinforcementNeeded = 153,
166
+ CannotBeReinforced = 154,
167
+ CannotBeRepaired = 155,
168
+ CannotBuildHere = 156,
169
+ CannotDoThatHere = 157,
170
+ CannotEquipThatThere = 158,
171
+ CannotFishFor = 159,
172
+ CannotHere = 160,
173
+ CannotInWater = 161,
174
+ CannotLeave = 162,
175
+ CannotNoTreasure = 163,
176
+ CannotPickUpLockedContainer = 164,
177
+ CannotPickUpWhileLit = 165,
178
+ CannotPlaceContainerInItself = 166,
179
+ CannotPlaceHere = 167,
180
+ CannotPlaceThatFromHere = 168,
181
+ CannotPlaceThatHere = 169,
182
+ CannotPlaceThatOverWater = 170,
183
+ CannotPlantHereTilled = 171,
184
+ CannotRepairWhileLit = 172,
185
+ CannotRestHere = 173,
186
+ CannotShipNoItems = 174,
187
+ CannotShipNoPath = 175,
188
+ CannotSleepHere = 176,
189
+ CannotStartFireHere = 177,
190
+ CannotToTellTime = 178,
191
+ CannotUseCommand = 179,
192
+ CannotWhenProtected = 180,
193
+ CannotWhenProtectedDangerousAction = 181,
194
+ CannotWhenProtectedDurability = 182,
195
+ CarryingTooMuchWeight = 183,
196
+ CarvedUpCorpse = 184,
197
+ Carving = 185,
198
+ CastYourLine = 186,
199
+ CaughtFish = 187,
200
+ ChatBanCommand = 188,
201
+ ChatBannedCommand = 189,
202
+ ChatCommandsCommand = 190,
203
+ ChatCommandsCommandCommand = 191,
204
+ ChatPingCommand = 192,
205
+ ChatPlayerMessage = 193,
206
+ ChatPlayersCommand = 194,
207
+ ChatServerMessage = 195,
208
+ ChatUnbanCommand = 196,
209
+ ChatUnknownCommand = 197,
210
+ Chop = 198,
211
+ Chopping = 199,
212
+ ClearedBlood = 200,
213
+ Clockwise = 201,
214
+ CloseToBeingDestroyed = 202,
215
+ CommandAttack = 203,
216
+ CommandDefend = 204,
217
+ CommandFollowClose = 205,
218
+ CommandFollowFar = 206,
219
+ CommandStay = 207,
220
+ Container = 208,
221
+ CopiedMap = 209,
222
+ CorpseOf = 210,
223
+ CorpseOfNamed = 211,
224
+ Counterclockwise = 212,
225
+ Craft = 213,
226
+ Crafted = 214,
227
+ Crafts = 215,
228
+ CreatureAngered = 216,
229
+ CreatureAppears = 217,
230
+ CreatureAppeased = 218,
231
+ CreatureExcrement = 219,
232
+ CreatureHappinessHigh = 220,
233
+ CreatureHappinessLow = 221,
234
+ CreatureHappinessLowest = 222,
235
+ CreatureHappinessNormal = 223,
236
+ CreatureIdolAttractedCreature = 224,
237
+ CreatureRefusesToBeTamed = 225,
238
+ CreatureRefusesYou = 226,
239
+ CreatureUntamed = 227,
240
+ CuredYourPoison = 228,
241
+ Cut = 229,
242
+ CutHasHealed = 230,
243
+ CutLostHealth = 231,
244
+ CutWasBandaged = 232,
245
+ DamageAppeared = 233,
246
+ DamagedByPouring = 234,
247
+ DangerousMove = 235,
248
+ DangerousOpen = 236,
249
+ DayQuarter1 = 237,
250
+ DayQuarter2 = 238,
251
+ DayQuarter3 = 239,
252
+ DayQuarter4 = 240,
253
+ DealtNoDamageToYou = 241,
254
+ DeathBy = 242,
255
+ DeathByBleeding = 243,
256
+ DeathByBurning = 244,
257
+ DeathByChallengeWinner = 245,
258
+ DeathByConsumption = 246,
259
+ DeathByCut = 247,
260
+ DeathByDrowning = 248,
261
+ DeathByExhaustion = 249,
262
+ DeathByFistByPlayer = 250,
263
+ DeathByFrostbite = 251,
264
+ DeathByFrostbiteTemperatureShock = 252,
265
+ DeathByMalnutrition = 253,
266
+ DeathByPoison = 254,
267
+ DeathBySteppingOn = 255,
268
+ DeathByTrap = 256,
269
+ DeathByWeaponByPlayer = 257,
270
+ DestroyedFromUse = 258,
271
+ Dexterity = 259,
272
+ DidNotSeemToBeHurting = 260,
273
+ Dig = 261,
274
+ DigAway = 262,
275
+ Digging = 263,
276
+ Disassemble = 264,
277
+ Disassembling = 265,
278
+ DiscoveredCaveEntrance = 266,
279
+ DiscoveredInTheBottle = 267,
280
+ DiscoveredLavaPassage = 268,
281
+ Dismantle = 269,
282
+ Dismantling = 270,
283
+ DismantlingRequires = 271,
284
+ Dismounted = 272,
285
+ DisplacedPuddles = 273,
286
+ DoNotProduceAnyResources = 274,
287
+ DoodadCauseStatus = 275,
288
+ DoodadGroupTier = 276,
289
+ DrewSurroundings = 277,
290
+ Drop = 278,
291
+ DroppedIntoDepths = 279,
292
+ DroppedIntoFire = 280,
293
+ DroppedIntoTheVoid = 281,
294
+ DryadSprouted = 282,
295
+ DueToDehydration = 283,
296
+ DueToStarvation = 284,
297
+ DugTreasureOut = 285,
298
+ DumpContentsOfContainerInInventory = 286,
299
+ DyingOfDehydration = 287,
300
+ EarnedMilestone = 288,
301
+ Effective = 289,
302
+ Enchant = 290,
303
+ EquipmentPreventedStatusEffects = 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
+ Gather = 332,
345
+ GatherDestroy = 333,
346
+ Gathering = 334,
347
+ GhostNoActions = 335,
348
+ GhostOf = 336,
349
+ GoatHasNoMilk = 337,
350
+ GrabAll = 338,
351
+ HackAway = 339,
352
+ HandProtectionPreventedInjury = 340,
353
+ HandsNotEffectiveFor = 341,
354
+ Harvest = 342,
355
+ Harvesting = 343,
356
+ HasBeenHurtByATrap = 344,
357
+ HasDecayed = 345,
358
+ HasHitYouForDamage = 346,
359
+ HasNoEffect = 347,
360
+ HasSetTrapOffNoDamage = 348,
361
+ HasSplit = 349,
362
+ Help = 350,
363
+ HelpGrow = 351,
364
+ Hitch = 352,
365
+ HitchAttempt = 353,
366
+ HitchCreature = 354,
367
+ HitchDisabled = 355,
368
+ HitchInUse = 356,
369
+ HitForDamage = 357,
370
+ HitYouForDamage = 358,
371
+ Hour = 359,
372
+ Hours = 360,
373
+ HurtHandsHittingWithoutWeapons = 361,
374
+ HurtHandsWithNoTool = 362,
375
+ Ignite = 363,
376
+ IgnitedTorch = 364,
377
+ Ineffective = 365,
378
+ InjuredFromTrap = 366,
379
+ InNeedOfRepair = 367,
380
+ InteractingWithHasInjuredYouForDamage = 368,
381
+ Inventory = 369,
382
+ IsInTheWayOfPickingUp = 370,
383
+ It = 371,
384
+ ItemFromWater = 372,
385
+ JoinedAServer = 373,
386
+ Jump = 374,
387
+ Killed = 375,
388
+ KnowledgeHasIncreased = 376,
389
+ LastPlaceYouLeftOff = 377,
390
+ LearnedHowToCreate = 378,
391
+ LikelyFailures = 379,
392
+ Limited = 380,
393
+ Lockpick = 381,
394
+ MapCompletedNotOfThisArea = 382,
395
+ MapDestroyed = 383,
396
+ MapNearlyDestroyed = 384,
397
+ MapNotOfThisArea = 385,
398
+ MaterialsDestroyed = 386,
399
+ MerchantAlreadyTradedItem = 387,
400
+ MessageOfTheDay = 388,
401
+ Metabolism = 389,
402
+ MetabolismSlowed = 390,
403
+ Milk = 391,
404
+ Mine = 392,
405
+ Mining = 393,
406
+ MissedWith = 394,
407
+ MissedYouWith = 395,
408
+ MovedItem = 396,
409
+ MovedItemFailed = 397,
410
+ MoveOverTrapButDoNotSetOff = 398,
411
+ MultiplayerGamePaused = 399,
412
+ MultiplayerGameResumed = 400,
413
+ MultiplayerPlayerConnected = 401,
414
+ MultiplayerPlayerDied = 402,
415
+ MultiplayerPlayerDisconnected = 403,
416
+ MultiplayerPlayerJoined = 404,
417
+ MustBeEquippedToIgnite = 405,
418
+ Mysteriously = 406,
419
+ NearlyBurnedEquipmentProtectedYou = 407,
420
+ NeedToStartTravelsOutside = 408,
421
+ NeedWaterForBoat = 409,
422
+ Negatively = 410,
423
+ NightQuarter1 = 411,
424
+ NightQuarter2 = 412,
425
+ NightQuarter3 = 413,
426
+ NightQuarter4 = 414,
427
+ No = 415,
428
+ NoAmmunitionForThatWeapon = 416,
429
+ NoFireToStokeWith = 417,
430
+ NoFishAtLocation = 418,
431
+ NoGroundWater = 419,
432
+ NoInkToDrawMap = 420,
433
+ NoKindlingOrFuelItemsToStartFire = 421,
434
+ NoKindlingToStartFire = 422,
435
+ NoLongerFeelPainOfBeingBurned = 423,
436
+ NoLongerFeelPainOfBeingFrostbitten = 424,
437
+ NoLongerHostile = 425,
438
+ NoMoreRoomInContainer = 426,
439
+ NoPaperToDrawMap = 427,
440
+ NoRequiredItemToFireWeapon = 428,
441
+ NoReturnWithoutCompletingChallenges = 429,
442
+ NoRoomForImprovement = 430,
443
+ NoRoomToDrop = 431,
444
+ NoRoomToSummon = 432,
445
+ NotEnoughPurifiedWaterYet = 433,
446
+ NotEnoughTreasureToReturn = 434,
447
+ NotFacingCreatureToOfferThisTo = 435,
448
+ NotFacingLockedObject = 436,
449
+ NotFacingOtherToHeal = 437,
450
+ NotFacingValidItem = 438,
451
+ NothingHereToButcher = 439,
452
+ NothingHereToFill = 440,
453
+ NothingHereToGrasp = 441,
454
+ NothingTo = 442,
455
+ NothingToGetFromThis = 443,
456
+ NothingToHarvestFromThisGather = 444,
457
+ NothingToSmother = 445,
458
+ NothingUsefulToHarvestYet = 446,
459
+ NoTinderToStartFire = 447,
460
+ NotSuitableToPlant = 448,
461
+ NoWaterInStill = 449,
462
+ NPCMerchantNewInventoryDialog1 = 450,
463
+ NPCMerchantNewInventoryDialog2 = 451,
464
+ NPCMerchantNewInventoryDialog3 = 452,
465
+ NPCMerchantNewInventoryDialog4 = 453,
466
+ NPCMerchantStartingDialog1 = 454,
467
+ NPCMerchantStartingDialog2 = 455,
468
+ NPCMerchantStartingDialog3 = 456,
469
+ NPCMerchantStartingDialog4 = 457,
470
+ NPCMerchantWelcomeCredit = 458,
471
+ NPCShipperShipToIsland = 459,
472
+ NPCShipperStartingDialog1 = 460,
473
+ NPCShipperStartingDialog2 = 461,
474
+ NPCShipperStartingDialog3 = 462,
475
+ NPCShipperStartingDialog4 = 463,
476
+ NPCWelcome = 464,
477
+ ObjectIsLocked = 465,
478
+ ObjectIsLockedAttemptToBreakIt = 466,
479
+ OfferAberrantFail = 467,
480
+ OfferAberrantFailButTamed = 468,
481
+ Open = 469,
482
+ OpenClose = 470,
483
+ OverEatingLostStamina = 471,
484
+ OverHydratingLostStamina = 472,
485
+ Pack = 473,
486
+ PaperTurnedToMush = 474,
487
+ ParryTheBlow = 475,
488
+ Pet = 476,
489
+ PetCreature = 477,
490
+ PickAway = 478,
491
+ PickUp = 479,
492
+ PickUpExcrement = 480,
493
+ PickUpTheItem = 481,
494
+ Place = 482,
495
+ PlacedOnGround = 483,
496
+ Plant = 484,
497
+ PlantedInGround = 485,
498
+ PlantGatheredPlant = 486,
499
+ PlantGatheringWillDestroy = 487,
500
+ PlantHasResourcesToGather = 488,
501
+ PlantHasResourcesToHarvest = 489,
502
+ PlantHighlyFertile = 490,
503
+ Planting = 491,
504
+ PlantIsBare = 492,
505
+ PlantIsFertile = 493,
506
+ PlantIsInStage = 494,
507
+ PlantIsNotFertile = 495,
508
+ PlantNotReadyToHarvest = 496,
509
+ PlantReadyToGather = 497,
510
+ PlantReadyToGatherNotMaximal = 498,
511
+ PlantReadyToHarvest = 499,
512
+ PlantReadyToHarvestNotMaximal = 500,
513
+ Player = 501,
514
+ PlayerHas = 502,
515
+ PlayerHasCompletedChallengeRequirement = 503,
516
+ PlayerHasWonChallenge = 504,
517
+ Poisoned = 505,
518
+ PoisonedLostHealth = 506,
519
+ PoisonWorkedItsCourse = 507,
520
+ Positively = 508,
521
+ PouredOut = 509,
522
+ PouredOutOnYourself = 510,
523
+ PouredWaterIntoStill = 511,
524
+ PourHarmedPlant = 512,
525
+ PourHealedPlant = 513,
526
+ PourHealedPlantFully = 514,
527
+ PourHealedPlantPartially = 515,
528
+ PourIncreasedFertility = 516,
529
+ Pouring = 517,
530
+ Prepare = 518,
531
+ Prepared = 519,
532
+ Preserve = 520,
533
+ PreservedFood = 521,
534
+ PurifiedWaterInStill = 522,
535
+ RandomEventsFire = 523,
536
+ ReduceLength = 524,
537
+ Refine = 525,
538
+ RefusedToBeTamed = 526,
539
+ Reinforce = 527,
540
+ Repair = 528,
541
+ ReputationDecreased = 529,
542
+ ReputationIncreased = 530,
543
+ ReputationUpdate = 531,
544
+ RequiredForDisassembly = 532,
545
+ RequiresFireToBeLit = 533,
546
+ RequiresYouFacingFireSource = 534,
547
+ RequiresYouToBeAround = 535,
548
+ Resistant = 536,
549
+ Rest = 537,
550
+ Rested = 538,
551
+ Resting = 539,
552
+ RestingOnGroundNotEffective = 540,
553
+ RestInterrupted = 541,
554
+ RestInterruptedDamage = 542,
555
+ RestInterruptedDying = 543,
556
+ RestInterruptedLoudNoise = 544,
557
+ RestInterruptedPain = 545,
558
+ RestInterruptedStirring = 546,
559
+ RestInterruptedWaterPoured = 547,
560
+ RestLongTime = 548,
561
+ RestModerateTime = 549,
562
+ RestOnBoat = 550,
563
+ RestShortTime = 551,
564
+ RestTime = 552,
565
+ ReturnedToCivilization = 553,
566
+ ReturningToCivilizationSetOffAgain = 554,
567
+ ReturnsToLife = 555,
568
+ Reverse = 556,
569
+ Sailing = 557,
570
+ ScrollMaster = 558,
571
+ ScrollProvidedNoUsefulInsight = 559,
572
+ Seawater = 560,
573
+ SeemsToHaveDrawnEnergy = 561,
574
+ SetTrapOffButNoDamage = 562,
575
+ SetUp = 563,
576
+ ShadowInTheWater = 564,
577
+ Skill = 565,
578
+ SkillHasRaised = 566,
579
+ Skills = 567,
580
+ Sleep = 568,
581
+ Sleeping = 569,
582
+ SleepOnBoat = 570,
583
+ Slept = 571,
584
+ SlitherSuckerConstricts = 572,
585
+ SlitherSuckerJumpedOnHead = 573,
586
+ SomethingInTheWayOf = 574,
587
+ SomethingInTheWayOfButcherFirst = 575,
588
+ SomethingInTheWayOfFire = 576,
589
+ SomethingInTheWayOfFishing = 577,
590
+ SomethingInTheWayOfPerforming = 578,
591
+ SomethingInTheWayOfPlacing = 579,
592
+ SomethingInTheWayOfReleasing = 580,
593
+ SomethingInTheWayOfSummoning = 581,
594
+ SomethingInWayOfClosingDoor = 582,
595
+ SoothedTheirBurnInjuries = 583,
596
+ SoothedYourBurnInjuries = 584,
597
+ Sort = 585,
598
+ SortedByBestCraftingRequirements = 586,
599
+ SortedByCategory = 587,
600
+ SortedByCraftableOnly = 588,
601
+ SortedByDecay = 589,
602
+ SortedByDurability = 590,
603
+ SortedByGroup = 591,
604
+ SortedByMagical = 592,
605
+ SortedByName = 593,
606
+ SortedByQuality = 594,
607
+ SortedByRecent = 595,
608
+ SortedBySkill = 596,
609
+ SortedByUnlockedTime = 597,
610
+ SortedByWeight = 598,
611
+ SortedByWorth = 599,
612
+ StaminaIsFull = 600,
613
+ StartedFire = 601,
614
+ StartTravelInWater = 602,
615
+ StarvingToDeath = 603,
616
+ StatAmount = 604,
617
+ StatGained = 605,
618
+ StatIncreasing = 606,
619
+ StatLost = 607,
620
+ StatQuenched = 608,
621
+ StatRegained = 609,
622
+ StatSated = 610,
623
+ SteppingOn = 611,
624
+ StillHasNoWaterToPurify = 612,
625
+ StirredUpClawWorm = 613,
626
+ StirredUpCreature = 614,
627
+ StoppedYourBleeding = 615,
628
+ StopUsingVehicle = 616,
629
+ Strength = 617,
630
+ SummonedGuardiansByDiggingTreasure = 618,
631
+ SummonedGuardiansByLockpicking = 619,
632
+ SummonVoidDwellerItem = 620,
633
+ SummonVoidDwellerRinging = 621,
634
+ SummonVoidDwellerShiver = 622,
635
+ SunNotBrightEnoughToStartFire = 623,
636
+ SwampWater = 624,
637
+ Swimming = 625,
638
+ TakenFromGroundBecomeTamed = 626,
639
+ TeleportBlocked = 627,
640
+ Teleported = 628,
641
+ ThanksBuying = 629,
642
+ ThanksSelling = 630,
643
+ TheirFist = 631,
644
+ ThePlant = 632,
645
+ ThereIsNoContainerOnTheStill = 633,
646
+ ThereIsNoSunToStartFire = 634,
647
+ ThisCannotBeMilked = 635,
648
+ Throw = 636,
649
+ ThrownIntoDepths = 637,
650
+ ThrownIntoObstacle = 638,
651
+ ThrownIntoVoid = 639,
652
+ Tier = 640,
653
+ TierGroup = 641,
654
+ Till = 642,
655
+ Tilling = 643,
656
+ TimeIs = 644,
657
+ TimeIsDawn = 645,
658
+ TimeIsDaytime = 646,
659
+ TimeIsDusk = 647,
660
+ TimeIsNighttime = 648,
661
+ TimeIsSunrise = 649,
662
+ TimeIsSunset = 650,
663
+ ToFight = 651,
664
+ TooDamaged = 652,
665
+ TooExhaustedToJump = 653,
666
+ Touching = 654,
667
+ TradingWith = 655,
668
+ TrampledFire = 656,
669
+ TrampledIntoGround = 657,
670
+ TrampleIntoGround = 658,
671
+ Trampling = 659,
672
+ TransmogrificationNotPossible = 660,
673
+ Transmogrified = 661,
674
+ Transmogrify = 662,
675
+ TrapMissed = 663,
676
+ TrapStoppedYou = 664,
677
+ Traveling = 665,
678
+ TreasureIsBlocked = 666,
679
+ UiActionCannotUseRequiresCreature = 667,
680
+ UiActionCannotUseRequiresDoodad = 668,
681
+ UiActionCannotUseRequiresItem = 669,
682
+ Unhitch = 670,
683
+ UnhitchCreature = 671,
684
+ Unknown = 672,
685
+ Unlimited = 673,
686
+ UnlockedChest = 674,
687
+ UnpurifiedFreshWater = 675,
688
+ UnpurifiedWaterInStill = 676,
689
+ Use = 677,
690
+ UsingBareHands = 678,
691
+ VehicleDefense = 679,
692
+ Vulnerable = 680,
693
+ Water = 681,
694
+ WaterGathering = 682,
695
+ WaterPutOutFire = 683,
696
+ WellIsDry = 684,
697
+ WellIsFull = 685,
698
+ WildGoatRefusedToBeMilked = 686,
699
+ WillNotTrade = 687,
700
+ WorkingYourselfIntoExhaustion = 688,
701
+ WorkingYourselfIntoExhaustionAndDrowning = 689,
702
+ You = 690,
703
+ YouAbsorb = 691,
704
+ YouApplied = 692,
705
+ YouAreAlready = 693,
706
+ YouAte = 694,
707
+ YouBeginResting = 695,
708
+ YouCannotDoThatYet = 696,
709
+ YouCanNowCombatTheTides = 697,
710
+ YouCrafted = 698,
711
+ YouDoNotFindTreasureYet = 699,
712
+ YouDrank = 700,
713
+ YouDropTheTorch = 701,
714
+ YouEnchant = 702,
715
+ YouEquip = 703,
716
+ YouExude = 704,
717
+ YouExudeSome = 705,
718
+ YouExudeSomeReasonConflicting = 706,
719
+ YouExudeSomeReasonMax = 707,
720
+ YouExudeSomeReasonProperties = 708,
721
+ YouFailedTo = 709,
722
+ YouFailedToExtinguishedFireFully = 710,
723
+ YouFailedToHeal = 711,
724
+ YouFailedToHealOther = 712,
725
+ YouFire = 713,
726
+ YouGathered = 714,
727
+ YouGatheredAndDropped = 715,
728
+ YouHarvested = 716,
729
+ YouHarvestedAndDropped = 717,
730
+ YouHave = 718,
731
+ YouHaveAlreadyLearned = 719,
732
+ YouHaveBeenCut = 720,
733
+ YouHaveCaged = 721,
734
+ YouHaveCommanded = 722,
735
+ YouHaveDied = 723,
736
+ YouHaveHealedOther = 724,
737
+ YouHaveKilled = 725,
738
+ YouHaveReleased = 726,
739
+ YouHaveSummoned = 727,
740
+ YouHaveTamed = 728,
741
+ YouHaveUncaged = 729,
742
+ YouNeedMoreCredit = 730,
743
+ YouNoticeBarren = 731,
744
+ YouNoticeBecomeEnraged = 732,
745
+ YouNoticeDying = 733,
746
+ YouNoticeFertilityDecreasing = 734,
747
+ YouNoticeFertilityIncreasing = 735,
748
+ YouNoticeGrowing = 736,
749
+ YouNoticeLavaCooling = 737,
750
+ YouNoticeLavaHardening = 738,
751
+ YouNoticePerish = 739,
752
+ YouNoticePlantDamage = 740,
753
+ YouNoticePlantRegenerated = 741,
754
+ YouNoticeRegrowing = 742,
755
+ YouNoticeStumbleInjureItself = 743,
756
+ YouNoticeTakeFromGround = 744,
757
+ YouNoticeWoundsClosing = 745,
758
+ YouNoticeZombieHorde = 746,
759
+ YouOfferedToCreature = 747,
760
+ YouOfferedToCreatureRejects = 748,
761
+ YouOpen = 749,
762
+ YouPacked = 750,
763
+ YouPickedUp = 751,
764
+ YouRefine = 752,
765
+ YouReinforce = 753,
766
+ YouRepair = 754,
767
+ YouReturnFromCivilizationWith = 755,
768
+ YourFist = 756,
769
+ YourHands = 757,
770
+ YourInventory = 758,
771
+ YourIsland = 759,
772
+ YourRubbingNoEffect = 760,
773
+ YouRub = 761,
774
+ YouSee = 762,
775
+ YouSeeALivingMushroomSpore = 763,
776
+ YouSeeASkeletonCollapse = 764,
777
+ YouSeeASlimeCombine = 765,
778
+ YouSeeAZombieBleeding = 766,
779
+ YouSeeCoolDown = 767,
780
+ YouSeeDrop = 768,
781
+ YouSeeEngulfFire = 769,
782
+ YouSeeFireSpread = 770,
783
+ YouSeeHelpingPlant = 771,
784
+ YouSeeLay = 772,
785
+ YouSeeLayingTrap = 773,
786
+ YouSeeSpewLava = 774,
787
+ YouSeeSpitAcid = 775,
788
+ YouSeeSpringForth = 776,
789
+ YouSeeSummon = 777,
790
+ YouSeeSwampFlood = 778,
791
+ YouSeeTrampling = 779,
792
+ YouSetTheTrapOff = 780,
793
+ YouStokeTheCreature = 781,
794
+ YouSwapMainHandAndOffHand = 782,
795
+ YouThrew = 783,
796
+ YouTilled = 784,
797
+ YouUnequip = 785,
798
+ YouUsed = 786,
799
+ YouWhileTraveling = 787
792
800
  }
793
801
  export default Message;