Files
Grinch-AP/worlds/stardew_valley/strings/food_names.py
agilbert1412 9b22458f44 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
2024-07-07 15:04:25 +02:00

131 lines
3.9 KiB
Python

class Meal:
banana_pudding = "Banana Pudding"
poi = "Poi"
mango_sticky_rice = "Mango Sticky Rice"
algae_soup = "Algae Soup"
artichoke_dip = "Artichoke Dip"
autumn_bounty = "Autumn's Bounty"
baked_fish = "Baked Fish"
bean_hotpot = "Bean Hotpot"
blackberry_cobbler = "Blackberry Cobbler"
blueberry_tart = "Blueberry Tart"
bread = "Bread"
bruschetta = "Bruschetta"
carp_surprise = "Carp Surprise"
cheese_cauliflower = "Cheese Cauliflower"
chocolate_cake = "Chocolate Cake"
chowder = "Chowder"
coleslaw = "Coleslaw"
complete_breakfast = "Complete Breakfast"
cookie = "Cookies"
crab_cakes = "Crab Cakes"
cranberry_candy = "Cranberry Candy"
cranberry_sauce = "Cranberry Sauce"
crispy_bass = "Crispy Bass"
dish_o_the_sea = "Dish O' The Sea"
eggplant_parmesan = "Eggplant Parmesan"
escargot = "Escargot"
farmer_lunch = "Farmer's Lunch"
fiddlehead_risotto = "Fiddlehead Risotto"
fish_stew = "Fish Stew"
fish_taco = "Fish Taco"
fried_calamari = "Fried Calamari"
fried_eel = "Fried Eel"
fried_egg = "Fried Egg"
fried_mushroom = "Fried Mushroom"
fruit_salad = "Fruit Salad"
glazed_yams = "Glazed Yams"
hashbrowns = "Hashbrowns"
ice_cream = "Ice Cream"
lobster_bisque = "Lobster Bisque"
lucky_lunch = "Lucky Lunch"
maki_roll = "Maki Roll"
maple_bar = "Maple Bar"
miners_treat = "Miner's Treat"
moss_soup = "Moss Soup"
omelet = "Omelet"
pale_broth = "Pale Broth"
pancakes = "Pancakes"
parsnip_soup = "Parsnip Soup"
pepper_poppers = "Pepper Poppers"
pink_cake = "Pink Cake"
pizza = "Pizza"
plum_pudding = "Plum Pudding"
poppyseed_muffin = "Poppyseed Muffin"
pumpkin_pie = "Pumpkin Pie"
pumpkin_soup = "Pumpkin Soup"
radish_salad = "Radish Salad"
red_plate = "Red Plate"
rhubarb_pie = "Rhubarb Pie"
rice_pudding = "Rice Pudding"
roasted_hazelnuts = "Roasted Hazelnuts"
roots_platter = "Roots Platter"
salad = "Salad"
salmon_dinner = "Salmon Dinner"
sashimi = "Sashimi"
seafoam_pudding = "Seafoam Pudding"
shrimp_cocktail = "Shrimp Cocktail"
spaghetti = "Spaghetti"
spicy_eel = "Spicy Eel"
squid_ink_ravioli = "Squid Ink Ravioli"
stir_fry = "Stir Fry"
strange_bun = "Strange Bun"
stuffing = "Stuffing"
super_meal = "Super Meal"
survival_burger = "Survival Burger"
tom_kha_soup = "Tom Kha Soup"
tortilla = "Tortilla"
tropical_curry = "Tropical Curry"
trout_soup = "Trout Soup"
vegetable_medley = "Vegetable Medley"
magic_rock_candy = "Magic Rock Candy"
class Beverage:
pina_colada = "Pina Colada"
ginger_ale = "Ginger Ale"
coffee = "Coffee"
triple_shot_espresso = "Triple Shot Espresso"
beer = "Beer"
joja_cola = "Joja Cola"
class SVEMeal:
baked_berry_oatmeal = "Baked Berry Oatmeal"
big_bark_burger = "Big Bark Burger"
flower_cookie = "Flower Cookie"
frog_legs = "Frog Legs"
glazed_butterfish = "Glazed Butterfish"
mixed_berry_pie = "Mixed Berry Pie"
mushroom_berry_rice = "Mushroom Berry Rice"
seaweed_salad = "Seaweed Salad"
void_delight = "Void Delight"
void_salmon_sushi = "Void Salmon Sushi"
grampleton_orange_chicken = "Grampleton Orange Chicken"
class TrashyMeal:
grilled_cheese = "Grilled Cheese"
fish_casserole = "Fish Casserole"
class ArchaeologyMeal:
diggers_delight = "Digger's Delight"
rocky_root = "Rocky Root Coffee"
ancient_jello = "Ancient Jello"
class SVEBeverage:
sports_drink = "Sports Drink"
class DistantLandsMeal:
mushroom_kebab = "Mushroom Kebab"
crayfish_soup = "Crayfish Soup"
pemmican = "Pemmican"
void_mint_tea = "Void Mint Tea"
class BoardingHouseMeal:
special_pumpkin_soup = "Special Pumpkin Soup"