Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Hypno SSR on Berry Forest #507

Merged
merged 1 commit into from
Nov 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions modules/modes/static_soft_resets.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@ def _get_targeted_encounter() -> Encounter | None:
Encounter(MapFRLG.CERULEAN_CAVE_B1F, (7, 12), "Mewtwo"),
Encounter(MapFRLG.NAVEL_ROCK_BASE, (10, 15), "Lugia"),
Encounter(MapFRLG.BIRTH_ISLAND_EXTERIOR, (15, 10), "Deoxys"),
Encounter(
MapFRLG.THREE_ISLAND_BERRY_FOREST,
(4, 8),
"Hypno",
lambda: not get_save_data().get_event_flag("RESCUED_LOSTELLE"),
),
]
elif context.rom.is_emerald:
encounters = [
Expand Down
1 change: 1 addition & 0 deletions wiki/pages/Mode - Static Soft Resets.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
![](../../modules/web/static/sprites/pokemon/shiny/Kyogre.png)
![](../../modules/web/static/sprites/pokemon/shiny/Groudon.png)
![](../../modules/web/static/sprites/pokemon/shiny/Kecleon.png)
![](../../modules/web/static/sprites/pokemon/shiny/Hypno.png)

> For modes that use soft resets such as starters, the bot will track RNG to ensure a unique frame is hit after every reset, this is to prevent repeatedly generating an identical Pokémon, this will cause soft resets to take progressively longer over time
>
Expand Down
Loading