diff options
| author | vulcandth <vulcandth@gmail.com> | 2022-06-06 16:25:34 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-06-06 17:25:34 -0400 |
| commit | c1ef7b75972fa4fbdf125bc85cc1a66f358151cd (patch) | |
| tree | bcf71939ec5573ed5001c4a4b4342d26e5d8f9b1 /constants/pokemon_constants.asm | |
| parent | Improved Virtual Console patch identifiers (#85) (diff) | |
| download | pokeyellow-c1ef7b75972fa4fbdf125bc85cc1a66f358151cd.tar.gz pokeyellow-c1ef7b75972fa4fbdf125bc85cc1a66f358151cd.tar.xz pokeyellow-c1ef7b75972fa4fbdf125bc85cc1a66f358151cd.zip | |
RGBDS syntax updates (#86)
New MACRO and DEF syntax
Diffstat (limited to 'constants/pokemon_constants.asm')
| -rw-r--r-- | constants/pokemon_constants.asm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/constants/pokemon_constants.asm b/constants/pokemon_constants.asm index f5c1c7b8..8a99bf26 100644 --- a/constants/pokemon_constants.asm +++ b/constants/pokemon_constants.asm @@ -198,15 +198,15 @@ const WEEPINBELL ; $BD const VICTREEBEL ; $BE -NUM_POKEMON_INDEXES EQU const_value - 1 +DEF NUM_POKEMON_INDEXES EQU const_value - 1 ; player starter -STARTER_PIKACHU EQU PIKACHU +DEF STARTER_PIKACHU EQU PIKACHU ; rival starters -RIVAL_STARTER_JOLTEON EQU 1 -RIVAL_STARTER_FLAREON EQU 2 -RIVAL_STARTER_VAPOREON EQU 3 +DEF RIVAL_STARTER_JOLTEON EQU 1 +DEF RIVAL_STARTER_FLAREON EQU 2 +DEF RIVAL_STARTER_VAPOREON EQU 3 ; ghost Marowak in Pokémon Tower -RESTLESS_SOUL EQU MAROWAK +DEF RESTLESS_SOUL EQU MAROWAK |
