mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-11-16 11:27:33 -08:00
60cd04b023
Trainer data in map scripts is now a macro-defined structure. Field move functions in main.asm are now nearly completely annotated, with local references. Trailing white space deleted.
12 lines
187 B
NASM
12 lines
187 B
NASM
trainerclass: MACRO
|
|
enum \1
|
|
const_value = 1
|
|
ENDM
|
|
|
|
trainer: MACRO
|
|
; flag, group, id, seen text, win text, lost text, talk-again text
|
|
dw \1
|
|
db \2, \3
|
|
dw \4, \5, \6, \7
|
|
ENDM
|