aboutsummaryrefslogtreecommitdiffstats
path: root/data/player/names_list.asm
blob: 786c1229f87365c96c3a24bbd197ec449b675db3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
; see constants/player_constants.asm

DefaultNamesPlayerList:
	db "NEW NAME@"
	list_start
FOR n, 1, NUM_PLAYER_NAMES + 1
	li #PLAYERNAME{d:n}
ENDR
	assert_list_length NUM_PLAYER_NAMES

DefaultNamesRivalList:
	db "NEW NAME@"
	list_start
FOR n, 1, NUM_PLAYER_NAMES + 1
	li #RIVALNAME{d:n}
ENDR
	assert_list_length NUM_PLAYER_NAMES