summaryrefslogtreecommitdiff
path: root/engine/pokemon/print_move_description.asm
blob: fd12f82b477cb37b9dc3a8b9efcf69d20091244e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
PrintMoveDescription:
	push hl
	ld hl, MoveDescriptions
	ld a, [wCurSpecies]
	dec a
	ld c, a
	ld b, 0
	add hl, bc
	add hl, bc
	ld a, BANK(MoveDescriptions)
	call GetFarHalfword
	ld d, h
	ld e, l
	pop hl
	ld a, BANK(MoveDescriptions)
	jp FarString