mirror of
https://github.com/thornAvery/jep-hack.git
synced 2026-02-21 23:12:16 +13:00
First Commit
Upload literally everything from the pokecrystal16 expand-move-ID branch
This commit is contained in:
commit
2f8a41f833
4618 changed files with 480386 additions and 0 deletions
27
data/moves/tmhm_moves.asm
Normal file
27
data/moves/tmhm_moves.asm
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
; The add_tm, add_hm, and add_mt macros in constants/item_constants.asm simultaneously
|
||||
; define constants for the item IDs and for the corresponding move values.
|
||||
|
||||
TMHMMoves:
|
||||
; entries correspond to *_TMNUM constants (see constants/item_constants.asm)
|
||||
table_width 2, TMHMMoves
|
||||
|
||||
; TMs
|
||||
for n, 1, NUM_TMS + 1
|
||||
dw TM{02d:n}_MOVE
|
||||
endr
|
||||
assert_table_length NUM_TMS
|
||||
|
||||
; HMs
|
||||
for n, 1, NUM_HMS + 1
|
||||
dw HM{02d:n}_MOVE
|
||||
endr
|
||||
assert_table_length NUM_TMS + NUM_HMS
|
||||
|
||||
; Move tutors
|
||||
DEF n = 1
|
||||
for n, 1, NUM_TUTORS + 1
|
||||
dw MT{02d:n}_MOVE
|
||||
endr
|
||||
assert_table_length NUM_TM_HM_TUTOR
|
||||
|
||||
dw 0 ; end
|
||||
Loading…
Add table
Add a link
Reference in a new issue