diff options
author | golem galvanize <golemgalvanize@github.com> | 2018-02-13 22:19:14 -0500 |
---|---|---|
committer | golem galvanize <golemgalvanize@github.com> | 2018-02-13 22:19:14 -0500 |
commit | e1bd37dca9a53298e733c53189b5fdba9dff050b (patch) | |
tree | 0dabac229ff7c9a64e3c2bdc862f133a97d5ba4f /include | |
parent | e5b6d15f9163cca8688cd67ca5a0563ce6667601 (diff) | |
parent | bb8c53f8988be6cad8f270c46f24e0f6f1e862cc (diff) |
fix merge conflicts
Diffstat (limited to 'include')
-rw-r--r-- | include/data2.h | 4 | ||||
-rw-r--r-- | include/pokedex.h | 4 | ||||
-rw-r--r-- | include/strings.h | 22 |
3 files changed, 28 insertions, 2 deletions
diff --git a/include/data2.h b/include/data2.h index be0f33ab8..df71f6e88 100644 --- a/include/data2.h +++ b/include/data2.h @@ -16,5 +16,9 @@ extern const u8 gSpeciesNames[][POKEMON_NAME_LENGTH + 1]; extern const u8 gMoveNames[][13]; extern const u8 gAbilityNames[][13]; extern const u8 gTypeNames[][7]; +extern struct CompressedSpriteSheet gUnknown_0831C620; +extern struct CompressedSpritePalette gUnknown_0831C628; +extern const struct SpriteTemplate gUnknown_0831C688; + #endif // GUARD_DATA2_H diff --git a/include/pokedex.h b/include/pokedex.h index 236feac45..d3cb670c8 100644 --- a/include/pokedex.h +++ b/include/pokedex.h @@ -17,7 +17,7 @@ enum }; s8 GetSetPokedexFlag(u16 nationalNum, u8 caseId); -u16 pokedex_count(u8); -u16 sub_80C0844(u8); +u16 GetNationalPokedexCount(u8); +u16 GetHoennPokedexCount(u8); #endif // GUARD_POKEDEX_H diff --git a/include/strings.h b/include/strings.h index 59ca5719c..c9ebc175f 100644 --- a/include/strings.h +++ b/include/strings.h @@ -348,4 +348,26 @@ extern const u8 gText_DepositedVar2Var1s[]; extern const u8 gText_NoRoomForItems[]; extern const u8 gText_ThreeDashes[]; +extern const u8 gBirchDexRatingText_LessThan10[]; +extern const u8 gBirchDexRatingText_LessThan20[]; +extern const u8 gBirchDexRatingText_LessThan30[]; +extern const u8 gBirchDexRatingText_LessThan40[]; +extern const u8 gBirchDexRatingText_LessThan50[]; +extern const u8 gBirchDexRatingText_LessThan60[]; +extern const u8 gBirchDexRatingText_LessThan70[]; +extern const u8 gBirchDexRatingText_LessThan80[]; +extern const u8 gBirchDexRatingText_LessThan90[]; +extern const u8 gBirchDexRatingText_LessThan100[]; +extern const u8 gBirchDexRatingText_LessThan110[]; +extern const u8 gBirchDexRatingText_LessThan120[]; +extern const u8 gBirchDexRatingText_LessThan130[]; +extern const u8 gBirchDexRatingText_LessThan140[]; +extern const u8 gBirchDexRatingText_LessThan150[]; +extern const u8 gBirchDexRatingText_LessThan160[]; +extern const u8 gBirchDexRatingText_LessThan170[]; +extern const u8 gBirchDexRatingText_LessThan180[]; +extern const u8 gBirchDexRatingText_LessThan190[]; +extern const u8 gBirchDexRatingText_LessThan200[]; +extern const u8 gBirchDexRatingText_DexCompleted[]; + #endif //GUARD_STRINGS_H |