summaryrefslogtreecommitdiff
path: root/include/pokemon.h
diff options
context:
space:
mode:
authorCleverking2003 <30466983+Cleverking2003@users.noreply.github.com>2020-06-09 22:37:08 +0300
committerGitHub <noreply@github.com>2020-06-09 22:37:08 +0300
commitcaba1031233657d89f3c35079e664551a07cd72f (patch)
tree9d4fb9b4cee8f4b3697f9103e28897d7cd225de2 /include/pokemon.h
parentc8f98c38d5baf6bf86531188b1a6ff0745d8d8c9 (diff)
parent912f95b5d5125f1d20b80c9909527259c09c1262 (diff)
Merge pull request #152 from PikalaxALT/pikalax_work
Some cleanup; grow2bin is now a general purpose csv2bin converter for integers
Diffstat (limited to 'include/pokemon.h')
-rw-r--r--include/pokemon.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/pokemon.h b/include/pokemon.h
index a8584b27..f4d72647 100644
--- a/include/pokemon.h
+++ b/include/pokemon.h
@@ -196,4 +196,11 @@ struct PokemonData {
PokemonDataBlock block4;
};
+int GetMonBaseStat_HandleUnownOrArceus(int species, int form, int stat_id);
+int GetMonBaseStat(int species, int stat_id);
+int GetMonExpByLevel(int species, int level);
+void LoadGrowthTable(int species, int * table);
+int GetExpByGrowthRateAndLevel(int rate, int level);
+int CalcMonLevel(int species, int experience);
+
#endif //POKEDIAMOND_POKEMON_H