summaryrefslogtreecommitdiff
path: root/engine/debug1.asm
diff options
context:
space:
mode:
Diffstat (limited to 'engine/debug1.asm')
-rw-r--r--engine/debug1.asm25
1 files changed, 8 insertions, 17 deletions
diff --git a/engine/debug1.asm b/engine/debug1.asm
index a5eb7dde..a39e8cac 100644
--- a/engine/debug1.asm
+++ b/engine/debug1.asm
@@ -1,14 +1,6 @@
-; This function appears to never be used.
-; It is likely a debugging feature to give the player Tsunekazu Ishihara's
-; favorite Pokemon. This is indicated by the overpowered Exeggutor, which
-; Ishihara (president of Creatures Inc.) said was his favorite Pokemon in an ABC
-; interview on February 8, 2000.
-; "Exeggutor is my favorite. That's because I was always using this character
-; while I was debugging the program."
-; http://www.ign.com/articles/2000/02/09/abc-news-pokamon-chat-transcript
-
-SetIshiharaTeam:
- ld de, IshiharaTeam
+; not IshiharaTeam
+SetDebugTeam:
+ ld de, DebugTeam
.loop
ld a, [de]
cp $ff
@@ -21,12 +13,11 @@ SetIshiharaTeam:
call AddPartyMon
jr .loop
-IshiharaTeam:
- db EXEGGUTOR,90
- db MEW,20
- db JOLTEON,56
- db DUGTRIO,56
- db ARTICUNO,57
+DebugTeam:
+ db SNORLAX,80
+ db PERSIAN,80
+ db JIGGLYPUFF,15
+ db PIKACHU,5
db $FF
EmptyFunc: