mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-12 23:06:58 -05:00
Disallow dynamax level on story legends
ty @sora10pls
This commit is contained in:
parent
473afb8377
commit
f30a14ebf0
|
|
@ -330,7 +330,7 @@ private void VerifySWSHStats(LegalityAnalysis data, PK8 pk8)
|
|||
|
||||
if (pk8.DynamaxLevel != 0)
|
||||
{
|
||||
if (pk8.IsEgg || pk8.DynamaxLevel > 10)
|
||||
if (pk8.IsEgg || pk8.DynamaxLevel > 10 || pk8.Species >= (int)Species.Zacian)
|
||||
data.AddLine(GetInvalid(LStatDynamaxInvalid));
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user