2024-03-15 15:05:14 +03:00
|
|
|
from .assertion import WorldAssertMixin
|
2025-05-13 03:58:03 -04:00
|
|
|
from .bases import SVTestBase
|
2024-03-15 15:05:14 +03:00
|
|
|
from .. import options
|
|
|
|
|
|
|
|
|
|
|
|
class TestCrypticNoteNoQuests(WorldAssertMixin, SVTestBase):
|
|
|
|
options = {
|
2024-12-08 21:00:30 -05:00
|
|
|
options.Goal.internal_name: options.Goal.option_cryptic_note,
|
|
|
|
options.QuestLocations.internal_name: "none"
|
2024-03-15 15:05:14 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
def test_given_option_pair_then_basic_checks(self):
|
|
|
|
self.assert_basic_checks(self.multiworld)
|
|
|
|
|
|
|
|
|
|
|
|
class TestCompleteCollectionNoQuests(WorldAssertMixin, SVTestBase):
|
|
|
|
options = {
|
2024-12-08 21:00:30 -05:00
|
|
|
options.Goal.internal_name: options.Goal.option_complete_collection,
|
|
|
|
options.QuestLocations.internal_name: "none"
|
2024-03-15 15:05:14 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
def test_given_option_pair_then_basic_checks(self):
|
|
|
|
self.assert_basic_checks(self.multiworld)
|
|
|
|
|
|
|
|
|
|
|
|
class TestProtectorOfTheValleyNoQuests(WorldAssertMixin, SVTestBase):
|
|
|
|
options = {
|
2024-12-08 21:00:30 -05:00
|
|
|
options.Goal.internal_name: options.Goal.option_protector_of_the_valley,
|
|
|
|
options.QuestLocations.internal_name: "none"
|
2024-03-15 15:05:14 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
def test_given_option_pair_then_basic_checks(self):
|
|
|
|
self.assert_basic_checks(self.multiworld)
|
|
|
|
|
|
|
|
|
|
|
|
class TestCraftMasterNoQuests(WorldAssertMixin, SVTestBase):
|
|
|
|
options = {
|
2024-12-08 21:00:30 -05:00
|
|
|
options.Goal.internal_name: options.Goal.option_craft_master,
|
|
|
|
options.QuestLocations.internal_name: "none"
|
2024-03-15 15:05:14 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
def test_given_option_pair_then_basic_checks(self):
|
|
|
|
self.assert_basic_checks(self.multiworld)
|
|
|
|
|
|
|
|
|
|
|
|
class TestCraftMasterNoSpecialOrder(WorldAssertMixin, SVTestBase):
|
|
|
|
options = {
|
2024-12-08 21:00:30 -05:00
|
|
|
options.Goal.internal_name: options.Goal.option_craft_master,
|
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
|
|
|
options.SpecialOrderLocations.internal_name: options.SpecialOrderLocations.alias_disabled,
|
2024-03-15 15:05:14 +03:00
|
|
|
options.ExcludeGingerIsland.internal_name: options.ExcludeGingerIsland.option_true,
|
|
|
|
options.Craftsanity.internal_name: options.Craftsanity.option_none
|
|
|
|
}
|
|
|
|
|
|
|
|
def test_given_option_pair_then_basic_checks(self):
|
|
|
|
self.assert_basic_checks(self.multiworld)
|