Long cat + fix Rotom dex entry and 4 digit spacing

This commit is contained in:
Eduardo Quezada 2022-12-28 11:23:05 -03:00
parent 7175214663
commit a4538d606d
3 changed files with 469 additions and 442 deletions

View file

@ -3532,6 +3532,21 @@ const u8 gRotomPokedexText[] = _(
"kinds of machines and take control,\n"
"in order to make mischief.");
const u8 gRotomHeatPokedexText[] = _(
"");
const u8 gRotomWashPokedexText[] = _(
"");
const u8 gRotomFrostPokedexText[] = _(
"");
const u8 gRotomFanPokedexText[] = _(
"");
const u8 gRotomMowPokedexText[] = _(
"");
const u8 gUxiePokedexText[] = _(
"Known as ”The Being of Knowledge,”\n"
"according to some sources, this Pokémon\n"

File diff suppressed because it is too large Load diff

View file

@ -4261,12 +4261,15 @@ static void PrintMonInfo(u32 num, u32 value, u32 owned, u32 newEntry)
value = SpeciesToNationalPokedexNum(num);
#if P_DEX_FOUR_DIGITS_AMOUNT == TRUE
ConvertIntToDecimalStringN(StringCopy(str, gText_NumberClear01), value, STR_CONV_MODE_LEADING_ZEROS, 4);
PrintInfoScreenText(str, 0x60, 0x19);
name = GetSpeciesName(num);
PrintInfoScreenText(name, 0x8A, 0x19);
#else
ConvertIntToDecimalStringN(StringCopy(str, gText_NumberClear01), value, STR_CONV_MODE_LEADING_ZEROS, 3);
#endif
PrintInfoScreenText(str, 0x60, 0x19);
name = GetSpeciesName(num);
PrintInfoScreenText(name, 0x84, 0x19);
#endif
if (owned)
{
CopyMonCategoryText(num, str2);