blob: 0e4a79af94856bb6029b9fe44cab4b6b49f7c9e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
; The add_hm and add_tm macros in constants/item_constants.asm simultaneously
; define constants for the item IDs and for the corresponding move values.
TechnicalMachines:
table_width 1, TechnicalMachines
FOR n, 1, NUM_TMS + 1
db TM{02d:n}_MOVE
ENDR
assert_table_length NUM_TMS
FOR n, 1, NUM_HMS + 1
db HM{02d:n}_MOVE
ENDR
assert_table_length NUM_TM_HM
db -1 ; end
|