You've already forked pokecrystal-board
mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-09-08 08:13:02 -07:00
Split print_move_description and mon_menu
This commit is contained in:
14
engine/pokemon/print_move_description.asm
Normal file
14
engine/pokemon/print_move_description.asm
Normal file
@@ -0,0 +1,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
|
||||
Reference in New Issue
Block a user