@wayward/types 2.15.3-beta.dev.20260322.1 → 2.15.4-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 (95) hide show
  1. package/definitions/game/game/curse/Curse.d.ts +10 -0
  2. package/definitions/game/game/curse/CurseEvent.d.ts +6 -1
  3. package/definitions/game/game/curse/event/CurseEventSuffusedWithMagic.d.ts +13 -0
  4. package/definitions/game/game/doodad/Doodad.d.ts +20 -2
  5. package/definitions/game/game/doodad/DoodadManager.d.ts +6 -1
  6. package/definitions/game/game/doodad/DoodadUtilities.d.ts +7 -2
  7. package/definitions/game/game/doodad/IDoodad.d.ts +13 -3
  8. package/definitions/game/game/doodad/IScarecrows.d.ts +12 -0
  9. package/definitions/game/game/entity/Entity.d.ts +1 -0
  10. package/definitions/game/game/entity/Human.d.ts +8 -0
  11. package/definitions/game/game/entity/action/actions/SetTitle.d.ts +1 -1
  12. package/definitions/game/game/entity/action/actions/ToggleProtectItem.d.ts +2 -2
  13. package/definitions/game/game/entity/action/usable/IUsableAction.d.ts +4 -2
  14. package/definitions/game/game/entity/action/usable/UsableAction.d.ts +1 -0
  15. package/definitions/game/game/entity/action/usable/actions/UsableActionsDynamic.d.ts +3 -1
  16. package/definitions/game/game/entity/creature/CreatureManager.d.ts +3 -0
  17. package/definitions/game/game/entity/skill/SkillManager.d.ts +1 -0
  18. package/definitions/game/game/entity/status/handler/BadTemperatureEffect.d.ts +1 -1
  19. package/definitions/game/game/inspection/infoProviders/Uses.d.ts +1 -0
  20. package/definitions/game/game/inspection/infoProviders/doodad/DoodadFireSource.d.ts +20 -0
  21. package/definitions/game/game/inspection/infoProviders/doodad/DoodadLightSource.d.ts +19 -0
  22. package/definitions/game/game/inspection/infoProviders/doodad/DoodadUses.d.ts +5 -5
  23. package/definitions/game/game/inspection/infoProviders/doodad/use/DoodadAttachContainerInfo.d.ts +15 -0
  24. package/definitions/game/game/inspection/infoProviders/doodad/use/DoodadDisplayItemsInfo.d.ts +15 -0
  25. package/definitions/game/game/inspection/infoProviders/doodad/use/DoodadGatherInfo.d.ts +15 -0
  26. package/definitions/game/game/inspection/infoProviders/doodad/use/DoodadHitchInfo.d.ts +15 -0
  27. package/definitions/game/game/inspection/infoProviders/doodad/use/DoodadLockpickInfo.d.ts +15 -0
  28. package/definitions/game/game/inspection/infoProviders/doodad/use/DoodadPourInfo.d.ts +15 -0
  29. package/definitions/game/game/inspection/infoProviders/doodad/use/DoodadTestDepthInfo.d.ts +15 -0
  30. package/definitions/game/game/inspection/infoProviders/item/ItemUses.d.ts +1 -0
  31. package/definitions/game/game/inspection/infoProviders/item/use/ItemBuildInfo.d.ts +2 -2
  32. package/definitions/game/game/inspection/infoProviders/item/use/ItemCraftingIngredientInfo.d.ts +2 -2
  33. package/definitions/game/game/inspection/infoProviders/item/use/ItemEquipInfo.d.ts +1 -3
  34. package/definitions/game/game/inspection/infoProviders/item/use/ItemSleepInfo.d.ts +26 -0
  35. package/definitions/game/game/inspection/infoProviders/shared/SharedLightSourceInfo.d.ts +7 -23
  36. package/definitions/game/game/inspection/infoProviders/shared/SharedLitAndEquipmentUseInfo.d.ts +38 -0
  37. package/definitions/game/game/inspection/infoProviders/shared/SharedRequirementInfo.d.ts +28 -0
  38. package/definitions/game/game/inspection/infoProviders/shared/SharedScareRadiusInfo.d.ts +19 -0
  39. package/definitions/game/game/inspection/inspections/DoodadInspection.d.ts +1 -0
  40. package/definitions/game/game/inspection/inspections/ItemInspection.d.ts +1 -0
  41. package/definitions/game/game/item/IItem.d.ts +2 -0
  42. package/definitions/game/game/item/Item.d.ts +39 -9
  43. package/definitions/game/game/item/ItemManager.d.ts +5 -0
  44. package/definitions/game/game/magic/Endurance.d.ts +24 -0
  45. package/definitions/game/game/magic/IMagicalProperty.d.ts +3 -0
  46. package/definitions/game/game/magic/Perpetuity.d.ts +13 -0
  47. package/definitions/game/game/milestones/IMilestone.d.ts +3 -1
  48. package/definitions/game/game/milestones/MilestoneManager.d.ts +3 -0
  49. package/definitions/game/game/options/IGameOptions.d.ts +10 -0
  50. package/definitions/game/game/options/modifiers/milestone/MilestoneModifiersManager.d.ts +4 -0
  51. package/definitions/game/game/options/modifiers/milestone/modifiers/Defiled.d.ts +17 -0
  52. package/definitions/game/game/options/modifiers/milestone/modifiers/Warded.d.ts +17 -0
  53. package/definitions/game/game/temperature/ITemperature.d.ts +1 -0
  54. package/definitions/game/game/tile/TileEventManager.d.ts +1 -0
  55. package/definitions/game/language/Dictionary.d.ts +112 -110
  56. package/definitions/game/language/DictionaryMap.d.ts +224 -220
  57. package/definitions/game/language/Translation.d.ts +4 -1
  58. package/definitions/game/language/dictionary/Message.d.ts +699 -693
  59. package/definitions/game/language/dictionary/UiTranslation.d.ts +807 -803
  60. package/definitions/game/language/english/item/CursePropertyAffixes.d.ts +13 -0
  61. package/definitions/game/language/english/item/CurseSubPropertyAffixes.d.ts +13 -0
  62. package/definitions/game/mod/ModInformation.d.ts +2 -0
  63. package/definitions/game/mod/ModManager.d.ts +2 -0
  64. package/definitions/game/multiplayer/packets/server/UpdateCurseVisualStatePacket.d.ts +10 -0
  65. package/definitions/game/renderer/platform/webgl/WorldLayerRendererWebGl.d.ts +3 -0
  66. package/definitions/game/renderer/platform/webgpu/WorldLayerRendererWebGpu.d.ts +2 -0
  67. package/definitions/game/renderer/world/IWorldLayerRendererPlatform.d.ts +2 -0
  68. package/definitions/game/renderer/world/WorldLayerRenderer.d.ts +3 -0
  69. package/definitions/game/renderer/world/WorldRenderer.d.ts +0 -2
  70. package/definitions/game/save/SaveMetadata.d.ts +2 -4
  71. package/definitions/game/save/data/SaveData.d.ts +6 -4
  72. package/definitions/game/save/upgrade/versions/beta2.15.4/beta2.15.4-dev20260409.d.ts +12 -0
  73. package/definitions/game/save/upgrade/versions/beta2.15.4/beta2.15.4.d.ts +12 -0
  74. package/definitions/game/ui/Ui.d.ts +0 -1
  75. package/definitions/game/ui/input/Bindable.d.ts +7 -8
  76. package/definitions/game/ui/screen/screens/game/component/container/ContainerBucketItemList.d.ts +7 -0
  77. package/definitions/game/ui/screen/screens/game/static/Stats.d.ts +1 -0
  78. package/definitions/game/ui/screen/screens/game/static/stats/component/StatComponent.d.ts +1 -0
  79. package/definitions/game/ui/screen/screens/menu/component/RealTimeTickSpeedRow.d.ts +18 -0
  80. package/definitions/game/ui/screen/screens/menu/menus/mods/ModRow.d.ts +2 -0
  81. package/definitions/game/ui/screen/screens/menu/menus/newgame/TabMultiplayer.d.ts +3 -1
  82. package/definitions/game/ui/screen/screens/menu/menus/pause/GameSettingsMenu.d.ts +2 -2
  83. package/definitions/hosts/shared/globals.d.ts +2 -2
  84. package/definitions/test/suite/unitTests/game/ContainerBucketItemList.spec.d.ts +13 -0
  85. package/definitions/test/suite/unitTests/game/Curse.spec.d.ts +13 -0
  86. package/definitions/test/suite/unitTests/game/IslandTestUtilities.d.ts +1 -1
  87. package/definitions/test/suite/unitTests/game/SaveLoad.spec.d.ts +13 -0
  88. package/definitions/test/suite/unitTests/game/game/milestones/MilestoneManager.spec.d.ts +13 -0
  89. package/definitions/test/suite/unitTests/game/mod/ModInformation.spec.d.ts +13 -0
  90. package/definitions/test/suite/unitTests/game/mod/ModManager.spec.d.ts +13 -0
  91. package/definitions/test/suite/unitTests/game/ui/screen/screens/game/component/ItemComponent.spec.d.ts +13 -0
  92. package/definitions/test/suite/unitTests/game/ui/screen/screens/menu/menus/mods/ModRow.spec.d.ts +13 -0
  93. package/definitions/utilities/random/SeededGenerator.d.ts +1 -0
  94. package/definitions/utilities/string/TextFileFormatting.d.ts +8 -0
  95. package/package.json +1 -1
@@ -201,698 +201,704 @@ declare enum Message {
201
201
  ActionUpgradeUpgraded = 189,
202
202
  ActionUseItemWeaponNeeded = 190,
203
203
  ActionViewItemsCannotUseBlocked = 191,
204
- AddedFuelToFire = 192,
205
- AddedFuelToTorch = 193,
206
- AllEquipmentUnEquipped = 194,
207
- AlreadyDesalinatedWaterInStill = 195,
208
- AlreadyFullyRefined = 196,
209
- AlreadyFullyRepaired = 197,
210
- AlreadyPreserved = 198,
211
- AnotherIsland = 199,
212
- AnUnknownItem = 200,
213
- AppearedNotEffectiveForGathering = 201,
214
- ArmorAppeared = 202,
215
- ArmorProtectedFromInjuryAgainst = 203,
216
- AttemptToSoothBurnInWater = 204,
217
- AttemptToSoothFrostbiteWithFire = 205,
218
- AttemptToSoothFrostbiteWithFireTooHot = 206,
219
- AttemptToTill = 207,
220
- BadlyBurnedLostHealth = 208,
221
- BeenPoisoned = 209,
222
- BeginSleeping = 210,
223
- BeginUsingVehicle = 211,
224
- BleedingHasStopped = 212,
225
- BleedingProfusely = 213,
226
- BleedingToDeathLostHealth = 214,
227
- BookBlank = 215,
228
- BookContains = 216,
229
- BookCrumbles = 217,
230
- BookDiagrams = 218,
231
- BookEmpty = 219,
232
- BookNothing = 220,
233
- BookOpen = 221,
234
- BookScribbles = 222,
235
- BothEffectiveIneffective = 223,
236
- BrokeIntoPieces = 224,
237
- BrokenOnImpact = 225,
238
- BrokenWhileFiring = 226,
239
- Build = 227,
240
- Burned = 228,
241
- Butcher = 229,
242
- CannotAddAnyMoreFuel = 230,
243
- CannotAnythingHere = 231,
244
- CannotBeCrafted = 232,
245
- CannotBePerformedOverWater = 233,
246
- CannotBePlacedHere = 234,
247
- CannotBePreserved = 235,
248
- CannotBeRefined = 236,
249
- CannotBeRefinedReinforcementNeeded = 237,
250
- CannotBeReinforced = 238,
251
- CannotBeRepaired = 239,
252
- CannotBuildHere = 240,
253
- CannotDigWithHands = 241,
254
- CannotEquipThatThere = 242,
255
- CannotFishFor = 243,
256
- CannotFromHere = 244,
257
- CannotHere = 245,
258
- CannotInWater = 246,
259
- CannotLeave = 247,
260
- CannotNoTreasure = 248,
261
- CannotPickUpLockedContainer = 249,
262
- CannotPickUpWhileLit = 250,
263
- CannotPlaceContainerInItself = 251,
264
- CannotPlaceHere = 252,
265
- CannotPlaceThatFromHere = 253,
266
- CannotPlaceThatHere = 254,
267
- CannotPlaceThatOverWater = 255,
268
- CannotPlantHereTilled = 256,
269
- CannotRepairWhileLit = 257,
270
- CannotRestHere = 258,
271
- CannotShipNoItems = 259,
272
- CannotShipNoPath = 260,
273
- CannotSleepHere = 261,
274
- CannotStartFireHere = 262,
275
- CannotToAnythingHere = 263,
276
- CannotToTellTime = 264,
277
- CannotUseCommand = 265,
278
- CannotWhenProtected = 266,
279
- CannotWhenProtectedDangerousAction = 267,
280
- CannotWhenProtectedDurability = 268,
281
- CarryingTooMuchWeight = 269,
282
- CarvedUpCorpse = 270,
283
- Carving = 271,
284
- CastYourLine = 272,
285
- CaughtFish = 273,
286
- ChatBanCommand = 274,
287
- ChatBannedCommand = 275,
288
- ChatCommandsCommand = 276,
289
- ChatCommandsCommandCommand = 277,
290
- ChatPingCommand = 278,
291
- ChatPlayerMessage = 279,
292
- ChatPlayersCommand = 280,
293
- ChatServerMessage = 281,
294
- ChatUnbanCommand = 282,
295
- ChatUnknownCommand = 283,
296
- Chop = 284,
297
- Chopping = 285,
298
- ClearedBlood = 286,
299
- CloseToBeingDestroyed = 287,
300
- Collapse = 288,
301
- Collapsing = 289,
302
- CommandAttack = 290,
303
- CommandDefend = 291,
304
- CommandFollowClose = 292,
305
- CommandFollowFar = 293,
306
- CommandHeel = 294,
307
- CommandStay = 295,
308
- CopiedMap = 296,
309
- CorpseOf = 297,//#used via other translations
310
- CorpseOfNamed = 298,//#used via other translations
311
- Craft = 299,
312
- Crafted = 300,
313
- Crafts = 301,
314
- CreatureAngered = 302,
315
- CreatureAppears = 303,
316
- CreatureAppeased = 304,
317
- CreatureExcrement = 305,
318
- CreatureHappinessHigh = 306,
319
- CreatureHappinessLow = 307,
320
- CreatureHappinessLowest = 308,
321
- CreatureHappinessNormal = 309,
322
- CreatureIdolAttractedCreature = 310,
323
- CreatureRefusesToBeTamed = 311,
324
- CreatureRefusesYou = 312,
325
- CreatureUntamed = 313,
326
- CreatureZoneBiomeChanged = 314,
327
- CreatureZoneLayerChanged = 315,
328
- CreatureZoneRerolled = 316,
329
- CreatureZoneTierDecreased = 317,
330
- CreatureZoneTierIncreased = 318,
331
- CrushedItemsUnderfoot = 319,
332
- CuredYourPoison = 320,
333
- CurseActionSailToIslandCannotUseCursebearer = 321,
334
- CurseEventNewPlantDeath = 322,
335
- CurseUpdateSunrise = 323,
336
- CurseUpdateSunset = 324,
337
- CurseUpdateWarning = 325,
338
- Cut = 326,
339
- CutHasHealed = 327,
340
- CutLostHealth = 328,
341
- CutWasBandaged = 329,
342
- DamageAppeared = 330,
343
- DamagedByPouring = 331,
344
- DangerousMove = 332,
345
- DangerousOpen = 333,
346
- DayQuarter1 = 334,
347
- DayQuarter2 = 335,
348
- DayQuarter3 = 336,
349
- DayQuarter4 = 337,
350
- DealtNoDamageToYou = 338,
351
- DeathBy = 339,
352
- DeathByBleeding = 340,
353
- DeathByBurning = 341,
354
- DeathByChallengeWinner = 342,
355
- DeathByConsumption = 343,
356
- DeathByCut = 344,
357
- DeathByDrowning = 345,
358
- DeathByExhaustion = 346,
359
- DeathByFistByPlayer = 347,
360
- DeathByFrostbite = 348,
361
- DeathByFrostbiteTemperatureShock = 349,
362
- DeathByMalnutrition = 350,
363
- DeathByPoison = 351,
364
- DeathBySteppingOn = 352,
365
- DeathByTrap = 353,
366
- DeathByWeaponByPlayer = 354,
367
- DedicatedTitleAlreadySelected = 355,
368
- DedicatedTitleMilestoneNotAllowed = 356,
369
- DestroyedFromUse = 357,
370
- DeveloperContainerDesync = 358,
371
- DidNotSeemToBeHurting = 359,
372
- Dig = 360,
373
- DigAway = 361,
374
- Digging = 362,
375
- Disassemble = 363,
376
- Disassembling = 364,
377
- DiscoveredCaveEntrance = 365,
378
- DiscoveredColdInsulation = 366,
379
- DiscoveredHeatInsulation = 367,
380
- DiscoveredInTheBottle = 368,
381
- DiscoveredLavaPassage = 369,
382
- DiscoveredQuality = 370,
383
- Dismantle = 371,
384
- Dismantling = 372,
385
- DismantlingRequires = 373,
386
- Dismounted = 374,
387
- DisplacedPuddles = 375,
388
- DoNotProduceAnyResources = 376,
389
- DoodadCauseStatus = 377,
390
- DoodadGroupTier = 378,
391
- DrewSurroundings = 379,
392
- Dripstone = 380,
393
- DroppedIntoDepths = 381,
394
- DroppedIntoFire = 382,
395
- DroppedIntoTheVoid = 383,
396
- DryadSprouted = 384,
397
- DueToDehydration = 385,
398
- DueToStarvation = 386,
399
- DugTreasureOut = 387,
400
- DugTreasureOutSurprise = 388,
401
- DumpContentsOfContainerInInventory = 389,
402
- DyingOfDehydration = 390,
403
- EarnedMilestone = 391,
404
- Effective = 392,
405
- EquipmentPreventedStatusEffects = 393,
406
- ErrorHasOccured = 394,
407
- Excavating = 395,
408
- ExtinguishedFire = 396,
409
- ExtinguishedLightSource = 397,
410
- ExudeNotPossible = 398,
411
- FailedToAbsorb = 399,
412
- FailedToAddFuelToTorch = 400,
413
- FailedToCage = 401,
414
- FailedToCatchFish = 402,
415
- FailedToCauseDamage = 403,
416
- FailedToCauseYouDamage = 404,
417
- FailedToCopy = 405,
418
- FailedToDraw = 406,
419
- FailedToEnchant = 407,
420
- FailedToExude = 408,
421
- FailedToIgniteTorch = 409,
422
- FailedToPickLock = 410,
423
- FailedToPreserve = 411,
424
- FailedToRefine = 412,
425
- FailedToReinforce = 413,
426
- FailedToRepair = 414,
427
- FailedToStartFire = 415,
428
- FailedToTame = 416,
429
- FailedToTransmogrify = 417,
430
- FarOffLands = 418,
431
- FeltBurningPainLostHealth = 419,
432
- FeltFrostbitePainLostHealth = 420,
433
- FewMinutes = 421,
434
- Filled = 422,
435
- FilledFrom = 423,
436
- FireAroundYouIsWarm = 424,
437
- FiredIntoObstacle = 425,
438
- FireOverflowed = 426,
439
- FireOverflowedFireElemental = 427,
440
- FireSource = 428,
441
- FishingWithNoBait = 429,
442
- Floating = 430,
443
- FreshWater = 431,
444
- FromTheStill = 432,
445
- FuelIsRequired = 433,
446
- Gather = 434,
447
- GatherDestroy = 435,
448
- Gathering = 436,
449
- GhostNoActions = 437,
450
- GhostOf = 438,
451
- GoatHasNoMilk = 439,
452
- HackAway = 440,
453
- HandProtectionPreventedInjury = 441,
454
- HandsNotEffectiveFor = 442,
455
- Harvest = 443,
456
- Harvesting = 444,
457
- HasBeenHurtByATrap = 445,
458
- HasDecayed = 446,
459
- HasHitYouForDamage = 447,
460
- HasNoEffect = 448,
461
- HasSetTrapOffNoDamage = 449,
462
- HasSplit = 450,
463
- HelpGrow = 451,
464
- HitchAttempt = 452,
465
- HitchCreature = 453,
466
- HitchDisabled = 454,
467
- HitchInUse = 455,
468
- HitForDamage = 456,
469
- HitYouForDamage = 457,
470
- Hour = 458,
471
- Hours = 459,
472
- HurtHandsHittingWithoutWeapons = 460,
473
- HurtHandsWithNoTool = 461,
474
- IgnitedTorch = 462,
475
- Ineffective = 463,
476
- InjuredFromTrap = 464,
477
- InNeedOfRepair = 465,
478
- InteractingWithHasInjuredYouForDamage = 466,
479
- InvalidContainer = 467,
480
- IsInTheWayOfPickingUp = 468,
481
- ItemFromWater = 469,
482
- JoinedAServer = 470,
483
- Jump = 471,
484
- Killed = 472,
485
- KnowledgeHasIncreased = 473,
486
- LastPlaceYouLeftOff = 474,
487
- LearnedHowToCreate = 475,
488
- LikelyFailures = 476,
489
- Limited = 477,
490
- Lockpick = 478,
491
- MapCompletedNotOfThisArea = 479,
492
- MapDestroyed = 480,
493
- MapNearlyDestroyed = 481,
494
- MapNotOfThisArea = 482,
495
- MaterialsDestroyed = 483,
496
- MessageOfTheDay = 484,
497
- MetabolismSlowed = 485,
498
- Milk = 486,
499
- Mine = 487,
500
- Mining = 488,
501
- MissedWith = 489,
502
- MissedYouWith = 490,
503
- MovedItem = 491,
504
- MovedItemFailed = 492,
505
- MoveOverTrapButDoNotSetOff = 493,
506
- MultiplayerGamePaused = 494,
507
- MultiplayerGameResumed = 495,
508
- MultiplayerPlayerConnected = 496,
509
- MultiplayerPlayerDied = 497,
510
- MultiplayerPlayerDisconnected = 498,
511
- MultiplayerPlayerJoined = 499,
512
- MustBeEquippedToIgnite = 500,
513
- Mysteriously = 501,
514
- NearlyBurnedEquipmentProtectedYou = 502,
515
- NeedToStartTravelsOutside = 503,
516
- NeedWaterForBoat = 504,
517
- NightQuarter1 = 505,
518
- NightQuarter2 = 506,
519
- NightQuarter3 = 507,
520
- NightQuarter4 = 508,
521
- No = 509,
522
- NoAmmunitionForThatWeapon = 510,
523
- NoFireToStokeWith = 511,
524
- NoFishAtLocation = 512,
525
- NoGroundWater = 513,
526
- NoInkToDrawMap = 514,
527
- NoKindlingOrFuelItemsToStartFire = 515,
528
- NoKindlingToStartFire = 516,
529
- NoLongerFeelPainOfBeingBurned = 517,
530
- NoLongerFeelPainOfBeingFrostbitten = 518,
531
- NoLongerHostile = 519,
532
- NoMoreRoomInContainer = 520,
533
- NoPaperToDrawMap = 521,
534
- NoRequiredItemToFireWeapon = 522,
535
- NoReturnWithoutCompletingChallenges = 523,
536
- NoRoomForImprovement = 524,
537
- NoRoomForVehicle = 525,
538
- NoRoomToDrop = 526,
539
- NoRoomToSummon = 527,
540
- NotEnoughPurifiedWaterYet = 528,
541
- NotEnoughTreasureToReturn = 529,
542
- NothingTo = 530,
543
- NothingToGetFromThis = 531,
544
- NothingToHarvestFromThisGather = 532,
545
- NothingToSmother = 533,
546
- NothingUsefulToHarvestYet = 534,
547
- NoTinderToStartFire = 535,
548
- NotSuitableToPlant = 536,
549
- NoWaterInStill = 537,
550
- NPCMerchantNewInventoryDialogue1 = 538,
551
- NPCMerchantNewInventoryDialogue2 = 539,
552
- NPCMerchantNewInventoryDialogue3 = 540,
553
- NPCMerchantNewInventoryDialogue4 = 541,
554
- NPCMerchantStartingDialogue1 = 542,
555
- NPCMerchantStartingDialogue2 = 543,
556
- NPCMerchantStartingDialogue3 = 544,
557
- NPCMerchantStartingDialogue4 = 545,
558
- NPCMerchantWelcomeCredit = 546,
559
- NPCShipperShipToIsland = 547,
560
- NPCShipperStartingDialogue1 = 548,
561
- NPCShipperStartingDialogue2 = 549,
562
- NPCShipperStartingDialogue3 = 550,
563
- NPCShipperStartingDialogue4 = 551,
564
- NPCWelcome = 552,
565
- ObjectIsLocked = 553,
566
- ObjectIsLockedAttemptToBreakIt = 554,
567
- OfferAberrantFail = 555,
568
- OfferAberrantFailButTamed = 556,
569
- Open = 557,
570
- OpenClose = 558,
571
- OpenCollapse = 559,
572
- OverEatingLostStamina = 560,
573
- OverHydratingLostStamina = 561,
574
- Pack = 562,
575
- PaperTurnedToMush = 563,
576
- ParryTheBlow = 564,
577
- PetCreature = 565,
578
- PickAway = 566,
579
- PickUp = 567,
580
- PickUpExcrement = 568,
581
- PickUpTheItem = 569,
582
- Place = 570,
583
- PlacedItem = 571,
584
- PlacedItemFailed = 572,
585
- PlacedOnGround = 573,
586
- PlantedInGround = 574,
587
- PlantGatheredPlant = 575,
588
- PlantGatheringWillDestroy = 576,
589
- PlantHasResourcesToGather = 577,
590
- PlantHasResourcesToHarvest = 578,
591
- PlantHighlyFertile = 579,
592
- Planting = 580,
593
- PlantIsBare = 581,
594
- PlantIsFertile = 582,
595
- PlantIsInStage = 583,
596
- PlantIsNotFertile = 584,
597
- PlantIsSeeding = 585,
598
- PlantNotReadyToHarvest = 586,
599
- PlantReadyToGather = 587,
600
- PlantReadyToGatherNotMaximal = 588,
601
- PlantReadyToHarvest = 589,
602
- PlantReadyToHarvestNotMaximal = 590,
603
- PlayerHas = 591,
604
- PlayerHasCompletedChallengeRequirement = 592,
605
- PlayerHasWonChallenge = 593,
606
- Poisoned = 594,
607
- PoisonedLostHealth = 595,
608
- PoisonWorkedItsCourse = 596,
609
- PouredOut = 597,
610
- PouredOutOnYourself = 598,
611
- PouredWaterIntoStill = 599,
612
- PourHarmedPlant = 600,
613
- PourHealedPlant = 601,
614
- PourHealedPlantFully = 602,
615
- PourHealedPlantPartially = 603,
616
- PourIncreasedFertility = 604,
617
- Pouring = 605,
618
- PourOverWatering = 606,
619
- Prepare = 607,
620
- Prepared = 608,
621
- PreservedFood = 609,
622
- PurifiedWaterInBottom = 610,
623
- PurifiedWaterInStill = 611,
624
- RandomEventsFire = 612,
625
- ReduceLength = 613,
626
- RefusedToBeTamed = 614,
627
- Repair = 615,
628
- RequiredForDisassembly = 616,
629
- RequiresFireToBeLit = 617,
630
- RequiresYouToBeAround = 618,
631
- Resistant = 619,
632
- Rest = 620,
633
- Rested = 621,
634
- Resting = 622,
635
- RestingOnGroundNotEffective = 623,
636
- RestInterrupted = 624,
637
- RestInterruptedDamage = 625,
638
- RestInterruptedDying = 626,
639
- RestInterruptedLoudNoise = 627,
640
- RestInterruptedPain = 628,
641
- RestInterruptedStirring = 629,
642
- RestInterruptedTooCold = 630,
643
- RestInterruptedTooHot = 631,
644
- RestInterruptedUncomfortablyCold = 632,
645
- RestInterruptedUncomfortablyHot = 633,
646
- RestInterruptedWaterPoured = 634,
647
- RestLongTime = 635,
648
- RestModerateTime = 636,
649
- RestOnBoat = 637,
650
- RestShortTime = 638,
651
- RestTime = 639,
652
- ReturnedToCivilization = 640,
653
- ReturningToCivilizationSetOffAgain = 641,
654
- ReturnsToLife = 642,
655
- Reverse = 643,
656
- Ride = 644,
657
- Sailing = 645,
658
- ScrollMaster = 646,
659
- ScrollProvidedNoUsefulInsight = 647,
660
- Seawater = 648,
661
- SeemsToHaveDrawnEnergy = 649,
662
- SetTrapOffButNoDamage = 650,
663
- SetUp = 651,
664
- ShadowInTheWater = 652,
665
- SkillHasRaised = 653,
666
- Skills = 654,
667
- Sleep = 655,
668
- Sleeping = 656,
669
- SleepOnBoat = 657,
670
- Slept = 658,
671
- SlitherSuckerConstricts = 659,
672
- SlitherSuckerFailedToRemove = 660,
673
- SlitherSuckerFailedToRemoveOuch = 661,
674
- SlitherSuckerJumpedOnHead = 662,
675
- SolarStill = 663,
676
- SomethingInTheWayOf = 664,
677
- SomethingInTheWayOfButcherFirst = 665,
678
- SomethingInTheWayOfFire = 666,
679
- SomethingInTheWayOfFishing = 667,
680
- SomethingInTheWayOfPerforming = 668,
681
- SomethingInTheWayOfPlacing = 669,
682
- SomethingInTheWayOfReleasing = 670,
683
- SomethingInTheWayOfSummoning = 671,
684
- SomethingInWayOfClosingDoor = 672,
685
- SoothedTheirBurnInjuries = 673,
686
- SoothedYourBurnInjuries = 674,
687
- SortedByCategory = 675,
688
- SortedByCraftableOnly = 676,
689
- SortedByName = 677,
690
- SortedBySkill = 678,
691
- SortedByUnlockedTime = 679,
692
- StaminaIsFull = 680,
693
- StartedFire = 681,
694
- StartTravelInWater = 682,
695
- StarvingToDeath = 683,
696
- StatAmount = 684,
697
- StatChangeUnknown = 685,
698
- StatGained = 686,
699
- StatIncreasing = 687,
700
- StatLost = 688,
701
- StatQuenched = 689,
702
- StatRegained = 690,
703
- StatSated = 691,
704
- SteppingOn = 692,
705
- Still = 693,
706
- StillHasNoWaterToPurify = 694,
707
- StillNoContainer = 695,
708
- StillTooColdToWork = 696,
709
- StirredUpClawWorm = 697,
710
- StirredUpCreature = 698,
711
- StoppedYourBleeding = 699,
712
- StopUsingVehicle = 700,
713
- SummonedGuardiansByDiggingTreasure = 701,
714
- SummonedGuardiansByLockpicking = 702,
715
- SummonVoidDwellerItem = 703,
716
- SummonVoidDwellerRinging = 704,
717
- SummonVoidDwellerShiver = 705,
718
- SunNotBrightEnoughToStartFire = 706,
719
- SwampWater = 707,
720
- Swimming = 708,
721
- TakenFromGroundBecomeTamed = 709,
722
- TeleportBlocked = 710,
723
- Teleported = 711,
724
- TheirFist = 712,
725
- TheirInventory = 713,
726
- ThePlant = 714,
727
- ThereIsNoContainerOnTheStill = 715,
728
- ThereIsNoSunToStartFire = 716,
729
- ThisCannotBeMilked = 717,
730
- Throw = 718,
731
- ThrownIntoDepths = 719,
732
- ThrownIntoObstacle = 720,
733
- ThrownIntoVoid = 721,
734
- TierGroup = 722,
735
- TileMakeCaveEntranceNearby = 723,
736
- TileMakeCaveEntrancePassable = 724,
737
- TileMakeCaveEntranceVoid = 725,
738
- Till = 726,
739
- Tilling = 727,
740
- TimeIs = 728,
741
- TimeIsDawn = 729,
742
- TimeIsDaytime = 730,
743
- TimeIsDusk = 731,
744
- TimeIsNighttime = 732,
745
- TimeIsSunrise = 733,
746
- TimeIsSunset = 734,
747
- ToFight = 735,
748
- TooDamaged = 736,
749
- TooExhaustedToJump = 737,
750
- Touching = 738,
751
- TrampledFire = 739,
752
- TrampledFireFail = 740,
753
- TrampledFirePartial = 741,
754
- TrampledIntoGround = 742,
755
- TrampleIntoGround = 743,
756
- Trampling = 744,
757
- TransmogrificationNoEffect = 745,
758
- TransmogrificationNotPossible = 746,
759
- Transmogrified = 747,
760
- TrapMissed = 748,
761
- TrapStoppedYou = 749,
762
- Traveling = 750,
763
- Treasure = 751,
764
- TreasureIsBlocked = 752,
765
- UiActionCannotUseInaccessibleItem = 753,
766
- UiActionCannotUseInThisSituation = 754,
767
- UiActionCannotUseNoItemHovered = 755,
768
- UiActionCannotUseNotInRange = 756,
769
- UiActionCannotUseOnThisIsland = 757,
770
- UiActionCannotUseRequiresCreature = 758,
771
- UiActionCannotUseRequiresDoodad = 759,
772
- UiActionCannotUseRequiresItem = 760,
773
- UiActionCannotUseRequiresNPC = 761,
774
- UiActionCannotUseRequiresVehicle = 762,
775
- UiDialogTradeIndicateTradeAlreadyTradedBuyDialogue1 = 763,
776
- UiDialogTradeIndicateTradeAlreadyTradedBuyDialogue2 = 764,
777
- UiDialogTradeIndicateTradeAlreadyTradedBuyDialogue3 = 765,
778
- UiDialogTradeIndicateTradeAlreadyTradedSellDialogue1 = 766,
779
- UiDialogTradeIndicateTradeAlreadyTradedSellDialogue2 = 767,
780
- UiDialogTradeIndicateTradeAlreadyTradedSellDialogue3 = 768,
781
- UiDialogTradeIndicateTradeTooMuchTradesDialogue1 = 769,
782
- UiDialogTradeIndicateTradeTooMuchTradesDialogue2 = 770,
783
- UiDialogTradeIndicateTradeTooMuchTradesDialogue3 = 771,
784
- UnhitchCreature = 772,
785
- Unknown = 773,
786
- Unlimited = 774,
787
- UnlockedChest = 775,
788
- UnpurifiedFreshWater = 776,
789
- UnpurifiedWaterInStill = 777,
790
- UnpurifiedWaterInTop = 778,
791
- Use = 779,
792
- UsingBareHands = 780,
793
- VehicleDefense = 781,
794
- VoidDwellerVanishes = 782,
795
- Vulnerable = 783,
796
- Water = 784,
797
- WaterGathering = 785,
798
- WaterPutOutFire = 786,
799
- WellIsDry = 787,
800
- WellIsFull = 788,
801
- WildGoatRefusedToBeMilked = 789,
802
- WorkingYourselfIntoExhaustion = 790,
803
- WorkingYourselfIntoExhaustionAndDrowning = 791,
804
- WorldContainer = 792,
805
- You = 793,
806
- YouAbsorb = 794,
807
- YouApplied = 795,
808
- YouAreAlready = 796,
809
- YouAte = 797,
810
- YouBeginResting = 798,
811
- YouCannotDoThatYet = 799,
812
- YouCanNowCombatTheTides = 800,
813
- YouCrafted = 801,
814
- YouDoNotFindTreasureYet = 802,
815
- YouDrank = 803,
816
- YouDropTheTorch = 804,
817
- YouEnchant = 805,
818
- YouEquip = 806,
819
- YouExude = 807,
820
- YouExudeSome = 808,
821
- YouExudeSomeReasonConflicting = 809,
822
- YouExudeSomeReasonMax = 810,
823
- YouExudeSomeReasonProperties = 811,
824
- YouFailedTo = 812,
825
- YouFailedToExtinguishedFireFully = 813,
826
- YouFailedToHeal = 814,
827
- YouFailedToHealOther = 815,
828
- YouFire = 816,
829
- YouGathered = 817,
830
- YouHarvested = 818,
831
- YouHave = 819,
832
- YouHaveAlreadyLearned = 820,
833
- YouHaveBeenCut = 821,
834
- YouHaveCaged = 822,
835
- YouHaveCommanded = 823,
836
- YouHaveDied = 824,
837
- YouHaveHealedOther = 825,
838
- YouHaveKilled = 826,
839
- YouHaveNotCommanded = 827,
840
- YouHaveReleased = 828,
841
- YouHaveSummoned = 829,
842
- YouHaveTamed = 830,
843
- YouHaveUncaged = 831,
844
- YouNoticeBecomeEnraged = 832,
845
- YouNoticeDying = 833,
846
- YouNoticeFertilityDecreasing = 834,
847
- YouNoticeFertilityIncreasing = 835,
848
- YouNoticeGrowing = 836,
849
- YouNoticeLavaCooling = 837,
850
- YouNoticeLavaHardening = 838,
851
- YouNoticePerish = 839,
852
- YouNoticePlantDamage = 840,
853
- YouNoticePlantRegenerated = 841,
854
- YouNoticeStumbleInjureItself = 842,
855
- YouNoticeTakeFromGround = 843,
856
- YouNoticeWoundsClosing = 844,
857
- YouOfferedToCreature = 845,
858
- YouOfferedToCreatureRejects = 846,
859
- YouOpen = 847,
860
- YouPacked = 848,
861
- YouPickedUp = 849,
862
- YouRefine = 850,
863
- YouReinforce = 851,
864
- YouRepair = 852,
865
- YouReturnFromCivilizationWith = 853,
866
- YourFist = 854,
867
- YourHands = 855,
868
- YourInventory = 856,
869
- YourIsland = 857,
870
- YouSeeALivingMushroomSpore = 858,
871
- YouSeeASkeletonCollapse = 859,
872
- YouSeeASlimeCombine = 860,
873
- YouSeeAZombieBleeding = 861,
874
- YouSeeCoolDown = 862,
875
- YouSeeDrop = 863,
876
- YouSeeEngulfFire = 864,
877
- YouSeeFireSpread = 865,
878
- YouSeeHelpingPlant = 866,
879
- YouSeeLay = 867,
880
- YouSeeLayingTrap = 868,
881
- YouSeeSpewLava = 869,
882
- YouSeeSpiderSpin = 870,
883
- YouSeeSpitAcid = 871,
884
- YouSeeSpringForth = 872,
885
- YouSeeSummon = 873,
886
- YouSeeSwampFlood = 874,
887
- YouSeeTrampling = 875,
888
- YouSetTheTrapOff = 876,
889
- YouStokeTheCreature = 877,
890
- YouSwapMainHandAndOffHand = 878,
891
- YouThrew = 879,
892
- YouTilled = 880,
893
- YouUnequip = 881,
894
- YouUsed = 882,
895
- YouViewTheItemsOn = 883,
896
- YouWhileTraveling = 884
204
+ ActionViewItemsCannotUseDisabled = 192,
205
+ AddedFuelToFire = 193,
206
+ AddedFuelToFireNoChange = 194,
207
+ AddedFuelToFireWeakened = 195,
208
+ AddedFuelToTorch = 196,
209
+ AllEquipmentUnEquipped = 197,
210
+ AlreadyDesalinatedWaterInStill = 198,
211
+ AlreadyFullyRefined = 199,
212
+ AlreadyFullyRepaired = 200,
213
+ AlreadyPreserved = 201,
214
+ AnotherIsland = 202,
215
+ AnUnknownItem = 203,
216
+ AppearedNotEffectiveForGathering = 204,
217
+ ArmorAppeared = 205,
218
+ ArmorProtectedFromInjuryAgainst = 206,
219
+ AttemptToSoothBurnInWater = 207,
220
+ AttemptToSoothFrostbiteWithFire = 208,
221
+ AttemptToSoothFrostbiteWithFireTooHot = 209,
222
+ AttemptToTill = 210,
223
+ BadlyBurnedLostHealth = 211,
224
+ BeenPoisoned = 212,
225
+ BeginSleeping = 213,
226
+ BeginUsingVehicle = 214,
227
+ BleedingHasStopped = 215,
228
+ BleedingProfusely = 216,
229
+ BleedingToDeathLostHealth = 217,
230
+ BookBlank = 218,
231
+ BookContains = 219,
232
+ BookCrumbles = 220,
233
+ BookDiagrams = 221,
234
+ BookEmpty = 222,
235
+ BookNothing = 223,
236
+ BookOpen = 224,
237
+ BookScribbles = 225,
238
+ BothEffectiveIneffective = 226,
239
+ BrokeIntoPieces = 227,
240
+ BrokenOnImpact = 228,
241
+ BrokenWhileFiring = 229,
242
+ Build = 230,
243
+ Burned = 231,
244
+ Butcher = 232,
245
+ CannotAddAnyMoreFuel = 233,
246
+ CannotAnythingHere = 234,
247
+ CannotBeCrafted = 235,
248
+ CannotBePerformedOverWater = 236,
249
+ CannotBePlacedHere = 237,
250
+ CannotBePreserved = 238,
251
+ CannotBeRefined = 239,
252
+ CannotBeRefinedReinforcementNeeded = 240,
253
+ CannotBeReinforced = 241,
254
+ CannotBeRepaired = 242,
255
+ CannotBuildHere = 243,
256
+ CannotDigWithHands = 244,
257
+ CannotEquipThatThere = 245,
258
+ CannotFishFor = 246,
259
+ CannotFromHere = 247,
260
+ CannotHere = 248,
261
+ CannotInWater = 249,
262
+ CannotLeave = 250,
263
+ CannotNoTreasure = 251,
264
+ CannotPickUpLockedContainer = 252,
265
+ CannotPickUpWhileLit = 253,
266
+ CannotPlaceContainerInItself = 254,
267
+ CannotPlaceHere = 255,
268
+ CannotPlaceThatFromHere = 256,
269
+ CannotPlaceThatHere = 257,
270
+ CannotPlaceThatOverWater = 258,
271
+ CannotPlantHereTilled = 259,
272
+ CannotRepairWhileLit = 260,
273
+ CannotRestHere = 261,
274
+ CannotShipNoItems = 262,
275
+ CannotShipNoPath = 263,
276
+ CannotSleepHere = 264,
277
+ CannotStartFireHere = 265,
278
+ CannotToAnythingHere = 266,
279
+ CannotToTellTime = 267,
280
+ CannotUseCommand = 268,
281
+ CannotWhenProtected = 269,
282
+ CannotWhenProtectedDangerousAction = 270,
283
+ CannotWhenProtectedDurability = 271,
284
+ CarryingTooMuchWeight = 272,
285
+ CarvedUpCorpse = 273,
286
+ Carving = 274,
287
+ CastYourLine = 275,
288
+ CaughtFish = 276,
289
+ ChatBanCommand = 277,
290
+ ChatBannedCommand = 278,
291
+ ChatCommandsCommand = 279,
292
+ ChatCommandsCommandCommand = 280,
293
+ ChatPingCommand = 281,
294
+ ChatPlayerMessage = 282,
295
+ ChatPlayersCommand = 283,
296
+ ChatServerMessage = 284,
297
+ ChatUnbanCommand = 285,
298
+ ChatUnknownCommand = 286,
299
+ Chop = 287,
300
+ Chopping = 288,
301
+ ClearedBlood = 289,
302
+ CloseToBeingDestroyed = 290,
303
+ Collapse = 291,
304
+ Collapsing = 292,
305
+ CommandAttack = 293,
306
+ CommandDefend = 294,
307
+ CommandFollowClose = 295,
308
+ CommandFollowFar = 296,
309
+ CommandHeel = 297,
310
+ CommandStay = 298,
311
+ CopiedMap = 299,
312
+ CorpseOf = 300,//#used via other translations
313
+ CorpseOfNamed = 301,//#used via other translations
314
+ Craft = 302,
315
+ Crafted = 303,
316
+ Crafts = 304,
317
+ CreatureAngered = 305,
318
+ CreatureAppears = 306,
319
+ CreatureAppeased = 307,
320
+ CreatureExcrement = 308,
321
+ CreatureHappinessHigh = 309,
322
+ CreatureHappinessLow = 310,
323
+ CreatureHappinessLowest = 311,
324
+ CreatureHappinessNormal = 312,
325
+ CreatureIdolAttractedCreature = 313,
326
+ CreatureRefusesToBeTamed = 314,
327
+ CreatureRefusesYou = 315,
328
+ CreatureUntamed = 316,
329
+ CreatureZoneBiomeChanged = 317,
330
+ CreatureZoneLayerChanged = 318,
331
+ CreatureZoneRerolled = 319,
332
+ CreatureZoneTierDecreased = 320,
333
+ CreatureZoneTierIncreased = 321,
334
+ CrushedItemsUnderfoot = 322,
335
+ CuredYourPoison = 323,
336
+ CurseActionSailToIslandCannotUseCursebearer = 324,
337
+ CurseEventNewPlantDeath = 325,
338
+ CurseUpdateSunrise = 326,
339
+ CurseUpdateSunset = 327,
340
+ CurseUpdateWarning = 328,
341
+ Cut = 329,
342
+ CutHasHealed = 330,
343
+ CutLostHealth = 331,
344
+ CutWasBandaged = 332,
345
+ DamageAppeared = 333,
346
+ DamagedByPouring = 334,
347
+ DangerousMove = 335,
348
+ DangerousOpen = 336,
349
+ DayQuarter1 = 337,
350
+ DayQuarter2 = 338,
351
+ DayQuarter3 = 339,
352
+ DayQuarter4 = 340,
353
+ DealtNoDamageToYou = 341,
354
+ DeathBy = 342,
355
+ DeathByBleeding = 343,
356
+ DeathByBurning = 344,
357
+ DeathByChallengeWinner = 345,
358
+ DeathByConsumption = 346,
359
+ DeathByCut = 347,
360
+ DeathByDrowning = 348,
361
+ DeathByExhaustion = 349,
362
+ DeathByFistByPlayer = 350,
363
+ DeathByFrostbite = 351,
364
+ DeathByFrostbiteTemperatureShock = 352,
365
+ DeathByMalnutrition = 353,
366
+ DeathByPoison = 354,
367
+ DeathBySteppingOn = 355,
368
+ DeathByTrap = 356,
369
+ DeathByWeaponByPlayer = 357,
370
+ DedicatedTitleAlreadySelected = 358,
371
+ DedicatedTitleMilestoneNotAllowed = 359,
372
+ DestroyedFromUse = 360,
373
+ DeveloperContainerDesync = 361,
374
+ DidNotSeemToBeHurting = 362,
375
+ Dig = 363,
376
+ DigAway = 364,
377
+ Digging = 365,
378
+ Disassemble = 366,
379
+ Disassembling = 367,
380
+ DiscoveredCaveEntrance = 368,
381
+ DiscoveredColdInsulation = 369,
382
+ DiscoveredHeatInsulation = 370,
383
+ DiscoveredInTheBottle = 371,
384
+ DiscoveredLavaPassage = 372,
385
+ DiscoveredQuality = 373,
386
+ Dismantle = 374,
387
+ Dismantling = 375,
388
+ DismantlingRequires = 376,
389
+ Dismounted = 377,
390
+ DisplacedPuddles = 378,
391
+ DoNotProduceAnyResources = 379,
392
+ DoodadCauseStatus = 380,
393
+ DoodadGroupTier = 381,
394
+ DrewSurroundings = 382,
395
+ Dripstone = 383,
396
+ DroppedIntoDepths = 384,
397
+ DroppedIntoFire = 385,
398
+ DroppedIntoTheVoid = 386,
399
+ DryadSprouted = 387,
400
+ DueToDehydration = 388,
401
+ DueToStarvation = 389,
402
+ DugTreasureOut = 390,
403
+ DugTreasureOutSurprise = 391,
404
+ DumpContentsOfContainerInInventory = 392,
405
+ DyingOfDehydration = 393,
406
+ EarnedMilestone = 394,
407
+ Effective = 395,
408
+ EquipmentPreventedStatusEffects = 396,
409
+ ErrorHasOccured = 397,
410
+ Excavating = 398,
411
+ ExtinguishedFire = 399,
412
+ ExtinguishedLightSource = 400,
413
+ ExudeNotPossible = 401,
414
+ FailedToAbsorb = 402,
415
+ FailedToAddFuelToTorch = 403,
416
+ FailedToCage = 404,
417
+ FailedToCatchFish = 405,
418
+ FailedToCauseDamage = 406,
419
+ FailedToCauseYouDamage = 407,
420
+ FailedToCopy = 408,
421
+ FailedToDraw = 409,
422
+ FailedToEnchant = 410,
423
+ FailedToExude = 411,
424
+ FailedToIgniteTorch = 412,
425
+ FailedToPickLock = 413,
426
+ FailedToPreserve = 414,
427
+ FailedToRefine = 415,
428
+ FailedToReinforce = 416,
429
+ FailedToRepair = 417,
430
+ FailedToStartFire = 418,
431
+ FailedToTame = 419,
432
+ FailedToTransmogrify = 420,
433
+ FarOffLands = 421,
434
+ FeltBurningPainLostHealth = 422,
435
+ FeltFrostbitePainLostHealth = 423,
436
+ FewMinutes = 424,
437
+ Filled = 425,
438
+ FilledFrom = 426,
439
+ FireAroundYouIsWarm = 427,
440
+ FiredIntoObstacle = 428,
441
+ FireOverflowed = 429,
442
+ FireOverflowedFireElemental = 430,
443
+ FireSource = 431,
444
+ FireSourceDescription = 432,
445
+ FishingWithNoBait = 433,
446
+ Floating = 434,
447
+ FreshWater = 435,
448
+ FromTheStill = 436,
449
+ FuelIsRequired = 437,
450
+ Gather = 438,
451
+ GatherDestroy = 439,
452
+ Gathering = 440,
453
+ GhostNoActions = 441,
454
+ GhostOf = 442,
455
+ GoatHasNoMilk = 443,
456
+ HackAway = 444,
457
+ HandProtectionPreventedInjury = 445,
458
+ HandsNotEffectiveFor = 446,
459
+ Harvest = 447,
460
+ Harvesting = 448,
461
+ HasBeenHurtByATrap = 449,
462
+ HasDecayed = 450,
463
+ HasHitYouForDamage = 451,
464
+ HasNoEffect = 452,
465
+ HasSetTrapOffNoDamage = 453,
466
+ HasSplit = 454,
467
+ HelpGrow = 455,
468
+ HitchAttempt = 456,
469
+ HitchCreature = 457,
470
+ HitchDisabled = 458,
471
+ HitchInUse = 459,
472
+ HitForDamage = 460,
473
+ HitYouForDamage = 461,
474
+ Hour = 462,
475
+ Hours = 463,
476
+ HurtHandsHittingWithoutWeapons = 464,
477
+ HurtHandsWithNoTool = 465,
478
+ IgnitedTorch = 466,
479
+ Ineffective = 467,
480
+ InjuredFromTrap = 468,
481
+ InNeedOfRepair = 469,
482
+ InteractingWithHasInjuredYouForDamage = 470,
483
+ InvalidContainer = 471,
484
+ IsInTheWayOfPickingUp = 472,
485
+ ItemFromWater = 473,
486
+ JoinedAServer = 474,
487
+ Jump = 475,
488
+ Killed = 476,
489
+ KnowledgeHasIncreased = 477,
490
+ LastPlaceYouLeftOff = 478,
491
+ LearnedHowToCreate = 479,
492
+ LikelyFailures = 480,
493
+ Limited = 481,
494
+ Lockpick = 482,
495
+ MapCompletedNotOfThisArea = 483,
496
+ MapDestroyed = 484,
497
+ MapNearlyDestroyed = 485,
498
+ MapNotOfThisArea = 486,
499
+ MaterialsDestroyed = 487,
500
+ MessageOfTheDay = 488,
501
+ MetabolismSlowed = 489,
502
+ Milk = 490,
503
+ Mine = 491,
504
+ Mining = 492,
505
+ MissedWith = 493,
506
+ MissedYouWith = 494,
507
+ MovedItem = 495,
508
+ MovedItemFailed = 496,
509
+ MoveOverTrapButDoNotSetOff = 497,
510
+ MultiplayerGamePaused = 498,
511
+ MultiplayerGameResumed = 499,
512
+ MultiplayerPlayerConnected = 500,
513
+ MultiplayerPlayerDied = 501,
514
+ MultiplayerPlayerDisconnected = 502,
515
+ MultiplayerPlayerJoined = 503,
516
+ MustBeEquippedToIgnite = 504,
517
+ Mysteriously = 505,
518
+ NearlyBurnedEquipmentProtectedYou = 506,
519
+ NeedToStartTravelsOutside = 507,
520
+ NeedWaterForBoat = 508,
521
+ NightQuarter1 = 509,
522
+ NightQuarter2 = 510,
523
+ NightQuarter3 = 511,
524
+ NightQuarter4 = 512,
525
+ No = 513,
526
+ NoAmmunitionForThatWeapon = 514,
527
+ NoFireToStokeWith = 515,
528
+ NoFishAtLocation = 516,
529
+ NoGroundWater = 517,
530
+ NoInkToDrawMap = 518,
531
+ NoKindlingOrFuelItemsToStartFire = 519,
532
+ NoKindlingToStartFire = 520,
533
+ NoLongerFeelPainOfBeingBurned = 521,
534
+ NoLongerFeelPainOfBeingFrostbitten = 522,
535
+ NoLongerHostile = 523,
536
+ NoMoreRoomInContainer = 524,
537
+ NoPaperToDrawMap = 525,
538
+ NoRequiredItemToFireWeapon = 526,
539
+ NoReturnWithoutCompletingChallenges = 527,
540
+ NoRoomForImprovement = 528,
541
+ NoRoomForVehicle = 529,
542
+ NoRoomToDrop = 530,
543
+ NoRoomToSummon = 531,
544
+ NotEnoughPurifiedWaterYet = 532,
545
+ NotEnoughTreasureToReturn = 533,
546
+ NothingTo = 534,
547
+ NothingToGetFromThis = 535,
548
+ NothingToHarvestFromThisGather = 536,
549
+ NothingToSmother = 537,
550
+ NothingUsefulToHarvestYet = 538,
551
+ NoTinderToStartFire = 539,
552
+ NotSuitableToPlant = 540,
553
+ NoWaterInStill = 541,
554
+ NPCMerchantNewInventoryDialogue1 = 542,
555
+ NPCMerchantNewInventoryDialogue2 = 543,
556
+ NPCMerchantNewInventoryDialogue3 = 544,
557
+ NPCMerchantNewInventoryDialogue4 = 545,
558
+ NPCMerchantStartingDialogue1 = 546,
559
+ NPCMerchantStartingDialogue2 = 547,
560
+ NPCMerchantStartingDialogue3 = 548,
561
+ NPCMerchantStartingDialogue4 = 549,
562
+ NPCMerchantWelcomeCredit = 550,
563
+ NPCShipperShipToIsland = 551,
564
+ NPCShipperStartingDialogue1 = 552,
565
+ NPCShipperStartingDialogue2 = 553,
566
+ NPCShipperStartingDialogue3 = 554,
567
+ NPCShipperStartingDialogue4 = 555,
568
+ NPCWelcome = 556,
569
+ ObjectIsLocked = 557,
570
+ ObjectIsLockedAttemptToBreakIt = 558,
571
+ OfferAberrantFail = 559,
572
+ OfferAberrantFailButTamed = 560,
573
+ Open = 561,
574
+ OpenClose = 562,
575
+ OpenCollapse = 563,
576
+ OverEatingLostStamina = 564,
577
+ OverHydratingLostStamina = 565,
578
+ Pack = 566,
579
+ PaperTurnedToMush = 567,
580
+ ParryTheBlow = 568,
581
+ PetCreature = 569,
582
+ PickAway = 570,
583
+ PickUp = 571,
584
+ PickUpExcrement = 572,
585
+ PickUpTheItem = 573,
586
+ Place = 574,
587
+ PlacedItem = 575,
588
+ PlacedItemFailed = 576,
589
+ PlacedOnGround = 577,
590
+ PlantedInGround = 578,
591
+ PlantGatheredPlant = 579,
592
+ PlantGatheringWillDestroy = 580,
593
+ PlantHasResourcesToGather = 581,
594
+ PlantHasResourcesToHarvest = 582,
595
+ PlantHighlyFertile = 583,
596
+ Planting = 584,
597
+ PlantIsBare = 585,
598
+ PlantIsFertile = 586,
599
+ PlantIsInStage = 587,
600
+ PlantIsNotFertile = 588,
601
+ PlantIsSeeding = 589,
602
+ PlantNotReadyToHarvest = 590,
603
+ PlantReadyToGather = 591,
604
+ PlantReadyToGatherNotMaximal = 592,
605
+ PlantReadyToHarvest = 593,
606
+ PlantReadyToHarvestNotMaximal = 594,
607
+ PlayerHas = 595,
608
+ PlayerHasCompletedChallengeRequirement = 596,
609
+ PlayerHasWonChallenge = 597,
610
+ Poisoned = 598,
611
+ PoisonedLostHealth = 599,
612
+ PoisonWorkedItsCourse = 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
+ PourOverWatering = 610,
623
+ Prepare = 611,
624
+ Prepared = 612,
625
+ PreservedFood = 613,
626
+ PurifiedWaterInBottom = 614,
627
+ PurifiedWaterInStill = 615,
628
+ RandomEventsFire = 616,
629
+ ReduceLength = 617,
630
+ RefusedToBeTamed = 618,
631
+ Repair = 619,
632
+ RequiredForDisassembly = 620,
633
+ RequiresFireToBeLit = 621,
634
+ RequiresYouToBeAround = 622,
635
+ Resistant = 623,
636
+ Rest = 624,
637
+ Rested = 625,
638
+ Resting = 626,
639
+ RestingOnGroundNotEffective = 627,
640
+ RestInterrupted = 628,
641
+ RestInterruptedDamage = 629,
642
+ RestInterruptedDying = 630,
643
+ RestInterruptedLoudNoise = 631,
644
+ RestInterruptedPain = 632,
645
+ RestInterruptedStirring = 633,
646
+ RestInterruptedTooCold = 634,
647
+ RestInterruptedTooHot = 635,
648
+ RestInterruptedUncomfortablyCold = 636,
649
+ RestInterruptedUncomfortablyHot = 637,
650
+ RestInterruptedWaterPoured = 638,
651
+ RestLongTime = 639,
652
+ RestModerateTime = 640,
653
+ RestOnBoat = 641,
654
+ RestShortTime = 642,
655
+ RestTime = 643,
656
+ ReturnedToCivilization = 644,
657
+ ReturningToCivilizationSetOffAgain = 645,
658
+ ReturnsToLife = 646,
659
+ Reverse = 647,
660
+ Ride = 648,
661
+ Sailing = 649,
662
+ ScrollMaster = 650,
663
+ ScrollProvidedNoUsefulInsight = 651,
664
+ Seawater = 652,
665
+ SeemsToHaveDrawnEnergy = 653,
666
+ SetTrapOffButNoDamage = 654,
667
+ SetUp = 655,
668
+ ShadowInTheWater = 656,
669
+ SkillHasRaised = 657,
670
+ Skills = 658,
671
+ Sleep = 659,
672
+ Sleeping = 660,
673
+ SleepOnBoat = 661,
674
+ Slept = 662,
675
+ SlitherSuckerConstricts = 663,
676
+ SlitherSuckerFailedToRemove = 664,
677
+ SlitherSuckerFailedToRemoveOuch = 665,
678
+ SlitherSuckerJumpedOnHead = 666,
679
+ SolarStill = 667,
680
+ SomethingInTheWayOf = 668,
681
+ SomethingInTheWayOfButcherFirst = 669,
682
+ SomethingInTheWayOfFire = 670,
683
+ SomethingInTheWayOfFishing = 671,
684
+ SomethingInTheWayOfPerforming = 672,
685
+ SomethingInTheWayOfPlacing = 673,
686
+ SomethingInTheWayOfReleasing = 674,
687
+ SomethingInTheWayOfSummoning = 675,
688
+ SomethingInWayOfClosingDoor = 676,
689
+ SoothedTheirBurnInjuries = 677,
690
+ SoothedYourBurnInjuries = 678,
691
+ SortedByCategory = 679,
692
+ SortedByCraftableOnly = 680,
693
+ SortedByName = 681,
694
+ SortedBySkill = 682,
695
+ SortedByUnlockedTime = 683,
696
+ StaminaIsFull = 684,
697
+ StartedFire = 685,
698
+ StartTravelInWater = 686,
699
+ StarvingToDeath = 687,
700
+ StatAmount = 688,
701
+ StatChangeUnknown = 689,
702
+ StatGained = 690,
703
+ StatIncreasing = 691,
704
+ StatLost = 692,
705
+ StatQuenched = 693,
706
+ StatRegained = 694,
707
+ StatSated = 695,
708
+ SteppingOn = 696,
709
+ Still = 697,
710
+ StillHasNoWaterToPurify = 698,
711
+ StillNoContainer = 699,
712
+ StillTooColdToWork = 700,
713
+ StirredUpClawWorm = 701,
714
+ StirredUpCreature = 702,
715
+ StoppedYourBleeding = 703,
716
+ StopUsingVehicle = 704,
717
+ SummonedGuardiansByDiggingTreasure = 705,
718
+ SummonedGuardiansByLockpicking = 706,
719
+ SummonVoidDwellerItem = 707,
720
+ SummonVoidDwellerRinging = 708,
721
+ SummonVoidDwellerShiver = 709,
722
+ SunNotBrightEnoughToStartFire = 710,
723
+ SwampWater = 711,
724
+ Swimming = 712,
725
+ TakenFromGroundBecomeTamed = 713,
726
+ TeleportBlocked = 714,
727
+ Teleported = 715,
728
+ TheirFist = 716,
729
+ TheirInventory = 717,
730
+ ThePlant = 718,
731
+ ThereIsNoContainerOnTheStill = 719,
732
+ ThereIsNoSunToStartFire = 720,
733
+ ThisCannotBeMilked = 721,
734
+ Throw = 722,
735
+ ThrownIntoDepths = 723,
736
+ ThrownIntoObstacle = 724,
737
+ ThrownIntoVoid = 725,
738
+ TierGroup = 726,
739
+ TileMakeCaveEntranceNearby = 727,
740
+ TileMakeCaveEntrancePassable = 728,
741
+ TileMakeCaveEntranceVoid = 729,
742
+ Till = 730,
743
+ Tilling = 731,
744
+ TimeIs = 732,
745
+ TimeIsDawn = 733,
746
+ TimeIsDaytime = 734,
747
+ TimeIsDusk = 735,
748
+ TimeIsNighttime = 736,
749
+ TimeIsSunrise = 737,
750
+ TimeIsSunset = 738,
751
+ ToFight = 739,
752
+ TooDamaged = 740,
753
+ TooExhaustedToJump = 741,
754
+ Touching = 742,
755
+ TrampledFire = 743,
756
+ TrampledFireFail = 744,
757
+ TrampledFirePartial = 745,
758
+ TrampledIntoGround = 746,
759
+ TrampleIntoGround = 747,
760
+ Trampling = 748,
761
+ TransmogrificationNoEffect = 749,
762
+ TransmogrificationNotPossible = 750,
763
+ Transmogrified = 751,
764
+ TrapMissed = 752,
765
+ TrapStoppedYou = 753,
766
+ Traveling = 754,
767
+ Treasure = 755,
768
+ TreasureIsBlocked = 756,
769
+ UiActionCannotUseInaccessibleItem = 757,
770
+ UiActionCannotUseInThisSituation = 758,
771
+ UiActionCannotUseNoItemHovered = 759,
772
+ UiActionCannotUseNotInRange = 760,
773
+ UiActionCannotUseOnThisIsland = 761,
774
+ UiActionCannotUseRequiresCreature = 762,
775
+ UiActionCannotUseRequiresDoodad = 763,
776
+ UiActionCannotUseRequiresItem = 764,
777
+ UiActionCannotUseRequiresNPC = 765,
778
+ UiActionCannotUseRequiresVehicle = 766,
779
+ UiDialogTradeIndicateTradeAlreadyTradedBuyDialogue1 = 767,
780
+ UiDialogTradeIndicateTradeAlreadyTradedBuyDialogue2 = 768,
781
+ UiDialogTradeIndicateTradeAlreadyTradedBuyDialogue3 = 769,
782
+ UiDialogTradeIndicateTradeAlreadyTradedSellDialogue1 = 770,
783
+ UiDialogTradeIndicateTradeAlreadyTradedSellDialogue2 = 771,
784
+ UiDialogTradeIndicateTradeAlreadyTradedSellDialogue3 = 772,
785
+ UiDialogTradeIndicateTradeTooMuchTradesDialogue1 = 773,
786
+ UiDialogTradeIndicateTradeTooMuchTradesDialogue2 = 774,
787
+ UiDialogTradeIndicateTradeTooMuchTradesDialogue3 = 775,
788
+ UnhitchCreature = 776,
789
+ Unknown = 777,
790
+ Unlimited = 778,
791
+ UnlockedChest = 779,
792
+ UnpurifiedFreshWater = 780,
793
+ UnpurifiedWaterInStill = 781,
794
+ UnpurifiedWaterInTop = 782,
795
+ Use = 783,
796
+ UsingBareHands = 784,
797
+ VehicleDefense = 785,
798
+ VoidDwellerVanishes = 786,
799
+ Vulnerable = 787,
800
+ Water = 788,
801
+ WaterGathering = 789,
802
+ WaterPutOutFire = 790,
803
+ WellIsDry = 791,
804
+ WellIsFull = 792,
805
+ WildGoatRefusedToBeMilked = 793,
806
+ WorkingYourselfIntoExhaustion = 794,
807
+ WorkingYourselfIntoExhaustionAndDrowning = 795,
808
+ WorldContainer = 796,
809
+ You = 797,
810
+ YouAbsorb = 798,
811
+ YouApplied = 799,
812
+ YouAreAlready = 800,
813
+ YouAte = 801,
814
+ YouBeginResting = 802,
815
+ YouCannotDoThatYet = 803,
816
+ YouCanNowCombatTheTides = 804,
817
+ YouCrafted = 805,
818
+ YouDoNotFindTreasureYet = 806,
819
+ YouDrank = 807,
820
+ YouDropTheTorch = 808,
821
+ YouEnchant = 809,
822
+ YouEquip = 810,
823
+ YouExude = 811,
824
+ YouExudeSome = 812,
825
+ YouExudeSomeReasonConflicting = 813,
826
+ YouExudeSomeReasonMax = 814,
827
+ YouExudeSomeReasonProperties = 815,
828
+ YouFailedTo = 816,
829
+ YouFailedToExtinguishedFireFully = 817,
830
+ YouFailedToHeal = 818,
831
+ YouFailedToHealOther = 819,
832
+ YouFire = 820,
833
+ YouGathered = 821,
834
+ YouHarmTheCreatureByStoking = 822,
835
+ YouHarvested = 823,
836
+ YouHave = 824,
837
+ YouHaveAlreadyLearned = 825,
838
+ YouHaveBeenCut = 826,
839
+ YouHaveCaged = 827,
840
+ YouHaveCommanded = 828,
841
+ YouHaveDied = 829,
842
+ YouHaveHarmedOther = 830,
843
+ YouHaveHealedOther = 831,
844
+ YouHaveKilled = 832,
845
+ YouHaveNotCommanded = 833,
846
+ YouHaveReleased = 834,
847
+ YouHaveSummoned = 835,
848
+ YouHaveTamed = 836,
849
+ YouHaveUncaged = 837,
850
+ YouNoticeBecomeEnraged = 838,
851
+ YouNoticeDying = 839,
852
+ YouNoticeFertilityDecreasing = 840,
853
+ YouNoticeFertilityIncreasing = 841,
854
+ YouNoticeGrowing = 842,
855
+ YouNoticeLavaCooling = 843,
856
+ YouNoticeLavaHardening = 844,
857
+ YouNoticePerish = 845,
858
+ YouNoticePlantDamage = 846,
859
+ YouNoticePlantRegenerated = 847,
860
+ YouNoticeStumbleInjureItself = 848,
861
+ YouNoticeTakeFromGround = 849,
862
+ YouNoticeWoundsClosing = 850,
863
+ YouOfferedToCreature = 851,
864
+ YouOfferedToCreatureRejects = 852,
865
+ YouOpen = 853,
866
+ YouPacked = 854,
867
+ YouPickedUp = 855,
868
+ YouRefine = 856,
869
+ YouReinforce = 857,
870
+ YouRepair = 858,
871
+ YouReturnFromCivilizationWith = 859,
872
+ YourFist = 860,
873
+ YourHands = 861,
874
+ YourInventory = 862,
875
+ YourIsland = 863,
876
+ YouSeeALivingMushroomSpore = 864,
877
+ YouSeeASkeletonCollapse = 865,
878
+ YouSeeASlimeCombine = 866,
879
+ YouSeeAZombieBleeding = 867,
880
+ YouSeeCoolDown = 868,
881
+ YouSeeDrop = 869,
882
+ YouSeeEngulfFire = 870,
883
+ YouSeeFireSpread = 871,
884
+ YouSeeHelpingPlant = 872,
885
+ YouSeeLay = 873,
886
+ YouSeeLayingTrap = 874,
887
+ YouSeeSpewLava = 875,
888
+ YouSeeSpiderSpin = 876,
889
+ YouSeeSpitAcid = 877,
890
+ YouSeeSpringForth = 878,
891
+ YouSeeSummon = 879,
892
+ YouSeeSwampFlood = 880,
893
+ YouSeeTrampling = 881,
894
+ YouSetTheTrapOff = 882,
895
+ YouStokeTheCreature = 883,
896
+ YouSwapMainHandAndOffHand = 884,
897
+ YouThrew = 885,
898
+ YouTilled = 886,
899
+ YouUnequip = 887,
900
+ YouUsed = 888,
901
+ YouViewTheItemsOn = 889,
902
+ YouWhileTraveling = 890
897
903
  }
898
904
  export default Message;