mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 14:30:56 +00:00
Change spiky pichu to pokewalker pid method
#1381 now that pokewalker pid method is finished, pichu is noted to be generated with it.
This commit is contained in:
parent
fe06309134
commit
3621105e85
1 changed files with 2 additions and 3 deletions
|
@ -615,9 +615,8 @@ namespace PKHeX.Core
|
|||
switch (encounter)
|
||||
{
|
||||
case EncounterStatic s:
|
||||
if (s == Encounters4.SpikyEaredPichu) // nonshiny forced nature, undocumented
|
||||
return val == PIDType.None;
|
||||
if (s.Location == 233 && s.Gift)
|
||||
if (s == Encounters4.SpikyEaredPichu // nonshiny forced nature
|
||||
|| s.Location == 233 && s.Gift) // Pokewalker
|
||||
return val == PIDType.Pokewalker;
|
||||
return s.Shiny == true ? val == PIDType.ChainShiny : val == PIDType.Method_1;
|
||||
case EncounterSlot sl:
|
||||
|
|
Loading…
Reference in a new issue