aboutsummaryrefslogtreecommitdiffstats
path: root/data/player/names_list.asm
blob: 44f3c7f158c1bec11b3e43a4280a79be9b7be30b (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 PLAYER_NAME_LENGTH - 1
FOR n, 1, NUM_PLAYER_NAMES + 1
	li #PLAYERNAME{d:n}
ENDR
	assert_list_length NUM_PLAYER_NAMES

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