summaryrefslogtreecommitdiff
path: root/engine/debug1.asm
blob: a39e8cac44f9faae24788196de9be7a3b225c72d (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:
	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:
	db SNORLAX,80
	db PERSIAN,80
	db JIGGLYPUFF,15
	db PIKACHU,5
	db $FF

EmptyFunc:
	ret