mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 04:23:12 +00:00
Force Gen2 Red Gyarados to be male only, fixed IVs
Closes #3251
Uses fixed IVs to force shininess (rather than mutating DVs)
1f9e688b76/engine/battle/core.asm (L6103-L6110)
Co-Authored-By: CanoeHope <43196464+CanoeHope@users.noreply.github.com>
This commit is contained in:
parent
92d15bdd03
commit
348fa4c9fa
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue