diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/graphics.h | 5 | ||||
-rwxr-xr-x | include/pokedex_area_screen.h | 6 | ||||
-rwxr-xr-x | include/pokedex_cry_screen.h | 19 | ||||
-rw-r--r-- | include/strings.h | 5 |
4 files changed, 35 insertions, 0 deletions
diff --git a/include/graphics.h b/include/graphics.h index 1fbccea05..36b337753 100644 --- a/include/graphics.h +++ b/include/graphics.h @@ -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[]; diff --git a/include/pokedex_area_screen.h b/include/pokedex_area_screen.h new file mode 100755 index 000000000..2fb5ade51 --- /dev/null +++ b/include/pokedex_area_screen.h @@ -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 diff --git a/include/pokedex_cry_screen.h b/include/pokedex_cry_screen.h new file mode 100755 index 000000000..6b5cc13f2 --- /dev/null +++ b/include/pokedex_cry_screen.h @@ -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 diff --git a/include/strings.h b/include/strings.h index 7c81dbcfb..c51824225 100644 --- a/include/strings.h +++ b/include/strings.h @@ -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[]; |