 9b22458f44
			
		
	
	9b22458f44
	
	
	
		
			
			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
		
			
				
	
	
		
			70 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			70 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| class Fruit:
 | |
|     sweet_gem_berry = "Sweet Gem Berry"
 | |
|     any = "Any Fruit"
 | |
|     blueberry = "Blueberry"
 | |
|     melon = "Melon"
 | |
|     apple = "Apple"
 | |
|     apricot = "Apricot"
 | |
|     cherry = "Cherry"
 | |
|     orange = "Orange"
 | |
|     peach = "Peach"
 | |
|     pomegranate = "Pomegranate"
 | |
|     banana = "Banana"
 | |
|     mango = "Mango"
 | |
|     pineapple = "Pineapple"
 | |
|     ancient_fruit = "Ancient Fruit"
 | |
|     strawberry = "Strawberry"
 | |
|     starfruit = "Starfruit"
 | |
|     rhubarb = "Rhubarb"
 | |
|     grape = "Grape"
 | |
|     cranberries = "Cranberries"
 | |
|     hot_pepper = "Hot Pepper"
 | |
|     powdermelon = "Powdermelon"
 | |
|     qi_fruit = "Qi Fruit"
 | |
| 
 | |
| 
 | |
| class Vegetable:
 | |
|     any = "Any Vegetable"
 | |
|     parsnip = "Parsnip"
 | |
|     garlic = "Garlic"
 | |
|     bok_choy = "Bok Choy"
 | |
|     wheat = "Wheat"
 | |
|     potato = "Potato"
 | |
|     corn = "Corn"
 | |
|     tomato = "Tomato"
 | |
|     pumpkin = "Pumpkin"
 | |
|     unmilled_rice = "Unmilled Rice"
 | |
|     beet = "Beet"
 | |
|     hops = "Hops"
 | |
|     cauliflower = "Cauliflower"
 | |
|     amaranth = "Amaranth"
 | |
|     kale = "Kale"
 | |
|     artichoke = "Artichoke"
 | |
|     tea_leaves = "Tea Leaves"
 | |
|     eggplant = "Eggplant"
 | |
|     green_bean = "Green Bean"
 | |
|     red_cabbage = "Red Cabbage"
 | |
|     yam = "Yam"
 | |
|     radish = "Radish"
 | |
|     taro_root = "Taro Root"
 | |
|     carrot = "Carrot"
 | |
|     summer_squash = "Summer Squash"
 | |
|     broccoli = "Broccoli"
 | |
| 
 | |
| 
 | |
| class SVEFruit:
 | |
|     slime_berry = "Slime Berry"
 | |
|     monster_fruit = "Monster Fruit"
 | |
|     salal_berry = "Salal Berry"
 | |
| 
 | |
| 
 | |
| class SVEVegetable:
 | |
|     monster_mushroom = "Monster Mushroom"
 | |
|     void_root = "Void Root"
 | |
|     ancient_fiber = "Ancient Fiber"
 | |
| 
 | |
| 
 | |
| class DistantLandsCrop:
 | |
|     void_mint = "Void Mint Leaves"
 | |
|     vile_ancient_fruit = "Vile Ancient Fruit"
 |