mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-17 13:58:33 +00:00
Additionally fix Vivillon and Furfrou Import/Exports
Fixes https://github.com/kwsch/PKHeX/issues/807.
This commit is contained in:
parent
0be2bd4674
commit
42a185c682
1 changed files with 5 additions and 0 deletions
|
@ -146,6 +146,9 @@ namespace PKHeX.Core
|
|||
case 658: // Greninja
|
||||
if (Ability == 210) Form += "-Ash"; // Battle Bond
|
||||
break;
|
||||
case 666: // Vivillon
|
||||
if (Form == "Pokeball") Form = "Poké Ball";
|
||||
break;
|
||||
case 718: // Zygarde
|
||||
if (string.IsNullOrEmpty(Form)) Form = "50%";
|
||||
else if (Form == "Complete") Form = "100%";
|
||||
|
@ -275,7 +278,9 @@ namespace PKHeX.Core
|
|||
Shiny = pkm.IsShiny,
|
||||
Form = pkm.AltForm > 0 && pkm.AltForm < Forms.Length ? Forms[pkm.AltForm] : "",
|
||||
};
|
||||
|
||||
if (Set.Form == "F") Set.Gender = "";
|
||||
|
||||
return Set.getText();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue