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>
56 lines
1.7 KiB
Python
56 lines
1.7 KiB
Python
from unittest import TestCase
|
|
|
|
from BaseClasses import MultiWorld
|
|
from .option_assert import get_stardew_options
|
|
from ... import options, ExcludeGingerIsland
|
|
|
|
|
|
def is_goal(multiworld: MultiWorld, goal: int) -> bool:
|
|
return get_stardew_options(multiworld).goal.value == goal
|
|
|
|
|
|
def is_bottom_mines(multiworld: MultiWorld) -> bool:
|
|
return is_goal(multiworld, options.Goal.option_bottom_of_the_mines)
|
|
|
|
|
|
def is_not_bottom_mines(multiworld: MultiWorld) -> bool:
|
|
return not is_bottom_mines(multiworld)
|
|
|
|
|
|
def is_walnut_hunter(multiworld: MultiWorld) -> bool:
|
|
return is_goal(multiworld, options.Goal.option_greatest_walnut_hunter)
|
|
|
|
|
|
def is_not_walnut_hunter(multiworld: MultiWorld) -> bool:
|
|
return not is_walnut_hunter(multiworld)
|
|
|
|
|
|
def is_perfection(multiworld: MultiWorld) -> bool:
|
|
return is_goal(multiworld, options.Goal.option_perfection)
|
|
|
|
|
|
def is_not_perfection(multiworld: MultiWorld) -> bool:
|
|
return not is_perfection(multiworld)
|
|
|
|
|
|
class GoalAssertMixin(TestCase):
|
|
|
|
def assert_ginger_island_is_included(self, multiworld: MultiWorld):
|
|
self.assertEqual(get_stardew_options(multiworld).exclude_ginger_island, ExcludeGingerIsland.option_false)
|
|
|
|
def assert_walnut_hunter_world_is_valid(self, multiworld: MultiWorld):
|
|
if is_not_walnut_hunter(multiworld):
|
|
return
|
|
|
|
self.assert_ginger_island_is_included(multiworld)
|
|
|
|
def assert_perfection_world_is_valid(self, multiworld: MultiWorld):
|
|
if is_not_perfection(multiworld):
|
|
return
|
|
|
|
self.assert_ginger_island_is_included(multiworld)
|
|
|
|
def assert_goal_world_is_valid(self, multiworld: MultiWorld):
|
|
self.assert_walnut_hunter_world_is_valid(multiworld)
|
|
self.assert_perfection_world_is_valid(multiworld)
|