From 8c678d00b94ba511233fc4a0938ddf68a2e76c5d Mon Sep 17 00:00:00 2001 From: pekempy Date: Sun, 11 Feb 2024 11:28:04 +0000 Subject: [PATCH] Bugfixes (#238) * Fix Porygon Price in Leaf Green --- modules/modes/game_corner.py | 2 ++ wiki/pages/Mode - Static Gift Resets.md | 1 + wiki/pages/Pokemon By Method.md | 5 +++-- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/modules/modes/game_corner.py b/modules/modes/game_corner.py index 0d27375e7..6c4b84c9e 100644 --- a/modules/modes/game_corner.py +++ b/modules/modes/game_corner.py @@ -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: diff --git a/wiki/pages/Mode - Static Gift Resets.md b/wiki/pages/Mode - Static Gift Resets.md index 5a78409f7..581b0cc31 100644 --- a/wiki/pages/Mode - Static Gift Resets.md +++ b/wiki/pages/Mode - Static Gift Resets.md @@ -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) diff --git a/wiki/pages/Pokemon By Method.md b/wiki/pages/Pokemon By Method.md index d7555a48a..a49439bea 100644 --- a/wiki/pages/Pokemon By Method.md +++ b/wiki/pages/Pokemon By Method.md @@ -25,7 +25,8 @@ Use `CTRL` + `F` to find the Pokémon you're trying to hunt, and then check the | | Charmander | [Starters](Mode%20-%20Starters.md) | | | Squirtle | [Starters](Mode%20-%20Starters.md) | | | Clefairy | [Game Corner](Mode%20-%20Game%20Corner.md)\* | -| | Abra | [Game Corner](Mode%20-%20Game%20Corner.md)\* | +| | Abra | [Game Corner](Mode%20-%20Game%20Corner.md)\* | | +| | Pinsir (LG) | [Game Corner](Mode%20-%20Game%20Corner.md)\* | | | Farfetch'd | Trade (FRLG) then [Daycare](Mode%20-%20Daycare.md) | | | Hitmonlee | [Static Gift Resets](Mode%20-%20Static%20Gift%20Resets.md) | | | Hitmonchan | [Static Gift Resets](Mode%20-%20Static%20Gift%20Resets.md) | @@ -53,7 +54,7 @@ Use `CTRL` + `F` to find the Pokémon you're trying to hunt, and then check the | | Pichu | [Daycare](Mode%20-%20Daycare.md) | | | Cleffa | [Daycare](Mode%20-%20Daycare.md) | | | Igglybuff | [Daycare](Mode%20-%20Daycare.md) | -| | Togepi | [Daycare](Mode%20-%20Daycare.md) | +| | Togepi (FRLG) | [Static Gift Resets](Mode%20-%20Static%20Gift%20Resets.md) or [Daycare](Mode%20-%20Daycare.md) | | | Azumarill | [Daycare](Mode%20-%20Daycare.md) | | | Sudowoodo | [Sudowoodo](Mode%20-%20Sudowoodo.md) | | | Shuckle | [Rock Smash](Mode%20-%20Rock%20Smash.md) |