@wayward/types 2.14.6-beta.dev.20250720.1 → 2.14.6-beta.dev.20250722.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.
|
@@ -380,8 +380,10 @@ export default class Item extends EntityMovable<IItemDescription, ItemType, Refe
|
|
|
380
380
|
reduceDecayTime(time?: number): number | undefined;
|
|
381
381
|
/**
|
|
382
382
|
* Sets the item's decay time (ticks until it decays at 1x decay speed).
|
|
383
|
+
* @param decayTime The new decay time to set, or `undefined` to remove the decay time.
|
|
384
|
+
* @param bypassMax If set to true, it will not check the maximum decay time and will set it to the given value.
|
|
383
385
|
*/
|
|
384
|
-
setDecayTime(decayTime?: number): void;
|
|
386
|
+
setDecayTime(decayTime?: number, bypassMax?: boolean): void;
|
|
385
387
|
/**
|
|
386
388
|
* Resets the item's decay with some added randomization.
|
|
387
389
|
*/
|
|
@@ -506,371 +506,372 @@ declare enum Message {
|
|
|
506
506
|
No = 494,
|
|
507
507
|
NoAmmunitionForThatWeapon = 495,
|
|
508
508
|
NoFireToStokeWith = 496,
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
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
|
-
|
|
509
|
+
ActionStokeFireMaximumStokeReached = 497,
|
|
510
|
+
NoFishAtLocation = 498,
|
|
511
|
+
NoGroundWater = 499,
|
|
512
|
+
NoInkToDrawMap = 500,
|
|
513
|
+
NoKindlingOrFuelItemsToStartFire = 501,
|
|
514
|
+
NoKindlingToStartFire = 502,
|
|
515
|
+
NoLongerFeelPainOfBeingBurned = 503,
|
|
516
|
+
NoLongerFeelPainOfBeingFrostbitten = 504,
|
|
517
|
+
NoLongerHostile = 505,
|
|
518
|
+
NoMoreRoomInContainer = 506,
|
|
519
|
+
NoPaperToDrawMap = 507,
|
|
520
|
+
NoRequiredItemToFireWeapon = 508,
|
|
521
|
+
NoReturnWithoutCompletingChallenges = 509,
|
|
522
|
+
NoRoomForImprovement = 510,
|
|
523
|
+
NoRoomForVehicle = 511,
|
|
524
|
+
NoRoomToDrop = 512,
|
|
525
|
+
NoRoomToSummon = 513,
|
|
526
|
+
NotEnoughPurifiedWaterYet = 514,
|
|
527
|
+
NotEnoughTreasureToReturn = 515,
|
|
528
|
+
NothingTo = 516,
|
|
529
|
+
NothingToGetFromThis = 517,
|
|
530
|
+
NothingToHarvestFromThisGather = 518,
|
|
531
|
+
NothingToSmother = 519,
|
|
532
|
+
NothingUsefulToHarvestYet = 520,
|
|
533
|
+
NoTinderToStartFire = 521,
|
|
534
|
+
NotSuitableToPlant = 522,
|
|
535
|
+
NoWaterInStill = 523,
|
|
536
|
+
NPCMerchantNewInventoryDialogue1 = 524,
|
|
537
|
+
NPCMerchantNewInventoryDialogue2 = 525,
|
|
538
|
+
NPCMerchantNewInventoryDialogue3 = 526,
|
|
539
|
+
NPCMerchantNewInventoryDialogue4 = 527,
|
|
540
|
+
NPCMerchantStartingDialogue1 = 528,
|
|
541
|
+
NPCMerchantStartingDialogue2 = 529,
|
|
542
|
+
NPCMerchantStartingDialogue3 = 530,
|
|
543
|
+
NPCMerchantStartingDialogue4 = 531,
|
|
544
|
+
NPCMerchantWelcomeCredit = 532,
|
|
545
|
+
NPCShipperShipToIsland = 533,
|
|
546
|
+
NPCShipperStartingDialogue1 = 534,
|
|
547
|
+
NPCShipperStartingDialogue2 = 535,
|
|
548
|
+
NPCShipperStartingDialogue3 = 536,
|
|
549
|
+
NPCShipperStartingDialogue4 = 537,
|
|
550
|
+
NPCWelcome = 538,
|
|
551
|
+
ObjectIsLocked = 539,
|
|
552
|
+
ObjectIsLockedAttemptToBreakIt = 540,
|
|
553
|
+
OfferAberrantFail = 541,
|
|
554
|
+
OfferAberrantFailButTamed = 542,
|
|
555
|
+
Open = 543,
|
|
556
|
+
OpenClose = 544,
|
|
557
|
+
OpenCollapse = 545,
|
|
558
|
+
OverEatingLostStamina = 546,
|
|
559
|
+
OverHydratingLostStamina = 547,
|
|
560
|
+
Pack = 548,
|
|
561
|
+
PaperTurnedToMush = 549,
|
|
562
|
+
ParryTheBlow = 550,
|
|
563
|
+
PetCreature = 551,
|
|
564
|
+
PickAway = 552,
|
|
565
|
+
PickUp = 553,
|
|
566
|
+
PickUpExcrement = 554,
|
|
567
|
+
PickUpTheItem = 555,
|
|
568
|
+
Place = 556,
|
|
569
|
+
PlacedItem = 557,
|
|
570
|
+
PlacedItemFailed = 558,
|
|
571
|
+
PlacedOnGround = 559,
|
|
572
|
+
PlantedInGround = 560,
|
|
573
|
+
PlantGatheredPlant = 561,
|
|
574
|
+
PlantGatheringWillDestroy = 562,
|
|
575
|
+
PlantHasResourcesToGather = 563,
|
|
576
|
+
PlantHasResourcesToHarvest = 564,
|
|
577
|
+
PlantHighlyFertile = 565,
|
|
578
|
+
Planting = 566,
|
|
579
|
+
PlantIsBare = 567,
|
|
580
|
+
PlantIsFertile = 568,
|
|
581
|
+
PlantIsInStage = 569,
|
|
582
|
+
PlantIsNotFertile = 570,
|
|
583
|
+
PlantNotReadyToHarvest = 571,
|
|
584
|
+
PlantReadyToGather = 572,
|
|
585
|
+
PlantReadyToGatherNotMaximal = 573,
|
|
586
|
+
PlantReadyToHarvest = 574,
|
|
587
|
+
PlantReadyToHarvestNotMaximal = 575,
|
|
588
|
+
PlayerHas = 576,
|
|
589
|
+
PlayerHasCompletedChallengeRequirement = 577,
|
|
590
|
+
PlayerHasWonChallenge = 578,
|
|
591
|
+
Poisoned = 579,
|
|
592
|
+
PoisonedLostHealth = 580,
|
|
593
|
+
PoisonWorkedItsCourse = 581,
|
|
594
|
+
PouredOut = 582,
|
|
595
|
+
PouredOutOnYourself = 583,
|
|
596
|
+
PouredWaterIntoStill = 584,
|
|
597
|
+
PourHarmedPlant = 585,
|
|
598
|
+
PourHealedPlant = 586,
|
|
599
|
+
PourHealedPlantFully = 587,
|
|
600
|
+
PourHealedPlantPartially = 588,
|
|
601
|
+
PourIncreasedFertility = 589,
|
|
602
|
+
Pouring = 590,
|
|
603
|
+
PourOverWatering = 591,
|
|
604
|
+
Prepare = 592,
|
|
605
|
+
Prepared = 593,
|
|
606
|
+
PreservedFood = 594,
|
|
607
|
+
PurifiedWaterInBottom = 595,
|
|
608
|
+
PurifiedWaterInStill = 596,
|
|
609
|
+
RandomEventsFire = 597,
|
|
610
|
+
ReduceLength = 598,
|
|
611
|
+
RefusedToBeTamed = 599,
|
|
612
|
+
Repair = 600,
|
|
613
|
+
RequiredForDisassembly = 601,
|
|
614
|
+
RequiresFireToBeLit = 602,
|
|
615
|
+
RequiresYouToBeAround = 603,
|
|
616
|
+
Resistant = 604,
|
|
617
|
+
Rest = 605,
|
|
618
|
+
Rested = 606,
|
|
619
|
+
Resting = 607,
|
|
620
|
+
RestingOnGroundNotEffective = 608,
|
|
621
|
+
RestInterrupted = 609,
|
|
622
|
+
RestInterruptedDamage = 610,
|
|
623
|
+
RestInterruptedDying = 611,
|
|
624
|
+
RestInterruptedLoudNoise = 612,
|
|
625
|
+
RestInterruptedPain = 613,
|
|
626
|
+
RestInterruptedStirring = 614,
|
|
627
|
+
RestInterruptedWaterPoured = 615,
|
|
628
|
+
RestLongTime = 616,
|
|
629
|
+
RestModerateTime = 617,
|
|
630
|
+
RestOnBoat = 618,
|
|
631
|
+
RestShortTime = 619,
|
|
632
|
+
RestTime = 620,
|
|
633
|
+
ReturnedToCivilization = 621,
|
|
634
|
+
ReturningToCivilizationSetOffAgain = 622,
|
|
635
|
+
ReturnsToLife = 623,
|
|
636
|
+
Reverse = 624,
|
|
637
|
+
Ride = 625,
|
|
638
|
+
Sailing = 626,
|
|
639
|
+
ScrollMaster = 627,
|
|
640
|
+
ScrollProvidedNoUsefulInsight = 628,
|
|
641
|
+
Seawater = 629,
|
|
642
|
+
SeemsToHaveDrawnEnergy = 630,
|
|
643
|
+
SetTrapOffButNoDamage = 631,
|
|
644
|
+
SetUp = 632,
|
|
645
|
+
ShadowInTheWater = 633,
|
|
646
|
+
SkillHasRaised = 634,
|
|
647
|
+
Skills = 635,
|
|
648
|
+
Sleep = 636,
|
|
649
|
+
Sleeping = 637,
|
|
650
|
+
SleepOnBoat = 638,
|
|
651
|
+
Slept = 639,
|
|
652
|
+
SlitherSuckerConstricts = 640,
|
|
653
|
+
SlitherSuckerFailedToRemove = 641,
|
|
654
|
+
SlitherSuckerFailedToRemoveOuch = 642,
|
|
655
|
+
SlitherSuckerJumpedOnHead = 643,
|
|
656
|
+
SolarStill = 644,
|
|
657
|
+
SomethingInTheWayOf = 645,
|
|
658
|
+
SomethingInTheWayOfButcherFirst = 646,
|
|
659
|
+
SomethingInTheWayOfFire = 647,
|
|
660
|
+
SomethingInTheWayOfFishing = 648,
|
|
661
|
+
SomethingInTheWayOfPerforming = 649,
|
|
662
|
+
SomethingInTheWayOfPlacing = 650,
|
|
663
|
+
SomethingInTheWayOfReleasing = 651,
|
|
664
|
+
SomethingInTheWayOfSummoning = 652,
|
|
665
|
+
SomethingInWayOfClosingDoor = 653,
|
|
666
|
+
SoothedTheirBurnInjuries = 654,
|
|
667
|
+
SoothedYourBurnInjuries = 655,
|
|
668
|
+
SortedByCategory = 656,
|
|
669
|
+
SortedByCraftableOnly = 657,
|
|
670
|
+
SortedByName = 658,
|
|
671
|
+
SortedBySkill = 659,
|
|
672
|
+
SortedByUnlockedTime = 660,
|
|
673
|
+
StaminaIsFull = 661,
|
|
674
|
+
StartedFire = 662,
|
|
675
|
+
StartTravelInWater = 663,
|
|
676
|
+
StarvingToDeath = 664,
|
|
677
|
+
StatAmount = 665,
|
|
678
|
+
StatChangeUnknown = 666,
|
|
679
|
+
StatGained = 667,
|
|
680
|
+
StatIncreasing = 668,
|
|
681
|
+
StatLost = 669,
|
|
682
|
+
StatQuenched = 670,
|
|
683
|
+
StatRegained = 671,
|
|
684
|
+
StatSated = 672,
|
|
685
|
+
SteppingOn = 673,
|
|
686
|
+
Still = 674,
|
|
687
|
+
StillHasNoWaterToPurify = 675,
|
|
688
|
+
StirredUpClawWorm = 676,
|
|
689
|
+
StirredUpCreature = 677,
|
|
690
|
+
StoppedYourBleeding = 678,
|
|
691
|
+
StopUsingVehicle = 679,
|
|
692
|
+
SummonedGuardiansByDiggingTreasure = 680,
|
|
693
|
+
SummonedGuardiansByLockpicking = 681,
|
|
694
|
+
SummonVoidDwellerItem = 682,
|
|
695
|
+
SummonVoidDwellerRinging = 683,
|
|
696
|
+
SummonVoidDwellerShiver = 684,
|
|
697
|
+
SunNotBrightEnoughToStartFire = 685,
|
|
698
|
+
SwampWater = 686,
|
|
699
|
+
Swimming = 687,
|
|
700
|
+
TakenFromGroundBecomeTamed = 688,
|
|
701
|
+
TeleportBlocked = 689,
|
|
702
|
+
Teleported = 690,
|
|
703
|
+
TheirFist = 691,
|
|
704
|
+
TheirInventory = 692,
|
|
705
|
+
ThePlant = 693,
|
|
706
|
+
ThereIsNoContainerOnTheStill = 694,
|
|
707
|
+
ThereIsNoSunToStartFire = 695,
|
|
708
|
+
ThisCannotBeMilked = 696,
|
|
709
|
+
Throw = 697,
|
|
710
|
+
ThrownIntoDepths = 698,
|
|
711
|
+
ThrownIntoObstacle = 699,
|
|
712
|
+
ThrownIntoVoid = 700,
|
|
713
|
+
TierGroup = 701,
|
|
714
|
+
TileMakeCaveEntranceNearby = 702,
|
|
715
|
+
TileMakeCaveEntrancePassable = 703,
|
|
716
|
+
TileMakeCaveEntranceVoid = 704,
|
|
717
|
+
Till = 705,
|
|
718
|
+
Tilling = 706,
|
|
719
|
+
TimeIs = 707,
|
|
720
|
+
TimeIsDawn = 708,
|
|
721
|
+
TimeIsDaytime = 709,
|
|
722
|
+
TimeIsDusk = 710,
|
|
723
|
+
TimeIsNighttime = 711,
|
|
724
|
+
TimeIsSunrise = 712,
|
|
725
|
+
TimeIsSunset = 713,
|
|
726
|
+
ToFight = 714,
|
|
727
|
+
TooDamaged = 715,
|
|
728
|
+
TooExhaustedToJump = 716,
|
|
729
|
+
Touching = 717,
|
|
730
|
+
TrampledFire = 718,
|
|
731
|
+
TrampledFireFail = 719,
|
|
732
|
+
TrampledFirePartial = 720,
|
|
733
|
+
TrampledIntoGround = 721,
|
|
734
|
+
TrampleIntoGround = 722,
|
|
735
|
+
Trampling = 723,
|
|
736
|
+
TransmogrificationNoEffect = 724,
|
|
737
|
+
TransmogrificationNotPossible = 725,
|
|
738
|
+
Transmogrified = 726,
|
|
739
|
+
TrapMissed = 727,
|
|
740
|
+
TrapStoppedYou = 728,
|
|
741
|
+
Traveling = 729,
|
|
742
|
+
Treasure = 730,
|
|
743
|
+
TreasureIsBlocked = 731,
|
|
744
|
+
UiActionCannotUseInaccessibleItem = 732,
|
|
745
|
+
UiActionCannotUseInThisSituation = 733,
|
|
746
|
+
UiActionCannotUseNoItemHovered = 734,
|
|
747
|
+
UiActionCannotUseNotInRange = 735,
|
|
748
|
+
UiActionCannotUseOnThisIsland = 736,
|
|
749
|
+
UiActionCannotUseRequiresCreature = 737,
|
|
750
|
+
UiActionCannotUseRequiresDoodad = 738,
|
|
751
|
+
UiActionCannotUseRequiresItem = 739,
|
|
752
|
+
UiActionCannotUseRequiresNPC = 740,
|
|
753
|
+
UiActionCannotUseRequiresVehicle = 741,
|
|
754
|
+
UiDialogTradeIndicateTradeAlreadyTradedBuyDialogue1 = 742,
|
|
755
|
+
UiDialogTradeIndicateTradeAlreadyTradedBuyDialogue2 = 743,
|
|
756
|
+
UiDialogTradeIndicateTradeAlreadyTradedBuyDialogue3 = 744,
|
|
757
|
+
UiDialogTradeIndicateTradeAlreadyTradedSellDialogue1 = 745,
|
|
758
|
+
UiDialogTradeIndicateTradeAlreadyTradedSellDialogue2 = 746,
|
|
759
|
+
UiDialogTradeIndicateTradeAlreadyTradedSellDialogue3 = 747,
|
|
760
|
+
UiDialogTradeIndicateTradeTooMuchTradesDialogue1 = 748,
|
|
761
|
+
UiDialogTradeIndicateTradeTooMuchTradesDialogue2 = 749,
|
|
762
|
+
UiDialogTradeIndicateTradeTooMuchTradesDialogue3 = 750,
|
|
763
|
+
UnhitchCreature = 751,
|
|
764
|
+
Unknown = 752,
|
|
765
|
+
Unlimited = 753,
|
|
766
|
+
UnlockedChest = 754,
|
|
767
|
+
UnpurifiedFreshWater = 755,
|
|
768
|
+
UnpurifiedWaterInStill = 756,
|
|
769
|
+
UnpurifiedWaterInTop = 757,
|
|
770
|
+
Use = 758,
|
|
771
|
+
UsingBareHands = 759,
|
|
772
|
+
VehicleDefense = 760,
|
|
773
|
+
Vulnerable = 761,
|
|
774
|
+
Water = 762,
|
|
775
|
+
WaterGathering = 763,
|
|
776
|
+
WaterPutOutFire = 764,
|
|
777
|
+
WellIsDry = 765,
|
|
778
|
+
WellIsFull = 766,
|
|
779
|
+
WildGoatRefusedToBeMilked = 767,
|
|
780
|
+
WorkingYourselfIntoExhaustion = 768,
|
|
781
|
+
WorkingYourselfIntoExhaustionAndDrowning = 769,
|
|
782
|
+
WorldContainer = 770,
|
|
783
|
+
You = 771,
|
|
784
|
+
YouAbsorb = 772,
|
|
785
|
+
YouApplied = 773,
|
|
786
|
+
YouAreAlready = 774,
|
|
787
|
+
YouAte = 775,
|
|
788
|
+
YouBeginResting = 776,
|
|
789
|
+
YouCannotDoThatYet = 777,
|
|
790
|
+
YouCanNowCombatTheTides = 778,
|
|
791
|
+
YouCrafted = 779,
|
|
792
|
+
YouDoNotFindTreasureYet = 780,
|
|
793
|
+
YouDrank = 781,
|
|
794
|
+
YouDropTheTorch = 782,
|
|
795
|
+
YouEnchant = 783,
|
|
796
|
+
YouEquip = 784,
|
|
797
|
+
YouExude = 785,
|
|
798
|
+
YouExudeSome = 786,
|
|
799
|
+
YouExudeSomeReasonConflicting = 787,
|
|
800
|
+
YouExudeSomeReasonMax = 788,
|
|
801
|
+
YouExudeSomeReasonProperties = 789,
|
|
802
|
+
YouFailedTo = 790,
|
|
803
|
+
YouFailedToExtinguishedFireFully = 791,
|
|
804
|
+
YouFailedToHeal = 792,
|
|
805
|
+
YouFailedToHealOther = 793,
|
|
806
|
+
YouFire = 794,
|
|
807
|
+
YouGathered = 795,
|
|
808
|
+
YouHarvested = 796,
|
|
809
|
+
YouHave = 797,
|
|
810
|
+
YouHaveAlreadyLearned = 798,
|
|
811
|
+
YouHaveBeenCut = 799,
|
|
812
|
+
YouHaveCaged = 800,
|
|
813
|
+
YouHaveCommanded = 801,
|
|
814
|
+
YouHaveDied = 802,
|
|
815
|
+
YouHaveHealedOther = 803,
|
|
816
|
+
YouHaveKilled = 804,
|
|
817
|
+
YouHaveNotCommanded = 805,
|
|
818
|
+
YouHaveReleased = 806,
|
|
819
|
+
YouHaveSummoned = 807,
|
|
820
|
+
YouHaveTamed = 808,
|
|
821
|
+
YouHaveUncaged = 809,
|
|
822
|
+
YouNoticeBarren = 810,
|
|
823
|
+
YouNoticeBecomeEnraged = 811,
|
|
824
|
+
YouNoticeDying = 812,
|
|
825
|
+
YouNoticeFertilityDecreasing = 813,
|
|
826
|
+
YouNoticeFertilityIncreasing = 814,
|
|
827
|
+
YouNoticeGrowing = 815,
|
|
828
|
+
YouNoticeLavaCooling = 816,
|
|
829
|
+
YouNoticeLavaHardening = 817,
|
|
830
|
+
YouNoticePerish = 818,
|
|
831
|
+
YouNoticePlantDamage = 819,
|
|
832
|
+
YouNoticePlantRegenerated = 820,
|
|
833
|
+
YouNoticeRegrowing = 821,
|
|
834
|
+
YouNoticeStumbleInjureItself = 822,
|
|
835
|
+
YouNoticeTakeFromGround = 823,
|
|
836
|
+
YouNoticeWoundsClosing = 824,
|
|
837
|
+
YouOfferedToCreature = 825,
|
|
838
|
+
YouOfferedToCreatureRejects = 826,
|
|
839
|
+
YouOpen = 827,
|
|
840
|
+
YouPacked = 828,
|
|
841
|
+
YouPickedUp = 829,
|
|
842
|
+
YouRefine = 830,
|
|
843
|
+
YouReinforce = 831,
|
|
844
|
+
YouRepair = 832,
|
|
845
|
+
YouReturnFromCivilizationWith = 833,
|
|
846
|
+
YourFist = 834,
|
|
847
|
+
YourHands = 835,
|
|
848
|
+
YourInventory = 836,
|
|
849
|
+
YourIsland = 837,
|
|
850
|
+
YouSeeALivingMushroomSpore = 838,
|
|
851
|
+
YouSeeASkeletonCollapse = 839,
|
|
852
|
+
YouSeeASlimeCombine = 840,
|
|
853
|
+
YouSeeAZombieBleeding = 841,
|
|
854
|
+
YouSeeCoolDown = 842,
|
|
855
|
+
YouSeeDrop = 843,
|
|
856
|
+
YouSeeEngulfFire = 844,
|
|
857
|
+
YouSeeFireSpread = 845,
|
|
858
|
+
YouSeeHelpingPlant = 846,
|
|
859
|
+
YouSeeLay = 847,
|
|
860
|
+
YouSeeLayingTrap = 848,
|
|
861
|
+
YouSeeSpewLava = 849,
|
|
862
|
+
YouSeeSpitAcid = 850,
|
|
863
|
+
YouSeeSpringForth = 851,
|
|
864
|
+
YouSeeSummon = 852,
|
|
865
|
+
YouSeeSwampFlood = 853,
|
|
866
|
+
YouSeeTrampling = 854,
|
|
867
|
+
YouSetTheTrapOff = 855,
|
|
868
|
+
YouStokeTheCreature = 856,
|
|
869
|
+
YouSwapMainHandAndOffHand = 857,
|
|
870
|
+
YouThrew = 858,
|
|
871
|
+
YouTilled = 859,
|
|
872
|
+
YouUnequip = 860,
|
|
873
|
+
YouUsed = 861,
|
|
874
|
+
YouViewTheItemsOn = 862,
|
|
875
|
+
YouWhileTraveling = 863
|
|
875
876
|
}
|
|
876
877
|
export default Message;
|
package/package.json
CHANGED