pokered/data/player/names.asm
Rangi 9a6bb3ed0c
Some checks are pending
CI / build (push) Waiting to run
Define player and rival names once, to be used in two places (#545)
2025-12-01 11:00:56 -05:00

16 lines
241 B
NASM

; see constants/player_constants.asm
DefaultNamesPlayer:
db "NEW NAME"
FOR n, 1, NUM_PLAYER_NAMES + 1
next #PLAYERNAME{d:n}
ENDR
db "@"
DefaultNamesRival:
db "NEW NAME"
FOR n, 1, NUM_PLAYER_NAMES + 1
next #RIVALNAME{d:n}
ENDR
db "@"