From c7ce0a95184784f029779426611324ff84f2ef12 Mon Sep 17 00:00:00 2001 From: dannye Date: Mon, 8 Aug 2016 10:49:19 -0500 Subject: Adding Leafeon test An example to show adding a new Pokemon in pokered --- constants/pokedex_constants.asm | 3 ++- constants/pokemon_constants.asm | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) (limited to 'constants') diff --git a/constants/pokedex_constants.asm b/constants/pokedex_constants.asm index 360fbb4c..8add08bc 100644 --- a/constants/pokedex_constants.asm +++ b/constants/pokedex_constants.asm @@ -151,5 +151,6 @@ const_value = 1 const DEX_DRAGONITE ; 149 const DEX_MEWTWO ; 150 const DEX_MEW ; 151 + const DEX_LEAFEON ; 152 -NUM_POKEMON EQU 151 +NUM_POKEMON EQU 152 diff --git a/constants/pokemon_constants.asm b/constants/pokemon_constants.asm index 96d44ef5..5958effa 100644 --- a/constants/pokemon_constants.asm +++ b/constants/pokemon_constants.asm @@ -30,7 +30,7 @@ const_value = 1 const BLASTOISE ; $1C const PINSIR ; $1D const TANGELA ; $1E - const MISSINGNO_1F ; $1F + const LEAFEON ; $1F const MISSINGNO_20 ; $20 const GROWLITHE ; $21 const ONIX ; $22 -- cgit v1.2.3