psim behavior update: Preserve "Antique" on tea export

https://github.com/smogon/pokemon-showdown/pull/6429
This commit is contained in:
Kurt 2020-04-17 11:41:34 -07:00
parent c5c8615eb0
commit 8a54e8c7b9

View file

@ -618,9 +618,12 @@ namespace PKHeX.Core
case (int)Core.Species.Furfrou:
case (int)Core.Species.Greninja:
case (int)Core.Species.Rockruff:
return string.Empty;
case (int)Core.Species.Polteageist:
case (int)Core.Species.Sinistea:
return string.Empty;
return form == "Antique" ? form : string.Empty;
default:
if (Legal.Totem_USUM.Contains(spec) && form == "Large")
return Legal.Totem_Alolan.Contains(spec) && spec != (int)Core.Species.Mimikyu ? "Alola-Totem" : "Totem";