Files
Archipelago/worlds/stardew_valley/strings/artisan_good_names.py
agilbert1412 1de91fab67 Stardew Valley: 7.x.x - The Jojapocalypse Update (#5432)
Major Content update for Stardew Valley

### Features
- New BundleRandomization Value: Meme Bundles - Over 100 custom bundles, designed to be jokes, references, trolls, etc
- New Setting: Bundles Per Room modifier
- New Setting: Backpack Size
- New Setting: Secretsanity - Checks for triggering easter eggs and secrets
- New Setting: Moviesanity - Checks for watching movies and sharing snacks with Villagers
- New Setting: Eatsanity - Checks for eating items
- New Setting: Hatsanity - Checks for wearing Hats
- New Setting: Start Without - Allows you to select any combination of various "starting" items, that you will actually not start with. Notably, tools, backpack slots, Day5 unlocks, etc.
- New Setting: Allowed Filler Items - Allows you to customize the filler items you'll get
- New Setting: Endgame Locations - Checks for various expensive endgame tasks and purchases
- New Shipsanity value: Crops and Fish
- New Settings: Jojapocalypse and settings to customize it
- Bundle Plando: Replaced with BundleWhitelist and BundleBlacklist, for more customization freedom
- Added a couple of Host.yaml settings to help hosts allow or ban specific difficult settings that could cause problems if the people don't know what they are signing up for.

Plus a truckload of improvements on the mod side, not seen in this PR.

### Removed features
- Integration for Stardew Valley Expanded. It is simply disabled, the code is all still there, but I'm extremely tired of providing tech support for it, plus Stardew Valley 1.7 was announced and that will break it again, so I'm done. When a maintainer steps up, it can be re-enabled.
2026-02-15 18:02:21 +01:00

80 lines
2.2 KiB
Python

from worlds.stardew_valley.strings.fish_names import Fish
class ArtisanGood:
honey = "Honey"
oak_resin = "Oak Resin"
pine_tar = "Pine Tar"
maple_syrup = "Maple Syrup"
truffle_oil = "Truffle Oil"
cheese = "Cheese"
goat_cheese = "Goat Cheese"
jelly = "Jelly"
pickles = "Pickles"
wine = "Wine"
juice = "Juice"
cloth = "Cloth"
pale_ale = "Pale Ale"
aged_roe = "Aged Roe"
battery_pack = "Battery Pack"
mayonnaise = "Mayonnaise"
duck_mayonnaise = "Duck Mayonnaise"
dinosaur_mayonnaise = "Dinosaur Mayonnaise"
void_mayonnaise = "Void Mayonnaise"
caviar = "Caviar"
green_tea = "Green Tea"
mead = "Mead"
mystic_syrup = "Mystic Syrup"
dried_fruit = "Dried Fruit"
dried_mushroom = "Dried Mushrooms"
raisins = "Raisins"
stardrop_tea = "Stardrop Tea"
smoked_fish = "Smoked Fish"
targeted_bait = "Targeted Bait"
@classmethod
def specific_wine(cls, fruit: str) -> str:
return f"{cls.wine} [{fruit}]"
@classmethod
def specific_juice(cls, vegetable: str) -> str:
return f"{cls.juice} [{vegetable}]"
@classmethod
def specific_jelly(cls, fruit: str) -> str:
return f"{cls.jelly} [{fruit}]"
@classmethod
def specific_pickles(cls, vegetable: str) -> str:
return f"{cls.pickles} [{vegetable}]"
@classmethod
def specific_dried_fruit(cls, food: str) -> str:
return f"{cls.dried_fruit} [{food}]"
@classmethod
def specific_dried_mushroom(cls, food: str) -> str:
return f"{cls.dried_mushroom} [{food}]"
@classmethod
def specific_smoked_fish(cls, fish: str) -> str:
return f"{cls.smoked_fish} [{fish}]"
@classmethod
def specific_bait(cls, fish: str) -> str:
return f"{cls.targeted_bait} [{fish}]"
@classmethod
def specific_aged_roe(cls, fish: str) -> str:
if fish == Fish.sturgeon:
return ArtisanGood.caviar
return f"{cls.aged_roe} [{fish}]"
@classmethod
def specific_honey(cls, flower: str) -> str:
return f"{cls.honey} [{flower}]"
class ModArtisanGood:
pterodactyl_egg = "Pterodactyl Egg"