 62657df3fb
			
		
	
	62657df3fb
	
	
	
		
			
			## What is this fixing or adding? Major content update for Stardew Valley ## How was this tested? One large-scale public Beta on the archipelago server, plus several smaller private asyncs and test runs You can go to https://github.com/agilbert1412/StardewArchipelago/releases to grab the mod (latest 4.x.x version), the supported mods and the apworld, to test this PR ## New Features: - Festival Checks [Easy mode or Hard Mode] - Special Orders [Both Board and Qi] - Willy's Boat - Ginger Island Parrots - TV Channels - Trap Items [Available in various difficulty levels] - Entrance Randomizer: Buildings and Chaos - New Fishsanity options: Exclude Legendaries, Exclude Hard fish, Only easy fish - Resource Pack overhaul [Resource packs are now more enjoyable and varied] - Goal: Greatest Walnut Hunter [Find every single Golden Walnut] - Goal: Perfection [Achieve Perfection] - Option: Profit Margin [Multiplier over all earnings] - Option: Friendsanity Heart Size [Reduce clutter from friendsanity hearts] - Option: Exclude Ginger Island - will exclude many locations and items to generate a playthrough that does not go to the island - Mod Support [Curated list of mods] ## New Contributors: @Witchybun for the mod support --------- Co-authored-by: Witchybun <embenham05@gmail.com> Co-authored-by: Exempt-Medic <60412657+Exempt-Medic@users.noreply.github.com> Co-authored-by: Fabian Dill <Berserker66@users.noreply.github.com>
		
			
				
	
	
		
			68 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| class Meal:
 | |
|     blueberry_tart = "Blueberry Tart"
 | |
|     bread = "Bread"
 | |
|     fiddlehead_risotto = "Fiddlehead Risotto"
 | |
|     complete_breakfast = "Complete Breakfast"
 | |
|     fried_egg = "Fried Egg"
 | |
|     hashbrowns = "Hashbrowns"
 | |
|     pancakes = "Pancakes"
 | |
|     ice_cream = "Ice Cream"
 | |
|     maki_roll = "Maki Roll"
 | |
|     miners_treat = "Miner's Treat"
 | |
|     omelet = "Omelet"
 | |
|     parsnip_soup = "Parsnip Soup"
 | |
|     pink_cake = "Pink Cake"
 | |
|     pizza = "Pizza"
 | |
|     pumpkin_pie = "Pumpkin Pie"
 | |
|     roasted_hazelnuts = "Roasted Hazelnuts"
 | |
|     salad = "Salad"
 | |
|     spaghetti = "Spaghetti"
 | |
|     tortilla = "Tortilla"
 | |
|     algae_soup = "Algae Soup"
 | |
|     artichoke_dip = "Artichoke Dip"
 | |
|     baked_fish = "Baked Fish"
 | |
|     bean_hotpot = "Bean Hotpot"
 | |
|     blackberry_cobbler = "Blackberry Cobbler"
 | |
|     cheese_cauliflower = "Cheese Cauliflower"
 | |
|     chocolate_cake = "Chocolate Cake"
 | |
|     chowder = "Chowder"
 | |
|     crab_cakes = "Crab Cakes"
 | |
|     cranberry_candy = "Cranberry Candy"
 | |
|     crispy_bass = "Crispy Bass"
 | |
|     dish_o_the_sea = "Dish O' The Sea"
 | |
|     eggplant_parmesan = "Eggplant Parmesan"
 | |
|     escargot = "Escargot"
 | |
|     farmer_lunch = "Farmer's Lunch"
 | |
|     fish_taco = "Fish Taco"
 | |
|     fried_calamari = "Fried Calamari"
 | |
|     fried_eel = "Fried Eel"
 | |
|     fried_mushroom = "Fried Mushroom"
 | |
|     fruit_salad = "Fruit Salad"
 | |
|     glazed_yams = "Glazed Yams"
 | |
|     maple_bar = "Maple Bar"
 | |
|     pale_broth = "Pale Broth"
 | |
|     pepper_poppers = "Pepper Poppers"
 | |
|     plum_pudding = "Plum Pudding"
 | |
|     poppyseed_muffin = "Poppyseed Muffin"
 | |
|     red_plate = "Red Plate"
 | |
|     rhubarb_pie = "Rhubarb Pie"
 | |
|     rice_pudding = "Rice Pudding"
 | |
|     roots_platter = "Roots Platter"
 | |
|     salmon_dinner = "Salmon Dinner"
 | |
|     sashimi = "Sashimi"
 | |
|     stir_fry = "Stir Fry"
 | |
|     strange_bun = "Strange Bun"
 | |
|     stuffing = "Stuffing"
 | |
|     survival_burger = "Survival Burger"
 | |
|     tropical_curry = "Tropical Curry"
 | |
|     vegetable_medley = "Vegetable Medley"
 | |
| 
 | |
| 
 | |
| class Beverage:
 | |
|     pina_colada = "Piña Colada"
 | |
|     ginger_ale = "Ginger Ale"
 | |
|     coffee = "Coffee"
 | |
|     triple_shot_espresso = "Triple Shot Espresso"
 | |
|     beer = "Beer"
 | |
|     joja_cola = "Joja Cola"
 |