@wayward/types 2.13.0-beta.dev.20230422.1 → 2.13.0-beta.dev.20230424.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 (71) hide show
  1. package/definitions/game/audio/Music.d.ts +1 -2
  2. package/definitions/game/audio/SoundEffects.d.ts +1 -1
  3. package/definitions/game/game/Game.d.ts +1 -0
  4. package/definitions/game/game/doodad/Doodad.d.ts +1 -1
  5. package/definitions/game/game/doodad/DoodadManager.d.ts +3 -4
  6. package/definitions/game/game/doodad/IDoodad.d.ts +2 -2
  7. package/definitions/game/game/entity/Entity.d.ts +4 -1
  8. package/definitions/game/game/entity/IHuman.d.ts +10 -10
  9. package/definitions/game/game/entity/action/actions/SetCreatureAi.d.ts +4 -1
  10. package/definitions/game/game/entity/action/usable/IUsableAction.d.ts +1 -1
  11. package/definitions/game/game/entity/action/usable/UsableActionType.d.ts +2 -1
  12. package/definitions/game/game/entity/action/usable/actions/UsableActionsDynamic.d.ts +3 -1
  13. package/definitions/game/game/entity/npc/npcs/Merchant.d.ts +7 -0
  14. package/definitions/game/game/entity/player/Customizations.d.ts +4 -4
  15. package/definitions/game/game/entity/player/IMessageManager.d.ts +2 -0
  16. package/definitions/game/game/entity/player/MessageManager.d.ts +3 -0
  17. package/definitions/game/game/entity/player/note/NoteManager.d.ts +1 -1
  18. package/definitions/game/game/entity/player/quest/Quests.d.ts +1 -2
  19. package/definitions/game/game/entity/player/quest/quest/Challenge.d.ts +2 -1
  20. package/definitions/game/game/entity/player/quest/quest/Quest.d.ts +1 -1
  21. package/definitions/game/game/inspection/handlers/TilePositionInspection.d.ts +1 -1
  22. package/definitions/game/game/inspection/infoProviders/CivilizationScore.d.ts +1 -1
  23. package/definitions/game/game/inspection/infoProviders/ContainedItems.d.ts +1 -1
  24. package/definitions/game/game/inspection/infoProviders/DoodadSkill.d.ts +1 -1
  25. package/definitions/game/game/island/IIsland.d.ts +2 -3
  26. package/definitions/game/game/island/Island.d.ts +5 -6
  27. package/definitions/game/game/island/IslandManager.d.ts +1 -1
  28. package/definitions/game/game/island/Port.d.ts +43 -0
  29. package/definitions/game/game/item/IItem.d.ts +13 -5
  30. package/definitions/game/game/item/IItemManager.d.ts +16 -2
  31. package/definitions/game/game/item/ItemDescriptions.d.ts +2 -2
  32. package/definitions/game/game/item/ItemFinder.d.ts +2 -2
  33. package/definitions/game/game/item/ItemManager.d.ts +52 -30
  34. package/definitions/game/game/mapping/IRegion.d.ts +22 -0
  35. package/definitions/game/game/temperature/TemperatureManager.d.ts +2 -2
  36. package/definitions/game/language/Dictionary.d.ts +2 -1
  37. package/definitions/game/language/DictionaryMap.d.ts +17 -15
  38. package/definitions/game/language/Translation.d.ts +4 -1
  39. package/definitions/game/language/TranslationsProvider.d.ts +1 -1
  40. package/definitions/game/language/dictionary/Message.d.ts +333 -329
  41. package/definitions/game/language/dictionary/Misc.d.ts +5 -4
  42. package/definitions/game/language/dictionary/UiTranslation.d.ts +791 -786
  43. package/definitions/game/language/english/creature/AiTypes.d.ts +1 -1
  44. package/definitions/game/language/english/creature/Corpses.d.ts +1 -1
  45. package/definitions/game/language/english/game/Regions.d.ts +13 -0
  46. package/definitions/game/language/english/game/WorldLayers.d.ts +1 -1
  47. package/definitions/game/language/english/game/islandName/IslandNameBiomeNouns.d.ts +1 -1
  48. package/definitions/game/language/english/game/islandName/IslandNameOverrunWithCreatureDescriptors.d.ts +1 -1
  49. package/definitions/game/language/english/ui/ModLoadErrors.d.ts +1 -1
  50. package/definitions/game/language/english/ui/UsableActionTypes.d.ts +2 -2
  51. package/definitions/game/language/utility/TranslationSorter.d.ts +3 -3
  52. package/definitions/game/renderer/Overlays.d.ts +1 -1
  53. package/definitions/game/renderer/tile/atlas/TileAtlas.d.ts +15 -14
  54. package/definitions/game/resource/IResourcePath.d.ts +1 -1
  55. package/definitions/game/save/serializer/Serializer.d.ts +1 -1
  56. package/definitions/game/ui/IUi.d.ts +2 -1
  57. package/definitions/game/ui/component/dropdown/IslandPortsDropdown.d.ts +1 -1
  58. package/definitions/game/ui/old/OldUi.d.ts +0 -2
  59. package/definitions/game/ui/old/screens/InGameScreen.d.ts +11 -4
  60. package/definitions/game/ui/screen/screens/game/dialog/BookDialog.d.ts +2 -2
  61. package/definitions/game/ui/screen/screens/game/dialog/CraftingDialog.d.ts +4 -4
  62. package/definitions/game/ui/screen/screens/game/dialog/IslandsShippingDialog.d.ts +5 -0
  63. package/definitions/game/ui/screen/screens/game/dialog/MapDialog.d.ts +3 -3
  64. package/definitions/game/ui/screen/screens/game/dialog/islands/IslandsDialog.d.ts +5 -1
  65. package/definitions/game/ui/screen/screens/game/static/ActionBar.d.ts +1 -1
  66. package/definitions/game/ui/screen/screens/game/static/menubar/MenuBarButtonDescriptions.d.ts +1 -2
  67. package/definitions/game/ui/screen/screens/game/static/stats/StatDisplayDescriptions.d.ts +1 -2
  68. package/definitions/game/ui/screen/screens/menu/menus/character/Swatch.d.ts +1 -1
  69. package/definitions/game/utilities/Version.d.ts +15 -9
  70. package/definitions/game/utilities/enum/Enums.d.ts +1 -1
  71. package/package.json +1 -1
@@ -451,334 +451,338 @@ declare enum Message {
451
451
  NPCMerchantStartingDialog3 = 439,
452
452
  NPCMerchantStartingDialog4 = 440,
453
453
  NPCMerchantWelcomeCredit = 441,
454
- NPCShipperShipToIsland = 442,
455
- NPCShipperStartingDialog1 = 443,
456
- NPCShipperStartingDialog2 = 444,
457
- NPCShipperStartingDialog3 = 445,
458
- NPCShipperStartingDialog4 = 446,
459
- NPCWelcome = 447,
460
- ObjectIsLocked = 448,
461
- ObjectIsLockedAttemptToBreakIt = 449,
462
- OfferAberrantFail = 450,
463
- OfferAberrantFailButTamed = 451,
464
- Open = 452,
465
- OpenClose = 453,
466
- OverEatingLostStamina = 454,
467
- OverHydratingLostStamina = 455,
468
- Pack = 456,
469
- PaperTurnedToMush = 457,
470
- ParryTheBlow = 458,
471
- Pet = 459,
472
- PetCreature = 460,
473
- PickAway = 461,
474
- PickUp = 462,
475
- PickUpExcrement = 463,
476
- PickUpTheItem = 464,
477
- Place = 465,
478
- PlacedOnGround = 466,
479
- Plant = 467,
480
- PlantedInGround = 468,
481
- PlantGatheredPlant = 469,
482
- PlantGatheringWillDestroy = 470,
483
- PlantHasResourcesToGather = 471,
484
- PlantHasResourcesToHarvest = 472,
485
- PlantHighlyFertile = 473,
486
- Planting = 474,
487
- PlantIsBare = 475,
488
- PlantIsFertile = 476,
489
- PlantIsInStage = 477,
490
- PlantIsNotFertile = 478,
491
- PlantNotReadyToHarvest = 479,
492
- PlantReadyToGather = 480,
493
- PlantReadyToGatherNotMaximal = 481,
494
- PlantReadyToHarvest = 482,
495
- PlantReadyToHarvestNotMaximal = 483,
496
- Player = 484,
497
- PlayerHas = 485,
498
- PlayerHasCompletedChallengeRequirement = 486,
499
- PlayerHasWonChallenge = 487,
500
- Poisoned = 488,
501
- PoisonedLostHealth = 489,
502
- PoisonWorkedItsCourse = 490,
503
- Positively = 491,
504
- PouredOut = 492,
505
- PouredOutOnYourself = 493,
506
- PouredWaterIntoStill = 494,
507
- PourHarmedPlant = 495,
508
- PourHealedPlant = 496,
509
- PourHealedPlantFully = 497,
510
- PourHealedPlantPartially = 498,
511
- PourIncreasedFertility = 499,
512
- Pouring = 500,
513
- Prepare = 501,
514
- Prepared = 502,
515
- Preserve = 503,
516
- PreservedFood = 504,
517
- PurifiedWaterInStill = 505,
518
- RandomEventsFire = 506,
519
- ReduceLength = 507,
520
- Refine = 508,
521
- RefusedToBeTamed = 509,
522
- Reinforce = 510,
523
- Repair = 511,
524
- ReputationDecreased = 512,
525
- ReputationIncreased = 513,
526
- ReputationUpdate = 514,
527
- RequiredForDisassembly = 515,
528
- RequiresFireToBeLit = 516,
529
- RequiresYouFacingFireSource = 517,
530
- RequiresYouToBeAround = 518,
531
- Resistant = 519,
532
- Rest = 520,
533
- Rested = 521,
534
- Resting = 522,
535
- RestingOnGroundNotEffective = 523,
536
- RestInterrupted = 524,
537
- RestInterruptedDamage = 525,
538
- RestInterruptedDying = 526,
539
- RestInterruptedLoudNoise = 527,
540
- RestInterruptedPain = 528,
541
- RestInterruptedStirring = 529,
542
- RestInterruptedWaterPoured = 530,
543
- RestLongTime = 531,
544
- RestModerateTime = 532,
545
- RestOnBoat = 533,
546
- RestShortTime = 534,
547
- RestTime = 535,
548
- ReturnedToCivilization = 536,
549
- ReturningToCivilizationSetOffAgain = 537,
550
- ReturnsToLife = 538,
551
- Reverse = 539,
552
- Sailing = 540,
553
- ScrollMaster = 541,
554
- ScrollProvidedNoUsefulInsight = 542,
555
- Seawater = 543,
556
- SeemsToHaveDrawnEnergy = 544,
557
- SetTrapOffButNoDamage = 545,
558
- SetUp = 546,
559
- ShadowInTheWater = 547,
560
- Skill = 548,
561
- SkillHasRaised = 549,
562
- Skills = 550,
563
- Sleep = 551,
564
- Sleeping = 552,
565
- SleepOnBoat = 553,
566
- Slept = 554,
567
- SlitherSuckerConstricts = 555,
568
- SlitherSuckerJumpedOnHead = 556,
569
- SomethingInTheWayOf = 557,
570
- SomethingInTheWayOfButcherFirst = 558,
571
- SomethingInTheWayOfFire = 559,
572
- SomethingInTheWayOfFishing = 560,
573
- SomethingInTheWayOfPerforming = 561,
574
- SomethingInTheWayOfPlacing = 562,
575
- SomethingInTheWayOfReleasing = 563,
576
- SomethingInTheWayOfSummoning = 564,
577
- SomethingInWayOfClosingDoor = 565,
578
- SoothedTheirBurnInjuries = 566,
579
- SoothedYourBurnInjuries = 567,
580
- Sort = 568,
581
- SortedByBestCraftingRequirements = 569,
582
- SortedByCategory = 570,
583
- SortedByCraftableOnly = 571,
584
- SortedByDecay = 572,
585
- SortedByDurability = 573,
586
- SortedByGroup = 574,
587
- SortedByMagical = 575,
588
- SortedByName = 576,
589
- SortedByQuality = 577,
590
- SortedByRecent = 578,
591
- SortedBySkill = 579,
592
- SortedByUnlockedTime = 580,
593
- SortedByWeight = 581,
594
- SortedByWorth = 582,
595
- StaminaIsFull = 583,
596
- StartedFire = 584,
597
- StartTravelInWater = 585,
598
- StarvingToDeath = 586,
599
- StatAmount = 587,
600
- StatGained = 588,
601
- StatIncreasing = 589,
602
- StatLost = 590,
603
- StatQuenched = 591,
604
- StatRegained = 592,
605
- StatSated = 593,
606
- SteppingOn = 594,
607
- StillHasNoWaterToPurify = 595,
608
- StirredUpClawWorm = 596,
609
- StirredUpCreature = 597,
610
- StoppedYourBleeding = 598,
611
- StopUsingVehicle = 599,
612
- Strength = 600,
613
- SummonedGuardiansByDiggingTreasure = 601,
614
- SummonedGuardiansByLockpicking = 602,
615
- SummonVoidDwellerItem = 603,
616
- SummonVoidDwellerRinging = 604,
617
- SummonVoidDwellerShiver = 605,
618
- SunNotBrightEnoughToStartFire = 606,
619
- SwampWater = 607,
620
- Swimming = 608,
621
- TakenFromGroundBecomeTamed = 609,
622
- TeleportBlocked = 610,
623
- Teleported = 611,
624
- ThanksBuying = 612,
625
- ThanksSelling = 613,
626
- TheirFist = 614,
627
- ThePlant = 615,
628
- ThereIsNoContainerOnTheStill = 616,
629
- ThereIsNoSunToStartFire = 617,
630
- ThisCannotBeMilked = 618,
631
- Throw = 619,
632
- ThrownIntoDepths = 620,
633
- ThrownIntoObstacle = 621,
634
- ThrownIntoVoid = 622,
635
- Tier = 623,
636
- TierGroup = 624,
637
- Till = 625,
638
- Tilling = 626,
639
- TimeIs = 627,
640
- TimeIsDawn = 628,
641
- TimeIsDaytime = 629,
642
- TimeIsDusk = 630,
643
- TimeIsNighttime = 631,
644
- TimeIsSunrise = 632,
645
- TimeIsSunset = 633,
646
- ToFight = 634,
647
- TooDamaged = 635,
648
- TooExhaustedToJump = 636,
649
- Touching = 637,
650
- TradingWith = 638,
651
- TrampledFire = 639,
652
- TrampledIntoGround = 640,
653
- TrampleIntoGround = 641,
654
- Trampling = 642,
655
- TransmogrificationNotPossible = 643,
656
- Transmogrified = 644,
657
- Transmogrify = 645,
658
- TrapMissed = 646,
659
- TrapStoppedYou = 647,
660
- Traveling = 648,
661
- TreasureIsBlocked = 649,
662
- UiActionCannotUseRequiresCreature = 650,
663
- UiActionCannotUseRequiresDoodad = 651,
664
- UiActionCannotUseRequiresItem = 652,
665
- Unhitch = 653,
666
- UnhitchCreature = 654,
667
- Unknown = 655,
668
- Unlimited = 656,
669
- UnlockedChest = 657,
670
- UnpurifiedFreshWater = 658,
671
- UnpurifiedWaterInStill = 659,
672
- Use = 660,
673
- UsingBareHands = 661,
674
- VehicleDefense = 662,
675
- Vulnerable = 663,
676
- Water = 664,
677
- WaterGathering = 665,
678
- WaterPutOutFire = 666,
679
- WellIsDry = 667,
680
- WellIsFull = 668,
681
- WildGoatRefusedToBeMilked = 669,
682
- WillNotTrade = 670,
683
- WorkingYourselfIntoExhaustion = 671,
684
- WorkingYourselfIntoExhaustionAndDrowning = 672,
685
- You = 673,
686
- YouAbsorb = 674,
687
- YouApplied = 675,
688
- YouAreAlready = 676,
689
- YouAte = 677,
690
- YouBeginResting = 678,
691
- YouCannotDoThatYet = 679,
692
- YouCanNowCombatTheTides = 680,
693
- YouCrafted = 681,
694
- YouDoNotFindTreasureYet = 682,
695
- YouDrank = 683,
696
- YouDropTheTorch = 684,
697
- YouEnchant = 685,
698
- YouEquip = 686,
699
- YouExude = 687,
700
- YouExudeSome = 688,
701
- YouExudeSomeReasonConflicting = 689,
702
- YouExudeSomeReasonMax = 690,
703
- YouExudeSomeReasonProperties = 691,
704
- YouFailedTo = 692,
705
- YouFailedToExtinguishedFireFully = 693,
706
- YouFailedToHeal = 694,
707
- YouFailedToHealOther = 695,
708
- YouFire = 696,
709
- YouGathered = 697,
710
- YouGatheredAndDropped = 698,
711
- YouHarvested = 699,
712
- YouHarvestedAndDropped = 700,
713
- YouHave = 701,
714
- YouHaveAlreadyLearned = 702,
715
- YouHaveBeenCut = 703,
716
- YouHaveCaged = 704,
717
- YouHaveCommanded = 705,
718
- YouHaveDied = 706,
719
- YouHaveHealedOther = 707,
720
- YouHaveKilled = 708,
721
- YouHaveReleased = 709,
722
- YouHaveSummoned = 710,
723
- YouHaveTamed = 711,
724
- YouHaveUncaged = 712,
725
- YouNeedMoreCredit = 713,
726
- YouNoticeBarren = 714,
727
- YouNoticeBecomeEnraged = 715,
728
- YouNoticeDying = 716,
729
- YouNoticeFertilityDecreasing = 717,
730
- YouNoticeFertilityIncreasing = 718,
731
- YouNoticeGrowing = 719,
732
- YouNoticeLavaCooling = 720,
733
- YouNoticeLavaHardening = 721,
734
- YouNoticePerish = 722,
735
- YouNoticePlantDamage = 723,
736
- YouNoticePlantRegenerated = 724,
737
- YouNoticeRegrowing = 725,
738
- YouNoticeStumbleInjureItself = 726,
739
- YouNoticeTakeFromGround = 727,
740
- YouNoticeWoundsClosing = 728,
741
- YouNoticeZombieHorde = 729,
742
- YouOfferedToCreature = 730,
743
- YouOfferedToCreatureRejects = 731,
744
- YouOpen = 732,
745
- YouPacked = 733,
746
- YouPickedUp = 734,
747
- YouRefine = 735,
748
- YouReinforce = 736,
749
- YouRepair = 737,
750
- YouReturnFromCivilizationWith = 738,
751
- YourFist = 739,
752
- YourHands = 740,
753
- YourInventory = 741,
754
- YourIsland = 742,
755
- YourRubbingNoEffect = 743,
756
- YouRub = 744,
757
- YouSee = 745,
758
- YouSeeALivingMushroomSpore = 746,
759
- YouSeeASkeletonCollapse = 747,
760
- YouSeeASlimeCombine = 748,
761
- YouSeeAZombieBleeding = 749,
762
- YouSeeCoolDown = 750,
763
- YouSeeDrop = 751,
764
- YouSeeEngulfFire = 752,
765
- YouSeeFireSpread = 753,
766
- YouSeeHelpingPlant = 754,
767
- YouSeeLay = 755,
768
- YouSeeLayingTrap = 756,
769
- YouSeeSpewLava = 757,
770
- YouSeeSpitAcid = 758,
771
- YouSeeSpringForth = 759,
772
- YouSeeSummon = 760,
773
- YouSeeSwampFlood = 761,
774
- YouSeeTrampling = 762,
775
- YouSetTheTrapOff = 763,
776
- YouStokeTheCreature = 764,
777
- YouSwapMainHandAndOffHand = 765,
778
- YouThrew = 766,
779
- YouTilled = 767,
780
- YouUnequip = 768,
781
- YouUsed = 769,
782
- YouWhileTraveling = 770
454
+ NPCMerchantNewInventoryDialog1 = 442,
455
+ NPCMerchantNewInventoryDialog2 = 443,
456
+ NPCMerchantNewInventoryDialog3 = 444,
457
+ NPCMerchantNewInventoryDialog4 = 445,
458
+ NPCShipperShipToIsland = 446,
459
+ NPCShipperStartingDialog1 = 447,
460
+ NPCShipperStartingDialog2 = 448,
461
+ NPCShipperStartingDialog3 = 449,
462
+ NPCShipperStartingDialog4 = 450,
463
+ NPCWelcome = 451,
464
+ ObjectIsLocked = 452,
465
+ ObjectIsLockedAttemptToBreakIt = 453,
466
+ OfferAberrantFail = 454,
467
+ OfferAberrantFailButTamed = 455,
468
+ Open = 456,
469
+ OpenClose = 457,
470
+ OverEatingLostStamina = 458,
471
+ OverHydratingLostStamina = 459,
472
+ Pack = 460,
473
+ PaperTurnedToMush = 461,
474
+ ParryTheBlow = 462,
475
+ Pet = 463,
476
+ PetCreature = 464,
477
+ PickAway = 465,
478
+ PickUp = 466,
479
+ PickUpExcrement = 467,
480
+ PickUpTheItem = 468,
481
+ Place = 469,
482
+ PlacedOnGround = 470,
483
+ Plant = 471,
484
+ PlantedInGround = 472,
485
+ PlantGatheredPlant = 473,
486
+ PlantGatheringWillDestroy = 474,
487
+ PlantHasResourcesToGather = 475,
488
+ PlantHasResourcesToHarvest = 476,
489
+ PlantHighlyFertile = 477,
490
+ Planting = 478,
491
+ PlantIsBare = 479,
492
+ PlantIsFertile = 480,
493
+ PlantIsInStage = 481,
494
+ PlantIsNotFertile = 482,
495
+ PlantNotReadyToHarvest = 483,
496
+ PlantReadyToGather = 484,
497
+ PlantReadyToGatherNotMaximal = 485,
498
+ PlantReadyToHarvest = 486,
499
+ PlantReadyToHarvestNotMaximal = 487,
500
+ Player = 488,
501
+ PlayerHas = 489,
502
+ PlayerHasCompletedChallengeRequirement = 490,
503
+ PlayerHasWonChallenge = 491,
504
+ Poisoned = 492,
505
+ PoisonedLostHealth = 493,
506
+ PoisonWorkedItsCourse = 494,
507
+ Positively = 495,
508
+ PouredOut = 496,
509
+ PouredOutOnYourself = 497,
510
+ PouredWaterIntoStill = 498,
511
+ PourHarmedPlant = 499,
512
+ PourHealedPlant = 500,
513
+ PourHealedPlantFully = 501,
514
+ PourHealedPlantPartially = 502,
515
+ PourIncreasedFertility = 503,
516
+ Pouring = 504,
517
+ Prepare = 505,
518
+ Prepared = 506,
519
+ Preserve = 507,
520
+ PreservedFood = 508,
521
+ PurifiedWaterInStill = 509,
522
+ RandomEventsFire = 510,
523
+ ReduceLength = 511,
524
+ Refine = 512,
525
+ RefusedToBeTamed = 513,
526
+ Reinforce = 514,
527
+ Repair = 515,
528
+ ReputationDecreased = 516,
529
+ ReputationIncreased = 517,
530
+ ReputationUpdate = 518,
531
+ RequiredForDisassembly = 519,
532
+ RequiresFireToBeLit = 520,
533
+ RequiresYouFacingFireSource = 521,
534
+ RequiresYouToBeAround = 522,
535
+ Resistant = 523,
536
+ Rest = 524,
537
+ Rested = 525,
538
+ Resting = 526,
539
+ RestingOnGroundNotEffective = 527,
540
+ RestInterrupted = 528,
541
+ RestInterruptedDamage = 529,
542
+ RestInterruptedDying = 530,
543
+ RestInterruptedLoudNoise = 531,
544
+ RestInterruptedPain = 532,
545
+ RestInterruptedStirring = 533,
546
+ RestInterruptedWaterPoured = 534,
547
+ RestLongTime = 535,
548
+ RestModerateTime = 536,
549
+ RestOnBoat = 537,
550
+ RestShortTime = 538,
551
+ RestTime = 539,
552
+ ReturnedToCivilization = 540,
553
+ ReturningToCivilizationSetOffAgain = 541,
554
+ ReturnsToLife = 542,
555
+ Reverse = 543,
556
+ Sailing = 544,
557
+ ScrollMaster = 545,
558
+ ScrollProvidedNoUsefulInsight = 546,
559
+ Seawater = 547,
560
+ SeemsToHaveDrawnEnergy = 548,
561
+ SetTrapOffButNoDamage = 549,
562
+ SetUp = 550,
563
+ ShadowInTheWater = 551,
564
+ Skill = 552,
565
+ SkillHasRaised = 553,
566
+ Skills = 554,
567
+ Sleep = 555,
568
+ Sleeping = 556,
569
+ SleepOnBoat = 557,
570
+ Slept = 558,
571
+ SlitherSuckerConstricts = 559,
572
+ SlitherSuckerJumpedOnHead = 560,
573
+ SomethingInTheWayOf = 561,
574
+ SomethingInTheWayOfButcherFirst = 562,
575
+ SomethingInTheWayOfFire = 563,
576
+ SomethingInTheWayOfFishing = 564,
577
+ SomethingInTheWayOfPerforming = 565,
578
+ SomethingInTheWayOfPlacing = 566,
579
+ SomethingInTheWayOfReleasing = 567,
580
+ SomethingInTheWayOfSummoning = 568,
581
+ SomethingInWayOfClosingDoor = 569,
582
+ SoothedTheirBurnInjuries = 570,
583
+ SoothedYourBurnInjuries = 571,
584
+ Sort = 572,
585
+ SortedByBestCraftingRequirements = 573,
586
+ SortedByCategory = 574,
587
+ SortedByCraftableOnly = 575,
588
+ SortedByDecay = 576,
589
+ SortedByDurability = 577,
590
+ SortedByGroup = 578,
591
+ SortedByMagical = 579,
592
+ SortedByName = 580,
593
+ SortedByQuality = 581,
594
+ SortedByRecent = 582,
595
+ SortedBySkill = 583,
596
+ SortedByUnlockedTime = 584,
597
+ SortedByWeight = 585,
598
+ SortedByWorth = 586,
599
+ StaminaIsFull = 587,
600
+ StartedFire = 588,
601
+ StartTravelInWater = 589,
602
+ StarvingToDeath = 590,
603
+ StatAmount = 591,
604
+ StatGained = 592,
605
+ StatIncreasing = 593,
606
+ StatLost = 594,
607
+ StatQuenched = 595,
608
+ StatRegained = 596,
609
+ StatSated = 597,
610
+ SteppingOn = 598,
611
+ StillHasNoWaterToPurify = 599,
612
+ StirredUpClawWorm = 600,
613
+ StirredUpCreature = 601,
614
+ StoppedYourBleeding = 602,
615
+ StopUsingVehicle = 603,
616
+ Strength = 604,
617
+ SummonedGuardiansByDiggingTreasure = 605,
618
+ SummonedGuardiansByLockpicking = 606,
619
+ SummonVoidDwellerItem = 607,
620
+ SummonVoidDwellerRinging = 608,
621
+ SummonVoidDwellerShiver = 609,
622
+ SunNotBrightEnoughToStartFire = 610,
623
+ SwampWater = 611,
624
+ Swimming = 612,
625
+ TakenFromGroundBecomeTamed = 613,
626
+ TeleportBlocked = 614,
627
+ Teleported = 615,
628
+ ThanksBuying = 616,
629
+ ThanksSelling = 617,
630
+ TheirFist = 618,
631
+ ThePlant = 619,
632
+ ThereIsNoContainerOnTheStill = 620,
633
+ ThereIsNoSunToStartFire = 621,
634
+ ThisCannotBeMilked = 622,
635
+ Throw = 623,
636
+ ThrownIntoDepths = 624,
637
+ ThrownIntoObstacle = 625,
638
+ ThrownIntoVoid = 626,
639
+ Tier = 627,
640
+ TierGroup = 628,
641
+ Till = 629,
642
+ Tilling = 630,
643
+ TimeIs = 631,
644
+ TimeIsDawn = 632,
645
+ TimeIsDaytime = 633,
646
+ TimeIsDusk = 634,
647
+ TimeIsNighttime = 635,
648
+ TimeIsSunrise = 636,
649
+ TimeIsSunset = 637,
650
+ ToFight = 638,
651
+ TooDamaged = 639,
652
+ TooExhaustedToJump = 640,
653
+ Touching = 641,
654
+ TradingWith = 642,
655
+ TrampledFire = 643,
656
+ TrampledIntoGround = 644,
657
+ TrampleIntoGround = 645,
658
+ Trampling = 646,
659
+ TransmogrificationNotPossible = 647,
660
+ Transmogrified = 648,
661
+ Transmogrify = 649,
662
+ TrapMissed = 650,
663
+ TrapStoppedYou = 651,
664
+ Traveling = 652,
665
+ TreasureIsBlocked = 653,
666
+ UiActionCannotUseRequiresCreature = 654,
667
+ UiActionCannotUseRequiresDoodad = 655,
668
+ UiActionCannotUseRequiresItem = 656,
669
+ Unhitch = 657,
670
+ UnhitchCreature = 658,
671
+ Unknown = 659,
672
+ Unlimited = 660,
673
+ UnlockedChest = 661,
674
+ UnpurifiedFreshWater = 662,
675
+ UnpurifiedWaterInStill = 663,
676
+ Use = 664,
677
+ UsingBareHands = 665,
678
+ VehicleDefense = 666,
679
+ Vulnerable = 667,
680
+ Water = 668,
681
+ WaterGathering = 669,
682
+ WaterPutOutFire = 670,
683
+ WellIsDry = 671,
684
+ WellIsFull = 672,
685
+ WildGoatRefusedToBeMilked = 673,
686
+ WillNotTrade = 674,
687
+ WorkingYourselfIntoExhaustion = 675,
688
+ WorkingYourselfIntoExhaustionAndDrowning = 676,
689
+ You = 677,
690
+ YouAbsorb = 678,
691
+ YouApplied = 679,
692
+ YouAreAlready = 680,
693
+ YouAte = 681,
694
+ YouBeginResting = 682,
695
+ YouCannotDoThatYet = 683,
696
+ YouCanNowCombatTheTides = 684,
697
+ YouCrafted = 685,
698
+ YouDoNotFindTreasureYet = 686,
699
+ YouDrank = 687,
700
+ YouDropTheTorch = 688,
701
+ YouEnchant = 689,
702
+ YouEquip = 690,
703
+ YouExude = 691,
704
+ YouExudeSome = 692,
705
+ YouExudeSomeReasonConflicting = 693,
706
+ YouExudeSomeReasonMax = 694,
707
+ YouExudeSomeReasonProperties = 695,
708
+ YouFailedTo = 696,
709
+ YouFailedToExtinguishedFireFully = 697,
710
+ YouFailedToHeal = 698,
711
+ YouFailedToHealOther = 699,
712
+ YouFire = 700,
713
+ YouGathered = 701,
714
+ YouGatheredAndDropped = 702,
715
+ YouHarvested = 703,
716
+ YouHarvestedAndDropped = 704,
717
+ YouHave = 705,
718
+ YouHaveAlreadyLearned = 706,
719
+ YouHaveBeenCut = 707,
720
+ YouHaveCaged = 708,
721
+ YouHaveCommanded = 709,
722
+ YouHaveDied = 710,
723
+ YouHaveHealedOther = 711,
724
+ YouHaveKilled = 712,
725
+ YouHaveReleased = 713,
726
+ YouHaveSummoned = 714,
727
+ YouHaveTamed = 715,
728
+ YouHaveUncaged = 716,
729
+ YouNeedMoreCredit = 717,
730
+ YouNoticeBarren = 718,
731
+ YouNoticeBecomeEnraged = 719,
732
+ YouNoticeDying = 720,
733
+ YouNoticeFertilityDecreasing = 721,
734
+ YouNoticeFertilityIncreasing = 722,
735
+ YouNoticeGrowing = 723,
736
+ YouNoticeLavaCooling = 724,
737
+ YouNoticeLavaHardening = 725,
738
+ YouNoticePerish = 726,
739
+ YouNoticePlantDamage = 727,
740
+ YouNoticePlantRegenerated = 728,
741
+ YouNoticeRegrowing = 729,
742
+ YouNoticeStumbleInjureItself = 730,
743
+ YouNoticeTakeFromGround = 731,
744
+ YouNoticeWoundsClosing = 732,
745
+ YouNoticeZombieHorde = 733,
746
+ YouOfferedToCreature = 734,
747
+ YouOfferedToCreatureRejects = 735,
748
+ YouOpen = 736,
749
+ YouPacked = 737,
750
+ YouPickedUp = 738,
751
+ YouRefine = 739,
752
+ YouReinforce = 740,
753
+ YouRepair = 741,
754
+ YouReturnFromCivilizationWith = 742,
755
+ YourFist = 743,
756
+ YourHands = 744,
757
+ YourInventory = 745,
758
+ YourIsland = 746,
759
+ YourRubbingNoEffect = 747,
760
+ YouRub = 748,
761
+ YouSee = 749,
762
+ YouSeeALivingMushroomSpore = 750,
763
+ YouSeeASkeletonCollapse = 751,
764
+ YouSeeASlimeCombine = 752,
765
+ YouSeeAZombieBleeding = 753,
766
+ YouSeeCoolDown = 754,
767
+ YouSeeDrop = 755,
768
+ YouSeeEngulfFire = 756,
769
+ YouSeeFireSpread = 757,
770
+ YouSeeHelpingPlant = 758,
771
+ YouSeeLay = 759,
772
+ YouSeeLayingTrap = 760,
773
+ YouSeeSpewLava = 761,
774
+ YouSeeSpitAcid = 762,
775
+ YouSeeSpringForth = 763,
776
+ YouSeeSummon = 764,
777
+ YouSeeSwampFlood = 765,
778
+ YouSeeTrampling = 766,
779
+ YouSetTheTrapOff = 767,
780
+ YouStokeTheCreature = 768,
781
+ YouSwapMainHandAndOffHand = 769,
782
+ YouThrew = 770,
783
+ YouTilled = 771,
784
+ YouUnequip = 772,
785
+ YouUsed = 773,
786
+ YouWhileTraveling = 774
783
787
  }
784
788
  export default Message;