@wayward/types 2.13.2-beta.dev.20230518.1 → 2.13.2-beta.dev.20230519.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.
@@ -0,0 +1,12 @@
1
+ /*!
2
+ * Copyright 2011-2023 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 { IBiomeMapGen } from "game/mapgen/IMapGen";
12
+ export declare const aridMapGen2132: IBiomeMapGen;
@@ -0,0 +1,12 @@
1
+ /*!
2
+ * Copyright 2011-2023 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 { IBiomeMapGen } from "game/mapgen/IMapGen";
12
+ export declare const iceCapMapGen2132: IBiomeMapGen;
@@ -0,0 +1,12 @@
1
+ /*!
2
+ * Copyright 2011-2023 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 { IBiomeMapGen } from "game/mapgen/IMapGen";
12
+ export declare const volcanicMapGen2132: IBiomeMapGen;
@@ -13,7 +13,7 @@ import type { IBiomeTemperature } from "game/temperature/ITemperature";
13
13
  import { TerrainType } from "game/tile/ITerrain";
14
14
  declare const _default: {
15
15
  readonly defaultTerrainBackground: TerrainType.Mud;
16
- readonly defaultCaveEntranceFlooring: TerrainType.Mud;
16
+ readonly defaultCaveEntranceFlooring: TerrainType.GraniteGround;
17
17
  readonly fog: {
18
18
  color: import("utilities/Color").IRGB;
19
19
  };
@@ -0,0 +1,12 @@
1
+ /*!
2
+ * Copyright 2011-2023 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 { IBiomeMapGen } from "game/mapgen/IMapGen";
12
+ export declare const wetlandsMapGen2132: IBiomeMapGen;
@@ -41,7 +41,7 @@ export interface IDoodadManagerEvents {
41
41
  export default class DoodadManager extends ObjectManager<Doodad, IDoodadManagerEvents> {
42
42
  private static readonly cachedBestDoodadForTier;
43
43
  private static readonly cachedDoodadGroups;
44
- static readonly cachedDoodadSpawns: Map<BiomeType, Map<WorldZ, Map<TerrainType, Set<DoodadType>>>>;
44
+ static readonly cachedDoodadSpawns: Map<BiomeType, Map<WorldZ, Map<TerrainType, DoodadType[]>>>;
45
45
  private readonly scarecrows;
46
46
  static getBestDoodadForTier(doodad: DoodadType | DoodadTypeGroup): DoodadType | undefined;
47
47
  static generateLookups(): void;
@@ -83,7 +83,7 @@ export default class ItemManager extends ObjectManager<Item, IItemManagerEvents>
83
83
  private static readonly cachedItemsThatAreUsedForGrowingPlants;
84
84
  private static readonly cachedItemsThatAreUsedInRecipes;
85
85
  private static readonly cachedWeights;
86
- static readonly cachedItemSpawns: Map<BiomeType, Map<WorldZ, Map<TerrainType, Set<ItemType>>>>;
86
+ static readonly cachedItemSpawns: Map<BiomeType, Map<WorldZ, Map<TerrainType, ItemType[]>>>;
87
87
  static getItemTypes(): readonly ItemType[];
88
88
  static getItemsWithRecipes(): readonly ItemType[];
89
89
  static getBestItemForTier(item: ItemType | ItemTypeGroup): ItemType | undefined;
@@ -664,138 +664,137 @@ declare enum Message {
664
664
  TooDamaged = 652,
665
665
  TooExhaustedToJump = 653,
666
666
  Touching = 654,
667
- TradingWith = 655,
668
- TrampledFire = 656,
669
- TrampledIntoGround = 657,
670
- TrampleIntoGround = 658,
671
- Trampling = 659,
672
- TransmogrificationNotPossible = 660,
673
- Transmogrified = 661,
674
- Transmogrify = 662,
675
- TrapMissed = 663,
676
- TrapStoppedYou = 664,
677
- Traveling = 665,
678
- TreasureIsBlocked = 666,
679
- UiActionCannotUseRequiresCreature = 667,
680
- UiActionCannotUseRequiresDoodad = 668,
681
- UiActionCannotUseRequiresItem = 669,
682
- Unhitch = 670,
683
- UnhitchCreature = 671,
684
- Unknown = 672,
685
- Unlimited = 673,
686
- UnlockedChest = 674,
687
- UnpurifiedFreshWater = 675,
688
- UnpurifiedWaterInStill = 676,
689
- Use = 677,
690
- UsingBareHands = 678,
691
- VehicleDefense = 679,
692
- Vulnerable = 680,
693
- Water = 681,
694
- WaterGathering = 682,
695
- WaterPutOutFire = 683,
696
- WellIsDry = 684,
697
- WellIsFull = 685,
698
- WildGoatRefusedToBeMilked = 686,
699
- WillNotTrade = 687,
700
- WorkingYourselfIntoExhaustion = 688,
701
- WorkingYourselfIntoExhaustionAndDrowning = 689,
702
- You = 690,
703
- YouAbsorb = 691,
704
- YouApplied = 692,
705
- YouAreAlready = 693,
706
- YouAte = 694,
707
- YouBeginResting = 695,
708
- YouCannotDoThatYet = 696,
709
- YouCanNowCombatTheTides = 697,
710
- YouCrafted = 698,
711
- YouDoNotFindTreasureYet = 699,
712
- YouDrank = 700,
713
- YouDropTheTorch = 701,
714
- YouEnchant = 702,
715
- YouEquip = 703,
716
- YouExude = 704,
717
- YouExudeSome = 705,
718
- YouExudeSomeReasonConflicting = 706,
719
- YouExudeSomeReasonMax = 707,
720
- YouExudeSomeReasonProperties = 708,
721
- YouFailedTo = 709,
722
- YouFailedToExtinguishedFireFully = 710,
723
- YouFailedToHeal = 711,
724
- YouFailedToHealOther = 712,
725
- YouFire = 713,
726
- YouGathered = 714,
727
- YouGatheredAndDropped = 715,
728
- YouHarvested = 716,
729
- YouHarvestedAndDropped = 717,
730
- YouHave = 718,
731
- YouHaveAlreadyLearned = 719,
732
- YouHaveBeenCut = 720,
733
- YouHaveCaged = 721,
734
- YouHaveCommanded = 722,
735
- YouHaveDied = 723,
736
- YouHaveHealedOther = 724,
737
- YouHaveKilled = 725,
738
- YouHaveReleased = 726,
739
- YouHaveSummoned = 727,
740
- YouHaveTamed = 728,
741
- YouHaveUncaged = 729,
742
- YouNeedMoreCredit = 730,
743
- YouNoticeBarren = 731,
744
- YouNoticeBecomeEnraged = 732,
745
- YouNoticeDying = 733,
746
- YouNoticeFertilityDecreasing = 734,
747
- YouNoticeFertilityIncreasing = 735,
748
- YouNoticeGrowing = 736,
749
- YouNoticeLavaCooling = 737,
750
- YouNoticeLavaHardening = 738,
751
- YouNoticePerish = 739,
752
- YouNoticePlantDamage = 740,
753
- YouNoticePlantRegenerated = 741,
754
- YouNoticeRegrowing = 742,
755
- YouNoticeStumbleInjureItself = 743,
756
- YouNoticeTakeFromGround = 744,
757
- YouNoticeWoundsClosing = 745,
758
- YouNoticeZombieHorde = 746,
759
- YouOfferedToCreature = 747,
760
- YouOfferedToCreatureRejects = 748,
761
- YouOpen = 749,
762
- YouPacked = 750,
763
- YouPickedUp = 751,
764
- YouRefine = 752,
765
- YouReinforce = 753,
766
- YouRepair = 754,
767
- YouReturnFromCivilizationWith = 755,
768
- YourFist = 756,
769
- YourHands = 757,
770
- YourInventory = 758,
771
- YourIsland = 759,
772
- YourRubbingNoEffect = 760,
773
- YouRub = 761,
774
- YouSee = 762,
775
- YouSeeALivingMushroomSpore = 763,
776
- YouSeeASkeletonCollapse = 764,
777
- YouSeeASlimeCombine = 765,
778
- YouSeeAZombieBleeding = 766,
779
- YouSeeCoolDown = 767,
780
- YouSeeDrop = 768,
781
- YouSeeEngulfFire = 769,
782
- YouSeeFireSpread = 770,
783
- YouSeeHelpingPlant = 771,
784
- YouSeeLay = 772,
785
- YouSeeLayingTrap = 773,
786
- YouSeeSpewLava = 774,
787
- YouSeeSpitAcid = 775,
788
- YouSeeSpringForth = 776,
789
- YouSeeSummon = 777,
790
- YouSeeSwampFlood = 778,
791
- YouSeeTrampling = 779,
792
- YouSetTheTrapOff = 780,
793
- YouStokeTheCreature = 781,
794
- YouSwapMainHandAndOffHand = 782,
795
- YouThrew = 783,
796
- YouTilled = 784,
797
- YouUnequip = 785,
798
- YouUsed = 786,
799
- YouWhileTraveling = 787
667
+ TrampledFire = 655,
668
+ TrampledIntoGround = 656,
669
+ TrampleIntoGround = 657,
670
+ Trampling = 658,
671
+ TransmogrificationNotPossible = 659,
672
+ Transmogrified = 660,
673
+ Transmogrify = 661,
674
+ TrapMissed = 662,
675
+ TrapStoppedYou = 663,
676
+ Traveling = 664,
677
+ TreasureIsBlocked = 665,
678
+ UiActionCannotUseRequiresCreature = 666,
679
+ UiActionCannotUseRequiresDoodad = 667,
680
+ UiActionCannotUseRequiresItem = 668,
681
+ Unhitch = 669,
682
+ UnhitchCreature = 670,
683
+ Unknown = 671,
684
+ Unlimited = 672,
685
+ UnlockedChest = 673,
686
+ UnpurifiedFreshWater = 674,
687
+ UnpurifiedWaterInStill = 675,
688
+ Use = 676,
689
+ UsingBareHands = 677,
690
+ VehicleDefense = 678,
691
+ Vulnerable = 679,
692
+ Water = 680,
693
+ WaterGathering = 681,
694
+ WaterPutOutFire = 682,
695
+ WellIsDry = 683,
696
+ WellIsFull = 684,
697
+ WildGoatRefusedToBeMilked = 685,
698
+ WillNotTrade = 686,
699
+ WorkingYourselfIntoExhaustion = 687,
700
+ WorkingYourselfIntoExhaustionAndDrowning = 688,
701
+ You = 689,
702
+ YouAbsorb = 690,
703
+ YouApplied = 691,
704
+ YouAreAlready = 692,
705
+ YouAte = 693,
706
+ YouBeginResting = 694,
707
+ YouCannotDoThatYet = 695,
708
+ YouCanNowCombatTheTides = 696,
709
+ YouCrafted = 697,
710
+ YouDoNotFindTreasureYet = 698,
711
+ YouDrank = 699,
712
+ YouDropTheTorch = 700,
713
+ YouEnchant = 701,
714
+ YouEquip = 702,
715
+ YouExude = 703,
716
+ YouExudeSome = 704,
717
+ YouExudeSomeReasonConflicting = 705,
718
+ YouExudeSomeReasonMax = 706,
719
+ YouExudeSomeReasonProperties = 707,
720
+ YouFailedTo = 708,
721
+ YouFailedToExtinguishedFireFully = 709,
722
+ YouFailedToHeal = 710,
723
+ YouFailedToHealOther = 711,
724
+ YouFire = 712,
725
+ YouGathered = 713,
726
+ YouGatheredAndDropped = 714,
727
+ YouHarvested = 715,
728
+ YouHarvestedAndDropped = 716,
729
+ YouHave = 717,
730
+ YouHaveAlreadyLearned = 718,
731
+ YouHaveBeenCut = 719,
732
+ YouHaveCaged = 720,
733
+ YouHaveCommanded = 721,
734
+ YouHaveDied = 722,
735
+ YouHaveHealedOther = 723,
736
+ YouHaveKilled = 724,
737
+ YouHaveReleased = 725,
738
+ YouHaveSummoned = 726,
739
+ YouHaveTamed = 727,
740
+ YouHaveUncaged = 728,
741
+ YouNeedMoreCredit = 729,
742
+ YouNoticeBarren = 730,
743
+ YouNoticeBecomeEnraged = 731,
744
+ YouNoticeDying = 732,
745
+ YouNoticeFertilityDecreasing = 733,
746
+ YouNoticeFertilityIncreasing = 734,
747
+ YouNoticeGrowing = 735,
748
+ YouNoticeLavaCooling = 736,
749
+ YouNoticeLavaHardening = 737,
750
+ YouNoticePerish = 738,
751
+ YouNoticePlantDamage = 739,
752
+ YouNoticePlantRegenerated = 740,
753
+ YouNoticeRegrowing = 741,
754
+ YouNoticeStumbleInjureItself = 742,
755
+ YouNoticeTakeFromGround = 743,
756
+ YouNoticeWoundsClosing = 744,
757
+ YouNoticeZombieHorde = 745,
758
+ YouOfferedToCreature = 746,
759
+ YouOfferedToCreatureRejects = 747,
760
+ YouOpen = 748,
761
+ YouPacked = 749,
762
+ YouPickedUp = 750,
763
+ YouRefine = 751,
764
+ YouReinforce = 752,
765
+ YouRepair = 753,
766
+ YouReturnFromCivilizationWith = 754,
767
+ YourFist = 755,
768
+ YourHands = 756,
769
+ YourInventory = 757,
770
+ YourIsland = 758,
771
+ YourRubbingNoEffect = 759,
772
+ YouRub = 760,
773
+ YouSee = 761,
774
+ YouSeeALivingMushroomSpore = 762,
775
+ YouSeeASkeletonCollapse = 763,
776
+ YouSeeASlimeCombine = 764,
777
+ YouSeeAZombieBleeding = 765,
778
+ YouSeeCoolDown = 766,
779
+ YouSeeDrop = 767,
780
+ YouSeeEngulfFire = 768,
781
+ YouSeeFireSpread = 769,
782
+ YouSeeHelpingPlant = 770,
783
+ YouSeeLay = 771,
784
+ YouSeeLayingTrap = 772,
785
+ YouSeeSpewLava = 773,
786
+ YouSeeSpitAcid = 774,
787
+ YouSeeSpringForth = 775,
788
+ YouSeeSummon = 776,
789
+ YouSeeSwampFlood = 777,
790
+ YouSeeTrampling = 778,
791
+ YouSetTheTrapOff = 779,
792
+ YouStokeTheCreature = 780,
793
+ YouSwapMainHandAndOffHand = 781,
794
+ YouThrew = 782,
795
+ YouTilled = 783,
796
+ YouUnequip = 784,
797
+ YouUsed = 785,
798
+ YouWhileTraveling = 786
800
799
  }
801
800
  export default Message;