 52e65e208e
			
		
	
	52e65e208e
	
	
	
		
			
			Major Content update for Stardew Valley, including the following features - Major performance improvements all across the Stardew Valley apworld, including a significant reduction in the test time - Randomized Farm Type - Bundles rework (Remixed Bundles and Missing Bundle!) - New Settings: * Shipsanity - Shipping individual items * Monstersanity - Slaying monsters * Cooksanity - Cooking individual recipes * Chefsanity - Learning individual recipes * Craftsanity - Crafting individual items - New Goals: * Protector of the Valley - Complete every monster slayer goal * Full Shipment - Ship every item * Craftmaster - Craft every item * Gourmet Chef - Cook every recipe * Legend - Earn 10 000 000g * Mystery of the Stardrops - Find every stardrop (Maguffin Hunt) * Allsanity - Complete every check in your slot - Building Shuffle: Cheaper options - Tool Shuffle: Cheaper options - Money rework - New traps - New isolated checks and items, including the farm cave, the movie theater, etc - Mod Support: SVE [Albrekka] - Mod Support: Distant Lands [Albrekka] - Mod Support: Hat Mouse Lacey [Albrekka] - Mod Support: Boarding House [Albrekka] Co-authored-by: Witchybun <elnendil@gmail.com> Co-authored-by: Witchybun <96719127+Witchybun@users.noreply.github.com> Co-authored-by: Jouramie <jouramie@hotmail.com> Co-authored-by: Alchav <59858495+Alchav@users.noreply.github.com>
		
			
				
	
	
		
			51 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| from dataclasses import dataclass
 | |
| from typing import Tuple
 | |
| 
 | |
| from .. import data
 | |
| 
 | |
| 
 | |
| @dataclass(frozen=True)
 | |
| class SeedItem:
 | |
|     name: str
 | |
|     seasons: Tuple[str]
 | |
|     regions: Tuple[str]
 | |
|     requires_island: bool
 | |
| 
 | |
| 
 | |
| @dataclass(frozen=True)
 | |
| class CropItem:
 | |
|     name: str
 | |
|     farm_growth_seasons: Tuple[str]
 | |
|     seed: SeedItem
 | |
| 
 | |
| 
 | |
| def load_crop_csv():
 | |
|     import csv
 | |
|     try:
 | |
|         from importlib.resources import files
 | |
|     except ImportError:
 | |
|         from importlib_resources import files  # noqa
 | |
| 
 | |
|     with files(data).joinpath("crops.csv").open() as file:
 | |
|         reader = csv.DictReader(file)
 | |
|         crops = []
 | |
|         seeds = []
 | |
| 
 | |
|         for item in reader:
 | |
|             seeds.append(SeedItem(item["seed"],
 | |
|                                   tuple(season for season in item["seed_seasons"].split(","))
 | |
|                                   if item["seed_seasons"] else tuple(),
 | |
|                                   tuple(region for region in item["seed_regions"].split(","))
 | |
|                                   if item["seed_regions"] else tuple(),
 | |
|                                   item["requires_island"] == "True"))
 | |
|             crops.append(CropItem(item["crop"],
 | |
|                                   tuple(season for season in item["farm_growth_seasons"].split(","))
 | |
|                                   if item["farm_growth_seasons"] else tuple(),
 | |
|                                   seeds[-1]))
 | |
|         return crops, seeds
 | |
| 
 | |
| 
 | |
| # TODO Those two should probably be split to we can include rest of seeds
 | |
| all_crops, all_purchasable_seeds = load_crop_csv()
 | |
| crops_by_name = {crop.name: crop for crop in all_crops}
 |