decompiled up to sub_80BFCF4

This commit is contained in:
golem galvanize 2018-04-30 20:41:17 -04:00
parent 6a401b5386
commit f9331f15ef
6 changed files with 1303 additions and 4056 deletions

File diff suppressed because it is too large Load Diff

View File

@ -2662,6 +2662,11 @@ extern const u8 gUnknown_08DC2B1C[];
extern const u16 gPokedexHoennBg_Pal[];
extern const u16 gPokedexText_Pal[];
extern const u16 gPokedexNationalBg_Pal[];
extern const u8 gUnknown_08DC3080[];
extern const u8 gUnknown_08DC3198[];
extern const u8 gUnknown_08DC2E6C[];
extern const u8 gUnknown_08DC2F5C[];
extern const u8 gUnknown_08DC2FEC[];
// berry tag screen
extern const u8 gUnknown_08D9BB44[];

6
include/pokedex_area_screen.h Executable file
View File

@ -0,0 +1,6 @@
#ifndef GUARD_POKEDEX_AREA_SCREEN_H
#define GUARD_POKEDEX_AREA_SCREEN_H
void sub_813D3D8(u16, u8*);
#endif // GUARD_POKEDEX_AREA_SCREEN_H

19
include/pokedex_cry_screen.h Executable file
View File

@ -0,0 +1,19 @@
#ifndef GUARD_POKEDEX_CRY_SCREEN_H
#define GUARD_POKEDEX_CRY_SCREEN_H
struct CryRelatedStruct
{
u16 unk0;
u8 unk2;
u8 paletteNo;
u8 xPos;
u8 yPos;
};
bool8 sub_8145354(struct CryRelatedStruct*, u8);
void sub_814545C(u8);
void sub_8145534(u16);
void sub_8145914(void);
bool8 sub_8145850(struct CryRelatedStruct*, u8);
#endif

View File

@ -366,6 +366,11 @@ extern const u8 gText_ThreeDashes[];
extern const u8 gText_PkmnHPRestoredByVar2[];
extern const u8 gText_CantBeUsedOnPkmn[];
//pokedex text
extern const u8 gText_CryOf[];
extern const u8 gText_SizeComparedTo[];
//birch dex rating text
extern const u8 gBirchDexRatingText_LessThan10[];
extern const u8 gBirchDexRatingText_LessThan20[];

File diff suppressed because it is too large Load Diff