mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-01-23 09:16:20 -08:00
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
|