mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-09-16 18:30:50 +12:00

Top level text/ is now solely for the former text/maps/ files, and other files are in their respective subdirectories in data/.
32 lines
378 B
NASM
32 lines
378 B
NASM
IF DEF(_RED)
|
|
DefaultNamesPlayer:
|
|
db "NEW NAME"
|
|
next "RED"
|
|
next "ASH"
|
|
next "JACK"
|
|
db "@"
|
|
|
|
DefaultNamesRival:
|
|
db "NEW NAME"
|
|
next "BLUE"
|
|
next "GARY"
|
|
next "JOHN"
|
|
db "@"
|
|
ENDC
|
|
|
|
IF DEF(_BLUE)
|
|
DefaultNamesPlayer:
|
|
db "NEW NAME"
|
|
next "BLUE"
|
|
next "GARY"
|
|
next "JOHN"
|
|
db "@"
|
|
|
|
DefaultNamesRival:
|
|
db "NEW NAME"
|
|
next "RED"
|
|
next "ASH"
|
|
next "JACK"
|
|
db "@"
|
|
ENDC
|