mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
un-trim alcremie form strings (cream vs swirl) (#3246)
also use proper alcremie forms for showdown
This commit is contained in:
parent
8f4f86e88e
commit
27059268ba
2 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ namespace PKHeX.Core
|
|||
(int)Zygarde when ability == 211 => $"{(string.IsNullOrWhiteSpace(form) ? "50%" : "10%")}-C",
|
||||
(int)Greninja when ability == 210 => "Ash", // Battle Bond
|
||||
(int)Rockruff when ability == 020 => "Dusk", // Rockruff-1
|
||||
(int)Urshifu or (int)Pikachu => form.Replace('-', ' '), // Strike and Cosplay
|
||||
(int)Urshifu or (int)Pikachu or (int)Alcremie => form.Replace('-', ' '), // Strike and Cosplay
|
||||
|
||||
_ => Legal.Totem_USUM.Contains(species) && form.EndsWith("Totem") ? "Large" : form,
|
||||
};
|
||||
|
|
Binary file not shown.
Loading…
Reference in a new issue