## 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>
		
			
				
	
	
		
			41 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
from typing import Dict
 | 
						|
 | 
						|
from BaseClasses import MultiWorld
 | 
						|
from Options import SpecialRange
 | 
						|
from .option_names import options_to_include
 | 
						|
from worlds.stardew_valley.test.checks.world_checks import assert_can_win, assert_same_number_items_locations
 | 
						|
from .. import setup_solo_multiworld, SVTestBase
 | 
						|
 | 
						|
 | 
						|
def basic_checks(tester: SVTestBase, multiworld: MultiWorld):
 | 
						|
    assert_can_win(tester, multiworld)
 | 
						|
    assert_same_number_items_locations(tester, multiworld)
 | 
						|
 | 
						|
 | 
						|
def get_option_choices(option) -> Dict[str, int]:
 | 
						|
    if issubclass(option, SpecialRange):
 | 
						|
        return option.special_range_names
 | 
						|
    elif option.options:
 | 
						|
        return option.options
 | 
						|
    return {}
 | 
						|
 | 
						|
 | 
						|
class TestGenerateDynamicOptions(SVTestBase):
 | 
						|
    def test_given_option_pair_when_generate_then_basic_checks(self):
 | 
						|
        if self.skip_long_tests:
 | 
						|
            return
 | 
						|
 | 
						|
        num_options = len(options_to_include)
 | 
						|
        for option1_index in range(0, num_options):
 | 
						|
            for option2_index in range(option1_index + 1, num_options):
 | 
						|
                option1 = options_to_include[option1_index]
 | 
						|
                option2 = options_to_include[option2_index]
 | 
						|
                option1_choices = get_option_choices(option1)
 | 
						|
                option2_choices = get_option_choices(option2)
 | 
						|
                for key1 in option1_choices:
 | 
						|
                    for key2 in option2_choices:
 | 
						|
                        with self.subTest(f"{option1.internal_name}: {key1}, {option2.internal_name}: {key2}"):
 | 
						|
                            choices = {option1.internal_name: option1_choices[key1],
 | 
						|
                                       option2.internal_name: option2_choices[key2]}
 | 
						|
                            multiworld = setup_solo_multiworld(choices)
 | 
						|
                            basic_checks(self, multiworld) |