mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-14 16:27:21 +00:00
psim behavior update: Preserve "Antique" on tea export
https://github.com/smogon/pokemon-showdown/pull/6429
This commit is contained in:
parent
c5c8615eb0
commit
8a54e8c7b9
1 changed files with 4 additions and 1 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue