mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 04:53:08 +00:00
Fix for Giratina's Origin form only with specific held item
This commit is contained in:
parent
3eb8575732
commit
d0bfa187ca
1 changed files with 7 additions and 0 deletions
|
@ -1572,6 +1572,13 @@ namespace PKHeX.Core
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
case 487: // Giratina
|
||||||
|
if (pkm.AltForm == 1 && pkm.HeldItem!=112) // Origin form only with Griseous Orb
|
||||||
|
{
|
||||||
|
AddLine(Severity.Invalid, "Form cannot exist without Griseous Orb as Held Item", CheckIdentifier.Form);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
break;
|
||||||
case 658: // Greninja
|
case 658: // Greninja
|
||||||
if (pkm.AltForm > 1) // Ash Battle Bond active
|
if (pkm.AltForm > 1) // Ash Battle Bond active
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue