Files
Archipelago/worlds/stardew_valley/strings/monster_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

73 lines
2.2 KiB
Python

class Monster:
green_slime = "Green Slime"
blue_slime = "Frost Jelly"
red_slime = "Sludge" # Yeah I know this is weird that these two are the same name
purple_slime = "Sludge" # Blame CA
yellow_slime = "Yellow Slime"
black_slime = "Black Slime"
copper_slime = "Copper Slime"
iron_slime = "Iron Slime"
tiger_slime = "Tiger Slime"
shadow_shaman = "Shadow Shaman"
shadow_shaman_dangerous = "Dangerous Shadow Shaman"
shadow_brute = "Shadow Brute"
shadow_brute_dangerous = "Dangerous Shadow Brute"
shadow_sniper = "Shadow Sniper"
bat = "Bat"
bat_dangerous = "Dangerous Bat"
frost_bat = "Frost Bat"
frost_bat_dangerous = "Dangerous Frost Bat"
lava_bat = "Lava Bat"
iridium_bat = "Iridium Bat"
skeleton = "Skeleton"
skeleton_dangerous = "Dangerous Skeleton"
skeleton_mage = "Skeleton Mage"
bug = "Bug"
bug_dangerous = "Dangerous Bug"
cave_fly = "Fly"
cave_fly_dangerous = "Dangerous Cave Fly"
grub = "Grub"
grub_dangerous = "Dangerous Grub"
mutant_fly = "Mutant Fly"
mutant_grub = "Mutant Grub"
armored_bug = "Armored Bug"
armored_bug_dangerous = "Armored Bug (dangerous)"
duggy = "Duggy"
duggy_dangerous = "Dangerous Duggy"
magma_duggy = "Magma Duggy"
dust_sprite = "Dust Sprite"
dust_sprite_dangerous = "Dangerous Dust Sprite"
rock_crab = "Rock Crab"
rock_crab_dangerous = "Dangerous Rock Crab"
lava_crab = "Lava Crab"
lava_crab_dangerous = "Dangerous Lava Crab"
iridium_crab = "Iridium Crab"
mummy = "Mummy"
mummy_dangerous = "Dangerous Mummy"
pepper_rex = "Pepper Rex"
serpent = "Serpent"
royal_serpent = "Royal Serpent"
magma_sprite = "Magma Sprite"
magma_sparker = "Magma Sparker"
metal_head = "Metal Head"
haunted_skull = "Haunted Skull"
class MonsterCategory:
slime = "Slimes"
void_spirits = "Void Spirits"
bats = "Bats"
skeletons = "Skeletons"
cave_insects = "Cave Insects"
duggies = "Duggies"
dust_sprites = "Dust Sprites"
rock_crabs = "Rock Crabs"
mummies = "Mummies"
pepper_rex = "Pepper Rex"
serpents = "Serpents"
magma_sprites = "Magma Sprites"
metal_heads = "Metal Heads"
none = "None"