@wayward/types 2.13.0-beta.dev.20230331.1 → 2.13.0-beta.dev.20230402.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 (33) hide show
  1. package/definitions/game/event/EventEmitter.d.ts +6 -1
  2. package/definitions/game/game/entity/EntityMovable.d.ts +2 -1
  3. package/definitions/game/game/entity/Human.d.ts +3 -3
  4. package/definitions/game/game/entity/IEntity.d.ts +11 -0
  5. package/definitions/game/game/entity/action/ActionsRegistration.d.ts +2 -2
  6. package/definitions/game/game/entity/action/actions/Build.d.ts +1 -1
  7. package/definitions/game/game/entity/action/actions/PlaceDown.d.ts +1 -1
  8. package/definitions/game/game/entity/action/actions/helper/TreasureGathering.d.ts +3 -3
  9. package/definitions/game/game/entity/player/IPlayer.d.ts +2 -18
  10. package/definitions/game/game/inspection/InspectionTypeMap.d.ts +2 -2
  11. package/definitions/game/game/island/IIsland.d.ts +16 -0
  12. package/definitions/game/game/island/Island.d.ts +2 -5
  13. package/definitions/game/game/item/IItem.d.ts +7 -2
  14. package/definitions/game/game/temperature/TemperatureManager.d.ts +7 -0
  15. package/definitions/game/game/tile/ITerrain.d.ts +2 -1
  16. package/definitions/game/game/tile/Tile.d.ts +11 -3
  17. package/definitions/game/game/tile/events/IFire.d.ts +4 -5
  18. package/definitions/game/language/Dictionary.d.ts +2 -2
  19. package/definitions/game/language/DictionaryMap.d.ts +4 -4
  20. package/definitions/game/language/dictionary/Message.d.ts +317 -316
  21. package/definitions/game/renderer/IRenderer.d.ts +53 -53
  22. package/definitions/game/renderer/particle/ParticleRenderer1.d.ts +2 -1
  23. package/definitions/game/renderer/particle/ParticleRenderer2.d.ts +2 -1
  24. package/definitions/game/renderer/spriteBatch/SpriteBatch1.d.ts +1 -0
  25. package/definitions/game/renderer/spriteBatch/SpriteBatch2.d.ts +1 -0
  26. package/definitions/game/renderer/spriteBatch/SpriteBatchBase.d.ts +1 -0
  27. package/definitions/game/renderer/tile/TileLayer.d.ts +4 -0
  28. package/definitions/game/renderer/world/IWorldLayerRenderer.d.ts +0 -1
  29. package/definitions/game/renderer/world/World.d.ts +1 -1
  30. package/definitions/game/ui/old/IOldUi.d.ts +2 -1
  31. package/definitions/game/ui/screen/screens/game/component/TileInspectionsList.d.ts +1 -1
  32. package/definitions/game/utilities/collection/map/PriorityMap.d.ts +1 -2
  33. package/package.json +1 -1
@@ -79,90 +79,90 @@ declare enum Message {
79
79
  ActionSetCreatureAiCannotCommand = 67,
80
80
  ActionSetCreatureAiNotEnoughSkill = 68,
81
81
  ActionSetCreatureAiNotEnoughTames = 69,
82
- ActionTameCreatureTamed = 70,
83
- ActionTameNoCreature = 71,
84
- ActionTestDepthNothingToTest = 72,
85
- ActionTestDepthWell = 73,
86
- ActionToggleContainerNoContainer = 74,
87
- ActionToggleDoorNoDoor = 75,
88
- ActionToggleHitchAlreadyHitched = 76,
89
- ActionToggleHitchAlreadyUnhitched = 77,
90
- ActionToggleHitchNoCreature = 78,
91
- ActionToggleHitchNoHitch = 79,
92
- ActionToggleTilledAlreadyPacked = 80,
93
- ActionToggleTilledAlreadyTilled = 81,
94
- ActionUncageCannotUncageHere = 82,
95
- ActionUpgrade = 83,
96
- ActionUpgradeFailed = 84,
97
- ActionUpgradeNotMagical = 85,
98
- ActionUpgradeNotPossible = 86,
99
- ActionUpgradeUpgraded = 87,
100
- ActionUseItemWeaponNeeded = 88,
101
- ActionWith = 89,
102
- AddedFuelToFire = 90,
103
- AddedFuelToTorch = 91,
104
- AddToQuickslot = 92,
105
- AllEquipmentUnEquipped = 93,
106
- AlreadyDesalinatedWaterInStill = 94,
107
- AlreadyFullyRefined = 95,
108
- AlreadyFullyRepaired = 96,
109
- AlreadyPreserved = 97,
110
- Alter = 98,
111
- AnotherIsland = 99,
112
- AnUnknownItem = 100,
113
- AppearedNotEffectiveForGathering = 101,
114
- AppearsToBeAberrant = 102,
115
- ArmorAppeared = 103,
116
- ArmorProtectedFromInjuryAgainst = 104,
117
- Attack = 105,
118
- AttemptedToDropAllIntoFire = 106,
119
- AttemptedToPlaceAllOnGround = 107,
120
- AttemptToSoothBurnInWater = 108,
121
- AttemptToTill = 109,
122
- AutoActionsNoItem = 110,
123
- BadlyBurnedLostHealth = 111,
124
- BarteringSkillsProvided = 112,
125
- BasedOnItSeems = 113,
126
- BeenPoisoned = 114,
127
- BeginSleeping = 115,
128
- BeginUsingVehicle = 116,
129
- BestForCrafting = 117,
130
- BleedingHasStopped = 118,
131
- BleedingProfusely = 119,
132
- BleedingToDeathLostHealth = 120,
133
- BookBlank = 121,
134
- BookContains = 122,
135
- BookCrumbles = 123,
136
- BookDiagrams = 124,
137
- BookEmpty = 125,
138
- BookNothing = 126,
139
- BookOpen = 127,
140
- BookScribbles = 128,
141
- BothEffectiveIneffective = 129,
142
- BrokeIntoPieces = 130,
143
- BrokenOnImpact = 131,
144
- BrokenWhileFiring = 132,
145
- Build = 133,
146
- Burned = 134,
147
- CannotAddAnyMoreFuel = 135,
148
- CannotBeCrafted = 136,
149
- CannotBePerformedOverWater = 137,
150
- CannotBePlacedHere = 138,
151
- CannotBePreserved = 139,
152
- CannotBeRefined = 140,
153
- CannotBeRefinedReinforcementNeeded = 141,
154
- CannotBeReinforced = 142,
155
- CannotBeRepaired = 143,
156
- CannotBuildHere = 144,
157
- CannotDoThatHere = 145,
158
- CannotDropHere = 146,
159
- CannotEquipThatThere = 147,
160
- CannotFishFor = 148,
161
- CannotHere = 149,
162
- CannotInWater = 150,
163
- CannotLeave = 151,
164
- CannotNoTreasure = 152,
165
- ActionShipToIslandNoDestination = 153,
82
+ ActionShipToIslandNoDestination = 70,
83
+ ActionTameCreatureTamed = 71,
84
+ ActionTameNoCreature = 72,
85
+ ActionTestDepthNothingToTest = 73,
86
+ ActionTestDepthWell = 74,
87
+ ActionToggleContainerNoContainer = 75,
88
+ ActionToggleDoorNoDoor = 76,
89
+ ActionToggleHitchAlreadyHitched = 77,
90
+ ActionToggleHitchAlreadyUnhitched = 78,
91
+ ActionToggleHitchNoCreature = 79,
92
+ ActionToggleHitchNoHitch = 80,
93
+ ActionToggleTilledAlreadyPacked = 81,
94
+ ActionToggleTilledAlreadyTilled = 82,
95
+ ActionUncageCannotUncageHere = 83,
96
+ ActionUpgrade = 84,
97
+ ActionUpgradeFailed = 85,
98
+ ActionUpgradeNotMagical = 86,
99
+ ActionUpgradeNotPossible = 87,
100
+ ActionUpgradeUpgraded = 88,
101
+ ActionUseItemWeaponNeeded = 89,
102
+ ActionWith = 90,
103
+ AddedFuelToFire = 91,
104
+ AddedFuelToTorch = 92,
105
+ AddToQuickslot = 93,
106
+ AllEquipmentUnEquipped = 94,
107
+ AlreadyDesalinatedWaterInStill = 95,
108
+ AlreadyFullyRefined = 96,
109
+ AlreadyFullyRepaired = 97,
110
+ AlreadyPreserved = 98,
111
+ Alter = 99,
112
+ AnotherIsland = 100,
113
+ AnUnknownItem = 101,
114
+ AppearedNotEffectiveForGathering = 102,
115
+ AppearsToBeAberrant = 103,
116
+ ArmorAppeared = 104,
117
+ ArmorProtectedFromInjuryAgainst = 105,
118
+ Attack = 106,
119
+ AttemptedToDropAllIntoFire = 107,
120
+ AttemptedToPlaceAllOnGround = 108,
121
+ AttemptToSoothBurnInWater = 109,
122
+ AttemptToTill = 110,
123
+ AutoActionsNoItem = 111,
124
+ BadlyBurnedLostHealth = 112,
125
+ BarteringSkillsProvided = 113,
126
+ BasedOnItSeems = 114,
127
+ BeenPoisoned = 115,
128
+ BeginSleeping = 116,
129
+ BeginUsingVehicle = 117,
130
+ BestForCrafting = 118,
131
+ BleedingHasStopped = 119,
132
+ BleedingProfusely = 120,
133
+ BleedingToDeathLostHealth = 121,
134
+ BookBlank = 122,
135
+ BookContains = 123,
136
+ BookCrumbles = 124,
137
+ BookDiagrams = 125,
138
+ BookEmpty = 126,
139
+ BookNothing = 127,
140
+ BookOpen = 128,
141
+ BookScribbles = 129,
142
+ BothEffectiveIneffective = 130,
143
+ BrokeIntoPieces = 131,
144
+ BrokenOnImpact = 132,
145
+ BrokenWhileFiring = 133,
146
+ Build = 134,
147
+ Burned = 135,
148
+ CannotAddAnyMoreFuel = 136,
149
+ CannotBeCrafted = 137,
150
+ CannotBePerformedOverWater = 138,
151
+ CannotBePlacedHere = 139,
152
+ CannotBePreserved = 140,
153
+ CannotBeRefined = 141,
154
+ CannotBeRefinedReinforcementNeeded = 142,
155
+ CannotBeReinforced = 143,
156
+ CannotBeRepaired = 144,
157
+ CannotBuildHere = 145,
158
+ CannotDoThatHere = 146,
159
+ CannotDropHere = 147,
160
+ CannotEquipThatThere = 148,
161
+ CannotFishFor = 149,
162
+ CannotHere = 150,
163
+ CannotInWater = 151,
164
+ CannotLeave = 152,
165
+ CannotNoTreasure = 153,
166
166
  CannotPickUpLockedContainer = 154,
167
167
  CannotPickUpWhileLit = 155,
168
168
  CannotPlaceContainerInItself = 156,
@@ -181,8 +181,8 @@ declare enum Message {
181
181
  CannotToTellTime = 169,
182
182
  CannotUseCommand = 170,
183
183
  CannotWhenProtected = 171,
184
- CannotWhenProtectedDurability = 172,
185
- CannotWhenProtectedDangerousAction = 173,
184
+ CannotWhenProtectedDangerousAction = 172,
185
+ CannotWhenProtectedDurability = 173,
186
186
  CarryingTooMuchWeight = 174,
187
187
  CarvedUpCorpse = 175,
188
188
  Carving = 176,
@@ -743,235 +743,236 @@ declare enum Message {
743
743
  SortedByBestCraftingConsumables = 731,
744
744
  SortedByBestCraftingRequirements = 732,
745
745
  SortedByCategory = 733,
746
- SortedByDecay = 734,
747
- SortedByDurability = 735,
748
- SortedByGroup = 736,
749
- SortedByMagical = 737,
750
- SortedByName = 738,
751
- SortedByQuality = 739,
752
- SortedByRecent = 740,
753
- SortedBySkill = 741,
754
- SortedByUnlockedTime = 742,
755
- SortedByWeight = 743,
756
- SortedByWorth = 744,
757
- South = 745,
758
- Southeast = 746,
759
- SouthSoutheast = 747,
760
- SouthSouthwest = 748,
761
- Southwest = 749,
762
- StaminaIsFull = 750,
763
- StartedFire = 751,
764
- StartTravelInWater = 752,
765
- StarvingToDeath = 753,
766
- StatAmount = 754,
767
- StatGained = 755,
768
- StatIncreasing = 756,
769
- StatLost = 757,
770
- StatQuenched = 758,
771
- StatRegained = 759,
772
- StatSated = 760,
773
- SteppingOn = 761,
774
- StillHasNoWaterToPurify = 762,
775
- StirredUpClawWorm = 763,
776
- StirredUpCreature = 764,
777
- StoppedYourBleeding = 765,
778
- StopUsingVehicle = 766,
779
- Strength = 767,
780
- SummonedGuardiansByDiggingTreasure = 768,
781
- SummonedGuardiansByLockpicking = 769,
782
- SummonVoidDwellerItem = 770,
783
- SummonVoidDwellerRinging = 771,
784
- SummonVoidDwellerShiver = 772,
785
- SunNotBrightEnoughToStartFire = 773,
786
- SwampWater = 774,
787
- Swimming = 775,
788
- TakenFromGroundBecomeTamed = 776,
789
- Tame = 777,
790
- TamedCreature = 778,
791
- TeleportBlocked = 779,
792
- Teleported = 780,
793
- ThanksBuying = 781,
794
- ThanksSelling = 782,
795
- TheCreature = 783,
796
- TheirFist = 784,
797
- ThePlant = 785,
798
- ThereIsNoContainerOnTheStill = 786,
799
- ThereIsNoSunToStartFire = 787,
800
- ThisCannotBeMilked = 788,
801
- Throw = 789,
802
- ThrownIntoDepths = 790,
803
- ThrownIntoObstacle = 791,
804
- ThrownIntoVoid = 792,
805
- Tier = 793,
806
- TierGroup = 794,
807
- Till = 795,
808
- Tilling = 796,
809
- TillWithHands = 797,
810
- TimeIs = 798,
811
- TimeIsDawn = 799,
812
- TimeIsDaytime = 800,
813
- TimeIsDusk = 801,
814
- TimeIsNighttime = 802,
815
- TimeIsSunrise = 803,
816
- TimeIsSunset = 804,
817
- ToDamageAChest = 805,
818
- ToFight = 806,
819
- TooDamaged = 807,
820
- TooExhaustedToJump = 808,
821
- Touching = 809,
822
- TradeBarterCreditForItem = 810,
823
- TradeItemForBarterCredit = 811,
824
- TradingWith = 812,
825
- TrampledFire = 813,
826
- TrampledIntoGround = 814,
827
- TrampleIntoGround = 815,
828
- Trampling = 816,
829
- TransmogrificationNotPossible = 817,
830
- Transmogrified = 818,
831
- Transmogrify = 819,
832
- TrapMissed = 820,
833
- TrapStoppedYou = 821,
834
- Traveling = 822,
835
- TreasureIsBlocked = 823,
836
- UiActionCannotUseMissingSlottedItem = 824,
837
- UiActionCannotUseRequiresCreature = 825,
838
- UiActionCannotUseRequiresDoodad = 826,
839
- UiActionCannotUseRequiresItem = 827,
840
- UnEquip = 828,
841
- UnEquipAll = 829,
842
- Unhitch = 830,
843
- UnhitchCreature = 831,
844
- Unknown = 832,
845
- UnknownItem = 833,
846
- Unlimited = 834,
847
- UnlockedChest = 835,
848
- UnlockedTime = 836,
849
- UnpurifiedFreshWater = 837,
850
- UnpurifiedWaterInStill = 838,
851
- Use = 839,
852
- UsingBareHands = 840,
853
- VehicleDefense = 841,
854
- Vulnerable = 842,
855
- Water = 843,
856
- WaterGathering = 844,
857
- WaterPutOutFire = 845,
858
- Weight = 846,
859
- WellIsDry = 847,
860
- WellIsFull = 848,
861
- West = 849,
862
- WestNorthwest = 850,
863
- WestSouthwest = 851,
864
- WildGoatRefusedToBeMilked = 852,
865
- WillNotTrade = 853,
866
- WithYouSee = 854,
867
- WorkingYourselfIntoExhaustion = 855,
868
- WorkingYourselfIntoExhaustionAndDrowning = 856,
869
- Worth = 857,
870
- You = 858,
871
- YouAbsorb = 859,
872
- YouApplied = 860,
873
- YouAreAlready = 861,
874
- YouAte = 862,
875
- YouBeginResting = 863,
876
- YouCannotDoThatYet = 864,
877
- YouCanNowCombatTheTides = 865,
878
- YouCooledLava = 866,
879
- YouCrafted = 867,
880
- YouDied = 868,
881
- YouDoNotFindTreasureYet = 869,
882
- YouDrank = 870,
883
- YouDropTheTorch = 871,
884
- YouEnchant = 872,
885
- YouEquip = 873,
886
- YouExude = 874,
887
- YouExudeSome = 875,
888
- YouExudeSomeReasonConflicting = 876,
889
- YouExudeSomeReasonMax = 877,
890
- YouExudeSomeReasonProperties = 878,
891
- YouFailedTo = 879,
892
- YouFailedToExtinguishedFireFully = 880,
893
- YouFailedToHeal = 881,
894
- YouFailedToHealOther = 882,
895
- YouFire = 883,
896
- YouGathered = 884,
897
- YouGatheredAndDropped = 885,
898
- YouHarvested = 886,
899
- YouHarvestedAndDropped = 887,
900
- YouHave = 888,
901
- YouHaveAlreadyLearned = 889,
902
- YouHaveBeenCut = 890,
903
- YouHaveCommanded = 891,
904
- YouHaveDied = 892,
905
- YouHaveEnabledDisabled = 893,
906
- YouHaveHealedOther = 894,
907
- YouHaveKilled = 895,
908
- YouHaveReleased = 896,
909
- YouHaveSummoned = 897,
910
- YouHaveTamed = 898,
911
- YouHaveUncaged = 899,
912
- YouNeedMoreCredit = 900,
913
- YouNeedXToY = 901,
914
- YouNoticeBarren = 902,
915
- YouNoticeBecomeEnraged = 903,
916
- YouNoticeDying = 904,
917
- YouNoticeFertilityDecreasing = 905,
918
- YouNoticeFertilityIncreasing = 906,
919
- YouNoticeGrowing = 907,
920
- YouNoticeLavaCooling = 908,
921
- YouNoticeLavaHardening = 909,
922
- YouNoticePerish = 910,
923
- YouNoticePlantDamage = 911,
924
- YouNoticePlantRegenerated = 912,
925
- YouNoticeRegrowing = 913,
926
- YouNoticeStumbleInjureItself = 914,
927
- YouNoticeTakeFromGround = 915,
928
- YouNoticeWoundsClosing = 916,
929
- YouNoticeZombieHorde = 917,
930
- YouOfferedToCreature = 918,
931
- YouOfferedToCreatureRejects = 919,
932
- YouOpen = 920,
933
- YouOpenShip = 921,
934
- YouPacked = 922,
935
- YouPickedUp = 923,
936
- YouRefine = 924,
937
- YouReinforce = 925,
938
- YouRepair = 926,
939
- YouReturnFromCivilizationWith = 927,
940
- YourFist = 928,
941
- YourHands = 929,
942
- YourHighSkill = 930,
943
- YourInventory = 931,
944
- YourIsland = 932,
945
- YourLowSkill = 933,
946
- YourModerateSkill = 934,
947
- YourRubbingNoEffect = 935,
948
- YouRub = 936,
949
- YouSee = 937,
950
- YouSeeALivingMushroomSpore = 938,
951
- YouSeeAnAberrant = 939,
952
- YouSeeASkeletonCollapse = 940,
953
- YouSeeASlimeCombine = 941,
954
- YouSeeAZombieBleeding = 942,
955
- YouSeeCoolDown = 943,
956
- YouSeeDrop = 944,
957
- YouSeeEngulfFire = 945,
958
- YouSeeFireSpread = 946,
959
- YouSeeHelpingPlant = 947,
960
- YouSeeLay = 948,
961
- YouSeeLayingTrap = 949,
962
- YouSeeSpewLava = 950,
963
- YouSeeSpitAcid = 951,
964
- YouSeeSpringForth = 952,
965
- YouSeeSummon = 953,
966
- YouSeeSwampFlood = 954,
967
- YouSeeTrampling = 955,
968
- YouSetTheTrapOff = 956,
969
- YouStokeTheCreature = 957,
970
- YouSwapMainHandAndOffHand = 958,
971
- YouThrew = 959,
972
- YouTilled = 960,
973
- YouUnequip = 961,
974
- YouUsed = 962,
975
- YouWhileTraveling = 963
746
+ SortedByCraftableOnly = 734,
747
+ SortedByDecay = 735,
748
+ SortedByDurability = 736,
749
+ SortedByGroup = 737,
750
+ SortedByMagical = 738,
751
+ SortedByName = 739,
752
+ SortedByQuality = 740,
753
+ SortedByRecent = 741,
754
+ SortedBySkill = 742,
755
+ SortedByUnlockedTime = 743,
756
+ SortedByWeight = 744,
757
+ SortedByWorth = 745,
758
+ South = 746,
759
+ Southeast = 747,
760
+ SouthSoutheast = 748,
761
+ SouthSouthwest = 749,
762
+ Southwest = 750,
763
+ StaminaIsFull = 751,
764
+ StartedFire = 752,
765
+ StartTravelInWater = 753,
766
+ StarvingToDeath = 754,
767
+ StatAmount = 755,
768
+ StatGained = 756,
769
+ StatIncreasing = 757,
770
+ StatLost = 758,
771
+ StatQuenched = 759,
772
+ StatRegained = 760,
773
+ StatSated = 761,
774
+ SteppingOn = 762,
775
+ StillHasNoWaterToPurify = 763,
776
+ StirredUpClawWorm = 764,
777
+ StirredUpCreature = 765,
778
+ StoppedYourBleeding = 766,
779
+ StopUsingVehicle = 767,
780
+ Strength = 768,
781
+ SummonedGuardiansByDiggingTreasure = 769,
782
+ SummonedGuardiansByLockpicking = 770,
783
+ SummonVoidDwellerItem = 771,
784
+ SummonVoidDwellerRinging = 772,
785
+ SummonVoidDwellerShiver = 773,
786
+ SunNotBrightEnoughToStartFire = 774,
787
+ SwampWater = 775,
788
+ Swimming = 776,
789
+ TakenFromGroundBecomeTamed = 777,
790
+ Tame = 778,
791
+ TamedCreature = 779,
792
+ TeleportBlocked = 780,
793
+ Teleported = 781,
794
+ ThanksBuying = 782,
795
+ ThanksSelling = 783,
796
+ TheCreature = 784,
797
+ TheirFist = 785,
798
+ ThePlant = 786,
799
+ ThereIsNoContainerOnTheStill = 787,
800
+ ThereIsNoSunToStartFire = 788,
801
+ ThisCannotBeMilked = 789,
802
+ Throw = 790,
803
+ ThrownIntoDepths = 791,
804
+ ThrownIntoObstacle = 792,
805
+ ThrownIntoVoid = 793,
806
+ Tier = 794,
807
+ TierGroup = 795,
808
+ Till = 796,
809
+ Tilling = 797,
810
+ TillWithHands = 798,
811
+ TimeIs = 799,
812
+ TimeIsDawn = 800,
813
+ TimeIsDaytime = 801,
814
+ TimeIsDusk = 802,
815
+ TimeIsNighttime = 803,
816
+ TimeIsSunrise = 804,
817
+ TimeIsSunset = 805,
818
+ ToDamageAChest = 806,
819
+ ToFight = 807,
820
+ TooDamaged = 808,
821
+ TooExhaustedToJump = 809,
822
+ Touching = 810,
823
+ TradeBarterCreditForItem = 811,
824
+ TradeItemForBarterCredit = 812,
825
+ TradingWith = 813,
826
+ TrampledFire = 814,
827
+ TrampledIntoGround = 815,
828
+ TrampleIntoGround = 816,
829
+ Trampling = 817,
830
+ TransmogrificationNotPossible = 818,
831
+ Transmogrified = 819,
832
+ Transmogrify = 820,
833
+ TrapMissed = 821,
834
+ TrapStoppedYou = 822,
835
+ Traveling = 823,
836
+ TreasureIsBlocked = 824,
837
+ UiActionCannotUseMissingSlottedItem = 825,
838
+ UiActionCannotUseRequiresCreature = 826,
839
+ UiActionCannotUseRequiresDoodad = 827,
840
+ UiActionCannotUseRequiresItem = 828,
841
+ UnEquip = 829,
842
+ UnEquipAll = 830,
843
+ Unhitch = 831,
844
+ UnhitchCreature = 832,
845
+ Unknown = 833,
846
+ UnknownItem = 834,
847
+ Unlimited = 835,
848
+ UnlockedChest = 836,
849
+ UnlockedTime = 837,
850
+ UnpurifiedFreshWater = 838,
851
+ UnpurifiedWaterInStill = 839,
852
+ Use = 840,
853
+ UsingBareHands = 841,
854
+ VehicleDefense = 842,
855
+ Vulnerable = 843,
856
+ Water = 844,
857
+ WaterGathering = 845,
858
+ WaterPutOutFire = 846,
859
+ Weight = 847,
860
+ WellIsDry = 848,
861
+ WellIsFull = 849,
862
+ West = 850,
863
+ WestNorthwest = 851,
864
+ WestSouthwest = 852,
865
+ WildGoatRefusedToBeMilked = 853,
866
+ WillNotTrade = 854,
867
+ WithYouSee = 855,
868
+ WorkingYourselfIntoExhaustion = 856,
869
+ WorkingYourselfIntoExhaustionAndDrowning = 857,
870
+ Worth = 858,
871
+ You = 859,
872
+ YouAbsorb = 860,
873
+ YouApplied = 861,
874
+ YouAreAlready = 862,
875
+ YouAte = 863,
876
+ YouBeginResting = 864,
877
+ YouCannotDoThatYet = 865,
878
+ YouCanNowCombatTheTides = 866,
879
+ YouCooledLava = 867,
880
+ YouCrafted = 868,
881
+ YouDied = 869,
882
+ YouDoNotFindTreasureYet = 870,
883
+ YouDrank = 871,
884
+ YouDropTheTorch = 872,
885
+ YouEnchant = 873,
886
+ YouEquip = 874,
887
+ YouExude = 875,
888
+ YouExudeSome = 876,
889
+ YouExudeSomeReasonConflicting = 877,
890
+ YouExudeSomeReasonMax = 878,
891
+ YouExudeSomeReasonProperties = 879,
892
+ YouFailedTo = 880,
893
+ YouFailedToExtinguishedFireFully = 881,
894
+ YouFailedToHeal = 882,
895
+ YouFailedToHealOther = 883,
896
+ YouFire = 884,
897
+ YouGathered = 885,
898
+ YouGatheredAndDropped = 886,
899
+ YouHarvested = 887,
900
+ YouHarvestedAndDropped = 888,
901
+ YouHave = 889,
902
+ YouHaveAlreadyLearned = 890,
903
+ YouHaveBeenCut = 891,
904
+ YouHaveCommanded = 892,
905
+ YouHaveDied = 893,
906
+ YouHaveEnabledDisabled = 894,
907
+ YouHaveHealedOther = 895,
908
+ YouHaveKilled = 896,
909
+ YouHaveReleased = 897,
910
+ YouHaveSummoned = 898,
911
+ YouHaveTamed = 899,
912
+ YouHaveUncaged = 900,
913
+ YouNeedMoreCredit = 901,
914
+ YouNeedXToY = 902,
915
+ YouNoticeBarren = 903,
916
+ YouNoticeBecomeEnraged = 904,
917
+ YouNoticeDying = 905,
918
+ YouNoticeFertilityDecreasing = 906,
919
+ YouNoticeFertilityIncreasing = 907,
920
+ YouNoticeGrowing = 908,
921
+ YouNoticeLavaCooling = 909,
922
+ YouNoticeLavaHardening = 910,
923
+ YouNoticePerish = 911,
924
+ YouNoticePlantDamage = 912,
925
+ YouNoticePlantRegenerated = 913,
926
+ YouNoticeRegrowing = 914,
927
+ YouNoticeStumbleInjureItself = 915,
928
+ YouNoticeTakeFromGround = 916,
929
+ YouNoticeWoundsClosing = 917,
930
+ YouNoticeZombieHorde = 918,
931
+ YouOfferedToCreature = 919,
932
+ YouOfferedToCreatureRejects = 920,
933
+ YouOpen = 921,
934
+ YouOpenShip = 922,
935
+ YouPacked = 923,
936
+ YouPickedUp = 924,
937
+ YouRefine = 925,
938
+ YouReinforce = 926,
939
+ YouRepair = 927,
940
+ YouReturnFromCivilizationWith = 928,
941
+ YourFist = 929,
942
+ YourHands = 930,
943
+ YourHighSkill = 931,
944
+ YourInventory = 932,
945
+ YourIsland = 933,
946
+ YourLowSkill = 934,
947
+ YourModerateSkill = 935,
948
+ YourRubbingNoEffect = 936,
949
+ YouRub = 937,
950
+ YouSee = 938,
951
+ YouSeeALivingMushroomSpore = 939,
952
+ YouSeeAnAberrant = 940,
953
+ YouSeeASkeletonCollapse = 941,
954
+ YouSeeASlimeCombine = 942,
955
+ YouSeeAZombieBleeding = 943,
956
+ YouSeeCoolDown = 944,
957
+ YouSeeDrop = 945,
958
+ YouSeeEngulfFire = 946,
959
+ YouSeeFireSpread = 947,
960
+ YouSeeHelpingPlant = 948,
961
+ YouSeeLay = 949,
962
+ YouSeeLayingTrap = 950,
963
+ YouSeeSpewLava = 951,
964
+ YouSeeSpitAcid = 952,
965
+ YouSeeSpringForth = 953,
966
+ YouSeeSummon = 954,
967
+ YouSeeSwampFlood = 955,
968
+ YouSeeTrampling = 956,
969
+ YouSetTheTrapOff = 957,
970
+ YouStokeTheCreature = 958,
971
+ YouSwapMainHandAndOffHand = 959,
972
+ YouThrew = 960,
973
+ YouTilled = 961,
974
+ YouUnequip = 962,
975
+ YouUsed = 963,
976
+ YouWhileTraveling = 964
976
977
  }
977
978
  export default Message;