mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
1fc7430a2b
Some character codes were erroneously named after their text command counterparts. This has caused a lot of confusion with naming their functions and with other things. I've also removed the `dict2` macro and expanded the `dict` macro. This really isn't something we should be doing for macros but I can't deny it looks a lot neater than repeated code.
16 lines
306 B
NASM
16 lines
306 B
NASM
NonTrainerCallerNames:
|
|
; entries correspond to PHONECONTACT_* constants
|
|
dw .none
|
|
dw .mom
|
|
dw .bikeshop
|
|
dw .bill
|
|
dw .elm
|
|
dw .buena
|
|
|
|
.none: db "----------@"
|
|
.mom: db "MOM:@"
|
|
.bill: db "BILL:@"
|
|
.elm: db "PROF.ELM:@"
|
|
.bikeshop: db "BIKE SHOP:@"
|
|
.buena: db "BUENA:<LF> DISC JOCKEY@"
|