From c1ef7b75972fa4fbdf125bc85cc1a66f358151cd Mon Sep 17 00:00:00 2001 From: vulcandth Date: Mon, 6 Jun 2022 16:25:34 -0500 Subject: RGBDS syntax updates (#86) New MACRO and DEF syntax --- constants/pokemon_constants.asm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'constants/pokemon_constants.asm') 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 -- cgit v1.3.1-sl0p