Files
Archipelago/worlds/stardew_valley/strings/book_names.py
agilbert1412 1de91fab67 Stardew Valley: 7.x.x - The Jojapocalypse Update (#5432)
Major Content update for Stardew Valley

### Features
- New BundleRandomization Value: Meme Bundles - Over 100 custom bundles, designed to be jokes, references, trolls, etc
- New Setting: Bundles Per Room modifier
- New Setting: Backpack Size
- New Setting: Secretsanity - Checks for triggering easter eggs and secrets
- New Setting: Moviesanity - Checks for watching movies and sharing snacks with Villagers
- New Setting: Eatsanity - Checks for eating items
- New Setting: Hatsanity - Checks for wearing Hats
- New Setting: Start Without - Allows you to select any combination of various "starting" items, that you will actually not start with. Notably, tools, backpack slots, Day5 unlocks, etc.
- New Setting: Allowed Filler Items - Allows you to customize the filler items you'll get
- New Setting: Endgame Locations - Checks for various expensive endgame tasks and purchases
- New Shipsanity value: Crops and Fish
- New Settings: Jojapocalypse and settings to customize it
- Bundle Plando: Replaced with BundleWhitelist and BundleBlacklist, for more customization freedom
- Added a couple of Host.yaml settings to help hosts allow or ban specific difficult settings that could cause problems if the people don't know what they are signing up for.

Plus a truckload of improvements on the mod side, not seen in this PR.

### Removed features
- Integration for Stardew Valley Expanded. It is simply disabled, the code is all still there, but I'm extremely tired of providing tech support for it, plus Stardew Valley 1.7 was announced and that will break it again, so I'm done. When a maintainer steps up, it can be re-enabled.
2026-02-15 18:02:21 +01:00

62 lines
2.7 KiB
Python

class Book:
animal_catalogue = "Animal Catalogue"
book_of_mysteries = "Book of Mysteries"
book_of_stars = "Book Of Stars"
stardew_valley_almanac = "Stardew Valley Almanac"
bait_and_bobber = "Bait And Bobber"
mining_monthly = "Mining Monthly"
combat_quarterly = "Combat Quarterly"
woodcutters_weekly = "Woodcutter's Weekly"
the_alleyway_buffet = "The Alleyway Buffet"
the_art_o_crabbing = "The Art O' Crabbing"
dwarvish_safety_manual = "Dwarvish Safety Manual"
jewels_of_the_sea = "Jewels Of The Sea"
raccoon_journal = "Raccoon Journal"
woodys_secret = "Woody's Secret"
jack_be_nimble_jack_be_thick = "Jack Be Nimble, Jack Be Thick"
friendship_101 = "Friendship 101"
monster_compendium = "Monster Compendium"
mapping_cave_systems = "Mapping Cave Systems"
treasure_appraisal_guide = "Treasure Appraisal Guide"
way_of_the_wind_pt_1 = "Way Of The Wind pt. 1"
way_of_the_wind_pt_2 = "Way Of The Wind pt. 2"
horse_the_book = "Horse: The Book"
ol_slitherlegs = "Ol' Slitherlegs"
queen_of_sauce_cookbook = "Queen Of Sauce Cookbook"
price_catalogue = "Price Catalogue"
the_diamond_hunter = "The Diamond Hunter"
ordered_lost_books = []
all_lost_books = set()
def lost_book(book_name: str):
ordered_lost_books.append(book_name)
all_lost_books.add(book_name)
return book_name
class LostBook:
tips_on_farming = lost_book("Tips on Farming")
this_is_a_book_by_marnie = lost_book("This is a book by Marnie")
on_foraging = lost_book("On Foraging")
the_fisherman_act_1 = lost_book("The Fisherman, Act I")
how_deep_do_the_mines_go = lost_book("How Deep do the mines go?")
an_old_farmers_journal = lost_book("An Old Farmer's Journal")
scarecrows = lost_book("Scarecrows")
the_secret_of_the_stardrop = lost_book("The Secret of the Stardrop")
journey_of_the_prairie_king_the_smash_hit_video_game = lost_book("Journey of the Prairie King -- The Smash Hit Video Game!")
a_study_on_diamond_yields = lost_book("A Study on Diamond Yields")
brewmasters_guide = lost_book("Brewmaster's Guide")
mysteries_of_the_dwarves = lost_book("Mysteries of the Dwarves")
highlights_from_the_book_of_yoba = lost_book("Highlights From The Book of Yoba")
marriage_guide_for_farmers = lost_book("Marriage Guide for Farmers")
the_fisherman_act_ii = lost_book("The Fisherman, Act II")
technology_report = lost_book("Technology Report!")
secrets_of_the_legendary_fish = lost_book("Secrets of the Legendary Fish")
gunther_tunnel_notice = lost_book("Gunther Tunnel Notice")
note_from_gunther = lost_book("Note From Gunther")
goblins_by_m_jasper = lost_book("Goblins by M. Jasper")
secret_statues_acrostics = lost_book("Secret Statues Acrostics")