diff --git a/PKHeX.Core/PKM/PKX.cs b/PKHeX.Core/PKM/PKX.cs index 05a945292..f7cadf7c4 100644 --- a/PKHeX.Core/PKM/PKX.cs +++ b/PKHeX.Core/PKM/PKX.cs @@ -209,6 +209,9 @@ public static string GetSpeciesName(int species, int lang) /// Generation specific default species name public static string GetSpeciesNameGeneration(int species, int lang, int generation) { + if (generation == 3 && species == 0) + return "タマゴ"; + string nick = GetSpeciesName(species, lang); if (generation < 5 && (generation != 4 || species != 0)) // All caps GenIV and previous, except GenIV eggs.