@wayward/types 2.15.0-beta.dev.20251020.1 → 2.15.0-beta.dev.20251022.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (68) hide show
  1. package/definitions/game/game/Game.d.ts +1 -0
  2. package/definitions/game/game/curse/Curse.d.ts +8 -2
  3. package/definitions/game/game/doodad/Doodad.d.ts +8 -1
  4. package/definitions/game/game/entity/Human.d.ts +1 -1
  5. package/definitions/game/game/entity/IHuman.d.ts +2 -1
  6. package/definitions/game/game/entity/action/actions/SetTitle.d.ts +1 -1
  7. package/definitions/game/game/entity/data/DataComponent.d.ts +2 -1
  8. package/definitions/game/game/island/Island.d.ts +1 -0
  9. package/definitions/game/game/milestones/IMilestone.d.ts +8 -3
  10. package/definitions/game/game/milestones/MilestoneDefinition.d.ts +7 -3
  11. package/definitions/game/game/options/IGameOptions.d.ts +6 -1
  12. package/definitions/game/game/options/modifiers/challenge/IChallenge.d.ts +2 -1
  13. package/definitions/game/game/options/modifiers/custom/CustomModifierDefinitions.d.ts +117 -0
  14. package/definitions/game/game/options/modifiers/custom/ICustomModifier.d.ts +78 -0
  15. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierCreatureSpawnLimit.d.ts +13 -0
  16. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierCreatureSpawnRate.d.ts +13 -0
  17. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierCreatures.d.ts +15 -0
  18. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierCreaturesOther.d.ts +13 -0
  19. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierItemDecay.d.ts +13 -0
  20. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierItemDurability.d.ts +13 -0
  21. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierSkills.d.ts +15 -0
  22. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierSkillsGainMultiplierGlobal.d.ts +13 -0
  23. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierSkillsInitialValueGlobal.d.ts +13 -0
  24. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierSkillsStartCount.d.ts +13 -0
  25. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierStartingBiome.d.ts +14 -0
  26. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierStatGeneric.d.ts +15 -0
  27. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierStatLuck.d.ts +13 -0
  28. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierStatStrength.d.ts +13 -0
  29. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierStatusGeneric.d.ts +15 -0
  30. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierTimeDayLength.d.ts +13 -0
  31. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierTimeDayPercent.d.ts +13 -0
  32. package/definitions/game/game/options/modifiers/custom/modifiers/CustomModifierTimeInitial.d.ts +13 -0
  33. package/definitions/game/game/options/modifiers/milestone/MilestoneModifiersManager.d.ts +2 -0
  34. package/definitions/game/game/options/modifiers/milestone/modifiers/Oblivious.d.ts +17 -0
  35. package/definitions/game/game/tile/events/MeltingTile.d.ts +0 -1
  36. package/definitions/game/game/time/TimeManager.d.ts +2 -0
  37. package/definitions/game/language/Dictionary.d.ts +3 -1
  38. package/definitions/game/language/DictionaryMap.d.ts +6 -0
  39. package/definitions/game/language/Translation.d.ts +1 -0
  40. package/definitions/game/language/dictionary/Message.d.ts +562 -564
  41. package/definitions/game/language/dictionary/Misc.d.ts +4 -0
  42. package/definitions/game/language/dictionary/UiTranslation.d.ts +824 -862
  43. package/definitions/game/language/english/game/CustomModifiers.d.ts +13 -0
  44. package/definitions/game/language/english/game/GameOptionsIcons.d.ts +13 -0
  45. package/definitions/game/save/upgrade/versions/beta2.15.0/beta2.15.0-dev20251020.d.ts +12 -0
  46. package/definitions/game/ui/Ui.d.ts +3 -0
  47. package/definitions/game/ui/component/GameIcons.d.ts +4 -3
  48. package/definitions/game/ui/input/Bindable.d.ts +24 -23
  49. package/definitions/game/ui/screen/screens/game/InspectionsTooltipHandler.d.ts +2 -0
  50. package/definitions/game/ui/screen/screens/game/component/GameDetails.d.ts +4 -4
  51. package/definitions/game/ui/screen/screens/menu/menus/newgame/CustomGameOptionsMenu.d.ts +4 -3
  52. package/definitions/game/ui/screen/screens/menu/menus/newgame/TabGameMode.d.ts +1 -1
  53. package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/CustomGameOptionsTab.d.ts +12 -2
  54. package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/TabCreatures.d.ts +2 -3
  55. package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/TabGeneral.d.ts +2 -2
  56. package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/TabItems.d.ts +2 -2
  57. package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/TabSkills.d.ts +2 -3
  58. package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/TabStats.d.ts +2 -2
  59. package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/TabStatuses.d.ts +2 -2
  60. package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/TabTime.d.ts +2 -5
  61. package/definitions/game/ui/screen/screens/menu/menus/newgame/customgameoptions/TabTravel.d.ts +2 -2
  62. package/definitions/game/ui/screen/screens/menu/menus/pause/GameOptionsIcons.d.ts +2 -11
  63. package/definitions/game/ui/tooltip/TooltipManager.d.ts +1 -0
  64. package/definitions/game/utilities/object/Merge.d.ts +5 -0
  65. package/definitions/game/utilities/random/RandomValueGenerator.d.ts +4 -1
  66. package/definitions/game/utilities/random/generators/specific/RandomRange.d.ts +4 -1
  67. package/definitions/utilities/random/Random.d.ts +1 -0
  68. package/package.json +1 -1
@@ -328,569 +328,567 @@ declare enum Message {
328
328
  CuredYourPoison = 316,
329
329
  CurseActionSailToIslandCannotUseCursebearer = 317,
330
330
  CurseEventNewPlantDeath = 318,
331
- CurseEventNewPlantsGrowth = 319,
332
- CurseUpdateSunrise = 320,
333
- CurseUpdateSunset = 321,
334
- CurseUpdateWarning = 322,
335
- Cut = 323,
336
- CutHasHealed = 324,
337
- CutLostHealth = 325,
338
- CutWasBandaged = 326,
339
- DamageAppeared = 327,
340
- DamagedByPouring = 328,
341
- DangerousMove = 329,
342
- DangerousOpen = 330,
343
- DayQuarter1 = 331,
344
- DayQuarter2 = 332,
345
- DayQuarter3 = 333,
346
- DayQuarter4 = 334,
347
- DealtNoDamageToYou = 335,
348
- DeathBy = 336,
349
- DeathByBleeding = 337,
350
- DeathByBurning = 338,
351
- DeathByChallengeWinner = 339,
352
- DeathByConsumption = 340,
353
- DeathByCut = 341,
354
- DeathByDrowning = 342,
355
- DeathByExhaustion = 343,
356
- DeathByFistByPlayer = 344,
357
- DeathByFrostbite = 345,
358
- DeathByFrostbiteTemperatureShock = 346,
359
- DeathByMalnutrition = 347,
360
- DeathByPoison = 348,
361
- DeathBySteppingOn = 349,
362
- DeathByTrap = 350,
363
- DeathByWeaponByPlayer = 351,
364
- DedicatedTitleAlreadySelected = 352,
365
- DedicatedTitleMilestoneNotAllowed = 353,
366
- DestroyedFromUse = 354,
367
- DeveloperContainerDesync = 355,
368
- DidNotSeemToBeHurting = 356,
369
- Dig = 357,
370
- DigAway = 358,
371
- Digging = 359,
372
- Disassemble = 360,
373
- Disassembling = 361,
374
- DiscoveredCaveEntrance = 362,
375
- DiscoveredColdInsulation = 363,
376
- DiscoveredHeatInsulation = 364,
377
- DiscoveredInTheBottle = 365,
378
- DiscoveredLavaPassage = 366,
379
- DiscoveredQuality = 367,
380
- Dismantle = 368,
381
- Dismantling = 369,
382
- DismantlingRequires = 370,
383
- Dismounted = 371,
384
- DisplacedPuddles = 372,
385
- DoNotProduceAnyResources = 373,
386
- DoodadCauseStatus = 374,
387
- DoodadGroupTier = 375,
388
- DrewSurroundings = 376,
389
- Dripstone = 377,
390
- DroppedIntoDepths = 378,
391
- DroppedIntoFire = 379,
392
- DroppedIntoTheVoid = 380,
393
- DryadSprouted = 381,
394
- DueToDehydration = 382,
395
- DueToStarvation = 383,
396
- DugTreasureOut = 384,
397
- DugTreasureOutSurprise = 385,
398
- DumpContentsOfContainerInInventory = 386,
399
- DyingOfDehydration = 387,
400
- EarnedMilestone = 388,
401
- Effective = 389,
402
- EquipmentPreventedStatusEffects = 390,
403
- ErrorHasOccured = 391,
404
- Excavating = 392,
405
- ExtinguishedFire = 393,
406
- ExtinguishedLightSource = 394,
407
- ExudeNotPossible = 395,
408
- FailedToAbsorb = 396,
409
- FailedToAddFuelToTorch = 397,
410
- FailedToCage = 398,
411
- FailedToCatchFish = 399,
412
- FailedToCauseDamage = 400,
413
- FailedToCauseYouDamage = 401,
414
- FailedToCopy = 402,
415
- FailedToDraw = 403,
416
- FailedToEnchant = 404,
417
- FailedToExude = 405,
418
- FailedToIgniteTorch = 406,
419
- FailedToPickLock = 407,
420
- FailedToPreserve = 408,
421
- FailedToRefine = 409,
422
- FailedToReinforce = 410,
423
- FailedToRepair = 411,
424
- FailedToStartFire = 412,
425
- FailedToTame = 413,
426
- FailedToTransmogrify = 414,
427
- FarOffLands = 415,
428
- FeltBurningPainLostHealth = 416,
429
- FeltFrostbitePainLostHealth = 417,
430
- FewMinutes = 418,
431
- Filled = 419,
432
- FilledFrom = 420,
433
- FireAroundYouIsWarm = 421,
434
- FiredIntoObstacle = 422,
435
- FireOverflowed = 423,
436
- FireOverflowedFireElemental = 424,
437
- FireSource = 425,
438
- FishingWithNoBait = 426,
439
- Floating = 427,
440
- FreshWater = 428,
441
- FromTheStill = 429,
442
- FuelIsRequired = 430,
443
- Gather = 431,
444
- GatherDestroy = 432,
445
- Gathering = 433,
446
- GhostNoActions = 434,
447
- GhostOf = 435,
448
- GoatHasNoMilk = 436,
449
- HackAway = 437,
450
- HandProtectionPreventedInjury = 438,
451
- HandsNotEffectiveFor = 439,
452
- Harvest = 440,
453
- Harvesting = 441,
454
- HasBeenHurtByATrap = 442,
455
- HasDecayed = 443,
456
- HasHitYouForDamage = 444,
457
- HasNoEffect = 445,
458
- HasSetTrapOffNoDamage = 446,
459
- HasSplit = 447,
460
- HelpGrow = 448,
461
- HitchAttempt = 449,
462
- HitchCreature = 450,
463
- HitchDisabled = 451,
464
- HitchInUse = 452,
465
- HitForDamage = 453,
466
- HitYouForDamage = 454,
467
- Hour = 455,
468
- Hours = 456,
469
- HurtHandsHittingWithoutWeapons = 457,
470
- HurtHandsWithNoTool = 458,
471
- IgnitedTorch = 459,
472
- Ineffective = 460,
473
- InjuredFromTrap = 461,
474
- InNeedOfRepair = 462,
475
- InteractingWithHasInjuredYouForDamage = 463,
476
- InvalidContainer = 464,
477
- IsInTheWayOfPickingUp = 465,
478
- ItemFromWater = 466,
479
- JoinedAServer = 467,
480
- Jump = 468,
481
- Killed = 469,
482
- KnowledgeHasIncreased = 470,
483
- LastPlaceYouLeftOff = 471,
484
- LearnedHowToCreate = 472,
485
- LikelyFailures = 473,
486
- Limited = 474,
487
- Lockpick = 475,
488
- MapCompletedNotOfThisArea = 476,
489
- MapDestroyed = 477,
490
- MapNearlyDestroyed = 478,
491
- MapNotOfThisArea = 479,
492
- MaterialsDestroyed = 480,
493
- MessageOfTheDay = 481,
494
- MetabolismSlowed = 482,
495
- Milk = 483,
496
- Mine = 484,
497
- Mining = 485,
498
- MissedWith = 486,
499
- MissedYouWith = 487,
500
- MovedItem = 488,
501
- MovedItemFailed = 489,
502
- MoveOverTrapButDoNotSetOff = 490,
503
- MultiplayerGamePaused = 491,
504
- MultiplayerGameResumed = 492,
505
- MultiplayerPlayerConnected = 493,
506
- MultiplayerPlayerDied = 494,
507
- MultiplayerPlayerDisconnected = 495,
508
- MultiplayerPlayerJoined = 496,
509
- MustBeEquippedToIgnite = 497,
510
- Mysteriously = 498,
511
- NearlyBurnedEquipmentProtectedYou = 499,
512
- NeedToStartTravelsOutside = 500,
513
- NeedWaterForBoat = 501,
514
- NightQuarter1 = 502,
515
- NightQuarter2 = 503,
516
- NightQuarter3 = 504,
517
- NightQuarter4 = 505,
518
- No = 506,
519
- NoAmmunitionForThatWeapon = 507,
520
- NoCandleToStartFire = 508,
521
- NoFireToStokeWith = 509,
522
- NoFishAtLocation = 510,
523
- NoGroundWater = 511,
524
- NoInkToDrawMap = 512,
525
- NoKindlingOrFuelItemsToStartFire = 513,
526
- NoKindlingToStartFire = 514,
527
- NoLongerFeelPainOfBeingBurned = 515,
528
- NoLongerFeelPainOfBeingFrostbitten = 516,
529
- NoLongerHostile = 517,
530
- NoMoreRoomInContainer = 518,
531
- NoPaperToDrawMap = 519,
532
- NoRequiredItemToFireWeapon = 520,
533
- NoReturnWithoutCompletingChallenges = 521,
534
- NoRoomForImprovement = 522,
535
- NoRoomForVehicle = 523,
536
- NoRoomToDrop = 524,
537
- NoRoomToSummon = 525,
538
- NotEnoughPurifiedWaterYet = 526,
539
- NotEnoughTreasureToReturn = 527,
540
- NothingTo = 528,
541
- NothingToGetFromThis = 529,
542
- NothingToHarvestFromThisGather = 530,
543
- NothingToSmother = 531,
544
- NothingUsefulToHarvestYet = 532,
545
- NoTinderToStartFire = 533,
546
- NotSuitableToPlant = 534,
547
- NoWaterInStill = 535,
548
- NPCMerchantNewInventoryDialogue1 = 536,
549
- NPCMerchantNewInventoryDialogue2 = 537,
550
- NPCMerchantNewInventoryDialogue3 = 538,
551
- NPCMerchantNewInventoryDialogue4 = 539,
552
- NPCMerchantStartingDialogue1 = 540,
553
- NPCMerchantStartingDialogue2 = 541,
554
- NPCMerchantStartingDialogue3 = 542,
555
- NPCMerchantStartingDialogue4 = 543,
556
- NPCMerchantWelcomeCredit = 544,
557
- NPCShipperShipToIsland = 545,
558
- NPCShipperStartingDialogue1 = 546,
559
- NPCShipperStartingDialogue2 = 547,
560
- NPCShipperStartingDialogue3 = 548,
561
- NPCShipperStartingDialogue4 = 549,
562
- NPCWelcome = 550,
563
- ObjectIsLocked = 551,
564
- ObjectIsLockedAttemptToBreakIt = 552,
565
- OfferAberrantFail = 553,
566
- OfferAberrantFailButTamed = 554,
567
- Open = 555,
568
- OpenClose = 556,
569
- OpenCollapse = 557,
570
- OverEatingLostStamina = 558,
571
- OverHydratingLostStamina = 559,
572
- Pack = 560,
573
- PaperTurnedToMush = 561,
574
- ParryTheBlow = 562,
575
- PetCreature = 563,
576
- PickAway = 564,
577
- PickUp = 565,
578
- PickUpExcrement = 566,
579
- PickUpTheItem = 567,
580
- Place = 568,
581
- PlacedItem = 569,
582
- PlacedItemFailed = 570,
583
- PlacedOnGround = 571,
584
- PlantedInGround = 572,
585
- PlantGatheredPlant = 573,
586
- PlantGatheringWillDestroy = 574,
587
- PlantHasResourcesToGather = 575,
588
- PlantHasResourcesToHarvest = 576,
589
- PlantHighlyFertile = 577,
590
- Planting = 578,
591
- PlantIsBare = 579,
592
- PlantIsFertile = 580,
593
- PlantIsInStage = 581,
594
- PlantIsNotFertile = 582,
595
- PlantIsSeeding = 583,
596
- PlantNotReadyToHarvest = 584,
597
- PlantReadyToGather = 585,
598
- PlantReadyToGatherNotMaximal = 586,
599
- PlantReadyToHarvest = 587,
600
- PlantReadyToHarvestNotMaximal = 588,
601
- PlayerHas = 589,
602
- PlayerHasCompletedChallengeRequirement = 590,
603
- PlayerHasWonChallenge = 591,
604
- Poisoned = 592,
605
- PoisonedLostHealth = 593,
606
- PoisonWorkedItsCourse = 594,
607
- PouredOut = 595,
608
- PouredOutOnYourself = 596,
609
- PouredWaterIntoStill = 597,
610
- PourHarmedPlant = 598,
611
- PourHealedPlant = 599,
612
- PourHealedPlantFully = 600,
613
- PourHealedPlantPartially = 601,
614
- PourIncreasedFertility = 602,
615
- Pouring = 603,
616
- PourOverWatering = 604,
617
- Prepare = 605,
618
- Prepared = 606,
619
- PreservedFood = 607,
620
- PurifiedWaterInBottom = 608,
621
- PurifiedWaterInStill = 609,
622
- RandomEventsFire = 610,
623
- ReduceLength = 611,
624
- RefusedToBeTamed = 612,
625
- Repair = 613,
626
- RequiredForDisassembly = 614,
627
- RequiresFireToBeLit = 615,
628
- RequiresYouToBeAround = 616,
629
- Resistant = 617,
630
- Rest = 618,
631
- Rested = 619,
632
- Resting = 620,
633
- RestingOnGroundNotEffective = 621,
634
- RestInterrupted = 622,
635
- RestInterruptedDamage = 623,
636
- RestInterruptedDying = 624,
637
- RestInterruptedLoudNoise = 625,
638
- RestInterruptedPain = 626,
639
- RestInterruptedStirring = 627,
640
- RestInterruptedTooCold = 628,
641
- RestInterruptedTooHot = 629,
642
- RestInterruptedUncomfortablyCold = 630,
643
- RestInterruptedUncomfortablyHot = 631,
644
- RestInterruptedWaterPoured = 632,
645
- RestLongTime = 633,
646
- RestModerateTime = 634,
647
- RestOnBoat = 635,
648
- RestShortTime = 636,
649
- RestTime = 637,
650
- ReturnedToCivilization = 638,
651
- ReturningToCivilizationSetOffAgain = 639,
652
- ReturnsToLife = 640,
653
- Reverse = 641,
654
- Ride = 642,
655
- Sailing = 643,
656
- ScrollMaster = 644,
657
- ScrollProvidedNoUsefulInsight = 645,
658
- Seawater = 646,
659
- SeemsToHaveDrawnEnergy = 647,
660
- SetTrapOffButNoDamage = 648,
661
- SetUp = 649,
662
- ShadowInTheWater = 650,
663
- SkillHasRaised = 651,
664
- Skills = 652,
665
- Sleep = 653,
666
- Sleeping = 654,
667
- SleepOnBoat = 655,
668
- Slept = 656,
669
- SlitherSuckerConstricts = 657,
670
- SlitherSuckerFailedToRemove = 658,
671
- SlitherSuckerFailedToRemoveOuch = 659,
672
- SlitherSuckerJumpedOnHead = 660,
673
- SolarStill = 661,
674
- SomethingInTheWayOf = 662,
675
- SomethingInTheWayOfButcherFirst = 663,
676
- SomethingInTheWayOfFire = 664,
677
- SomethingInTheWayOfFishing = 665,
678
- SomethingInTheWayOfPerforming = 666,
679
- SomethingInTheWayOfPlacing = 667,
680
- SomethingInTheWayOfReleasing = 668,
681
- SomethingInTheWayOfSummoning = 669,
682
- SomethingInWayOfClosingDoor = 670,
683
- SoothedTheirBurnInjuries = 671,
684
- SoothedYourBurnInjuries = 672,
685
- SortedByCategory = 673,
686
- SortedByCraftableOnly = 674,
687
- SortedByName = 675,
688
- SortedBySkill = 676,
689
- SortedByUnlockedTime = 677,
690
- StaminaIsFull = 678,
691
- StartedFire = 679,
692
- StartTravelInWater = 680,
693
- StarvingToDeath = 681,
694
- StatAmount = 682,
695
- StatChangeUnknown = 683,
696
- StatGained = 684,
697
- StatIncreasing = 685,
698
- StatLost = 686,
699
- StatQuenched = 687,
700
- StatRegained = 688,
701
- StatSated = 689,
702
- SteppingOn = 690,
703
- Still = 691,
704
- StillHasNoWaterToPurify = 692,
705
- StillNoContainer = 693,
706
- StillTooColdToWork = 694,
707
- StirredUpClawWorm = 695,
708
- StirredUpCreature = 696,
709
- StoppedYourBleeding = 697,
710
- StopUsingVehicle = 698,
711
- SummonedGuardiansByDiggingTreasure = 699,
712
- SummonedGuardiansByLockpicking = 700,
713
- SummonVoidDwellerItem = 701,
714
- SummonVoidDwellerRinging = 702,
715
- SummonVoidDwellerShiver = 703,
716
- SunNotBrightEnoughToStartFire = 704,
717
- SwampWater = 705,
718
- Swimming = 706,
719
- TakenFromGroundBecomeTamed = 707,
720
- TeleportBlocked = 708,
721
- Teleported = 709,
722
- TheirFist = 710,
723
- TheirInventory = 711,
724
- ThePlant = 712,
725
- ThereIsNoContainerOnTheStill = 713,
726
- ThereIsNoSunToStartFire = 714,
727
- ThisCannotBeMilked = 715,
728
- Throw = 716,
729
- ThrownIntoDepths = 717,
730
- ThrownIntoObstacle = 718,
731
- ThrownIntoVoid = 719,
732
- TierGroup = 720,
733
- TileMakeCaveEntranceNearby = 721,
734
- TileMakeCaveEntrancePassable = 722,
735
- TileMakeCaveEntranceVoid = 723,
736
- Till = 724,
737
- Tilling = 725,
738
- TimeIs = 726,
739
- TimeIsDawn = 727,
740
- TimeIsDaytime = 728,
741
- TimeIsDusk = 729,
742
- TimeIsNighttime = 730,
743
- TimeIsSunrise = 731,
744
- TimeIsSunset = 732,
745
- ToFight = 733,
746
- TooDamaged = 734,
747
- TooExhaustedToJump = 735,
748
- Touching = 736,
749
- TrampledFire = 737,
750
- TrampledFireFail = 738,
751
- TrampledFirePartial = 739,
752
- TrampledIntoGround = 740,
753
- TrampleIntoGround = 741,
754
- Trampling = 742,
755
- TransmogrificationNoEffect = 743,
756
- TransmogrificationNotPossible = 744,
757
- Transmogrified = 745,
758
- TrapMissed = 746,
759
- TrapStoppedYou = 747,
760
- Traveling = 748,
761
- Treasure = 749,
762
- TreasureIsBlocked = 750,
763
- UiActionCannotUseInaccessibleItem = 751,
764
- UiActionCannotUseInThisSituation = 752,
765
- UiActionCannotUseNoItemHovered = 753,
766
- UiActionCannotUseNotInRange = 754,
767
- UiActionCannotUseOnThisIsland = 755,
768
- UiActionCannotUseRequiresCreature = 756,
769
- UiActionCannotUseRequiresDoodad = 757,
770
- UiActionCannotUseRequiresItem = 758,
771
- UiActionCannotUseRequiresNPC = 759,
772
- UiActionCannotUseRequiresVehicle = 760,
773
- UiDialogTradeIndicateTradeAlreadyTradedBuyDialogue1 = 761,
774
- UiDialogTradeIndicateTradeAlreadyTradedBuyDialogue2 = 762,
775
- UiDialogTradeIndicateTradeAlreadyTradedBuyDialogue3 = 763,
776
- UiDialogTradeIndicateTradeAlreadyTradedSellDialogue1 = 764,
777
- UiDialogTradeIndicateTradeAlreadyTradedSellDialogue2 = 765,
778
- UiDialogTradeIndicateTradeAlreadyTradedSellDialogue3 = 766,
779
- UiDialogTradeIndicateTradeTooMuchTradesDialogue1 = 767,
780
- UiDialogTradeIndicateTradeTooMuchTradesDialogue2 = 768,
781
- UiDialogTradeIndicateTradeTooMuchTradesDialogue3 = 769,
782
- UnhitchCreature = 770,
783
- Unknown = 771,
784
- Unlimited = 772,
785
- UnlockedChest = 773,
786
- UnpurifiedFreshWater = 774,
787
- UnpurifiedWaterInStill = 775,
788
- UnpurifiedWaterInTop = 776,
789
- Use = 777,
790
- UsingBareHands = 778,
791
- VehicleDefense = 779,
792
- Vulnerable = 780,
793
- Water = 781,
794
- WaterGathering = 782,
795
- WaterPutOutFire = 783,
796
- WellIsDry = 784,
797
- WellIsFull = 785,
798
- WildGoatRefusedToBeMilked = 786,
799
- WorkingYourselfIntoExhaustion = 787,
800
- WorkingYourselfIntoExhaustionAndDrowning = 788,
801
- WorldContainer = 789,
802
- You = 790,
803
- YouAbsorb = 791,
804
- YouApplied = 792,
805
- YouAreAlready = 793,
806
- YouAte = 794,
807
- YouBeginResting = 795,
808
- YouCannotDoThatYet = 796,
809
- YouCanNowCombatTheTides = 797,
810
- YouCrafted = 798,
811
- YouDoNotFindTreasureYet = 799,
812
- YouDrank = 800,
813
- YouDropTheTorch = 801,
814
- YouEnchant = 802,
815
- YouEquip = 803,
816
- YouExude = 804,
817
- YouExudeSome = 805,
818
- YouExudeSomeReasonConflicting = 806,
819
- YouExudeSomeReasonMax = 807,
820
- YouExudeSomeReasonProperties = 808,
821
- YouFailedTo = 809,
822
- YouFailedToExtinguishedFireFully = 810,
823
- YouFailedToHeal = 811,
824
- YouFailedToHealOther = 812,
825
- YouFire = 813,
826
- YouGathered = 814,
827
- YouHarvested = 815,
828
- YouHave = 816,
829
- YouHaveAlreadyLearned = 817,
830
- YouHaveBeenCut = 818,
831
- YouHaveCaged = 819,
832
- YouHaveCommanded = 820,
833
- YouHaveDied = 821,
834
- YouHaveHealedOther = 822,
835
- YouHaveKilled = 823,
836
- YouHaveNotCommanded = 824,
837
- YouHaveReleased = 825,
838
- YouHaveSummoned = 826,
839
- YouHaveTamed = 827,
840
- YouHaveUncaged = 828,
841
- YouNoticeBarren = 829,
842
- YouNoticeBecomeEnraged = 830,
843
- YouNoticeDying = 831,
844
- YouNoticeFertilityDecreasing = 832,
845
- YouNoticeFertilityIncreasing = 833,
846
- YouNoticeGrowing = 834,
847
- YouNoticeLavaCooling = 835,
848
- YouNoticeLavaHardening = 836,
849
- YouNoticePerish = 837,
850
- YouNoticePlantDamage = 838,
851
- YouNoticePlantRegenerated = 839,
852
- YouNoticeStumbleInjureItself = 840,
853
- YouNoticeTakeFromGround = 841,
854
- YouNoticeWoundsClosing = 842,
855
- YouOfferedToCreature = 843,
856
- YouOfferedToCreatureRejects = 844,
857
- YouOpen = 845,
858
- YouPacked = 846,
859
- YouPickedUp = 847,
860
- YouRefine = 848,
861
- YouReinforce = 849,
862
- YouRepair = 850,
863
- YouReturnFromCivilizationWith = 851,
864
- YourFist = 852,
865
- YourHands = 853,
866
- YourInventory = 854,
867
- YourIsland = 855,
868
- YouSeeALivingMushroomSpore = 856,
869
- YouSeeASkeletonCollapse = 857,
870
- YouSeeASlimeCombine = 858,
871
- YouSeeAZombieBleeding = 859,
872
- YouSeeCoolDown = 860,
873
- YouSeeDrop = 861,
874
- YouSeeEngulfFire = 862,
875
- YouSeeFireSpread = 863,
876
- YouSeeHelpingPlant = 864,
877
- YouSeeLay = 865,
878
- YouSeeLayingTrap = 866,
879
- YouSeeSpewLava = 867,
880
- YouSeeSpiderSpin = 868,
881
- YouSeeSpitAcid = 869,
882
- YouSeeSpringForth = 870,
883
- YouSeeSummon = 871,
884
- YouSeeSwampFlood = 872,
885
- YouSeeTrampling = 873,
886
- YouSetTheTrapOff = 874,
887
- YouStokeTheCreature = 875,
888
- YouSwapMainHandAndOffHand = 876,
889
- YouThrew = 877,
890
- YouTilled = 878,
891
- YouUnequip = 879,
892
- YouUsed = 880,
893
- YouViewTheItemsOn = 881,
894
- YouWhileTraveling = 882
331
+ CurseUpdateSunrise = 319,
332
+ CurseUpdateSunset = 320,
333
+ CurseUpdateWarning = 321,
334
+ Cut = 322,
335
+ CutHasHealed = 323,
336
+ CutLostHealth = 324,
337
+ CutWasBandaged = 325,
338
+ DamageAppeared = 326,
339
+ DamagedByPouring = 327,
340
+ DangerousMove = 328,
341
+ DangerousOpen = 329,
342
+ DayQuarter1 = 330,
343
+ DayQuarter2 = 331,
344
+ DayQuarter3 = 332,
345
+ DayQuarter4 = 333,
346
+ DealtNoDamageToYou = 334,
347
+ DeathBy = 335,
348
+ DeathByBleeding = 336,
349
+ DeathByBurning = 337,
350
+ DeathByChallengeWinner = 338,
351
+ DeathByConsumption = 339,
352
+ DeathByCut = 340,
353
+ DeathByDrowning = 341,
354
+ DeathByExhaustion = 342,
355
+ DeathByFistByPlayer = 343,
356
+ DeathByFrostbite = 344,
357
+ DeathByFrostbiteTemperatureShock = 345,
358
+ DeathByMalnutrition = 346,
359
+ DeathByPoison = 347,
360
+ DeathBySteppingOn = 348,
361
+ DeathByTrap = 349,
362
+ DeathByWeaponByPlayer = 350,
363
+ DedicatedTitleAlreadySelected = 351,
364
+ DedicatedTitleMilestoneNotAllowed = 352,
365
+ DestroyedFromUse = 353,
366
+ DeveloperContainerDesync = 354,
367
+ DidNotSeemToBeHurting = 355,
368
+ Dig = 356,
369
+ DigAway = 357,
370
+ Digging = 358,
371
+ Disassemble = 359,
372
+ Disassembling = 360,
373
+ DiscoveredCaveEntrance = 361,
374
+ DiscoveredColdInsulation = 362,
375
+ DiscoveredHeatInsulation = 363,
376
+ DiscoveredInTheBottle = 364,
377
+ DiscoveredLavaPassage = 365,
378
+ DiscoveredQuality = 366,
379
+ Dismantle = 367,
380
+ Dismantling = 368,
381
+ DismantlingRequires = 369,
382
+ Dismounted = 370,
383
+ DisplacedPuddles = 371,
384
+ DoNotProduceAnyResources = 372,
385
+ DoodadCauseStatus = 373,
386
+ DoodadGroupTier = 374,
387
+ DrewSurroundings = 375,
388
+ Dripstone = 376,
389
+ DroppedIntoDepths = 377,
390
+ DroppedIntoFire = 378,
391
+ DroppedIntoTheVoid = 379,
392
+ DryadSprouted = 380,
393
+ DueToDehydration = 381,
394
+ DueToStarvation = 382,
395
+ DugTreasureOut = 383,
396
+ DugTreasureOutSurprise = 384,
397
+ DumpContentsOfContainerInInventory = 385,
398
+ DyingOfDehydration = 386,
399
+ EarnedMilestone = 387,
400
+ Effective = 388,
401
+ EquipmentPreventedStatusEffects = 389,
402
+ ErrorHasOccured = 390,
403
+ Excavating = 391,
404
+ ExtinguishedFire = 392,
405
+ ExtinguishedLightSource = 393,
406
+ ExudeNotPossible = 394,
407
+ FailedToAbsorb = 395,
408
+ FailedToAddFuelToTorch = 396,
409
+ FailedToCage = 397,
410
+ FailedToCatchFish = 398,
411
+ FailedToCauseDamage = 399,
412
+ FailedToCauseYouDamage = 400,
413
+ FailedToCopy = 401,
414
+ FailedToDraw = 402,
415
+ FailedToEnchant = 403,
416
+ FailedToExude = 404,
417
+ FailedToIgniteTorch = 405,
418
+ FailedToPickLock = 406,
419
+ FailedToPreserve = 407,
420
+ FailedToRefine = 408,
421
+ FailedToReinforce = 409,
422
+ FailedToRepair = 410,
423
+ FailedToStartFire = 411,
424
+ FailedToTame = 412,
425
+ FailedToTransmogrify = 413,
426
+ FarOffLands = 414,
427
+ FeltBurningPainLostHealth = 415,
428
+ FeltFrostbitePainLostHealth = 416,
429
+ FewMinutes = 417,
430
+ Filled = 418,
431
+ FilledFrom = 419,
432
+ FireAroundYouIsWarm = 420,
433
+ FiredIntoObstacle = 421,
434
+ FireOverflowed = 422,
435
+ FireOverflowedFireElemental = 423,
436
+ FireSource = 424,
437
+ FishingWithNoBait = 425,
438
+ Floating = 426,
439
+ FreshWater = 427,
440
+ FromTheStill = 428,
441
+ FuelIsRequired = 429,
442
+ Gather = 430,
443
+ GatherDestroy = 431,
444
+ Gathering = 432,
445
+ GhostNoActions = 433,
446
+ GhostOf = 434,
447
+ GoatHasNoMilk = 435,
448
+ HackAway = 436,
449
+ HandProtectionPreventedInjury = 437,
450
+ HandsNotEffectiveFor = 438,
451
+ Harvest = 439,
452
+ Harvesting = 440,
453
+ HasBeenHurtByATrap = 441,
454
+ HasDecayed = 442,
455
+ HasHitYouForDamage = 443,
456
+ HasNoEffect = 444,
457
+ HasSetTrapOffNoDamage = 445,
458
+ HasSplit = 446,
459
+ HelpGrow = 447,
460
+ HitchAttempt = 448,
461
+ HitchCreature = 449,
462
+ HitchDisabled = 450,
463
+ HitchInUse = 451,
464
+ HitForDamage = 452,
465
+ HitYouForDamage = 453,
466
+ Hour = 454,
467
+ Hours = 455,
468
+ HurtHandsHittingWithoutWeapons = 456,
469
+ HurtHandsWithNoTool = 457,
470
+ IgnitedTorch = 458,
471
+ Ineffective = 459,
472
+ InjuredFromTrap = 460,
473
+ InNeedOfRepair = 461,
474
+ InteractingWithHasInjuredYouForDamage = 462,
475
+ InvalidContainer = 463,
476
+ IsInTheWayOfPickingUp = 464,
477
+ ItemFromWater = 465,
478
+ JoinedAServer = 466,
479
+ Jump = 467,
480
+ Killed = 468,
481
+ KnowledgeHasIncreased = 469,
482
+ LastPlaceYouLeftOff = 470,
483
+ LearnedHowToCreate = 471,
484
+ LikelyFailures = 472,
485
+ Limited = 473,
486
+ Lockpick = 474,
487
+ MapCompletedNotOfThisArea = 475,
488
+ MapDestroyed = 476,
489
+ MapNearlyDestroyed = 477,
490
+ MapNotOfThisArea = 478,
491
+ MaterialsDestroyed = 479,
492
+ MessageOfTheDay = 480,
493
+ MetabolismSlowed = 481,
494
+ Milk = 482,
495
+ Mine = 483,
496
+ Mining = 484,
497
+ MissedWith = 485,
498
+ MissedYouWith = 486,
499
+ MovedItem = 487,
500
+ MovedItemFailed = 488,
501
+ MoveOverTrapButDoNotSetOff = 489,
502
+ MultiplayerGamePaused = 490,
503
+ MultiplayerGameResumed = 491,
504
+ MultiplayerPlayerConnected = 492,
505
+ MultiplayerPlayerDied = 493,
506
+ MultiplayerPlayerDisconnected = 494,
507
+ MultiplayerPlayerJoined = 495,
508
+ MustBeEquippedToIgnite = 496,
509
+ Mysteriously = 497,
510
+ NearlyBurnedEquipmentProtectedYou = 498,
511
+ NeedToStartTravelsOutside = 499,
512
+ NeedWaterForBoat = 500,
513
+ NightQuarter1 = 501,
514
+ NightQuarter2 = 502,
515
+ NightQuarter3 = 503,
516
+ NightQuarter4 = 504,
517
+ No = 505,
518
+ NoAmmunitionForThatWeapon = 506,
519
+ NoCandleToStartFire = 507,
520
+ NoFireToStokeWith = 508,
521
+ NoFishAtLocation = 509,
522
+ NoGroundWater = 510,
523
+ NoInkToDrawMap = 511,
524
+ NoKindlingOrFuelItemsToStartFire = 512,
525
+ NoKindlingToStartFire = 513,
526
+ NoLongerFeelPainOfBeingBurned = 514,
527
+ NoLongerFeelPainOfBeingFrostbitten = 515,
528
+ NoLongerHostile = 516,
529
+ NoMoreRoomInContainer = 517,
530
+ NoPaperToDrawMap = 518,
531
+ NoRequiredItemToFireWeapon = 519,
532
+ NoReturnWithoutCompletingChallenges = 520,
533
+ NoRoomForImprovement = 521,
534
+ NoRoomForVehicle = 522,
535
+ NoRoomToDrop = 523,
536
+ NoRoomToSummon = 524,
537
+ NotEnoughPurifiedWaterYet = 525,
538
+ NotEnoughTreasureToReturn = 526,
539
+ NothingTo = 527,
540
+ NothingToGetFromThis = 528,
541
+ NothingToHarvestFromThisGather = 529,
542
+ NothingToSmother = 530,
543
+ NothingUsefulToHarvestYet = 531,
544
+ NoTinderToStartFire = 532,
545
+ NotSuitableToPlant = 533,
546
+ NoWaterInStill = 534,
547
+ NPCMerchantNewInventoryDialogue1 = 535,
548
+ NPCMerchantNewInventoryDialogue2 = 536,
549
+ NPCMerchantNewInventoryDialogue3 = 537,
550
+ NPCMerchantNewInventoryDialogue4 = 538,
551
+ NPCMerchantStartingDialogue1 = 539,
552
+ NPCMerchantStartingDialogue2 = 540,
553
+ NPCMerchantStartingDialogue3 = 541,
554
+ NPCMerchantStartingDialogue4 = 542,
555
+ NPCMerchantWelcomeCredit = 543,
556
+ NPCShipperShipToIsland = 544,
557
+ NPCShipperStartingDialogue1 = 545,
558
+ NPCShipperStartingDialogue2 = 546,
559
+ NPCShipperStartingDialogue3 = 547,
560
+ NPCShipperStartingDialogue4 = 548,
561
+ NPCWelcome = 549,
562
+ ObjectIsLocked = 550,
563
+ ObjectIsLockedAttemptToBreakIt = 551,
564
+ OfferAberrantFail = 552,
565
+ OfferAberrantFailButTamed = 553,
566
+ Open = 554,
567
+ OpenClose = 555,
568
+ OpenCollapse = 556,
569
+ OverEatingLostStamina = 557,
570
+ OverHydratingLostStamina = 558,
571
+ Pack = 559,
572
+ PaperTurnedToMush = 560,
573
+ ParryTheBlow = 561,
574
+ PetCreature = 562,
575
+ PickAway = 563,
576
+ PickUp = 564,
577
+ PickUpExcrement = 565,
578
+ PickUpTheItem = 566,
579
+ Place = 567,
580
+ PlacedItem = 568,
581
+ PlacedItemFailed = 569,
582
+ PlacedOnGround = 570,
583
+ PlantedInGround = 571,
584
+ PlantGatheredPlant = 572,
585
+ PlantGatheringWillDestroy = 573,
586
+ PlantHasResourcesToGather = 574,
587
+ PlantHasResourcesToHarvest = 575,
588
+ PlantHighlyFertile = 576,
589
+ Planting = 577,
590
+ PlantIsBare = 578,
591
+ PlantIsFertile = 579,
592
+ PlantIsInStage = 580,
593
+ PlantIsNotFertile = 581,
594
+ PlantIsSeeding = 582,
595
+ PlantNotReadyToHarvest = 583,
596
+ PlantReadyToGather = 584,
597
+ PlantReadyToGatherNotMaximal = 585,
598
+ PlantReadyToHarvest = 586,
599
+ PlantReadyToHarvestNotMaximal = 587,
600
+ PlayerHas = 588,
601
+ PlayerHasCompletedChallengeRequirement = 589,
602
+ PlayerHasWonChallenge = 590,
603
+ Poisoned = 591,
604
+ PoisonedLostHealth = 592,
605
+ PoisonWorkedItsCourse = 593,
606
+ PouredOut = 594,
607
+ PouredOutOnYourself = 595,
608
+ PouredWaterIntoStill = 596,
609
+ PourHarmedPlant = 597,
610
+ PourHealedPlant = 598,
611
+ PourHealedPlantFully = 599,
612
+ PourHealedPlantPartially = 600,
613
+ PourIncreasedFertility = 601,
614
+ Pouring = 602,
615
+ PourOverWatering = 603,
616
+ Prepare = 604,
617
+ Prepared = 605,
618
+ PreservedFood = 606,
619
+ PurifiedWaterInBottom = 607,
620
+ PurifiedWaterInStill = 608,
621
+ RandomEventsFire = 609,
622
+ ReduceLength = 610,
623
+ RefusedToBeTamed = 611,
624
+ Repair = 612,
625
+ RequiredForDisassembly = 613,
626
+ RequiresFireToBeLit = 614,
627
+ RequiresYouToBeAround = 615,
628
+ Resistant = 616,
629
+ Rest = 617,
630
+ Rested = 618,
631
+ Resting = 619,
632
+ RestingOnGroundNotEffective = 620,
633
+ RestInterrupted = 621,
634
+ RestInterruptedDamage = 622,
635
+ RestInterruptedDying = 623,
636
+ RestInterruptedLoudNoise = 624,
637
+ RestInterruptedPain = 625,
638
+ RestInterruptedStirring = 626,
639
+ RestInterruptedTooCold = 627,
640
+ RestInterruptedTooHot = 628,
641
+ RestInterruptedUncomfortablyCold = 629,
642
+ RestInterruptedUncomfortablyHot = 630,
643
+ RestInterruptedWaterPoured = 631,
644
+ RestLongTime = 632,
645
+ RestModerateTime = 633,
646
+ RestOnBoat = 634,
647
+ RestShortTime = 635,
648
+ RestTime = 636,
649
+ ReturnedToCivilization = 637,
650
+ ReturningToCivilizationSetOffAgain = 638,
651
+ ReturnsToLife = 639,
652
+ Reverse = 640,
653
+ Ride = 641,
654
+ Sailing = 642,
655
+ ScrollMaster = 643,
656
+ ScrollProvidedNoUsefulInsight = 644,
657
+ Seawater = 645,
658
+ SeemsToHaveDrawnEnergy = 646,
659
+ SetTrapOffButNoDamage = 647,
660
+ SetUp = 648,
661
+ ShadowInTheWater = 649,
662
+ SkillHasRaised = 650,
663
+ Skills = 651,
664
+ Sleep = 652,
665
+ Sleeping = 653,
666
+ SleepOnBoat = 654,
667
+ Slept = 655,
668
+ SlitherSuckerConstricts = 656,
669
+ SlitherSuckerFailedToRemove = 657,
670
+ SlitherSuckerFailedToRemoveOuch = 658,
671
+ SlitherSuckerJumpedOnHead = 659,
672
+ SolarStill = 660,
673
+ SomethingInTheWayOf = 661,
674
+ SomethingInTheWayOfButcherFirst = 662,
675
+ SomethingInTheWayOfFire = 663,
676
+ SomethingInTheWayOfFishing = 664,
677
+ SomethingInTheWayOfPerforming = 665,
678
+ SomethingInTheWayOfPlacing = 666,
679
+ SomethingInTheWayOfReleasing = 667,
680
+ SomethingInTheWayOfSummoning = 668,
681
+ SomethingInWayOfClosingDoor = 669,
682
+ SoothedTheirBurnInjuries = 670,
683
+ SoothedYourBurnInjuries = 671,
684
+ SortedByCategory = 672,
685
+ SortedByCraftableOnly = 673,
686
+ SortedByName = 674,
687
+ SortedBySkill = 675,
688
+ SortedByUnlockedTime = 676,
689
+ StaminaIsFull = 677,
690
+ StartedFire = 678,
691
+ StartTravelInWater = 679,
692
+ StarvingToDeath = 680,
693
+ StatAmount = 681,
694
+ StatChangeUnknown = 682,
695
+ StatGained = 683,
696
+ StatIncreasing = 684,
697
+ StatLost = 685,
698
+ StatQuenched = 686,
699
+ StatRegained = 687,
700
+ StatSated = 688,
701
+ SteppingOn = 689,
702
+ Still = 690,
703
+ StillHasNoWaterToPurify = 691,
704
+ StillNoContainer = 692,
705
+ StillTooColdToWork = 693,
706
+ StirredUpClawWorm = 694,
707
+ StirredUpCreature = 695,
708
+ StoppedYourBleeding = 696,
709
+ StopUsingVehicle = 697,
710
+ SummonedGuardiansByDiggingTreasure = 698,
711
+ SummonedGuardiansByLockpicking = 699,
712
+ SummonVoidDwellerItem = 700,
713
+ SummonVoidDwellerRinging = 701,
714
+ SummonVoidDwellerShiver = 702,
715
+ SunNotBrightEnoughToStartFire = 703,
716
+ SwampWater = 704,
717
+ Swimming = 705,
718
+ TakenFromGroundBecomeTamed = 706,
719
+ TeleportBlocked = 707,
720
+ Teleported = 708,
721
+ TheirFist = 709,
722
+ TheirInventory = 710,
723
+ ThePlant = 711,
724
+ ThereIsNoContainerOnTheStill = 712,
725
+ ThereIsNoSunToStartFire = 713,
726
+ ThisCannotBeMilked = 714,
727
+ Throw = 715,
728
+ ThrownIntoDepths = 716,
729
+ ThrownIntoObstacle = 717,
730
+ ThrownIntoVoid = 718,
731
+ TierGroup = 719,
732
+ TileMakeCaveEntranceNearby = 720,
733
+ TileMakeCaveEntrancePassable = 721,
734
+ TileMakeCaveEntranceVoid = 722,
735
+ Till = 723,
736
+ Tilling = 724,
737
+ TimeIs = 725,
738
+ TimeIsDawn = 726,
739
+ TimeIsDaytime = 727,
740
+ TimeIsDusk = 728,
741
+ TimeIsNighttime = 729,
742
+ TimeIsSunrise = 730,
743
+ TimeIsSunset = 731,
744
+ ToFight = 732,
745
+ TooDamaged = 733,
746
+ TooExhaustedToJump = 734,
747
+ Touching = 735,
748
+ TrampledFire = 736,
749
+ TrampledFireFail = 737,
750
+ TrampledFirePartial = 738,
751
+ TrampledIntoGround = 739,
752
+ TrampleIntoGround = 740,
753
+ Trampling = 741,
754
+ TransmogrificationNoEffect = 742,
755
+ TransmogrificationNotPossible = 743,
756
+ Transmogrified = 744,
757
+ TrapMissed = 745,
758
+ TrapStoppedYou = 746,
759
+ Traveling = 747,
760
+ Treasure = 748,
761
+ TreasureIsBlocked = 749,
762
+ UiActionCannotUseInaccessibleItem = 750,
763
+ UiActionCannotUseInThisSituation = 751,
764
+ UiActionCannotUseNoItemHovered = 752,
765
+ UiActionCannotUseNotInRange = 753,
766
+ UiActionCannotUseOnThisIsland = 754,
767
+ UiActionCannotUseRequiresCreature = 755,
768
+ UiActionCannotUseRequiresDoodad = 756,
769
+ UiActionCannotUseRequiresItem = 757,
770
+ UiActionCannotUseRequiresNPC = 758,
771
+ UiActionCannotUseRequiresVehicle = 759,
772
+ UiDialogTradeIndicateTradeAlreadyTradedBuyDialogue1 = 760,
773
+ UiDialogTradeIndicateTradeAlreadyTradedBuyDialogue2 = 761,
774
+ UiDialogTradeIndicateTradeAlreadyTradedBuyDialogue3 = 762,
775
+ UiDialogTradeIndicateTradeAlreadyTradedSellDialogue1 = 763,
776
+ UiDialogTradeIndicateTradeAlreadyTradedSellDialogue2 = 764,
777
+ UiDialogTradeIndicateTradeAlreadyTradedSellDialogue3 = 765,
778
+ UiDialogTradeIndicateTradeTooMuchTradesDialogue1 = 766,
779
+ UiDialogTradeIndicateTradeTooMuchTradesDialogue2 = 767,
780
+ UiDialogTradeIndicateTradeTooMuchTradesDialogue3 = 768,
781
+ UnhitchCreature = 769,
782
+ Unknown = 770,
783
+ Unlimited = 771,
784
+ UnlockedChest = 772,
785
+ UnpurifiedFreshWater = 773,
786
+ UnpurifiedWaterInStill = 774,
787
+ UnpurifiedWaterInTop = 775,
788
+ Use = 776,
789
+ UsingBareHands = 777,
790
+ VehicleDefense = 778,
791
+ Vulnerable = 779,
792
+ Water = 780,
793
+ WaterGathering = 781,
794
+ WaterPutOutFire = 782,
795
+ WellIsDry = 783,
796
+ WellIsFull = 784,
797
+ WildGoatRefusedToBeMilked = 785,
798
+ WorkingYourselfIntoExhaustion = 786,
799
+ WorkingYourselfIntoExhaustionAndDrowning = 787,
800
+ WorldContainer = 788,
801
+ You = 789,
802
+ YouAbsorb = 790,
803
+ YouApplied = 791,
804
+ YouAreAlready = 792,
805
+ YouAte = 793,
806
+ YouBeginResting = 794,
807
+ YouCannotDoThatYet = 795,
808
+ YouCanNowCombatTheTides = 796,
809
+ YouCrafted = 797,
810
+ YouDoNotFindTreasureYet = 798,
811
+ YouDrank = 799,
812
+ YouDropTheTorch = 800,
813
+ YouEnchant = 801,
814
+ YouEquip = 802,
815
+ YouExude = 803,
816
+ YouExudeSome = 804,
817
+ YouExudeSomeReasonConflicting = 805,
818
+ YouExudeSomeReasonMax = 806,
819
+ YouExudeSomeReasonProperties = 807,
820
+ YouFailedTo = 808,
821
+ YouFailedToExtinguishedFireFully = 809,
822
+ YouFailedToHeal = 810,
823
+ YouFailedToHealOther = 811,
824
+ YouFire = 812,
825
+ YouGathered = 813,
826
+ YouHarvested = 814,
827
+ YouHave = 815,
828
+ YouHaveAlreadyLearned = 816,
829
+ YouHaveBeenCut = 817,
830
+ YouHaveCaged = 818,
831
+ YouHaveCommanded = 819,
832
+ YouHaveDied = 820,
833
+ YouHaveHealedOther = 821,
834
+ YouHaveKilled = 822,
835
+ YouHaveNotCommanded = 823,
836
+ YouHaveReleased = 824,
837
+ YouHaveSummoned = 825,
838
+ YouHaveTamed = 826,
839
+ YouHaveUncaged = 827,
840
+ YouNoticeBecomeEnraged = 828,
841
+ YouNoticeDying = 829,
842
+ YouNoticeFertilityDecreasing = 830,
843
+ YouNoticeFertilityIncreasing = 831,
844
+ YouNoticeGrowing = 832,
845
+ YouNoticeLavaCooling = 833,
846
+ YouNoticeLavaHardening = 834,
847
+ YouNoticePerish = 835,
848
+ YouNoticePlantDamage = 836,
849
+ YouNoticePlantRegenerated = 837,
850
+ YouNoticeStumbleInjureItself = 838,
851
+ YouNoticeTakeFromGround = 839,
852
+ YouNoticeWoundsClosing = 840,
853
+ YouOfferedToCreature = 841,
854
+ YouOfferedToCreatureRejects = 842,
855
+ YouOpen = 843,
856
+ YouPacked = 844,
857
+ YouPickedUp = 845,
858
+ YouRefine = 846,
859
+ YouReinforce = 847,
860
+ YouRepair = 848,
861
+ YouReturnFromCivilizationWith = 849,
862
+ YourFist = 850,
863
+ YourHands = 851,
864
+ YourInventory = 852,
865
+ YourIsland = 853,
866
+ YouSeeALivingMushroomSpore = 854,
867
+ YouSeeASkeletonCollapse = 855,
868
+ YouSeeASlimeCombine = 856,
869
+ YouSeeAZombieBleeding = 857,
870
+ YouSeeCoolDown = 858,
871
+ YouSeeDrop = 859,
872
+ YouSeeEngulfFire = 860,
873
+ YouSeeFireSpread = 861,
874
+ YouSeeHelpingPlant = 862,
875
+ YouSeeLay = 863,
876
+ YouSeeLayingTrap = 864,
877
+ YouSeeSpewLava = 865,
878
+ YouSeeSpiderSpin = 866,
879
+ YouSeeSpitAcid = 867,
880
+ YouSeeSpringForth = 868,
881
+ YouSeeSummon = 869,
882
+ YouSeeSwampFlood = 870,
883
+ YouSeeTrampling = 871,
884
+ YouSetTheTrapOff = 872,
885
+ YouStokeTheCreature = 873,
886
+ YouSwapMainHandAndOffHand = 874,
887
+ YouThrew = 875,
888
+ YouTilled = 876,
889
+ YouUnequip = 877,
890
+ YouUsed = 878,
891
+ YouViewTheItemsOn = 879,
892
+ YouWhileTraveling = 880
895
893
  }
896
894
  export default Message;