From 98867f0cb3e42fc596e6c4b0a01e41dc9915dbf2 Mon Sep 17 00:00:00 2001 From: Eduardo Alvaro Quezada D'Ottone Date: Sat, 8 Feb 2020 11:52:25 -0300 Subject: [PATCH] Dex Text Fixes (#253) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fixed decap error in Eevee's Pokédex text. - Fixed missing decap in Mew's Pokédex text. --- src/data/pokemon/pokedex_text.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/pokemon/pokedex_text.h b/src/data/pokemon/pokedex_text.h index 0de25a5f5..243c0f636 100644 --- a/src/data/pokemon/pokedex_text.h +++ b/src/data/pokemon/pokedex_text.h @@ -800,7 +800,7 @@ const u8 gEeveePokedexText[] = _( "An Eevee has an unstable genetic makeup\n" "that suddenly mutates due to its\n" "environment. Radiation from various\n" - "StoneS causes this Pokémon to evolve."); + "Stones causes this Pokémon to evolve."); const u8 gVaporeonPokedexText[] = _( "Vaporeon underwent a spontaneous\n" @@ -905,7 +905,7 @@ const u8 gMewtwoPokedexText[] = _( "they failed to give it a warm heart."); const u8 gMewPokedexText[] = _( - "A MEW is said to possess the genes of all\n" + "A Mew is said to possess the genes of all\n" "Pokémon. It is capable of making itself\n" "invisible at will, so it entirely avoids\n" "notice even if it approaches people.");