Removing MissingNo to make room

This commit is contained in:
MementoMartha 2023-04-09 20:41:31 +01:00
parent fb3a20a51d
commit c7499a1fd2
21 changed files with 17 additions and 67 deletions

View file

@ -3,8 +3,7 @@
; - BaseStats (see data/pokemon/base_stats.asm)
; - MonPartyData (see data/pokemon/menu_icons.asm)
; - MonsterPalettes (see data/pokemon/palettes.asm)
const_def
const DEX_MISSINGNO ; 0 (000)
const_def 1
const DEX_BULBASAUR ; 1 (001)
const DEX_IVYSAUR ; 2 (002)
const DEX_VENUSAUR ; 3 (003)
@ -257,4 +256,4 @@
const DEX_MELTAN ; (250)
const DEX_MELMETAL ; (251)
DEF NUM_POKEMON EQU const_value
DEF NUM_POKEMON EQU const_value - 1

View file

@ -257,11 +257,10 @@
const WEEZING_G ; $F8
const TAUROS_P ; $F9
const TAUROS_PA ; $FA
const TAUROS_PB ; $FB
const MISSINGNO ; $FC
const FOSSIL_KABUTOPS ; $FD (was B6)
const FOSSIL_AERODACTYL ; $FE (was B7)
const MON_GHOST ; $FF (was B8, need to make sure we can still put something here)
const TAUROS_PB ; $FB
const FOSSIL_KABUTOPS ; $FC (was B6)
const FOSSIL_AERODACTYL ; $FD (was B7)
const MON_GHOST ; $FE (was B8)
DEF NUM_POKEMON_INDEXES EQU const_value - 1