summaryrefslogtreecommitdiff
path: root/engine/debug1.asm
blob: ada4b513945ccc4e527ff982848d29510db6f782 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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