mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-22 20:13:06 +00:00
Copy phione disallowed bred ball rule from BDSP
only pokeball
This commit is contained in:
parent
96c0e199e1
commit
9ce715f70c
1 changed files with 2 additions and 0 deletions
|
@ -416,6 +416,8 @@ public sealed class BallVerifier : Verifier
|
|||
{
|
||||
var enc = data.EncounterMatch;
|
||||
var species = enc.Species;
|
||||
if (species == (int)Species.Phione)
|
||||
return VerifyBallEquals(data, (int)Poke);
|
||||
|
||||
// Paldea Starters: Only via GO (Adventures Abound)
|
||||
if (species is >= (int)Species.Sprigatito and <= (int)Species.Quaquaval)
|
||||
|
|
Loading…
Reference in a new issue