diff options
Diffstat (limited to 'src/data')
-rw-r--r-- | src/data/pokemon/pokedex_text.h | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/src/data/pokemon/pokedex_text.h b/src/data/pokemon/pokedex_text.h index 3285c8d11..be073876f 100644 --- a/src/data/pokemon/pokedex_text.h +++ b/src/data/pokemon/pokedex_text.h @@ -1063,9 +1063,14 @@ const u8 gMewPokedexText[] = _( const u8 gMewPokedexTextUnused[] = _(""); const u8 gChikoritaPokedexText[] = _( +#if REVISION == 0 "Its pleasantly aromatic leaves have the\n" +#else + "Its pleasantly aromatic leaf has the\n" +#endif "ability to check the humidity and\n" - "temperature."); + "temperature." +); const u8 gChikoritaPokedexTextUnused[] = _(""); @@ -1735,9 +1740,16 @@ const u8 gPupitarPokedexText[] = _( const u8 gPupitarPokedexTextUnused[] = _(""); const u8 gTyranitarPokedexText[] = _( +#if REVISION == 0 "Its body can't be harmed by any sort of\n" "attack, so it is very eager to make\n" - "challenges against enemies."); + "challenges against enemies." +#else + "It has an impudent nature. Having great\n" + "strength, it can even change surrounding\n" + "landforms." +#endif +); const u8 gTyranitarPokedexTextUnused[] = _(""); |