Stardew Valley 6.x.x: The Content Update (#3478)

Focus of the Update: Compatibility with Stardew Valley 1.6 Released on March 19th 2024
This includes randomization for pretty much all of the new content, including but not limited to
- Raccoon Bundles
- Booksanity
- Skill Masteries
- New Recipes, Craftables, Fish, Maps, Farm Type, Festivals and Quests

This also includes a significant reorganisation of the code into "Content Packs", to allow for easier modularity of various game mechanics between the settings and the supported mods. This improves maintainability quite a bit.

In addition to that, a few **very** requested new features have been introduced, although they weren't the focus of this update
- Walnutsanity
- Player Buffs
- More customizability in settings, such as shorter special orders, ER without farmhouse
- New Remixed Bundles
This commit is contained in:
agilbert1412
2024-07-07 16:04:25 +03:00
committed by GitHub
parent f99ee77325
commit 9b22458f44
210 changed files with 10298 additions and 4540 deletions

View File

@@ -1,35 +1,72 @@
class Seed:
amaranth = "Amaranth Seeds"
artichoke = "Artichoke Seeds"
bean = "Bean Starter"
beet = "Beet Seeds"
blueberry = "Blueberry Seeds"
bok_choy = "Bok Choy Seeds"
broccoli = "Broccoli Seeds"
cactus = "Cactus Seeds"
carrot = "Carrot Seeds"
cauliflower = "Cauliflower Seeds"
coffee_starter = "Coffee Bean (Starter)"
"""This item does not really exist and should never end up being displayed.
It's there to patch the loop in logic because "Coffee Bean" is both the seed and the crop."""
coffee = "Coffee Bean"
corn = "Corn Seeds"
cranberry = "Cranberry Seeds"
eggplant = "Eggplant Seeds"
fairy = "Fairy Seeds"
garlic = "Garlic Seeds"
grape = "Grape Starter"
hops = "Hops Starter"
jazz = "Jazz Seeds"
kale = "Kale Seeds"
melon = "Melon Seeds"
mixed = "Mixed Seeds"
mixed_flower = "Mixed Flower Seeds"
parsnip = "Parsnip Seeds"
pepper = "Pepper Seeds"
pineapple = "Pineapple Seeds"
poppy = "Poppy Seeds"
potato = "Potato Seeds"
powdermelon = "Powdermelon Seeds"
pumpkin = "Pumpkin Seeds"
qi_bean = "Qi Bean"
radish = "Radish Seeds"
rare_seed = "Rare Seed"
red_cabbage = "Red Cabbage Seeds"
rhubarb = "Rhubarb Seeds"
rice = "Rice Shoot"
spangle = "Spangle Seeds"
starfruit = "Starfruit Seeds"
strawberry = "Strawberry Seeds"
summer_squash = "Summer Squash Seeds"
sunflower = "Sunflower Seeds"
taro = "Taro Tuber"
tomato = "Tomato Seeds"
tulip = "Tulip Bulb"
wheat = "Wheat Seeds"
yam = "Yam Seeds"
class TreeSeed:
acorn = "Acorn"
maple = "Maple Seed"
mossy = "Mossy Seed"
mystic = "Mystic Tree Seed"
pine = "Pine Cone"
mahogany = "Mahogany Seed"
mushroom = "Mushroom Tree Seed"
class SVESeed:
stalk_seed = "Stalk Seed"
fungus_seed = "Fungus Seed"
slime_seed = "Slime Seed"
void_seed = "Void Seed"
shrub_seed = "Shrub Seed"
ancient_ferns_seed = "Ancient Ferns Seed"
stalk = "Stalk Seed"
fungus = "Fungus Seed"
slime = "Slime Seed"
void = "Void Seed"
shrub = "Shrub Seed"
ancient_fern = "Ancient Fern Seed"
class DistantLandsSeed: