diff options
Diffstat (limited to 'home/hm_moves.asm')
-rw-r--r-- | home/hm_moves.asm | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/home/hm_moves.asm b/home/hm_moves.asm new file mode 100644 index 000000000..082005186 --- /dev/null +++ b/home/hm_moves.asm @@ -0,0 +1,17 @@ +; HM moves can't be forgotten + +IsHMMove:: ; 34e7 + ld hl, .HMMoves + ld de, 1 + jp IsInArray + +.HMMoves: ; 34f0 + db CUT + db FLY + db SURF + db STRENGTH + db FLASH + db WATERFALL + db WHIRLPOOL + db -1 ; end +; 34f8 |