summaryrefslogtreecommitdiff
path: root/engine/debug1.asm
diff options
context:
space:
mode:
authorluckytyphlosion <alan.rj.huang@gmail.com>2016-03-17 17:37:20 -0400
committerluckytyphlosion <alan.rj.huang@gmail.com>2016-03-17 18:00:54 -0400
commitbd5a5f70d44a0fef041027be12d439588f863507 (patch)
tree2d0394e028908d087dc2aef3bd4202f55a486e64 /engine/debug1.asm
parent16e361c05aa533801a1b5856ec884ffd34f35730 (diff)
Split bank1 up.
Diffstat (limited to 'engine/debug1.asm')
-rw-r--r--engine/debug1.asm24
1 files changed, 24 insertions, 0 deletions
diff --git a/engine/debug1.asm b/engine/debug1.asm
new file mode 100644
index 00000000..ada4b513
--- /dev/null
+++ b/engine/debug1.asm
@@ -0,0 +1,24 @@
+; not IshiharaTeam
+SetDebugTeam: ; 623e (1:623e)
+ ld de, DebugTeam
+.loop
+ ld a, [de]
+ cp $ff
+ ret z
+ ld [wcf91], a
+ inc de
+ ld a, [de]
+ ld [wCurEnemyLVL], a
+ inc de
+ call AddPartyMon
+ jr .loop
+
+DebugTeam: ; 6253 (1:6253)
+ db SNORLAX,80
+ db PERSIAN,80
+ db JIGGLYPUFF,15
+ db PIKACHU,5
+ db $FF
+
+EmptyFunc: ; 64ea (1:64ea)
+ ret \ No newline at end of file