From 348fa4c9fa1c37a6cd8cc95bf73a982602362f8a Mon Sep 17 00:00:00 2001 From: Kurt Date: Sun, 29 Aug 2021 13:23:34 -0700 Subject: [PATCH] Force Gen2 Red Gyarados to be male only, fixed IVs Closes #3251 Uses fixed IVs to force shininess (rather than mutating DVs) https://github.com/pret/pokecrystal/blob/1f9e688b76c90403d14f1ab68b47b0e7d1df24c6/engine/battle/core.asm#L6103-L6110 Co-Authored-By: CanoeHope <43196464+CanoeHope@users.noreply.github.com> --- PKHeX.Core/Legality/Encounters/Data/Encounters2.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKHeX.Core/Legality/Encounters/Data/Encounters2.cs b/PKHeX.Core/Legality/Encounters/Data/Encounters2.cs index 94b6cd90d..966077cf7 100644 --- a/PKHeX.Core/Legality/Encounters/Data/Encounters2.cs +++ b/PKHeX.Core/Legality/Encounters/Data/Encounters2.cs @@ -34,7 +34,7 @@ namespace PKHeX.Core new(185, 20, GSC) { Location = 020 }, // Sudowoodo @ Route 36 new(236, 10, GSC) { Location = 035 }, // Tyrogue @ Mt. Mortar - new(130, 30, GSC) { Location = 038, Shiny = Shiny.Always, }, // Gyarados @ Lake of Rage + new(130, 30, GSC) { Location = 038, Shiny = Shiny.Always, Gender = 0, IVs = new []{0, 14, 10, 10, 10, 10} }, // Gyarados @ Lake of Rage (forcing shiny IVs result in always Male) new(074, 21, GSC) { Location = 036 }, // Geodude @ Rocket Hideout (Mahogany Town) new(109, 21, GSC) { Location = 036 }, // Koffing @ Rocket Hideout (Mahogany Town) new(100, 23, GSC) { Location = 036 }, // Voltorb @ Rocket Hideout (Mahogany Town)