Stardew Valley: 5.x.x - The Allsanity Update (#2764)

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>
This commit is contained in:
agilbert1412
2024-03-15 15:05:14 +03:00
committed by GitHub
parent f7da833572
commit 52e65e208e
177 changed files with 17815 additions and 6863 deletions

View File

@@ -0,0 +1,50 @@
from typing import List
class DeepWoodsItem:
pendant_community = "Pendant of Community"
pendant_elder = "Pendant of Elders"
pendant_depths = "Pendant of Depths"
obelisk_sigil = "Progressive Woods Obelisk Sigils"
class SkillLevel:
luck = "Luck Level"
archaeology = "Archaeology Level"
class SVEQuestItem:
aurora_vineyard_tablet = "Aurora Vineyard Tablet"
iridium_bomb = "Iridium Bomb"
void_soul = "Void Spirit Peace Agreement"
kittyfish_spell = "Kittyfish Spell"
scarlett_job_offer = "Scarlett's Job Offer"
morgan_schooling = "Morgan's Schooling"
diamond_wand = "Diamond Wand"
marlon_boat_paddle = "Marlon's Boat Paddle"
fable_reef_portal = "Fable Reef Portal"
grandpa_shed = "Grandpa's Shed"
sve_quest_items: List[str] = [aurora_vineyard_tablet, iridium_bomb, void_soul, kittyfish_spell, scarlett_job_offer, morgan_schooling, grandpa_shed]
sve_quest_items_ginger_island: List[str] = [marlon_boat_paddle, fable_reef_portal]
class SVELocation:
tempered_galaxy_sword = "Tempered Galaxy Sword"
tempered_galaxy_hammer = "Tempered Galaxy Hammer"
tempered_galaxy_dagger = "Tempered Galaxy Dagger"
diamond_wand = "Lance's Diamond Wand"
monster_crops = "Monster Crops"
class SVERunes:
nexus_guild = "Nexus: Adventurer's Guild Runes"
nexus_junimo = "Nexus: Junimo Woods Runes"
nexus_outpost = "Nexus: Outpost Runes"
nexus_aurora = "Nexus: Aurora Vineyard Runes"
nexus_spring = "Nexus: Sprite Spring Runes"
nexus_farm = "Nexus: Farm Runes"
nexus_wizard = "Nexus: Wizard Runes"
nexus_items: List[str] = [nexus_farm, nexus_wizard, nexus_spring, nexus_aurora, nexus_guild, nexus_junimo, nexus_outpost]