diff options
author | dannye <corrnondacqb@yahoo.com> | 2015-08-23 23:48:03 -0500 |
---|---|---|
committer | dannye <corrnondacqb@yahoo.com> | 2015-08-23 23:48:03 -0500 |
commit | 16d9ec3183faac8ad0cbc2f78c8f819e1db5a0dc (patch) | |
tree | 8e7949576e31d1070ae9a00f3fe67bee10d86ec1 /text | |
parent | 1a987d1e1ab96ca9553d4253c72858057332a03a (diff) |
Adding Leafeon test
An example to show adding a new Pokemon in pokered
Diffstat (limited to 'text')
-rwxr-xr-x | text/monster_names.asm | 2 | ||||
-rw-r--r-- | text/pokedex.asm | 10 |
2 files changed, 11 insertions, 1 deletions
diff --git a/text/monster_names.asm b/text/monster_names.asm index c7e0226f..056de440 100755 --- a/text/monster_names.asm +++ b/text/monster_names.asm @@ -29,7 +29,7 @@ MonsterNames: ; 1c21e (7:421e) db "BLASTOISE@" db "PINSIR@@@@" db "TANGELA@@@" - db "MISSINGNO." + db "LEAFEON@@@" db "MISSINGNO." db "GROWLITHE@" db "ONIX@@@@@@" diff --git a/text/pokedex.asm b/text/pokedex.asm index 65f3d89d..a777b9d8 100644 --- a/text/pokedex.asm +++ b/text/pokedex.asm @@ -298,6 +298,16 @@ _TangelaDexEntry:: next "shake as it walks" dex +_LeafeonDexEntry:: + text "LEAFEON is always" + next "surrounded by" + next "fresh clean air" + + page "because it uses" + next "photosynthesis" + next "just like a plant" + dex + _GrowlitheDexEntry:: text "Very protective" next "of its territory." |