@wayward/types 2.15.0-beta.dev.20251008.1 → 2.15.0-beta.dev.20251009.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.
@@ -71,7 +71,8 @@ export declare enum SfxType {
71
71
  UiUnstack = 59,
72
72
  Walk = 60,
73
73
  Water = 61,
74
- Wheelbarrow = 62
74
+ Wheelbarrow = 62,
75
+ CraftFail = 63
75
76
  }
76
77
  export type SfxUi = Extract<keyof typeof SfxType, `Ui${string}`> extends `Ui${infer RESULT}` ? Lowercase<RESULT> : never;
77
78
  export declare enum Music {
@@ -16,13 +16,24 @@ import { SkillType } from "@wayward/game/game/entity/IHuman";
16
16
  import type Island from "@wayward/game/game/island/Island";
17
17
  import type { IVector2 } from "@wayward/game/utilities/math/IVector";
18
18
  import { IRange, IRangeRange } from "@wayward/utilities/math/Range";
19
- export declare const CURSE_WEIGHTS: PartialRecord<CurseComponent, number>;
20
- export declare const CURSE_ATTACK_MAX = 50;
21
- export declare const CURSE_DEFENSE_MAX = 100;
22
- export declare const CURSE_CRAFTING_MAX = 100;
23
- export declare const CURSE_KILLING_MAX = 100;
24
- export declare const CURSE_SKILL_MAX = 100;
25
- export declare const CURSE_COMPONENTS: Record<CurseComponent, (human: Human) => number>;
19
+ import DataComponent from "@wayward/game/game/entity/data/DataComponent";
20
+ export declare const CURSE_CAP = 10000;
21
+ export declare const CURSE_COMPONENT_ATTACK_CAP = 50;
22
+ export declare const CURSE_COMPONENT_DEFENSE_CAP = 100;
23
+ export declare const CURSE_COMPONENT_CRAFTING_CAP = 3000;
24
+ export declare const CURSE_COMPONENT_KILLING_CAP = 500;
25
+ export declare const CURSE_COMPONENT_SKILL_CAP = 100;
26
+ export declare const CURSE_COMPONENT_SLEEPLESSNESS_CAP_DAYS = 6;
27
+ interface CurseComponentDefinition {
28
+ readonly maxCurseContribution: number | null;
29
+ compute(human: Human): number;
30
+ }
31
+ export declare const CURSE_COMPONENTS: Record<CurseComponent, CurseComponentDefinition>;
32
+ export declare const CumulativeEvilCrafting: DataComponent<number, number>;
33
+ export declare const CumulativeKilling: DataComponent<number, number>;
34
+ export declare const Sleeplessness: DataComponent<number, number>;
35
+ export declare const HighestAttack: DataComponent.Live<number>;
36
+ export declare const HighestDefense: DataComponent.Live<number>;
26
37
  /**
27
38
  * Gets the highest value of either current or max skill multiplied by the "evilness" of each skill (from rune chance)
28
39
  * (Basically, high values in any of the evil-er skills make curse go brrrr)
@@ -34,6 +45,7 @@ declare function getSkillValue(human: Human): {
34
45
  declare namespace Curse {
35
46
  const getSkill: typeof getSkillValue;
36
47
  function getComponentValue(human: Human, component: CurseComponent): number;
48
+ function getComponentCap(component: CurseComponent): number | null;
37
49
  function getValue(human: Human): number;
38
50
  }
39
51
  /**
@@ -90,6 +102,7 @@ declare namespace Curse {
90
102
  }
91
103
  declare const SYMBOL_CURSE_EVENT_SUBSCRIBER_INSTANCES: unique symbol;
92
104
  declare const SYMBOL_CURSE_EVENT_GLOBAL_SUBSCRIBER_INSTANCE: unique symbol;
105
+ declare const SYMBOL_CURSE_EVENT_ACTIVE_SUBSCRIBER_INSTANCE: unique symbol;
93
106
  interface Curse {
94
107
  night?: true;
95
108
  events?: CurseEventInstance[];
@@ -97,6 +110,7 @@ interface Curse {
97
110
  warned?: true;
98
111
  ephemeralCreatures?: number[];
99
112
  [SYMBOL_CURSE_EVENT_GLOBAL_SUBSCRIBER_INSTANCE]?: CurseEventSubscriber;
113
+ [SYMBOL_CURSE_EVENT_ACTIVE_SUBSCRIBER_INSTANCE]?: CurseEventSubscriber;
100
114
  }
101
115
  interface CurseEventInstance {
102
116
  type: CurseEventType;
@@ -63,12 +63,11 @@ export declare enum CursePosition {
63
63
  }
64
64
  export declare enum CurseComponent {
65
65
  Skill = 0,
66
- HighestAttack = 1,
67
- HighestDefense = 2,
68
- CumulativeEvilCrafting = 3,
69
- Equipment = 4,
70
- Modifier = 5,
71
- CumulativeKilling = 6
66
+ AttackDefense = 1,
67
+ CumulativeEvilCrafting = 2,
68
+ Modifier = 3,
69
+ CumulativeKilling = 4,
70
+ Sleeplessness = 5
72
71
  }
73
72
  export declare enum CurseSystemDiscovery {
74
73
  CurseFactors = 0,
@@ -398,6 +398,11 @@ export default class Doodad extends EntityMovable<IDoodadDescription, DoodadType
398
398
  * Gets the skill type associated with the doodad, or choose a random one if the description is an array.
399
399
  */
400
400
  getSkillUse(): SkillType;
401
+ /**
402
+ * Checks if a solar still can work in the current temperature.
403
+ * @returns True if the solar still can work in the current temperature, false if not.
404
+ */
405
+ willStillWorkInTemperature(): boolean;
401
406
  /**
402
407
  * Decay over time
403
408
  */
@@ -127,10 +127,6 @@ export default abstract class Human<DescriptionType = unknown, TypeType extends
127
127
  quests: IQuestManager;
128
128
  messages: IMessageManager;
129
129
  notes: INoteManager;
130
- highestAttack?: number;
131
- highestDefense?: number;
132
- cumulativeEvilCrafting: number;
133
- cumulativeKilling: number;
134
130
  itemDiscovered: ItemType[];
135
131
  private _humanTags?;
136
132
  /** @deprecated (use the entity itself) */
@@ -0,0 +1,38 @@
1
+ /*!
2
+ * Copyright 2011-2025 Unlok
3
+ * https://www.unlok.ca
4
+ *
5
+ * Credits & Thanks:
6
+ * https://www.unlok.ca/credits-thanks/
7
+ *
8
+ * Wayward is a copyrighted and licensed work. Modification and/or distribution of any source files is prohibited. If you wish to modify the game in any way, please refer to the modding guide:
9
+ * https://github.com/WaywardGame/types/wiki
10
+ */
11
+ import type Entity from "@wayward/game/game/entity/Entity";
12
+ export declare enum DataComponentType {
13
+ None = 0,
14
+ CurseSleeplessness = 1,
15
+ CurseCumulativeEvilCrafting = 2,
16
+ CurseCumulativeKilling = 3,
17
+ CurseHighestAttack = 4,
18
+ CurseHighestDefense = 5
19
+ }
20
+ interface DataComponent<T, DEFAULT_VALUE extends T | undefined = undefined> {
21
+ readonly type: DataComponentType;
22
+ has(entity: Entity): boolean;
23
+ get(entity: Entity): T | DEFAULT_VALUE;
24
+ compute(entity: Entity, compute: (defaultValue: DEFAULT_VALUE) => T): T;
25
+ set(entity: Entity, value: T): void;
26
+ modify(entity: Entity, modify: (current: T | DEFAULT_VALUE) => T): T;
27
+ remove(entity: Entity): void;
28
+ }
29
+ declare function DataComponent<T>(type: DataComponentType, defaultValue: T): DataComponent<T, T>;
30
+ declare function DataComponent<T>(type: DataComponentType, defaultValue?: T): DataComponent<T>;
31
+ declare namespace DataComponent {
32
+ interface Live<T> {
33
+ get(entity: Entity): T;
34
+ update(entity: Entity): void;
35
+ }
36
+ function Live<T>(type: DataComponentType, compute: (entity: Entity, current: T | undefined) => T): Live<T>;
37
+ }
38
+ export default DataComponent;
@@ -16,6 +16,7 @@ export default class StillWaterInfoProvider extends InfoProvider {
16
16
  private readonly waterTopMessage;
17
17
  private readonly waterBottomMessage;
18
18
  private readonly waterContainerMessage;
19
+ private readonly willStillWorkInTemperature;
19
20
  private constructor();
20
21
  getClass(): string[];
21
22
  hasContent(): boolean;
@@ -700,194 +700,195 @@ declare enum Message {
700
700
  Still = 688,
701
701
  StillHasNoWaterToPurify = 689,
702
702
  StillNoContainer = 690,
703
- StirredUpClawWorm = 691,
704
- StirredUpCreature = 692,
705
- StoppedYourBleeding = 693,
706
- StopUsingVehicle = 694,
707
- SummonedGuardiansByDiggingTreasure = 695,
708
- SummonedGuardiansByLockpicking = 696,
709
- SummonVoidDwellerItem = 697,
710
- SummonVoidDwellerRinging = 698,
711
- SummonVoidDwellerShiver = 699,
712
- SunNotBrightEnoughToStartFire = 700,
713
- SwampWater = 701,
714
- Swimming = 702,
715
- TakenFromGroundBecomeTamed = 703,
716
- TeleportBlocked = 704,
717
- Teleported = 705,
718
- TheirFist = 706,
719
- TheirInventory = 707,
720
- ThePlant = 708,
721
- ThereIsNoContainerOnTheStill = 709,
722
- ThereIsNoSunToStartFire = 710,
723
- ThisCannotBeMilked = 711,
724
- Throw = 712,
725
- ThrownIntoDepths = 713,
726
- ThrownIntoObstacle = 714,
727
- ThrownIntoVoid = 715,
728
- TierGroup = 716,
729
- TileMakeCaveEntranceNearby = 717,
730
- TileMakeCaveEntrancePassable = 718,
731
- TileMakeCaveEntranceVoid = 719,
732
- Till = 720,
733
- Tilling = 721,
734
- TimeIs = 722,
735
- TimeIsDawn = 723,
736
- TimeIsDaytime = 724,
737
- TimeIsDusk = 725,
738
- TimeIsNighttime = 726,
739
- TimeIsSunrise = 727,
740
- TimeIsSunset = 728,
741
- ToFight = 729,
742
- TooDamaged = 730,
743
- TooExhaustedToJump = 731,
744
- Touching = 732,
745
- TrampledFire = 733,
746
- TrampledFireFail = 734,
747
- TrampledFirePartial = 735,
748
- TrampledIntoGround = 736,
749
- TrampleIntoGround = 737,
750
- Trampling = 738,
751
- TransmogrificationNoEffect = 739,
752
- TransmogrificationNotPossible = 740,
753
- Transmogrified = 741,
754
- TrapMissed = 742,
755
- TrapStoppedYou = 743,
756
- Traveling = 744,
757
- Treasure = 745,
758
- TreasureIsBlocked = 746,
759
- UiActionCannotUseInaccessibleItem = 747,
760
- UiActionCannotUseInThisSituation = 748,
761
- UiActionCannotUseNoItemHovered = 749,
762
- UiActionCannotUseNotInRange = 750,
763
- UiActionCannotUseOnThisIsland = 751,
764
- UiActionCannotUseRequiresCreature = 752,
765
- UiActionCannotUseRequiresDoodad = 753,
766
- UiActionCannotUseRequiresItem = 754,
767
- UiActionCannotUseRequiresNPC = 755,
768
- UiActionCannotUseRequiresVehicle = 756,
769
- UiDialogTradeIndicateTradeAlreadyTradedBuyDialogue1 = 757,
770
- UiDialogTradeIndicateTradeAlreadyTradedBuyDialogue2 = 758,
771
- UiDialogTradeIndicateTradeAlreadyTradedBuyDialogue3 = 759,
772
- UiDialogTradeIndicateTradeAlreadyTradedSellDialogue1 = 760,
773
- UiDialogTradeIndicateTradeAlreadyTradedSellDialogue2 = 761,
774
- UiDialogTradeIndicateTradeAlreadyTradedSellDialogue3 = 762,
775
- UiDialogTradeIndicateTradeTooMuchTradesDialogue1 = 763,
776
- UiDialogTradeIndicateTradeTooMuchTradesDialogue2 = 764,
777
- UiDialogTradeIndicateTradeTooMuchTradesDialogue3 = 765,
778
- UnhitchCreature = 766,
779
- Unknown = 767,
780
- Unlimited = 768,
781
- UnlockedChest = 769,
782
- UnpurifiedFreshWater = 770,
783
- UnpurifiedWaterInStill = 771,
784
- UnpurifiedWaterInTop = 772,
785
- Use = 773,
786
- UsingBareHands = 774,
787
- VehicleDefense = 775,
788
- Vulnerable = 776,
789
- Water = 777,
790
- WaterGathering = 778,
791
- WaterPutOutFire = 779,
792
- WellIsDry = 780,
793
- WellIsFull = 781,
794
- WildGoatRefusedToBeMilked = 782,
795
- WorkingYourselfIntoExhaustion = 783,
796
- WorkingYourselfIntoExhaustionAndDrowning = 784,
797
- WorldContainer = 785,
798
- You = 786,
799
- YouAbsorb = 787,
800
- YouApplied = 788,
801
- YouAreAlready = 789,
802
- YouAte = 790,
803
- YouBeginResting = 791,
804
- YouCannotDoThatYet = 792,
805
- YouCanNowCombatTheTides = 793,
806
- YouCrafted = 794,
807
- YouDoNotFindTreasureYet = 795,
808
- YouDrank = 796,
809
- YouDropTheTorch = 797,
810
- YouEnchant = 798,
811
- YouEquip = 799,
812
- YouExude = 800,
813
- YouExudeSome = 801,
814
- YouExudeSomeReasonConflicting = 802,
815
- YouExudeSomeReasonMax = 803,
816
- YouExudeSomeReasonProperties = 804,
817
- YouFailedTo = 805,
818
- YouFailedToExtinguishedFireFully = 806,
819
- YouFailedToHeal = 807,
820
- YouFailedToHealOther = 808,
821
- YouFire = 809,
822
- YouGathered = 810,
823
- YouHarvested = 811,
824
- YouHave = 812,
825
- YouHaveAlreadyLearned = 813,
826
- YouHaveBeenCut = 814,
827
- YouHaveCaged = 815,
828
- YouHaveCommanded = 816,
829
- YouHaveDied = 817,
830
- YouHaveHealedOther = 818,
831
- YouHaveKilled = 819,
832
- YouHaveNotCommanded = 820,
833
- YouHaveReleased = 821,
834
- YouHaveSummoned = 822,
835
- YouHaveTamed = 823,
836
- YouHaveUncaged = 824,
837
- YouNoticeBarren = 825,
838
- YouNoticeBecomeEnraged = 826,
839
- YouNoticeDying = 827,
840
- YouNoticeFertilityDecreasing = 828,
841
- YouNoticeFertilityIncreasing = 829,
842
- YouNoticeGrowing = 830,
843
- YouNoticeLavaCooling = 831,
844
- YouNoticeLavaHardening = 832,
845
- YouNoticePerish = 833,
846
- YouNoticePlantDamage = 834,
847
- YouNoticePlantRegenerated = 835,
848
- YouNoticeRegrowing = 836,
849
- YouNoticeStumbleInjureItself = 837,
850
- YouNoticeTakeFromGround = 838,
851
- YouNoticeWoundsClosing = 839,
852
- YouOfferedToCreature = 840,
853
- YouOfferedToCreatureRejects = 841,
854
- YouOpen = 842,
855
- YouPacked = 843,
856
- YouPickedUp = 844,
857
- YouRefine = 845,
858
- YouReinforce = 846,
859
- YouRepair = 847,
860
- YouReturnFromCivilizationWith = 848,
861
- YourFist = 849,
862
- YourHands = 850,
863
- YourInventory = 851,
864
- YourIsland = 852,
865
- YouSeeALivingMushroomSpore = 853,
866
- YouSeeASkeletonCollapse = 854,
867
- YouSeeASlimeCombine = 855,
868
- YouSeeAZombieBleeding = 856,
869
- YouSeeCoolDown = 857,
870
- YouSeeDrop = 858,
871
- YouSeeEngulfFire = 859,
872
- YouSeeFireSpread = 860,
873
- YouSeeHelpingPlant = 861,
874
- YouSeeLay = 862,
875
- YouSeeLayingTrap = 863,
876
- YouSeeSpewLava = 864,
877
- YouSeeSpiderSpin = 865,
878
- YouSeeSpitAcid = 866,
879
- YouSeeSpringForth = 867,
880
- YouSeeSummon = 868,
881
- YouSeeSwampFlood = 869,
882
- YouSeeTrampling = 870,
883
- YouSetTheTrapOff = 871,
884
- YouStokeTheCreature = 872,
885
- YouSwapMainHandAndOffHand = 873,
886
- YouThrew = 874,
887
- YouTilled = 875,
888
- YouUnequip = 876,
889
- YouUsed = 877,
890
- YouViewTheItemsOn = 878,
891
- YouWhileTraveling = 879
703
+ StillTooColdToWork = 691,
704
+ StirredUpClawWorm = 692,
705
+ StirredUpCreature = 693,
706
+ StoppedYourBleeding = 694,
707
+ StopUsingVehicle = 695,
708
+ SummonedGuardiansByDiggingTreasure = 696,
709
+ SummonedGuardiansByLockpicking = 697,
710
+ SummonVoidDwellerItem = 698,
711
+ SummonVoidDwellerRinging = 699,
712
+ SummonVoidDwellerShiver = 700,
713
+ SunNotBrightEnoughToStartFire = 701,
714
+ SwampWater = 702,
715
+ Swimming = 703,
716
+ TakenFromGroundBecomeTamed = 704,
717
+ TeleportBlocked = 705,
718
+ Teleported = 706,
719
+ TheirFist = 707,
720
+ TheirInventory = 708,
721
+ ThePlant = 709,
722
+ ThereIsNoContainerOnTheStill = 710,
723
+ ThereIsNoSunToStartFire = 711,
724
+ ThisCannotBeMilked = 712,
725
+ Throw = 713,
726
+ ThrownIntoDepths = 714,
727
+ ThrownIntoObstacle = 715,
728
+ ThrownIntoVoid = 716,
729
+ TierGroup = 717,
730
+ TileMakeCaveEntranceNearby = 718,
731
+ TileMakeCaveEntrancePassable = 719,
732
+ TileMakeCaveEntranceVoid = 720,
733
+ Till = 721,
734
+ Tilling = 722,
735
+ TimeIs = 723,
736
+ TimeIsDawn = 724,
737
+ TimeIsDaytime = 725,
738
+ TimeIsDusk = 726,
739
+ TimeIsNighttime = 727,
740
+ TimeIsSunrise = 728,
741
+ TimeIsSunset = 729,
742
+ ToFight = 730,
743
+ TooDamaged = 731,
744
+ TooExhaustedToJump = 732,
745
+ Touching = 733,
746
+ TrampledFire = 734,
747
+ TrampledFireFail = 735,
748
+ TrampledFirePartial = 736,
749
+ TrampledIntoGround = 737,
750
+ TrampleIntoGround = 738,
751
+ Trampling = 739,
752
+ TransmogrificationNoEffect = 740,
753
+ TransmogrificationNotPossible = 741,
754
+ Transmogrified = 742,
755
+ TrapMissed = 743,
756
+ TrapStoppedYou = 744,
757
+ Traveling = 745,
758
+ Treasure = 746,
759
+ TreasureIsBlocked = 747,
760
+ UiActionCannotUseInaccessibleItem = 748,
761
+ UiActionCannotUseInThisSituation = 749,
762
+ UiActionCannotUseNoItemHovered = 750,
763
+ UiActionCannotUseNotInRange = 751,
764
+ UiActionCannotUseOnThisIsland = 752,
765
+ UiActionCannotUseRequiresCreature = 753,
766
+ UiActionCannotUseRequiresDoodad = 754,
767
+ UiActionCannotUseRequiresItem = 755,
768
+ UiActionCannotUseRequiresNPC = 756,
769
+ UiActionCannotUseRequiresVehicle = 757,
770
+ UiDialogTradeIndicateTradeAlreadyTradedBuyDialogue1 = 758,
771
+ UiDialogTradeIndicateTradeAlreadyTradedBuyDialogue2 = 759,
772
+ UiDialogTradeIndicateTradeAlreadyTradedBuyDialogue3 = 760,
773
+ UiDialogTradeIndicateTradeAlreadyTradedSellDialogue1 = 761,
774
+ UiDialogTradeIndicateTradeAlreadyTradedSellDialogue2 = 762,
775
+ UiDialogTradeIndicateTradeAlreadyTradedSellDialogue3 = 763,
776
+ UiDialogTradeIndicateTradeTooMuchTradesDialogue1 = 764,
777
+ UiDialogTradeIndicateTradeTooMuchTradesDialogue2 = 765,
778
+ UiDialogTradeIndicateTradeTooMuchTradesDialogue3 = 766,
779
+ UnhitchCreature = 767,
780
+ Unknown = 768,
781
+ Unlimited = 769,
782
+ UnlockedChest = 770,
783
+ UnpurifiedFreshWater = 771,
784
+ UnpurifiedWaterInStill = 772,
785
+ UnpurifiedWaterInTop = 773,
786
+ Use = 774,
787
+ UsingBareHands = 775,
788
+ VehicleDefense = 776,
789
+ Vulnerable = 777,
790
+ Water = 778,
791
+ WaterGathering = 779,
792
+ WaterPutOutFire = 780,
793
+ WellIsDry = 781,
794
+ WellIsFull = 782,
795
+ WildGoatRefusedToBeMilked = 783,
796
+ WorkingYourselfIntoExhaustion = 784,
797
+ WorkingYourselfIntoExhaustionAndDrowning = 785,
798
+ WorldContainer = 786,
799
+ You = 787,
800
+ YouAbsorb = 788,
801
+ YouApplied = 789,
802
+ YouAreAlready = 790,
803
+ YouAte = 791,
804
+ YouBeginResting = 792,
805
+ YouCannotDoThatYet = 793,
806
+ YouCanNowCombatTheTides = 794,
807
+ YouCrafted = 795,
808
+ YouDoNotFindTreasureYet = 796,
809
+ YouDrank = 797,
810
+ YouDropTheTorch = 798,
811
+ YouEnchant = 799,
812
+ YouEquip = 800,
813
+ YouExude = 801,
814
+ YouExudeSome = 802,
815
+ YouExudeSomeReasonConflicting = 803,
816
+ YouExudeSomeReasonMax = 804,
817
+ YouExudeSomeReasonProperties = 805,
818
+ YouFailedTo = 806,
819
+ YouFailedToExtinguishedFireFully = 807,
820
+ YouFailedToHeal = 808,
821
+ YouFailedToHealOther = 809,
822
+ YouFire = 810,
823
+ YouGathered = 811,
824
+ YouHarvested = 812,
825
+ YouHave = 813,
826
+ YouHaveAlreadyLearned = 814,
827
+ YouHaveBeenCut = 815,
828
+ YouHaveCaged = 816,
829
+ YouHaveCommanded = 817,
830
+ YouHaveDied = 818,
831
+ YouHaveHealedOther = 819,
832
+ YouHaveKilled = 820,
833
+ YouHaveNotCommanded = 821,
834
+ YouHaveReleased = 822,
835
+ YouHaveSummoned = 823,
836
+ YouHaveTamed = 824,
837
+ YouHaveUncaged = 825,
838
+ YouNoticeBarren = 826,
839
+ YouNoticeBecomeEnraged = 827,
840
+ YouNoticeDying = 828,
841
+ YouNoticeFertilityDecreasing = 829,
842
+ YouNoticeFertilityIncreasing = 830,
843
+ YouNoticeGrowing = 831,
844
+ YouNoticeLavaCooling = 832,
845
+ YouNoticeLavaHardening = 833,
846
+ YouNoticePerish = 834,
847
+ YouNoticePlantDamage = 835,
848
+ YouNoticePlantRegenerated = 836,
849
+ YouNoticeRegrowing = 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
892
893
  }
893
894
  export default Message;