diff options
Diffstat (limited to 'constants')
-rwxr-xr-x | constants/item_constants.asm | 1 | ||||
-rw-r--r-- | constants/pokedex_constants.asm | 3 | ||||
-rw-r--r-- | constants/pokemon_constants.asm | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/constants/item_constants.asm b/constants/item_constants.asm index fe6fcb15..08799908 100755 --- a/constants/item_constants.asm +++ b/constants/item_constants.asm @@ -99,6 +99,7 @@ SAFARI_ROCK EQU $16 ; overload const FLOOR_10F ; $5F const FLOOR_11F ; $60 const FLOOR_B4F ; $61 + const ICE_STONE ; $62 const_value = $C4 diff --git a/constants/pokedex_constants.asm b/constants/pokedex_constants.asm index 8add08bc..2f229aa5 100644 --- a/constants/pokedex_constants.asm +++ b/constants/pokedex_constants.asm @@ -152,5 +152,6 @@ const_value = 1 const DEX_MEWTWO ; 150 const DEX_MEW ; 151 const DEX_LEAFEON ; 152 + const DEX_GLACEON ; 153 -NUM_POKEMON EQU 152 +NUM_POKEMON EQU 153 diff --git a/constants/pokemon_constants.asm b/constants/pokemon_constants.asm index 5958effa..ab5d9152 100644 --- a/constants/pokemon_constants.asm +++ b/constants/pokemon_constants.asm @@ -31,7 +31,7 @@ const_value = 1 const PINSIR ; $1D const TANGELA ; $1E const LEAFEON ; $1F - const MISSINGNO_20 ; $20 + const GLACEON ; $20 const GROWLITHE ; $21 const ONIX ; $22 const FEAROW ; $23 |