mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 04:53:08 +00:00
parent
67838e4643
commit
a7a97fe084
1 changed files with 7 additions and 0 deletions
|
@ -141,6 +141,9 @@ namespace PKHeX
|
|||
// Showdown Quirks
|
||||
switch (Species)
|
||||
{
|
||||
case 658: // Greninja
|
||||
if (Ability == 210) Form += "-Ash"; // Battle Bond
|
||||
break;
|
||||
case 718: // Zygarde
|
||||
if (string.IsNullOrEmpty(Form)) Form = "50%";
|
||||
else if (Form == "Complete") Form = "100%";
|
||||
|
@ -161,6 +164,10 @@ namespace PKHeX
|
|||
string form = Form;
|
||||
switch (Species)
|
||||
{
|
||||
case 658: // Greninja
|
||||
form = form.Replace("Ash", "");
|
||||
form = form.Replace("Active", "");
|
||||
break;
|
||||
case 718: // Zygarde
|
||||
form = form.Replace("-C", "");
|
||||
form = form.Replace("50%", "");
|
||||
|
|
Loading…
Reference in a new issue