-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #314 from adrienntindall/main
Start Syncing HGSS Battle Loading - Preliminary cleanup
- Loading branch information
Showing
129 changed files
with
2,035 additions
and
2,052 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
#ifndef POKEPLATINUM_POKEDEX_H | ||
#define POKEPLATINUM_POKEDEX_H | ||
|
||
#include "struct_decls/pokedexdata_decl.h" | ||
|
||
#include "pokemon.h" | ||
#include "savedata.h" | ||
|
||
int Pokedex_SaveSize(void); | ||
Pokedex *Pokedex_New(u32 heapID); | ||
void Pokedex_Copy(const Pokedex *src, Pokedex *dest); | ||
void Pokedex_Init(Pokedex *pokedex); | ||
u16 Pokedex_CountCaught_National(const Pokedex *pokedex); | ||
u16 Pokedex_CountSeen_National(const Pokedex *pokedex); | ||
u16 Pokedex_CountSeen(const Pokedex *pokedex); | ||
u16 Pokedex_CountCaught_Local(const Pokedex *pokedex); | ||
u16 Pokedex_CountSeen_Local(const Pokedex *pokedex); | ||
BOOL Pokedex_NationalDexCompleted(const Pokedex *pokedex); | ||
BOOL Pokedex_LocalDexCompleted(const Pokedex *pokedex); | ||
u16 Pokedex_NumCaught_National(const Pokedex *pokedex); | ||
u16 Pokedex_NumCaught_Local(const Pokedex *pokedex); | ||
BOOL Pokedex_HasCaughtSpecies(const Pokedex *pokedex, u16 species); | ||
BOOL Pokedex_HasSeenSpecies(const Pokedex *pokedex, u16 species); | ||
u32 Pokedex_GetForm_Spinda(const Pokedex *pokedex, u8 formIndex); | ||
u32 Pokedex_DisplayedGender(const Pokedex *pokedex, u16 species, int displaySecondary); | ||
u32 Pokedex_GetForm_Unown(const Pokedex *pokedex, int formIndex); | ||
u32 Pokedex_NumFormsSeen_Unown(const Pokedex *pokedex); | ||
u32 Pokedex_GetForm_Shellos(const Pokedex *pokedex, int formIndex); | ||
u32 Pokedex_NumFormsSeen_Shellos(const Pokedex *pokedex); | ||
u32 Pokedex_GetForm_Gastrodon(const Pokedex *pokedex, int formIndex); | ||
u32 Pokedex_NumFormsSeen_Gastrodon(const Pokedex *pokedex); | ||
u32 Pokedex_GetForm_Burmy(const Pokedex *pokedex, int formIndex); | ||
u32 Pokedex_NumFormsSeen_Burmy(const Pokedex *pokedex); | ||
u32 Pokedex_GetForm_Wormadam(const Pokedex *pokedex, int formIndex); | ||
u32 Pokedex_NumFormsSeen_Wormadam(const Pokedex *pokedex); | ||
u32 Pokedex_GetForm_Deoxys(const Pokedex *pokedex, int formIndex); | ||
u32 Pokedex_NumFormsSeen_Deoxys(const Pokedex *pokedex); | ||
void Pokedex_Encounter(Pokedex *pokedex, Pokemon *pokemon); | ||
void Pokedex_Capture(Pokedex *pokedex, Pokemon *pokemon); | ||
void Pokedex_ObtainNationalDex(Pokedex *pokedex); | ||
BOOL Pokedex_IsNationalDexObtained(const Pokedex *pokedex); | ||
BOOL Pokedex_CanDetectForms(const Pokedex *pokedex); | ||
void Pokedex_TurnOnFormDetection(Pokedex *pokedex); | ||
BOOL Pokedex_IsLanguageObtained(const Pokedex *pokedex, u16 species, u32 languageIndex); | ||
void Pokedex_TurnOnLanguageDetection(Pokedex *pokedex); | ||
BOOL Pokedex_CanDetectLanguages(const Pokedex *pokedex); | ||
BOOL Pokedex_IsObtained(const Pokedex *pokedex); | ||
void Pokedex_ObtainPokedex(Pokedex *pokedex); | ||
Pokedex *SaveData_GetPokedex(SaveData *saveData); | ||
u32 Pokedex_GetDisplayForm(const Pokedex *pokedex, int species, int formIndex); | ||
u32 Pokedex_NumFormsSeen(const Pokedex *pokedex, int species); | ||
|
||
#endif // POKEPLATINUM_POKEDEX_H |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.