diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2020-10-17 12:27:49 -0500 |
---|---|---|
committer | Seth Barberee <seth.barberee@gmail.com> | 2020-10-17 12:27:49 -0500 |
commit | 9b8e49226f827a3314b320426c52164ab33e22f2 (patch) | |
tree | 7b8daa1933b3981347772506ce5def56356cc771 /src | |
parent | 597a69e9df651b9f856c63d00a7a3d317f3d9918 (diff) |
start moving some data into c of personality test
Diffstat (limited to 'src')
-rw-r--r-- | src/personality_test.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/personality_test.c b/src/personality_test.c new file mode 100644 index 0000000..0bec4a7 --- /dev/null +++ b/src/personality_test.c @@ -0,0 +1,17 @@ +#include "global.h" +#include "constants/species.h" + +const u16 gPartners[10] = +{ + SPECIES_CHARMANDER, + SPECIES_BULBASAUR, + SPECIES_SQUIRTLE, + SPECIES_PIKACHU, + SPECIES_CHIKORITA, + SPECIES_TOTODILE, + SPECIES_CYNDAQUIL, + SPECIES_TORCHIC, + SPECIES_TREECKO, + SPECIES_MUDKIP +}; + |