Skip to content

Commit

Permalink
Bugfixes (#238)
Browse files Browse the repository at this point in the history
* Fix Porygon Price in Leaf Green
  • Loading branch information
pekempy authored Feb 11, 2024
1 parent 360d99b commit 8c678d0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions modules/modes/game_corner.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ def run(self) -> Generator:

if context.rom.is_fr:
choices = [("Abra", 180), ("Clefairy", 500), ("Dratini", 2800), ("Scyther", 5500), ("Porygon", 9999)]
if context.rom.is_lg:
choices = [("Abra", 120), ("Clefairy", 750), ("Pinsir", 2500), ("Dratini", 4600), ("Porygon", 6500)]
elif context.rom.is_lg:
choices = [("Abra", 120), ("Clefairy", 750), ("Pinsir", 2500), ("Dratini", 4600), ("Porygon", 9999)]
else:
Expand Down
1 change: 1 addition & 0 deletions wiki/pages/Mode - Static Gift Resets.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ Soft reset for a static gift Pokémon that are directly added to your party with
- Place the player in front of the Old Man in the [Water Labyrinth](https://bulbapedia.bulbagarden.net/wiki/Water_Labyrinth) just west of [Five Island](https://bulbapedia.bulbagarden.net/wiki/Five_Island)
- Register [Bicycle]() to the `Select` button
- Make sure you have defeated the female trainer on the island
- Lead Pokémon must have max friendship (255) to receive the egg
- **Note**: This mode will be low encounters per hour. For optimal hatching rates, it is recommended to use the Daycare Mode in Emerald, once released.

![image](../images/gift_togepi.png)
Expand Down
5 changes: 3 additions & 2 deletions wiki/pages/Pokemon By Method.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ Use `CTRL` + `F` to find the Pokémon you're trying to hunt, and then check the
| <img src="../../sprites/pokemon/shiny/Charmander.png" style="max-width: 80px"> | Charmander | [Starters](Mode%20-%20Starters.md) |
| <img src="../../sprites/pokemon/shiny/Squirtle.png" style="max-width: 80px"> | Squirtle | [Starters](Mode%20-%20Starters.md) |
| <img src="../../sprites/pokemon/shiny/Clefairy.png" style="max-width: 80px"> | Clefairy | [Game Corner](Mode%20-%20Game%20Corner.md)\* |
| <img src="../../sprites/pokemon/shiny/Abra.png" style="max-width: 80px"> | Abra | [Game Corner](Mode%20-%20Game%20Corner.md)\* |
| <img src="../../sprites/pokemon/shiny/Abra.png" style="max-width: 80px"> | Abra | [Game Corner](Mode%20-%20Game%20Corner.md)\* | |
| <img src="../../sprites/pokemon/shiny/Pinsir.png" style="max-width: 80px"> | Pinsir (LG) | [Game Corner](Mode%20-%20Game%20Corner.md)\* |
| <img src="../../sprites/pokemon/shiny/Farfetch'd.png" style="max-width: 80px"> | Farfetch'd | Trade (FRLG) then [Daycare](Mode%20-%20Daycare.md) |
| <img src="../../sprites/pokemon/shiny/Hitmonlee.png" style="max-width: 80px"> | Hitmonlee | [Static Gift Resets](Mode%20-%20Static%20Gift%20Resets.md) |
| <img src="../../sprites/pokemon/shiny/Hitmonchan.png" style="max-width: 80px"> | Hitmonchan | [Static Gift Resets](Mode%20-%20Static%20Gift%20Resets.md) |
Expand Down Expand Up @@ -53,7 +54,7 @@ Use `CTRL` + `F` to find the Pokémon you're trying to hunt, and then check the
| <img src="../../sprites/pokemon/shiny/Pichu.png" style="max-width: 80px"> | Pichu | [Daycare](Mode%20-%20Daycare.md) |
| <img src="../../sprites/pokemon/shiny/Cleffa.png" style="max-width: 80px"> | Cleffa | [Daycare](Mode%20-%20Daycare.md) |
| <img src="../../sprites/pokemon/shiny/Igglybuff.png" style="max-width: 80px"> | Igglybuff | [Daycare](Mode%20-%20Daycare.md) |
| <img src="../../sprites/pokemon/shiny/Togepi.png" style="max-width: 80px"> | Togepi | [Daycare](Mode%20-%20Daycare.md) |
| <img src="../../sprites/pokemon/shiny/Togepi.png" style="max-width: 80px"> | Togepi (FRLG) | [Static Gift Resets](Mode%20-%20Static%20Gift%20Resets.md) or [Daycare](Mode%20-%20Daycare.md) |
| <img src="../../sprites/pokemon/shiny/Azumarill.png" style="max-width: 80px"> | Azumarill | [Daycare](Mode%20-%20Daycare.md) |
| <img src="../../sprites/pokemon/shiny/Sudowoodo.png" style="max-width: 80px"> | Sudowoodo | [Sudowoodo](Mode%20-%20Sudowoodo.md) |
| <img src="../../sprites/pokemon/shiny/Shuckle.png" style="max-width: 80px"> | Shuckle | [Rock Smash](Mode%20-%20Rock%20Smash.md) |
Expand Down

0 comments on commit 8c678d0

Please sign in to comment.