@wayward/types 2.13.2-beta.dev.20230612.1 → 2.13.3-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 (104) hide show
  1. package/LICENSE +20 -20
  2. package/README.md +27 -27
  3. package/definitions/game/game/doodad/IDoodad.d.ts +6 -3
  4. package/definitions/game/game/entity/action/IAction.d.ts +1 -1
  5. package/definitions/game/game/entity/action/actions/Summon.d.ts +0 -2
  6. package/definitions/game/game/entity/action/actions/TestDepth.d.ts +0 -2
  7. package/definitions/game/game/entity/action/usable/IUsableAction.d.ts +11 -5
  8. package/definitions/game/game/entity/action/usable/UsableAction.d.ts +4 -1
  9. package/definitions/game/game/entity/action/usable/UsableActionRegistrar.d.ts +4 -2
  10. package/definitions/game/game/entity/action/usable/UsableActionTranslator.d.ts +6 -2
  11. package/definitions/game/game/entity/action/usable/actions/item/UsableActionsUseItem.d.ts +3 -1
  12. package/definitions/game/game/entity/player/PlayerManager.d.ts +5 -0
  13. package/definitions/game/game/entity/player/note/NoteManager.d.ts +1 -1
  14. package/definitions/game/game/inspection/IInspection.d.ts +2 -1
  15. package/definitions/game/game/inspection/InfoProviderContext.d.ts +9 -4
  16. package/definitions/game/game/inspection/infoProviders/LabelledValue.d.ts +3 -1
  17. package/definitions/game/game/inspection/infoProviders/Uses.d.ts +8 -5
  18. package/definitions/game/game/inspection/infoProviders/creature/CreatureTamedInfo.d.ts +1 -1
  19. package/definitions/game/game/inspection/infoProviders/item/ItemDetails.d.ts +1 -1
  20. package/definitions/game/game/inspection/infoProviders/item/ItemProtected.d.ts +3 -1
  21. package/definitions/game/game/inspection/infoProviders/item/ItemUses.d.ts +18 -3
  22. package/definitions/game/game/inspection/infoProviders/stat/AttackInfo.d.ts +1 -1
  23. package/definitions/game/game/inspection/infoProviders/stat/FerocityInfo.d.ts +1 -1
  24. package/definitions/game/game/inspection/inspections/ActionInspection.d.ts +9 -9
  25. package/definitions/game/game/inspection/inspections/CorpseInspection.d.ts +1 -1
  26. package/definitions/game/game/island/IIsland.d.ts +6 -0
  27. package/definitions/game/game/island/Island.d.ts +5 -3
  28. package/definitions/game/game/item/IItem.d.ts +2 -0
  29. package/definitions/game/game/meta/prompt/IPrompt.d.ts +10 -9
  30. package/definitions/game/game/meta/prompt/PromptDescriptionFactory.d.ts +9 -5
  31. package/definitions/game/game/meta/prompt/PromptDescriptions.d.ts +2 -1
  32. package/definitions/game/game/reference/IReferenceManager.d.ts +2 -5
  33. package/definitions/game/game/reference/ReferenceManager.d.ts +4 -3
  34. package/definitions/game/game/tile/Tile.d.ts +22 -13
  35. package/definitions/game/language/Dictionary.d.ts +112 -111
  36. package/definitions/game/language/DictionaryMap.d.ts +222 -220
  37. package/definitions/game/language/dictionary/Message.d.ts +360 -358
  38. package/definitions/game/language/dictionary/Misc.d.ts +41 -39
  39. package/definitions/game/language/dictionary/UiTranslation.d.ts +734 -729
  40. package/definitions/game/language/english/ui/ActionSlotItemMethods.d.ts +13 -0
  41. package/definitions/game/language/english/ui/HelpArticles.d.ts +1 -1
  42. package/definitions/game/language/impl/TranslationImpl.d.ts +1 -0
  43. package/definitions/game/language/segment/BindSegment.d.ts +2 -1
  44. package/definitions/game/language/segment/TooltipSegment.d.ts +1 -1
  45. package/definitions/game/mod/BaseMod.d.ts +1 -1
  46. package/definitions/game/mod/ModManager.d.ts +3 -1
  47. package/definitions/game/mod/ModRegistry.d.ts +6 -3
  48. package/definitions/game/multiplayer/Multiplayer.d.ts +6 -0
  49. package/definitions/game/multiplayer/matchmaking/IMatchmaking.d.ts +8 -0
  50. package/definitions/game/multiplayer/networking/Connection.d.ts +1 -0
  51. package/definitions/game/multiplayer/networking/IConnection.d.ts +1 -0
  52. package/definitions/game/renderer/context/RendererContext.d.ts +1 -1
  53. package/definitions/game/renderer/overlay/UniversalOverlay.d.ts +30 -0
  54. package/definitions/game/renderer/particle/IParticle.d.ts +1 -3
  55. package/definitions/game/renderer/tile/TileAdaptors.d.ts +1 -2
  56. package/definitions/game/renderer/world/WorldLayer.d.ts +2 -0
  57. package/definitions/game/renderer/world/WorldLayerRenderer.d.ts +1 -1
  58. package/definitions/game/renderer/world/WorldRenderer.d.ts +2 -1
  59. package/definitions/game/save/clientStore/IClientStore.d.ts +4 -1
  60. package/definitions/game/save/clientStore/clientData/MultiplayerClientData.d.ts +13 -0
  61. package/definitions/game/save/datastorage/LocalStorageDataStorage.d.ts +1 -0
  62. package/definitions/game/steamworks/Steamworks.d.ts +2 -1
  63. package/definitions/game/ui/PromptsBridge.d.ts +2 -1
  64. package/definitions/game/ui/Ui.d.ts +1 -0
  65. package/definitions/game/ui/component/Bindings.d.ts +8 -5
  66. package/definitions/game/ui/component/Dropdown.d.ts +1 -1
  67. package/definitions/game/ui/component/SortRow.d.ts +1 -0
  68. package/definitions/game/ui/component/Text.d.ts +2 -1
  69. package/definitions/game/ui/input/Bind.d.ts +4 -0
  70. package/definitions/game/ui/input/Bindings.d.ts +2 -4
  71. package/definitions/game/ui/input/IIInput.d.ts +2 -1
  72. package/definitions/game/ui/input/IInput.d.ts +6 -0
  73. package/definitions/game/ui/input/InputManager.d.ts +1 -1
  74. package/definitions/game/ui/input/Macros.d.ts +9 -1
  75. package/definitions/game/ui/screen/Screen.d.ts +5 -0
  76. package/definitions/game/ui/screen/screens/game/component/ItemComponent.d.ts +1 -0
  77. package/definitions/game/ui/screen/screens/game/dialog/MilestonesDialog.d.ts +2 -0
  78. package/definitions/game/ui/screen/screens/game/dialog/SkillsDialog.d.ts +2 -0
  79. package/definitions/game/ui/screen/screens/game/static/ActionBar.d.ts +2 -0
  80. package/definitions/game/ui/screen/screens/game/static/actions/ActionSlotTooltip.d.ts +1 -1
  81. package/definitions/game/ui/screen/screens/game/static/actions/ActionsDrawer.d.ts +5 -8
  82. package/definitions/game/ui/screen/screens/game/static/actions/IActionBar.d.ts +25 -0
  83. package/definitions/game/ui/screen/screens/game/static/actions/IActionsDrawer.d.ts +6 -0
  84. package/definitions/game/ui/screen/screens/menu/menus/{HelpArticle.d.ts → HelpArticleMenu.d.ts} +1 -1
  85. package/definitions/game/ui/screen/screens/menu/menus/HelpMenu.d.ts +1 -1
  86. package/definitions/game/ui/screen/screens/menu/menus/MainMenu.d.ts +1 -0
  87. package/definitions/game/ui/screen/screens/menu/menus/help/HelpArticleDescriptions.d.ts +3 -43
  88. package/definitions/game/ui/screen/screens/menu/menus/help/IHelpArticle.d.ts +53 -0
  89. package/definitions/game/ui/screen/screens/menu/menus/mods/ModRow.d.ts +1 -1
  90. package/definitions/game/ui/tooltip/TooltipLocationHandler.d.ts +1 -0
  91. package/definitions/game/ui/tooltip/TooltipManager.d.ts +1 -0
  92. package/definitions/game/ui/util/Misc.d.ts +4 -2
  93. package/definitions/game/utilities/Version.d.ts +13 -0
  94. package/definitions/game/utilities/enum/EnumManager.d.ts +2 -1
  95. package/definitions/game/utilities/random/generators/specific/RandomItem.d.ts +1 -1
  96. package/definitions/game/utilities/string/Interpolator.d.ts +0 -1
  97. package/definitions/hosts/shared/globals.d.ts +1 -1
  98. package/definitions/matchmakingserver/globalMatchmaking.d.ts +0 -1
  99. package/definitions/matchmakingserver/shared.d.ts +1 -0
  100. package/definitions/test/core/applicationInteractions.d.ts +4 -0
  101. package/definitions/test/core/applicationManager.d.ts +1 -2
  102. package/package.json +24 -24
  103. package/tsconfig.json +7 -7
  104. package/tsconfig.mod.base.json +44 -44
@@ -442,363 +442,365 @@ declare enum Message {
442
442
  NoRequiredItemToFireWeapon = 430,
443
443
  NoReturnWithoutCompletingChallenges = 431,
444
444
  NoRoomForImprovement = 432,
445
- NoRoomToDrop = 433,
446
- NoRoomToSummon = 434,
447
- NotEnoughPurifiedWaterYet = 435,
448
- NotEnoughTreasureToReturn = 436,
449
- NotFacingCreatureToOfferThisTo = 437,
450
- NotFacingLockedObject = 438,
451
- NotFacingOtherToHeal = 439,
452
- NotFacingValidItem = 440,
453
- NothingHereToButcher = 441,
454
- NothingHereToFill = 442,
455
- NothingHereToGrasp = 443,
456
- NothingTo = 444,
457
- NothingToGetFromThis = 445,
458
- NothingToHarvestFromThisGather = 446,
459
- NothingToSmother = 447,
460
- NothingUsefulToHarvestYet = 448,
461
- NoTinderToStartFire = 449,
462
- NotSuitableToPlant = 450,
463
- NoWaterInStill = 451,
464
- NPCMerchantNewInventoryDialog1 = 452,
465
- NPCMerchantNewInventoryDialog2 = 453,
466
- NPCMerchantNewInventoryDialog3 = 454,
467
- NPCMerchantNewInventoryDialog4 = 455,
468
- NPCMerchantStartingDialog1 = 456,
469
- NPCMerchantStartingDialog2 = 457,
470
- NPCMerchantStartingDialog3 = 458,
471
- NPCMerchantStartingDialog4 = 459,
472
- NPCMerchantWelcomeCredit = 460,
473
- NPCShipperShipToIsland = 461,
474
- NPCShipperStartingDialog1 = 462,
475
- NPCShipperStartingDialog2 = 463,
476
- NPCShipperStartingDialog3 = 464,
477
- NPCShipperStartingDialog4 = 465,
478
- NPCWelcome = 466,
479
- ObjectIsLocked = 467,
480
- ObjectIsLockedAttemptToBreakIt = 468,
481
- OfferAberrantFail = 469,
482
- OfferAberrantFailButTamed = 470,
483
- Open = 471,
484
- OpenClose = 472,
485
- OverEatingLostStamina = 473,
486
- OverHydratingLostStamina = 474,
487
- Pack = 475,
488
- PaperTurnedToMush = 476,
489
- ParryTheBlow = 477,
490
- Pet = 478,
491
- PetCreature = 479,
492
- PickAway = 480,
493
- PickUp = 481,
494
- PickUpExcrement = 482,
495
- PickUpTheItem = 483,
496
- Place = 484,
497
- PlacedOnGround = 485,
498
- Plant = 486,
499
- PlantedInGround = 487,
500
- PlantGatheredPlant = 488,
501
- PlantGatheringWillDestroy = 489,
502
- PlantHasResourcesToGather = 490,
503
- PlantHasResourcesToHarvest = 491,
504
- PlantHighlyFertile = 492,
505
- Planting = 493,
506
- PlantIsBare = 494,
507
- PlantIsFertile = 495,
508
- PlantIsInStage = 496,
509
- PlantIsNotFertile = 497,
510
- PlantNotReadyToHarvest = 498,
511
- PlantReadyToGather = 499,
512
- PlantReadyToGatherNotMaximal = 500,
513
- PlantReadyToHarvest = 501,
514
- PlantReadyToHarvestNotMaximal = 502,
515
- Player = 503,
516
- PlayerHas = 504,
517
- PlayerHasCompletedChallengeRequirement = 505,
518
- PlayerHasWonChallenge = 506,
519
- Poisoned = 507,
520
- PoisonedLostHealth = 508,
521
- PoisonWorkedItsCourse = 509,
522
- Positively = 510,
523
- PouredOut = 511,
524
- PouredOutOnYourself = 512,
525
- PouredWaterIntoStill = 513,
526
- PourHarmedPlant = 514,
527
- PourHealedPlant = 515,
528
- PourHealedPlantFully = 516,
529
- PourHealedPlantPartially = 517,
530
- PourIncreasedFertility = 518,
531
- Pouring = 519,
532
- Prepare = 520,
533
- Prepared = 521,
534
- Preserve = 522,
535
- PreservedFood = 523,
536
- PurifiedWaterInStill = 524,
537
- RandomEventsFire = 525,
538
- ReduceLength = 526,
539
- Refine = 527,
540
- RefusedToBeTamed = 528,
541
- Reinforce = 529,
542
- Repair = 530,
543
- ReputationDecreased = 531,
544
- ReputationIncreased = 532,
545
- ReputationUpdate = 533,
546
- RequiredForDisassembly = 534,
547
- RequiresFireToBeLit = 535,
548
- RequiresYouFacingFireSource = 536,
549
- RequiresYouToBeAround = 537,
550
- Resistant = 538,
551
- Rest = 539,
552
- Rested = 540,
553
- Resting = 541,
554
- RestingOnGroundNotEffective = 542,
555
- RestInterrupted = 543,
556
- RestInterruptedDamage = 544,
557
- RestInterruptedDying = 545,
558
- RestInterruptedLoudNoise = 546,
559
- RestInterruptedPain = 547,
560
- RestInterruptedStirring = 548,
561
- RestInterruptedWaterPoured = 549,
562
- RestLongTime = 550,
563
- RestModerateTime = 551,
564
- RestOnBoat = 552,
565
- RestShortTime = 553,
566
- RestTime = 554,
567
- ReturnedToCivilization = 555,
568
- ReturningToCivilizationSetOffAgain = 556,
569
- ReturnsToLife = 557,
570
- Reverse = 558,
571
- Sailing = 559,
572
- ScrollMaster = 560,
573
- ScrollProvidedNoUsefulInsight = 561,
574
- Seawater = 562,
575
- SeemsToHaveDrawnEnergy = 563,
576
- SetTrapOffButNoDamage = 564,
577
- SetUp = 565,
578
- ShadowInTheWater = 566,
579
- Skill = 567,
580
- SkillHasRaised = 568,
581
- Skills = 569,
582
- Sleep = 570,
583
- Sleeping = 571,
584
- SleepOnBoat = 572,
585
- Slept = 573,
586
- SlitherSuckerConstricts = 574,
587
- SlitherSuckerJumpedOnHead = 575,
588
- SolarStill = 576,
589
- SomethingInTheWayOf = 577,
590
- SomethingInTheWayOfButcherFirst = 578,
591
- SomethingInTheWayOfFire = 579,
592
- SomethingInTheWayOfFishing = 580,
593
- SomethingInTheWayOfPerforming = 581,
594
- SomethingInTheWayOfPlacing = 582,
595
- SomethingInTheWayOfReleasing = 583,
596
- SomethingInTheWayOfSummoning = 584,
597
- SomethingInWayOfClosingDoor = 585,
598
- SoothedTheirBurnInjuries = 586,
599
- SoothedYourBurnInjuries = 587,
600
- Sort = 588,
601
- SortedByBestCraftingRequirements = 589,
602
- SortedByCategory = 590,
603
- SortedByCraftableOnly = 591,
604
- SortedByDecay = 592,
605
- SortedByDurability = 593,
606
- SortedByGroup = 594,
607
- SortedByMagical = 595,
608
- SortedByName = 596,
609
- SortedByQuality = 597,
610
- SortedByRecent = 598,
611
- SortedBySkill = 599,
612
- SortedByUnlockedTime = 600,
613
- SortedByWeight = 601,
614
- SortedByWorth = 602,
615
- StaminaIsFull = 603,
616
- StartedFire = 604,
617
- StartTravelInWater = 605,
618
- StarvingToDeath = 606,
619
- StatAmount = 607,
620
- StatGained = 608,
621
- StatIncreasing = 609,
622
- StatLost = 610,
623
- StatQuenched = 611,
624
- StatRegained = 612,
625
- StatSated = 613,
626
- SteppingOn = 614,
627
- Still = 615,
628
- StillHasNoWaterToPurify = 616,
629
- StirredUpClawWorm = 617,
630
- StirredUpCreature = 618,
631
- StoppedYourBleeding = 619,
632
- StopUsingVehicle = 620,
633
- Strength = 621,
634
- SummonedGuardiansByDiggingTreasure = 622,
635
- SummonedGuardiansByLockpicking = 623,
636
- SummonVoidDwellerItem = 624,
637
- SummonVoidDwellerRinging = 625,
638
- SummonVoidDwellerShiver = 626,
639
- SunNotBrightEnoughToStartFire = 627,
640
- SwampWater = 628,
641
- Swimming = 629,
642
- TakenFromGroundBecomeTamed = 630,
643
- TeleportBlocked = 631,
644
- Teleported = 632,
645
- ThanksBuying = 633,
646
- ThanksSelling = 634,
647
- TheirFist = 635,
648
- ThePlant = 636,
649
- ThereIsNoContainerOnTheStill = 637,
650
- ThereIsNoSunToStartFire = 638,
651
- ThisCannotBeMilked = 639,
652
- Throw = 640,
653
- ThrownIntoDepths = 641,
654
- ThrownIntoObstacle = 642,
655
- ThrownIntoVoid = 643,
656
- Tier = 644,
657
- TierGroup = 645,
658
- Till = 646,
659
- Tilling = 647,
660
- TimeIs = 648,
661
- TimeIsDawn = 649,
662
- TimeIsDaytime = 650,
663
- TimeIsDusk = 651,
664
- TimeIsNighttime = 652,
665
- TimeIsSunrise = 653,
666
- TimeIsSunset = 654,
667
- ToFight = 655,
668
- TooDamaged = 656,
669
- TooExhaustedToJump = 657,
670
- Touching = 658,
671
- TrampledFire = 659,
672
- TrampledIntoGround = 660,
673
- TrampleIntoGround = 661,
674
- Trampling = 662,
675
- TransmogrificationNotPossible = 663,
676
- Transmogrified = 664,
677
- Transmogrify = 665,
678
- TrapMissed = 666,
679
- TrapStoppedYou = 667,
680
- Traveling = 668,
681
- TreasureIsBlocked = 669,
682
- UiActionCannotUseRequiresCreature = 670,
683
- UiActionCannotUseRequiresDoodad = 671,
684
- UiActionCannotUseRequiresItem = 672,
685
- Unhitch = 673,
686
- UnhitchCreature = 674,
687
- Unknown = 675,
688
- Unlimited = 676,
689
- UnlockedChest = 677,
690
- UnpurifiedFreshWater = 678,
691
- UnpurifiedWaterInStill = 679,
692
- Use = 680,
693
- UsingBareHands = 681,
694
- VehicleDefense = 682,
695
- Vulnerable = 683,
696
- Water = 684,
697
- WaterGathering = 685,
698
- WaterPutOutFire = 686,
699
- WellIsDry = 687,
700
- WellIsFull = 688,
701
- WildGoatRefusedToBeMilked = 689,
702
- WillNotTrade = 690,
703
- WorkingYourselfIntoExhaustion = 691,
704
- WorkingYourselfIntoExhaustionAndDrowning = 692,
705
- You = 693,
706
- YouAbsorb = 694,
707
- YouApplied = 695,
708
- YouAreAlready = 696,
709
- YouAte = 697,
710
- YouBeginResting = 698,
711
- YouCannotDoThatYet = 699,
712
- YouCanNowCombatTheTides = 700,
713
- YouCrafted = 701,
714
- YouDoNotFindTreasureYet = 702,
715
- YouDrank = 703,
716
- YouDropTheTorch = 704,
717
- YouEnchant = 705,
718
- YouEquip = 706,
719
- YouExude = 707,
720
- YouExudeSome = 708,
721
- YouExudeSomeReasonConflicting = 709,
722
- YouExudeSomeReasonMax = 710,
723
- YouExudeSomeReasonProperties = 711,
724
- YouFailedTo = 712,
725
- YouFailedToExtinguishedFireFully = 713,
726
- YouFailedToHeal = 714,
727
- YouFailedToHealOther = 715,
728
- YouFire = 716,
729
- YouGathered = 717,
730
- YouGatheredAndDropped = 718,
731
- YouHarvested = 719,
732
- YouHarvestedAndDropped = 720,
733
- YouHave = 721,
734
- YouHaveAlreadyLearned = 722,
735
- YouHaveBeenCut = 723,
736
- YouHaveCaged = 724,
737
- YouHaveCommanded = 725,
738
- YouHaveDied = 726,
739
- YouHaveHealedOther = 727,
740
- YouHaveKilled = 728,
741
- YouHaveReleased = 729,
742
- YouHaveSummoned = 730,
743
- YouHaveTamed = 731,
744
- YouHaveUncaged = 732,
745
- YouNeedMoreCredit = 733,
746
- YouNoticeBarren = 734,
747
- YouNoticeBecomeEnraged = 735,
748
- YouNoticeDying = 736,
749
- YouNoticeFertilityDecreasing = 737,
750
- YouNoticeFertilityIncreasing = 738,
751
- YouNoticeGrowing = 739,
752
- YouNoticeLavaCooling = 740,
753
- YouNoticeLavaHardening = 741,
754
- YouNoticePerish = 742,
755
- YouNoticePlantDamage = 743,
756
- YouNoticePlantRegenerated = 744,
757
- YouNoticeRegrowing = 745,
758
- YouNoticeStumbleInjureItself = 746,
759
- YouNoticeTakeFromGround = 747,
760
- YouNoticeWoundsClosing = 748,
761
- YouNoticeZombieHorde = 749,
762
- YouOfferedToCreature = 750,
763
- YouOfferedToCreatureRejects = 751,
764
- YouOpen = 752,
765
- YouPacked = 753,
766
- YouPickedUp = 754,
767
- YouRefine = 755,
768
- YouReinforce = 756,
769
- YouRepair = 757,
770
- YouReturnFromCivilizationWith = 758,
771
- YourFist = 759,
772
- YourHands = 760,
773
- YourInventory = 761,
774
- YourIsland = 762,
775
- YourRubbingNoEffect = 763,
776
- YouRub = 764,
777
- YouSee = 765,
778
- YouSeeALivingMushroomSpore = 766,
779
- YouSeeASkeletonCollapse = 767,
780
- YouSeeASlimeCombine = 768,
781
- YouSeeAZombieBleeding = 769,
782
- YouSeeCoolDown = 770,
783
- YouSeeDrop = 771,
784
- YouSeeEngulfFire = 772,
785
- YouSeeFireSpread = 773,
786
- YouSeeHelpingPlant = 774,
787
- YouSeeLay = 775,
788
- YouSeeLayingTrap = 776,
789
- YouSeeSpewLava = 777,
790
- YouSeeSpitAcid = 778,
791
- YouSeeSpringForth = 779,
792
- YouSeeSummon = 780,
793
- YouSeeSwampFlood = 781,
794
- YouSeeTrampling = 782,
795
- YouSetTheTrapOff = 783,
796
- YouStokeTheCreature = 784,
797
- YouSwapMainHandAndOffHand = 785,
798
- YouThrew = 786,
799
- YouTilled = 787,
800
- YouUnequip = 788,
801
- YouUsed = 789,
802
- YouWhileTraveling = 790
445
+ NoRoomForVehicle = 433,
446
+ NoRoomToDrop = 434,
447
+ NoRoomToSummon = 435,
448
+ NotEnoughPurifiedWaterYet = 436,
449
+ NotEnoughTreasureToReturn = 437,
450
+ NotFacingCreatureToOfferThisTo = 438,
451
+ NotFacingLockedObject = 439,
452
+ NotFacingOtherToHeal = 440,
453
+ NotFacingValidItem = 441,
454
+ NothingHereToButcher = 442,
455
+ NothingHereToFill = 443,
456
+ NothingHereToGrasp = 444,
457
+ NothingTo = 445,
458
+ NothingToGetFromThis = 446,
459
+ NothingToHarvestFromThisGather = 447,
460
+ NothingToSmother = 448,
461
+ NothingUsefulToHarvestYet = 449,
462
+ NoTinderToStartFire = 450,
463
+ NotSuitableToPlant = 451,
464
+ NoWaterInStill = 452,
465
+ NPCMerchantNewInventoryDialog1 = 453,
466
+ NPCMerchantNewInventoryDialog2 = 454,
467
+ NPCMerchantNewInventoryDialog3 = 455,
468
+ NPCMerchantNewInventoryDialog4 = 456,
469
+ NPCMerchantStartingDialog1 = 457,
470
+ NPCMerchantStartingDialog2 = 458,
471
+ NPCMerchantStartingDialog3 = 459,
472
+ NPCMerchantStartingDialog4 = 460,
473
+ NPCMerchantWelcomeCredit = 461,
474
+ NPCShipperShipToIsland = 462,
475
+ NPCShipperStartingDialog1 = 463,
476
+ NPCShipperStartingDialog2 = 464,
477
+ NPCShipperStartingDialog3 = 465,
478
+ NPCShipperStartingDialog4 = 466,
479
+ NPCWelcome = 467,
480
+ ObjectIsLocked = 468,
481
+ ObjectIsLockedAttemptToBreakIt = 469,
482
+ OfferAberrantFail = 470,
483
+ OfferAberrantFailButTamed = 471,
484
+ Open = 472,
485
+ OpenClose = 473,
486
+ OverEatingLostStamina = 474,
487
+ OverHydratingLostStamina = 475,
488
+ Pack = 476,
489
+ PaperTurnedToMush = 477,
490
+ ParryTheBlow = 478,
491
+ Pet = 479,
492
+ PetCreature = 480,
493
+ PickAway = 481,
494
+ PickUp = 482,
495
+ PickUpExcrement = 483,
496
+ PickUpTheItem = 484,
497
+ Place = 485,
498
+ PlacedOnGround = 486,
499
+ Plant = 487,
500
+ PlantedInGround = 488,
501
+ PlantGatheredPlant = 489,
502
+ PlantGatheringWillDestroy = 490,
503
+ PlantHasResourcesToGather = 491,
504
+ PlantHasResourcesToHarvest = 492,
505
+ PlantHighlyFertile = 493,
506
+ Planting = 494,
507
+ PlantIsBare = 495,
508
+ PlantIsFertile = 496,
509
+ PlantIsInStage = 497,
510
+ PlantIsNotFertile = 498,
511
+ PlantNotReadyToHarvest = 499,
512
+ PlantReadyToGather = 500,
513
+ PlantReadyToGatherNotMaximal = 501,
514
+ PlantReadyToHarvest = 502,
515
+ PlantReadyToHarvestNotMaximal = 503,
516
+ Player = 504,
517
+ PlayerHas = 505,
518
+ PlayerHasCompletedChallengeRequirement = 506,
519
+ PlayerHasWonChallenge = 507,
520
+ Poisoned = 508,
521
+ PoisonedLostHealth = 509,
522
+ PoisonWorkedItsCourse = 510,
523
+ Positively = 511,
524
+ PouredOut = 512,
525
+ PouredOutOnYourself = 513,
526
+ PouredWaterIntoStill = 514,
527
+ PourHarmedPlant = 515,
528
+ PourHealedPlant = 516,
529
+ PourHealedPlantFully = 517,
530
+ PourHealedPlantPartially = 518,
531
+ PourIncreasedFertility = 519,
532
+ Pouring = 520,
533
+ Prepare = 521,
534
+ Prepared = 522,
535
+ Preserve = 523,
536
+ PreservedFood = 524,
537
+ PurifiedWaterInStill = 525,
538
+ RandomEventsFire = 526,
539
+ ReduceLength = 527,
540
+ Refine = 528,
541
+ RefusedToBeTamed = 529,
542
+ Reinforce = 530,
543
+ Repair = 531,
544
+ ReputationDecreased = 532,
545
+ ReputationIncreased = 533,
546
+ ReputationUpdate = 534,
547
+ RequiredForDisassembly = 535,
548
+ RequiresFireToBeLit = 536,
549
+ RequiresYouFacingFireSource = 537,
550
+ RequiresYouToBeAround = 538,
551
+ Resistant = 539,
552
+ Rest = 540,
553
+ Rested = 541,
554
+ Resting = 542,
555
+ RestingOnGroundNotEffective = 543,
556
+ RestInterrupted = 544,
557
+ RestInterruptedDamage = 545,
558
+ RestInterruptedDying = 546,
559
+ RestInterruptedLoudNoise = 547,
560
+ RestInterruptedPain = 548,
561
+ RestInterruptedStirring = 549,
562
+ RestInterruptedWaterPoured = 550,
563
+ RestLongTime = 551,
564
+ RestModerateTime = 552,
565
+ RestOnBoat = 553,
566
+ RestShortTime = 554,
567
+ RestTime = 555,
568
+ ReturnedToCivilization = 556,
569
+ ReturningToCivilizationSetOffAgain = 557,
570
+ ReturnsToLife = 558,
571
+ Reverse = 559,
572
+ Sailing = 560,
573
+ ScrollMaster = 561,
574
+ ScrollProvidedNoUsefulInsight = 562,
575
+ Seawater = 563,
576
+ SeemsToHaveDrawnEnergy = 564,
577
+ SetTrapOffButNoDamage = 565,
578
+ SetUp = 566,
579
+ ShadowInTheWater = 567,
580
+ Skill = 568,
581
+ SkillHasRaised = 569,
582
+ Skills = 570,
583
+ Sleep = 571,
584
+ Sleeping = 572,
585
+ SleepOnBoat = 573,
586
+ Slept = 574,
587
+ SlitherSuckerConstricts = 575,
588
+ SlitherSuckerJumpedOnHead = 576,
589
+ SolarStill = 577,
590
+ SomethingInTheWayOf = 578,
591
+ SomethingInTheWayOfButcherFirst = 579,
592
+ SomethingInTheWayOfFire = 580,
593
+ SomethingInTheWayOfFishing = 581,
594
+ SomethingInTheWayOfPerforming = 582,
595
+ SomethingInTheWayOfPlacing = 583,
596
+ SomethingInTheWayOfReleasing = 584,
597
+ SomethingInTheWayOfSummoning = 585,
598
+ SomethingInWayOfClosingDoor = 586,
599
+ SoothedTheirBurnInjuries = 587,
600
+ SoothedYourBurnInjuries = 588,
601
+ Sort = 589,
602
+ SortedByBestCraftingRequirements = 590,
603
+ SortedByCategory = 591,
604
+ SortedByCraftableOnly = 592,
605
+ SortedByDecay = 593,
606
+ SortedByDurability = 594,
607
+ SortedByGroup = 595,
608
+ SortedByMagical = 596,
609
+ SortedByName = 597,
610
+ SortedByQuality = 598,
611
+ SortedByRecent = 599,
612
+ SortedBySkill = 600,
613
+ SortedByUnlockedTime = 601,
614
+ SortedByWeight = 602,
615
+ SortedByWorth = 603,
616
+ StaminaIsFull = 604,
617
+ StartedFire = 605,
618
+ StartTravelInWater = 606,
619
+ StarvingToDeath = 607,
620
+ StatAmount = 608,
621
+ StatGained = 609,
622
+ StatIncreasing = 610,
623
+ StatLost = 611,
624
+ StatQuenched = 612,
625
+ StatRegained = 613,
626
+ StatSated = 614,
627
+ SteppingOn = 615,
628
+ Still = 616,
629
+ StillHasNoWaterToPurify = 617,
630
+ StirredUpClawWorm = 618,
631
+ StirredUpCreature = 619,
632
+ StoppedYourBleeding = 620,
633
+ StopUsingVehicle = 621,
634
+ Strength = 622,
635
+ SummonedGuardiansByDiggingTreasure = 623,
636
+ SummonedGuardiansByLockpicking = 624,
637
+ SummonVoidDwellerItem = 625,
638
+ SummonVoidDwellerRinging = 626,
639
+ SummonVoidDwellerShiver = 627,
640
+ SunNotBrightEnoughToStartFire = 628,
641
+ SwampWater = 629,
642
+ Swimming = 630,
643
+ TakenFromGroundBecomeTamed = 631,
644
+ TeleportBlocked = 632,
645
+ Teleported = 633,
646
+ ThanksBuying = 634,
647
+ ThanksSelling = 635,
648
+ TheirFist = 636,
649
+ ThePlant = 637,
650
+ ThereIsNoContainerOnTheStill = 638,
651
+ ThereIsNoSunToStartFire = 639,
652
+ ThisCannotBeMilked = 640,
653
+ Throw = 641,
654
+ ThrownIntoDepths = 642,
655
+ ThrownIntoObstacle = 643,
656
+ ThrownIntoVoid = 644,
657
+ Tier = 645,
658
+ TierGroup = 646,
659
+ Till = 647,
660
+ Tilling = 648,
661
+ TimeIs = 649,
662
+ TimeIsDawn = 650,
663
+ TimeIsDaytime = 651,
664
+ TimeIsDusk = 652,
665
+ TimeIsNighttime = 653,
666
+ TimeIsSunrise = 654,
667
+ TimeIsSunset = 655,
668
+ ToFight = 656,
669
+ TooDamaged = 657,
670
+ TooExhaustedToJump = 658,
671
+ Touching = 659,
672
+ TrampledFire = 660,
673
+ TrampledIntoGround = 661,
674
+ TrampleIntoGround = 662,
675
+ Trampling = 663,
676
+ TransmogrificationNotPossible = 664,
677
+ Transmogrified = 665,
678
+ Transmogrify = 666,
679
+ TrapMissed = 667,
680
+ TrapStoppedYou = 668,
681
+ Traveling = 669,
682
+ TreasureIsBlocked = 670,
683
+ UiActionCannotUseRequiresCreature = 671,
684
+ UiActionCannotUseRequiresDoodad = 672,
685
+ UiActionCannotUseRequiresItem = 673,
686
+ UiActionCannotUseRequiresNPC = 674,
687
+ Unhitch = 675,
688
+ UnhitchCreature = 676,
689
+ Unknown = 677,
690
+ Unlimited = 678,
691
+ UnlockedChest = 679,
692
+ UnpurifiedFreshWater = 680,
693
+ UnpurifiedWaterInStill = 681,
694
+ Use = 682,
695
+ UsingBareHands = 683,
696
+ VehicleDefense = 684,
697
+ Vulnerable = 685,
698
+ Water = 686,
699
+ WaterGathering = 687,
700
+ WaterPutOutFire = 688,
701
+ WellIsDry = 689,
702
+ WellIsFull = 690,
703
+ WildGoatRefusedToBeMilked = 691,
704
+ WillNotTrade = 692,
705
+ WorkingYourselfIntoExhaustion = 693,
706
+ WorkingYourselfIntoExhaustionAndDrowning = 694,
707
+ You = 695,
708
+ YouAbsorb = 696,
709
+ YouApplied = 697,
710
+ YouAreAlready = 698,
711
+ YouAte = 699,
712
+ YouBeginResting = 700,
713
+ YouCannotDoThatYet = 701,
714
+ YouCanNowCombatTheTides = 702,
715
+ YouCrafted = 703,
716
+ YouDoNotFindTreasureYet = 704,
717
+ YouDrank = 705,
718
+ YouDropTheTorch = 706,
719
+ YouEnchant = 707,
720
+ YouEquip = 708,
721
+ YouExude = 709,
722
+ YouExudeSome = 710,
723
+ YouExudeSomeReasonConflicting = 711,
724
+ YouExudeSomeReasonMax = 712,
725
+ YouExudeSomeReasonProperties = 713,
726
+ YouFailedTo = 714,
727
+ YouFailedToExtinguishedFireFully = 715,
728
+ YouFailedToHeal = 716,
729
+ YouFailedToHealOther = 717,
730
+ YouFire = 718,
731
+ YouGathered = 719,
732
+ YouGatheredAndDropped = 720,
733
+ YouHarvested = 721,
734
+ YouHarvestedAndDropped = 722,
735
+ YouHave = 723,
736
+ YouHaveAlreadyLearned = 724,
737
+ YouHaveBeenCut = 725,
738
+ YouHaveCaged = 726,
739
+ YouHaveCommanded = 727,
740
+ YouHaveDied = 728,
741
+ YouHaveHealedOther = 729,
742
+ YouHaveKilled = 730,
743
+ YouHaveReleased = 731,
744
+ YouHaveSummoned = 732,
745
+ YouHaveTamed = 733,
746
+ YouHaveUncaged = 734,
747
+ YouNeedMoreCredit = 735,
748
+ YouNoticeBarren = 736,
749
+ YouNoticeBecomeEnraged = 737,
750
+ YouNoticeDying = 738,
751
+ YouNoticeFertilityDecreasing = 739,
752
+ YouNoticeFertilityIncreasing = 740,
753
+ YouNoticeGrowing = 741,
754
+ YouNoticeLavaCooling = 742,
755
+ YouNoticeLavaHardening = 743,
756
+ YouNoticePerish = 744,
757
+ YouNoticePlantDamage = 745,
758
+ YouNoticePlantRegenerated = 746,
759
+ YouNoticeRegrowing = 747,
760
+ YouNoticeStumbleInjureItself = 748,
761
+ YouNoticeTakeFromGround = 749,
762
+ YouNoticeWoundsClosing = 750,
763
+ YouNoticeZombieHorde = 751,
764
+ YouOfferedToCreature = 752,
765
+ YouOfferedToCreatureRejects = 753,
766
+ YouOpen = 754,
767
+ YouPacked = 755,
768
+ YouPickedUp = 756,
769
+ YouRefine = 757,
770
+ YouReinforce = 758,
771
+ YouRepair = 759,
772
+ YouReturnFromCivilizationWith = 760,
773
+ YourFist = 761,
774
+ YourHands = 762,
775
+ YourInventory = 763,
776
+ YourIsland = 764,
777
+ YourRubbingNoEffect = 765,
778
+ YouRub = 766,
779
+ YouSee = 767,
780
+ YouSeeALivingMushroomSpore = 768,
781
+ YouSeeASkeletonCollapse = 769,
782
+ YouSeeASlimeCombine = 770,
783
+ YouSeeAZombieBleeding = 771,
784
+ YouSeeCoolDown = 772,
785
+ YouSeeDrop = 773,
786
+ YouSeeEngulfFire = 774,
787
+ YouSeeFireSpread = 775,
788
+ YouSeeHelpingPlant = 776,
789
+ YouSeeLay = 777,
790
+ YouSeeLayingTrap = 778,
791
+ YouSeeSpewLava = 779,
792
+ YouSeeSpitAcid = 780,
793
+ YouSeeSpringForth = 781,
794
+ YouSeeSummon = 782,
795
+ YouSeeSwampFlood = 783,
796
+ YouSeeTrampling = 784,
797
+ YouSetTheTrapOff = 785,
798
+ YouStokeTheCreature = 786,
799
+ YouSwapMainHandAndOffHand = 787,
800
+ YouThrew = 788,
801
+ YouTilled = 789,
802
+ YouUnequip = 790,
803
+ YouUsed = 791,
804
+ YouWhileTraveling = 792
803
805
  }
804
806
  export default Message;