From 1904700c1e763d5d0dbacecfac8a96c6fc8dabcc Mon Sep 17 00:00:00 2001 From: Kurt Date: Tue, 20 Jun 2017 22:55:58 -0700 Subject: [PATCH] Fetch jp egg name on gen3 species0 #1257 causes a pkm flagged as egg to return the japanese egg name for gen3 only --- PKHeX.Core/PKM/PKX.cs | 3 +++ 1 file changed, 3 insertions(+) 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.