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

@ -217,4 +217,7 @@ INCLUDE "data/pokemon/base_stats/dragonair.asm"
INCLUDE "data/pokemon/base_stats/dragonite.asm"
INCLUDE "data/pokemon/base_stats/mewtwo.asm"
INCLUDE "data/pokemon/base_stats/mew.asm"
assert_table_length NUM_POKEMON
assert_table_length NUM_POKEMON - 1 ; discount MissingNo
MissingnoBaseStats::
INCLUDE "data/pokemon/base_stats/missingno.asm"

View file

@ -239,4 +239,5 @@ CryData::
; mon_cry SFX_CRY_00, $00, $00 ; Mime Jr.
; mon_cry SFX_CRY_00, $00, $00 ; Happiny
; mon_cry SFX_CRY_00, $00, $00 ; Munchlax
mon_cry SFX_CRY_00, $00, $00 ; MissingNo.
assert_table_length NUM_POKEMON_INDEXES

View file

@ -220,6 +220,7 @@ PokedexEntryPointers:
dw BetobebiiDexEntry
dw MagnezoneDexEntry
dw PorygonZDexEntry
dw MissingNoDexEntry
assert_table_length NUM_POKEMON_INDEXES
; string: species name

View file

@ -220,4 +220,5 @@ PokedexOrder:
db DEX_BETOBEBII
db DEX_MAGNEZONE
db DEX_PORYGONZ
db DEX_MISSINGNO
assert_table_length NUM_POKEMON_INDEXES

View file

@ -223,6 +223,7 @@ EvosMovesPointerTable:
dw BetobebiiEvosMoves
dw MagnezoneEvosMoves
dw PorygonZEvosMoves
dw MissingNoEvosMoves
assert_table_length NUM_POKEMON_INDEXES
RhydonEvosMoves:
@ -2824,6 +2825,12 @@ PorygonZEvosMoves:
db 50, AMNESIA ; will replace with nasty plot
db 0
MissingNoEvosMoves:
; Evolutions
db 0
; Learnset
db 0
;ArticunoGEvosMoves:
; Evolutions
; db 0

View file

@ -1,5 +1,6 @@
MonPartyData:
nybble_array MonPartyData
nybble ICON_MON ; MissingNo.
nybble ICON_GRASS ; Bulbasaur
nybble ICON_GRASS ; Ivysaur
nybble ICON_GRASS ; Venusaur

View file

@ -220,5 +220,6 @@ MonsterNames::
db "BETOBEBII@"
db "MAGNEZONE@"
db "PORYGON-Z@"
db "MISSINGNO."
assert_table_length NUM_POKEMON_INDEXES

View file

@ -218,4 +218,4 @@ MonsterPalettes:
db PAL_BROWNMON ; DRAGONITE
db PAL_MEWMON ; MEWTWO
db PAL_MEWMON ; MEW
assert_table_length NUM_POKEMON + 1
assert_table_length NUM_POKEMON