diff options
author | IIMarckus <iimarckus@gmail.com> | 2011-12-14 21:22:54 -0700 |
---|---|---|
committer | IIMarckus <iimarckus@gmail.com> | 2011-12-14 21:22:54 -0700 |
commit | c88dd75ba1665ea2f92e0dd765ad1a8396745b9c (patch) | |
tree | d64222480d16e1e46bea751c196c1f4fc8d68c9f | |
parent | f9a8858dd1ba6673ba7df40e9ece9560ca6aded6 (diff) |
Add Pokémon that appear on the title screen.
hg-commit-id: 946c0db2db3b
-rw-r--r-- | pokered.asm | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/pokered.asm b/pokered.asm index 2c0b1bea..3b4695ff 100644 --- a/pokered.asm +++ b/pokered.asm @@ -1178,7 +1178,28 @@ MewPicFront: MewPicBack: INCBIN "pic/monback/mewb.pic" -INCBIN "baserom.gbc",$425B,$5AF2-$425B +INCBIN "baserom.gbc",$425B,$4588-$425B + +TitleMons: ; 4588 +; mons on the title screen are randomly chosen from here + db CHARMANDER + db SQUIRTLE + db BULBASAUR + db WEEDLE + db NIDORAN_M + db SCYTHER + db PIKACHU + db CLEFAIRY + db RHYDON + db ABRA + db GASTLY + db DITTO + db PIDGEOTTO + db ONIX + db PONYTA + db MAGIKARP + +INCBIN "baserom.gbc",$4598,$5AF2-$4598 MainMenu: ; Check save file |