mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 08:47:14 +00:00
Add zygarde form
This commit is contained in:
parent
e63671ac43
commit
c1f7850304
1 changed files with 16 additions and 6 deletions
|
@ -984,6 +984,16 @@ namespace PKHeX
|
|||
f[1018], // Unbound
|
||||
};
|
||||
|
||||
case 718: // Zygarde
|
||||
return new[]
|
||||
{
|
||||
t[000], // Normal (Aura Break)
|
||||
"10%", // (Aura Break)
|
||||
"10%-C", // Cell (Power Construct)
|
||||
"50%-C", // Cell (Power Construct)
|
||||
"100%-C" // Cell (Power Construct)
|
||||
};
|
||||
|
||||
case 741: // Oricorio
|
||||
return new[]
|
||||
{
|
||||
|
@ -996,15 +1006,15 @@ namespace PKHeX
|
|||
case 745: // Lycanroc
|
||||
return new[]
|
||||
{
|
||||
f[745],
|
||||
f[1024],
|
||||
f[745], // Midday
|
||||
f[1024], // Midnight
|
||||
};
|
||||
|
||||
case 746: // Wishiwashi
|
||||
return new[]
|
||||
{
|
||||
f[746],
|
||||
f[1025],
|
||||
f[1025], // School
|
||||
};
|
||||
|
||||
case 774: // Minior
|
||||
|
@ -1030,7 +1040,7 @@ namespace PKHeX
|
|||
return new[]
|
||||
{
|
||||
t[000],
|
||||
f[1058],
|
||||
f[1058], // Busted
|
||||
};
|
||||
|
||||
case 19: // Rattata
|
||||
|
@ -1055,8 +1065,8 @@ namespace PKHeX
|
|||
break;
|
||||
return new[]
|
||||
{
|
||||
t[000], f[810]
|
||||
|
||||
t[000],
|
||||
f[810] // Alolan
|
||||
};
|
||||
}
|
||||
return new[] {""};
|
||||
|
|
Loading…
Reference in a new issue