Adding a stable MissingNo, and fixing a few minor things

This commit is contained in:
MementoMartha 2022-10-31 23:09:41 +00:00
parent bb319e89b3
commit 1e7613f804
28 changed files with 67 additions and 16 deletions

View file

@ -3,7 +3,8 @@
; - BaseStats (see data/pokemon/base_stats.asm)
; - MonPartyData (see data/pokemon/menu_icons.asm)
; - MonsterPalettes (see data/pokemon/palettes.asm)
const_def 1
const_def
const DEX_MISSINGNO ; 0
const DEX_BULBASAUR ; 1
const DEX_IVYSAUR ; 2
const DEX_VENUSAUR ; 3
@ -225,4 +226,4 @@
const DEX_MEWTWO ; 150
const DEX_MEW ; 151
DEF NUM_POKEMON EQU const_value - 1
DEF NUM_POKEMON EQU const_value

View file

@ -240,6 +240,7 @@
; const MIME_JR ; $E7
; const HAPPINY ; $E8
; const MUNCHLAX ; $E9
const MISSINGNO ; $EA
DEF NUM_POKEMON_INDEXES EQU const_value - 1