| 
									
										
										
											
												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 16:04:25 +03:00
										 |  |  | all_edible_mushrooms = [] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def mushroom(name: str) -> str: | 
					
						
							|  |  |  |     all_edible_mushrooms.append(name) | 
					
						
							|  |  |  |     return name | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class Mushroom: | 
					
						
							|  |  |  |     any_edible = "Any Edible Mushroom" | 
					
						
							|  |  |  |     chanterelle = mushroom("Chanterelle") | 
					
						
							|  |  |  |     common = mushroom("Common Mushroom") | 
					
						
							|  |  |  |     morel = mushroom("Morel") | 
					
						
							|  |  |  |     purple = mushroom("Purple Mushroom") | 
					
						
							|  |  |  |     red = "Red Mushroom"  # Not in all mushrooms, as it can't be dried | 
					
						
							|  |  |  |     magma_cap = mushroom("Magma Cap") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  | class Forageable: | 
					
						
							|  |  |  |     blackberry = "Blackberry" | 
					
						
							|  |  |  |     cactus_fruit = "Cactus Fruit" | 
					
						
							|  |  |  |     cave_carrot = "Cave Carrot" | 
					
						
							|  |  |  |     coconut = "Coconut" | 
					
						
							|  |  |  |     crocus = "Crocus" | 
					
						
							|  |  |  |     crystal_fruit = "Crystal Fruit" | 
					
						
							|  |  |  |     daffodil = "Daffodil" | 
					
						
							|  |  |  |     dandelion = "Dandelion" | 
					
						
							|  |  |  |     fiddlehead_fern = "Fiddlehead Fern" | 
					
						
							|  |  |  |     ginger = "Ginger" | 
					
						
							|  |  |  |     hay = "Hay" | 
					
						
							|  |  |  |     hazelnut = "Hazelnut" | 
					
						
							|  |  |  |     holly = "Holly" | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     journal_scrap = "Journal Scrap" | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |     leek = "Leek" | 
					
						
							|  |  |  |     secret_note = "Secret Note" | 
					
						
							|  |  |  |     spice_berry = "Spice Berry" | 
					
						
							|  |  |  |     sweet_pea = "Sweet Pea" | 
					
						
							|  |  |  |     wild_horseradish = "Wild Horseradish" | 
					
						
							|  |  |  |     wild_plum = "Wild Plum" | 
					
						
							|  |  |  |     winter_root = "Winter Root" | 
					
						
							|  |  |  |     dragon_tooth = "Dragon Tooth" | 
					
						
							|  |  |  |     rainbow_shell = "Rainbow Shell" | 
					
						
							|  |  |  |     salmonberry = "Salmonberry" | 
					
						
							|  |  |  |     snow_yam = "Snow Yam" | 
					
						
							|  |  |  |     spring_onion = "Spring Onion" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  | class SVEForage: | 
					
						
							|  |  |  |     ferngill_primrose = "Ferngill Primrose" | 
					
						
							|  |  |  |     goldenrod = "Goldenrod" | 
					
						
							|  |  |  |     winter_star_rose = "Winter Star Rose" | 
					
						
							| 
									
										
										
											
												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 16:04:25 +03:00
										 |  |  |     bearberry = "Bearberry" | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     poison_mushroom = "Poison Mushroom" | 
					
						
							|  |  |  |     red_baneberry = "Red Baneberry" | 
					
						
							| 
									
										
										
											
												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 16:04:25 +03:00
										 |  |  |     conch = "Conch" | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     dewdrop_berry = "Dewdrop Berry" | 
					
						
							| 
									
										
										
											
												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 16:04:25 +03:00
										 |  |  |     sand_dollar = "Sand Dollar" | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     golden_ocean_flower = "Golden Ocean Flower" | 
					
						
							| 
									
										
										
											
												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 16:04:25 +03:00
										 |  |  |     four_leaf_clover = "Four Leaf Clover" | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     mushroom_colony = "Mushroom Colony" | 
					
						
							|  |  |  |     rusty_blade = "Rusty Blade" | 
					
						
							| 
									
										
										
											
												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 16:04:25 +03:00
										 |  |  |     rafflesia = "Rafflesia" | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |     thistle = "Thistle" | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | class DistantLandsForageable: | 
					
						
							|  |  |  |     brown_amanita = "Brown Amanita" | 
					
						
							|  |  |  |     swamp_herb = "Swamp Herb" | 
					
						
							| 
									
										
										
											
												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 16:04:25 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | all_edible_mushrooms = tuple(all_edible_mushrooms) |