mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00

## 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>
49 lines
1.5 KiB
Python
49 lines
1.5 KiB
Python
class ModNames:
|
|
vanilla = None
|
|
deepwoods = "DeepWoods"
|
|
tractor = "Tractor Mod"
|
|
big_backpack = "Bigger Backpack"
|
|
luck_skill = "Luck Skill"
|
|
magic = "Magic"
|
|
socializing_skill = "Socializing Skill"
|
|
archaeology = "Archaeology"
|
|
cooking_skill = "Cooking Skill"
|
|
binning_skill = "Binning Skill"
|
|
juna = "Juna - Roommate NPC"
|
|
jasper = "Professor Jasper Thomas"
|
|
alec = "Alec Revisited"
|
|
yoba = "Custom NPC - Yoba"
|
|
eugene = "Custom NPC Eugene"
|
|
wellwick = "'Prophet' Wellwick"
|
|
ginger = "Mister Ginger (cat npc)"
|
|
shiko = "Shiko - New Custom NPC"
|
|
delores = "Delores - Custom NPC"
|
|
ayeisha = "Ayeisha - The Postal Worker (Custom NPC)"
|
|
riley = "Custom NPC - Riley"
|
|
skull_cavern_elevator = "Skull Cavern Elevator"
|
|
|
|
|
|
mod_versions = {
|
|
ModNames.deepwoods: "3.0.0-beta",
|
|
ModNames.tractor: "4.16.4",
|
|
ModNames.big_backpack: "6.0.0",
|
|
ModNames.luck_skill: "1.2.4",
|
|
ModNames.magic: "0.8.2",
|
|
ModNames.socializing_skill: "1.1.5",
|
|
ModNames.archaeology: "1.5.0",
|
|
ModNames.cooking_skill: "1.4.5",
|
|
ModNames.binning_skill: "1.2.7",
|
|
ModNames.juna: "2.1.3",
|
|
ModNames.jasper: "1.7.6",
|
|
ModNames.alec: "2.1.0",
|
|
ModNames.yoba: "1.0.0",
|
|
ModNames.eugene: "1.3.1",
|
|
ModNames.wellwick: "1.0.0",
|
|
ModNames.ginger: "1.5.9",
|
|
ModNames.shiko: "1.1.0",
|
|
ModNames.delores: "1.1.2",
|
|
ModNames.ayeisha: "0.5.0-alpha",
|
|
ModNames.riley: "1.2.2",
|
|
ModNames.skull_cavern_elevator: "1.5.0",
|
|
}
|