summaryrefslogtreecommitdiff
path: root/engine/pokemon/print_move_description.asm
blob: c461f2f3dbbf6202cfffbc63197d6cc6d97e61ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
PrintMoveDesc:
	push hl
	ld hl, MoveDescriptions
	ld a, [wCurSpecies]
	dec a
	ld c, a
	ld b, 0
	add hl, bc
	add hl, bc
	ld a, [hli]
	ld e, a
	ld d, [hl]
	pop hl
	jp PlaceString