mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 08:47:14 +00:00
parent
c23cc81212
commit
ddb496692d
1 changed files with 7 additions and 3 deletions
|
@ -325,9 +325,13 @@ namespace PKHeX.Core
|
|||
{
|
||||
var catch_rate = pk1.Catch_Rate;
|
||||
// Pure gen 1, trades can be filter by catch rate
|
||||
if ((pk1.Species == 25 || pk1.Species == 26) && catch_rate == 190)
|
||||
// Red Blue Pikachu, is not a static encounter
|
||||
return false;
|
||||
if (pk1.Species == 25 || pk1.Species == 26)
|
||||
{
|
||||
if (catch_rate == 190) // Red Blue Pikachu, is not a static encounter
|
||||
return false;
|
||||
if (catch_rate == 163 && e.Level == 5) // Light Ball (Yellow) starter
|
||||
return true;
|
||||
}
|
||||
|
||||
if (e.Version == GameVersion.Stadium)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue