diff options
| author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-11-13 11:10:03 -0500 |
|---|---|---|
| committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-11-13 11:10:03 -0500 |
| commit | b88572fbccecc8d125fe8a50365751f0530d1a9a (patch) | |
| tree | 46a733a0ad7259689b9b5577f109751f34f42956 /constants | |
| parent | 5f8f221bad050e54c150d1c5ca8d827284235091 (diff) | |
Add constants for player and rival starters
Diffstat (limited to 'constants')
| -rw-r--r-- | constants/pokemon_constants.asm | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/constants/pokemon_constants.asm b/constants/pokemon_constants.asm index d01398b8..f5c1c7b8 100644 --- a/constants/pokemon_constants.asm +++ b/constants/pokemon_constants.asm @@ -200,10 +200,13 @@ NUM_POKEMON_INDEXES EQU const_value - 1 -; starters -STARTER1 EQU CHARMANDER -STARTER2 EQU SQUIRTLE -STARTER3 EQU BULBASAUR +; player starter +STARTER_PIKACHU EQU PIKACHU + +; rival starters +RIVAL_STARTER_JOLTEON EQU 1 +RIVAL_STARTER_FLAREON EQU 2 +RIVAL_STARTER_VAPOREON EQU 3 ; ghost Marowak in Pokémon Tower RESTLESS_SOUL EQU MAROWAK |
