@wayward/types 2.13.0-beta.dev.20230319.1 → 2.13.0-beta.dev.20230322.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.
- package/definitions/game/game/entity/action/actions/ConsumeItem.d.ts +1 -1
- package/definitions/game/game/entity/action/actions/Exude.d.ts +2 -2
- package/definitions/game/game/island/Island.d.ts +1 -2
- package/definitions/game/game/item/IItem.d.ts +3 -2
- package/definitions/game/language/dictionary/Message.d.ts +333 -334
- package/package.json +1 -1
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
import { Action } from "game/entity/action/Action";
|
|
12
12
|
import type { IActionUsable } from "game/entity/action/IAction";
|
|
13
13
|
import { ActionArgument } from "game/entity/action/IAction";
|
|
14
|
-
import
|
|
14
|
+
import { IItemDescription } from "game/item/IItem";
|
|
15
15
|
export interface IConsumeItemCanUse extends IActionUsable {
|
|
16
16
|
description: IItemDescription;
|
|
17
17
|
}
|
|
@@ -12,10 +12,10 @@ import { Action } from "game/entity/action/Action";
|
|
|
12
12
|
import type { IActionUsable } from "game/entity/action/IAction";
|
|
13
13
|
import { ActionArgument } from "game/entity/action/IAction";
|
|
14
14
|
import type Item from "game/item/Item";
|
|
15
|
-
import
|
|
15
|
+
import MagicalPropertyManager from "game/magic/MagicalPropertyManager";
|
|
16
16
|
export interface IExudeCanUse extends IActionUsable {
|
|
17
17
|
exudeTarget: Item;
|
|
18
|
-
|
|
18
|
+
exudeItemMagic: MagicalPropertyManager;
|
|
19
19
|
}
|
|
20
20
|
declare const _default: Action<[ActionArgument.ItemInventory, [ActionArgument.ItemInventory, ActionArgument.Undefined]], import("../../Human").default<number>, void, IExudeCanUse, [Item, (Item | undefined)?]>;
|
|
21
21
|
export default _default;
|
|
@@ -125,7 +125,7 @@ export default class Island extends EventEmitter.Host<IIslandEvents> implements
|
|
|
125
125
|
onUnserialized(serializer: ISerializer): void;
|
|
126
126
|
get biome(): import("game/biome/IBiome").IBiomeDescription;
|
|
127
127
|
get isLoaded(): boolean;
|
|
128
|
-
get tiles(): Tile
|
|
128
|
+
get tiles(): Record<number, Tile | undefined>;
|
|
129
129
|
get hasLoadedItemReferences(): boolean;
|
|
130
130
|
get isLocalIsland(): boolean;
|
|
131
131
|
get world(): World;
|
|
@@ -182,7 +182,6 @@ export default class Island extends EventEmitter.Host<IIslandEvents> implements
|
|
|
182
182
|
getTileSafe(x: number, y: number, z: number): Tile | undefined;
|
|
183
183
|
createTile(x: number, y: number, z: number, index: number): Tile;
|
|
184
184
|
setTile(x: number, y: number, z: number, tile: Tile): Tile;
|
|
185
|
-
setTiles(tiles: Tile[]): void;
|
|
186
185
|
getOrCreateTile(index: number, x: number, y: number, z: number): Tile;
|
|
187
186
|
makeLavaPassage(human: Human): TerrainType | undefined;
|
|
188
187
|
makeCaveEntrance(human: Human, chance?: number): TerrainType | undefined;
|
|
@@ -656,339 +656,338 @@ declare enum Message {
|
|
|
656
656
|
ProtectedExude = 644,
|
|
657
657
|
ProtectedOffer = 645,
|
|
658
658
|
ProtectedOpen = 646,
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
YouWhileTraveling = 980
|
|
659
|
+
ProtectedPreserve = 647,
|
|
660
|
+
ProtectedRead = 648,
|
|
661
|
+
ProtectedReinforce = 649,
|
|
662
|
+
ProtectedRub = 650,
|
|
663
|
+
ProtectedSqueeze = 651,
|
|
664
|
+
ProtectedStokeFire = 652,
|
|
665
|
+
ProtectedSummon = 653,
|
|
666
|
+
ProtectedTransmogrify = 654,
|
|
667
|
+
ProtectedUpgrade = 655,
|
|
668
|
+
PurifiedWaterInStill = 656,
|
|
669
|
+
Quality = 657,
|
|
670
|
+
RandomEventsFire = 658,
|
|
671
|
+
Recent = 659,
|
|
672
|
+
ReduceLength = 660,
|
|
673
|
+
Refine = 661,
|
|
674
|
+
RefusedToBeTamed = 662,
|
|
675
|
+
Reinforce = 663,
|
|
676
|
+
Release = 664,
|
|
677
|
+
RemoveAction = 665,
|
|
678
|
+
RemoveFromQuickslot = 666,
|
|
679
|
+
Repair = 667,
|
|
680
|
+
ReputationDecreased = 668,
|
|
681
|
+
ReputationIncreased = 669,
|
|
682
|
+
ReputationUpdate = 670,
|
|
683
|
+
RequiredForDisassembleLabel = 671,
|
|
684
|
+
RequiredForDisassembly = 672,
|
|
685
|
+
RequiresFireToBeLit = 673,
|
|
686
|
+
RequiresYouFacingFireSource = 674,
|
|
687
|
+
RequiresYouToBeAround = 675,
|
|
688
|
+
Resistant = 676,
|
|
689
|
+
ResistOrVuln = 677,
|
|
690
|
+
ResistOrVulnAll = 678,
|
|
691
|
+
Rest = 679,
|
|
692
|
+
Rested = 680,
|
|
693
|
+
Resting = 681,
|
|
694
|
+
RestingOnGroundNotEffective = 682,
|
|
695
|
+
RestInterrupted = 683,
|
|
696
|
+
RestInterruptedDamage = 684,
|
|
697
|
+
RestInterruptedDying = 685,
|
|
698
|
+
RestInterruptedLoudNoise = 686,
|
|
699
|
+
RestInterruptedPain = 687,
|
|
700
|
+
RestInterruptedStirring = 688,
|
|
701
|
+
RestInterruptedWaterPoured = 689,
|
|
702
|
+
RestLongTime = 690,
|
|
703
|
+
RestModerateTime = 691,
|
|
704
|
+
RestOnBoat = 692,
|
|
705
|
+
RestOnGround = 693,
|
|
706
|
+
RestShortTime = 694,
|
|
707
|
+
RestTime = 695,
|
|
708
|
+
ReturnedToCivilization = 696,
|
|
709
|
+
ReturningToCivilizationSetOffAgain = 697,
|
|
710
|
+
ReturnsToLife = 698,
|
|
711
|
+
Reveals = 699,
|
|
712
|
+
RevealsEntityAppearsHurt = 700,
|
|
713
|
+
RevealsEntityAppearsUnharmed = 701,
|
|
714
|
+
RevealsEntityAppearsVeryHurt = 702,
|
|
715
|
+
RevealsEntityIsAtPercentHealth = 703,
|
|
716
|
+
RevealsEntityIsInjured = 704,
|
|
717
|
+
RevealsEntityIsMostlyUninjured = 705,
|
|
718
|
+
RevealsEntityIsOnTheVergeOfDeath = 706,
|
|
719
|
+
RevealsEntityIsSeverelyInjured = 707,
|
|
720
|
+
RevealsEntityIsUninjured = 708,
|
|
721
|
+
RevealsEntitySeemsInjured = 709,
|
|
722
|
+
RevealsEntitySeemsUninjured = 710,
|
|
723
|
+
RevealsNumberOfResistancesAndVulnerabilities = 711,
|
|
724
|
+
RevealsResistancesAndVulnerabilities = 712,
|
|
725
|
+
RevealsSomeResistancesAndVulnerabilities = 713,
|
|
726
|
+
Reverse = 714,
|
|
727
|
+
RightHand = 715,
|
|
728
|
+
Sailing = 716,
|
|
729
|
+
ScrollMaster = 717,
|
|
730
|
+
ScrollProvidedNoUsefulInsight = 718,
|
|
731
|
+
Seawater = 719,
|
|
732
|
+
SeemsToHaveDrawnEnergy = 720,
|
|
733
|
+
SetTrapOffButNoDamage = 721,
|
|
734
|
+
SetUp = 722,
|
|
735
|
+
ShadowInTheWater = 723,
|
|
736
|
+
Ship = 724,
|
|
737
|
+
Skill = 725,
|
|
738
|
+
SkillHasRaised = 726,
|
|
739
|
+
Skills = 727,
|
|
740
|
+
Sleep = 728,
|
|
741
|
+
Sleeping = 729,
|
|
742
|
+
SleepOnBoat = 730,
|
|
743
|
+
Slept = 731,
|
|
744
|
+
SlitherSuckerConstricts = 732,
|
|
745
|
+
SlitherSuckerJumpedOnHead = 733,
|
|
746
|
+
SomethingInTheWayOf = 734,
|
|
747
|
+
SomethingInTheWayOfButcherFirst = 735,
|
|
748
|
+
SomethingInTheWayOfFire = 736,
|
|
749
|
+
SomethingInTheWayOfFishing = 737,
|
|
750
|
+
SomethingInTheWayOfPerforming = 738,
|
|
751
|
+
SomethingInTheWayOfPlacing = 739,
|
|
752
|
+
SomethingInTheWayOfPlanting = 740,
|
|
753
|
+
SomethingInTheWayOfReleasing = 741,
|
|
754
|
+
SomethingInTheWayOfSummoning = 742,
|
|
755
|
+
SomethingInWayOfClosingDoor = 743,
|
|
756
|
+
SoothedTheirBurnInjuries = 744,
|
|
757
|
+
SoothedYourBurnInjuries = 745,
|
|
758
|
+
Sort = 746,
|
|
759
|
+
SortedByBestCraftingConsumables = 747,
|
|
760
|
+
SortedByBestCraftingRequirements = 748,
|
|
761
|
+
SortedByCategory = 749,
|
|
762
|
+
SortedByDecay = 750,
|
|
763
|
+
SortedByDurability = 751,
|
|
764
|
+
SortedByGroup = 752,
|
|
765
|
+
SortedByMagical = 753,
|
|
766
|
+
SortedByName = 754,
|
|
767
|
+
SortedByQuality = 755,
|
|
768
|
+
SortedByRecent = 756,
|
|
769
|
+
SortedBySkill = 757,
|
|
770
|
+
SortedByUnlockedTime = 758,
|
|
771
|
+
SortedByWeight = 759,
|
|
772
|
+
SortedByWorth = 760,
|
|
773
|
+
South = 761,
|
|
774
|
+
Southeast = 762,
|
|
775
|
+
SouthSoutheast = 763,
|
|
776
|
+
SouthSouthwest = 764,
|
|
777
|
+
Southwest = 765,
|
|
778
|
+
StaminaIsFull = 766,
|
|
779
|
+
StartedFire = 767,
|
|
780
|
+
StartTravelInWater = 768,
|
|
781
|
+
StarvingToDeath = 769,
|
|
782
|
+
StatAmount = 770,
|
|
783
|
+
StatGained = 771,
|
|
784
|
+
StatIncreasing = 772,
|
|
785
|
+
StatLost = 773,
|
|
786
|
+
StatQuenched = 774,
|
|
787
|
+
StatRegained = 775,
|
|
788
|
+
StatSated = 776,
|
|
789
|
+
SteppingOn = 777,
|
|
790
|
+
StillHasNoWaterToPurify = 778,
|
|
791
|
+
StirredUpClawWorm = 779,
|
|
792
|
+
StirredUpCreature = 780,
|
|
793
|
+
StoppedYourBleeding = 781,
|
|
794
|
+
StopUsingVehicle = 782,
|
|
795
|
+
Strength = 783,
|
|
796
|
+
SummonedGuardiansByDiggingTreasure = 784,
|
|
797
|
+
SummonedGuardiansByLockpicking = 785,
|
|
798
|
+
SummonVoidDwellerItem = 786,
|
|
799
|
+
SummonVoidDwellerRinging = 787,
|
|
800
|
+
SummonVoidDwellerShiver = 788,
|
|
801
|
+
SunNotBrightEnoughToStartFire = 789,
|
|
802
|
+
SwampWater = 790,
|
|
803
|
+
Swimming = 791,
|
|
804
|
+
TakenFromGroundBecomeTamed = 792,
|
|
805
|
+
Tame = 793,
|
|
806
|
+
TamedCreature = 794,
|
|
807
|
+
TeleportBlocked = 795,
|
|
808
|
+
Teleported = 796,
|
|
809
|
+
ThanksBuying = 797,
|
|
810
|
+
ThanksSelling = 798,
|
|
811
|
+
TheCreature = 799,
|
|
812
|
+
TheirFist = 800,
|
|
813
|
+
ThePlant = 801,
|
|
814
|
+
ThereIsNoContainerOnTheStill = 802,
|
|
815
|
+
ThereIsNoSunToStartFire = 803,
|
|
816
|
+
ThisCannotBeMilked = 804,
|
|
817
|
+
Throw = 805,
|
|
818
|
+
ThrownIntoDepths = 806,
|
|
819
|
+
ThrownIntoObstacle = 807,
|
|
820
|
+
ThrownIntoVoid = 808,
|
|
821
|
+
Tier = 809,
|
|
822
|
+
TierGroup = 810,
|
|
823
|
+
Till = 811,
|
|
824
|
+
Tilling = 812,
|
|
825
|
+
TillWithHands = 813,
|
|
826
|
+
TimeIs = 814,
|
|
827
|
+
TimeIsDawn = 815,
|
|
828
|
+
TimeIsDaytime = 816,
|
|
829
|
+
TimeIsDusk = 817,
|
|
830
|
+
TimeIsNighttime = 818,
|
|
831
|
+
TimeIsSunrise = 819,
|
|
832
|
+
TimeIsSunset = 820,
|
|
833
|
+
ToDamageAChest = 821,
|
|
834
|
+
ToFight = 822,
|
|
835
|
+
TooDamaged = 823,
|
|
836
|
+
TooExhaustedToJump = 824,
|
|
837
|
+
Touching = 825,
|
|
838
|
+
TradeBarterCreditForItem = 826,
|
|
839
|
+
TradeItemForBarterCredit = 827,
|
|
840
|
+
TradingWith = 828,
|
|
841
|
+
TrampledFire = 829,
|
|
842
|
+
TrampledIntoGround = 830,
|
|
843
|
+
TrampleIntoGround = 831,
|
|
844
|
+
Trampling = 832,
|
|
845
|
+
TransmogrificationNotPossible = 833,
|
|
846
|
+
Transmogrified = 834,
|
|
847
|
+
Transmogrify = 835,
|
|
848
|
+
TrapMissed = 836,
|
|
849
|
+
TrapStoppedYou = 837,
|
|
850
|
+
Traveling = 838,
|
|
851
|
+
TreasureIsBlocked = 839,
|
|
852
|
+
UiActionCannotUseMissingSlottedItem = 840,
|
|
853
|
+
UiActionCannotUseRequiresCreature = 841,
|
|
854
|
+
UiActionCannotUseRequiresDoodad = 842,
|
|
855
|
+
UiActionCannotUseRequiresItem = 843,
|
|
856
|
+
UnEquip = 844,
|
|
857
|
+
UnEquipAll = 845,
|
|
858
|
+
Unhitch = 846,
|
|
859
|
+
UnhitchCreature = 847,
|
|
860
|
+
Unknown = 848,
|
|
861
|
+
UnknownItem = 849,
|
|
862
|
+
Unlimited = 850,
|
|
863
|
+
UnlockedChest = 851,
|
|
864
|
+
UnlockedTime = 852,
|
|
865
|
+
UnpurifiedFreshWater = 853,
|
|
866
|
+
UnpurifiedWaterInStill = 854,
|
|
867
|
+
Use = 855,
|
|
868
|
+
UsingBareHands = 856,
|
|
869
|
+
VehicleDefense = 857,
|
|
870
|
+
Vulnerable = 858,
|
|
871
|
+
Water = 859,
|
|
872
|
+
WaterGathering = 860,
|
|
873
|
+
WaterPutOutFire = 861,
|
|
874
|
+
Weight = 862,
|
|
875
|
+
WellIsDry = 863,
|
|
876
|
+
WellIsFull = 864,
|
|
877
|
+
West = 865,
|
|
878
|
+
WestNorthwest = 866,
|
|
879
|
+
WestSouthwest = 867,
|
|
880
|
+
WildGoatRefusedToBeMilked = 868,
|
|
881
|
+
WillNotTrade = 869,
|
|
882
|
+
WithYouSee = 870,
|
|
883
|
+
WorkingYourselfIntoExhaustion = 871,
|
|
884
|
+
WorkingYourselfIntoExhaustionAndDrowning = 872,
|
|
885
|
+
Worth = 873,
|
|
886
|
+
You = 874,
|
|
887
|
+
YouAbsorb = 875,
|
|
888
|
+
YouApplied = 876,
|
|
889
|
+
YouAreAlready = 877,
|
|
890
|
+
YouAte = 878,
|
|
891
|
+
YouBeginResting = 879,
|
|
892
|
+
YouCannotDoThatYet = 880,
|
|
893
|
+
YouCanNowCombatTheTides = 881,
|
|
894
|
+
YouCooledLava = 882,
|
|
895
|
+
YouCrafted = 883,
|
|
896
|
+
YouDied = 884,
|
|
897
|
+
YouDoNotFindTreasureYet = 885,
|
|
898
|
+
YouDrank = 886,
|
|
899
|
+
YouDropTheTorch = 887,
|
|
900
|
+
YouEnchant = 888,
|
|
901
|
+
YouEquip = 889,
|
|
902
|
+
YouExude = 890,
|
|
903
|
+
YouExudeSome = 891,
|
|
904
|
+
YouExudeSomeReasonConflicting = 892,
|
|
905
|
+
YouExudeSomeReasonMax = 893,
|
|
906
|
+
YouExudeSomeReasonProperties = 894,
|
|
907
|
+
YouFailedTo = 895,
|
|
908
|
+
YouFailedToExtinguishedFireFully = 896,
|
|
909
|
+
YouFailedToHeal = 897,
|
|
910
|
+
YouFailedToHealOther = 898,
|
|
911
|
+
YouFire = 899,
|
|
912
|
+
YouGathered = 900,
|
|
913
|
+
YouGatheredAndDropped = 901,
|
|
914
|
+
YouHarvested = 902,
|
|
915
|
+
YouHarvestedAndDropped = 903,
|
|
916
|
+
YouHave = 904,
|
|
917
|
+
YouHaveAlreadyLearned = 905,
|
|
918
|
+
YouHaveBeenCut = 906,
|
|
919
|
+
YouHaveCommanded = 907,
|
|
920
|
+
YouHaveDied = 908,
|
|
921
|
+
YouHaveEnabledDisabled = 909,
|
|
922
|
+
YouHaveHealedOther = 910,
|
|
923
|
+
YouHaveKilled = 911,
|
|
924
|
+
YouHaveReleased = 912,
|
|
925
|
+
YouHaveSummoned = 913,
|
|
926
|
+
YouHaveTamed = 914,
|
|
927
|
+
YouHaveUncaged = 915,
|
|
928
|
+
YouNeedMoreCredit = 916,
|
|
929
|
+
YouNeedXToY = 917,
|
|
930
|
+
YouNoticeBarren = 918,
|
|
931
|
+
YouNoticeBecomeEnraged = 919,
|
|
932
|
+
YouNoticeDying = 920,
|
|
933
|
+
YouNoticeFertilityDecreasing = 921,
|
|
934
|
+
YouNoticeFertilityIncreasing = 922,
|
|
935
|
+
YouNoticeGrowing = 923,
|
|
936
|
+
YouNoticeLavaCooling = 924,
|
|
937
|
+
YouNoticeLavaHardening = 925,
|
|
938
|
+
YouNoticePerish = 926,
|
|
939
|
+
YouNoticePlantDamage = 927,
|
|
940
|
+
YouNoticePlantRegenerated = 928,
|
|
941
|
+
YouNoticeRegrowing = 929,
|
|
942
|
+
YouNoticeStumbleInjureItself = 930,
|
|
943
|
+
YouNoticeTakeFromGround = 931,
|
|
944
|
+
YouNoticeWoundsClosing = 932,
|
|
945
|
+
YouNoticeZombieHorde = 933,
|
|
946
|
+
YouOfferedToCreature = 934,
|
|
947
|
+
YouOfferedToCreatureRejects = 935,
|
|
948
|
+
YouOpen = 936,
|
|
949
|
+
YouOpenShip = 937,
|
|
950
|
+
YouPacked = 938,
|
|
951
|
+
YouPickedUp = 939,
|
|
952
|
+
YouRefine = 940,
|
|
953
|
+
YouReinforce = 941,
|
|
954
|
+
YouRepair = 942,
|
|
955
|
+
YouReturnFromCivilizationWith = 943,
|
|
956
|
+
YourFist = 944,
|
|
957
|
+
YourHands = 945,
|
|
958
|
+
YourHighSkill = 946,
|
|
959
|
+
YourInventory = 947,
|
|
960
|
+
YourIsland = 948,
|
|
961
|
+
YourLowSkill = 949,
|
|
962
|
+
YourModerateSkill = 950,
|
|
963
|
+
YourRubbingNoEffect = 951,
|
|
964
|
+
YouRub = 952,
|
|
965
|
+
YouSee = 953,
|
|
966
|
+
YouSeeALivingMushroomSpore = 954,
|
|
967
|
+
YouSeeAnAberrant = 955,
|
|
968
|
+
YouSeeASkeletonCollapse = 956,
|
|
969
|
+
YouSeeASlimeCombine = 957,
|
|
970
|
+
YouSeeAZombieBleeding = 958,
|
|
971
|
+
YouSeeCoolDown = 959,
|
|
972
|
+
YouSeeDrop = 960,
|
|
973
|
+
YouSeeEngulfFire = 961,
|
|
974
|
+
YouSeeFireSpread = 962,
|
|
975
|
+
YouSeeHelpingPlant = 963,
|
|
976
|
+
YouSeeLay = 964,
|
|
977
|
+
YouSeeLayingTrap = 965,
|
|
978
|
+
YouSeeSpewLava = 966,
|
|
979
|
+
YouSeeSpitAcid = 967,
|
|
980
|
+
YouSeeSpringForth = 968,
|
|
981
|
+
YouSeeSummon = 969,
|
|
982
|
+
YouSeeSwampFlood = 970,
|
|
983
|
+
YouSeeTrampling = 971,
|
|
984
|
+
YouSetTheTrapOff = 972,
|
|
985
|
+
YouStokeTheCreature = 973,
|
|
986
|
+
YouSwapMainHandAndOffHand = 974,
|
|
987
|
+
YouThrew = 975,
|
|
988
|
+
YouTilled = 976,
|
|
989
|
+
YouUnequip = 977,
|
|
990
|
+
YouUsed = 978,
|
|
991
|
+
YouWhileTraveling = 979
|
|
993
992
|
}
|
|
994
993
|
export default Message;
|
package/package.json
CHANGED