shithub: pokecrystal

ref: 2691c9f5c8f866a2af802a119a565c743c05fceb
dir: /engine/pokemon/print_move_description.asm/

View raw version
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, [hli]
	ld e, a
	ld d, [hl]
	pop hl
	jp PlaceString

INCLUDE "data/moves/descriptions.asm"