mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 04:53:08 +00:00
parent
254e5de710
commit
a56a3c0cdb
1 changed files with 2 additions and 2 deletions
|
@ -1561,7 +1561,7 @@ namespace PKHeX
|
|||
}
|
||||
|
||||
var Lineage = Legal.getLineage(pkm).ToArray();
|
||||
if (Lineage.Any(e => Legal.Fossils.Contains(e))) // Only Poké Ball possible on Fossils
|
||||
if (Lineage.Any(e => Legal.Fossils.Contains(e)) || new[] {137,233,474}.Contains(pkm.Species)) // Only Poké Ball possible (fossils/porygon)
|
||||
{
|
||||
if (pkm.Ball == 4)
|
||||
AddLine(Severity.Valid, "Ball possible.", CheckIdentifier.Ball);
|
||||
|
@ -1585,7 +1585,7 @@ namespace PKHeX
|
|||
}
|
||||
}
|
||||
|
||||
if (Legal.Bank_NotAvailable7.Contains(baseSpecies) && EncounterType != typeof(MysteryGift))
|
||||
if (Legal.Bank_NotAvailable7.Contains(baseSpecies) && !EncounterIsMysteryGift)
|
||||
AddLine(Severity.Invalid, "Species not obtainable prior to Bank Release.", CheckIdentifier.Special);
|
||||
|
||||
if (Legal.EvolveToAlolanForms.Contains(pkm.Species))
|
||||
|
|
Loading…
Reference in a new issue