diff options
author | PikalaxALT <PikalaxALT@users.noreply.github.com> | 2019-12-19 12:34:20 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-19 12:34:20 -0500 |
commit | 567589d3ddc30c1a78ce76739f278e4d8f35ef5f (patch) | |
tree | b44bb56f76662182d7b51302c1817592491d0ca0 /src/data | |
parent | 7984a91c0892e0bd96ace89405d565ec0b43e084 (diff) | |
parent | 3d123182a8fe8182f66d5e265067107bc276b84e (diff) |
Merge pull request #187 from PikalaxALT/leafgreen
Match Pokemon FireRed 1.1 US
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[] = _(""); |