aboutsummaryrefslogtreecommitdiffstats
path: root/data/player
diff options
context:
space:
mode:
authordannye <33dannye@gmail.com>2026-01-17 22:38:33 -0600
committerdannye <33dannye@gmail.com>2026-01-17 22:38:33 -0600
commitbc2354dd6626ce28bb9561547ed2107cfa56c18e (patch)
tree5902d4c3389253c76b7c3351e0d7dfecb551c28d /data/player
parentIdentify characters in `_OakSpeechText2B` and `Printer_GetMonStats.IDNo` (#144) (diff)
parentUse macros for `WildMonEncounterSlotChances` (#562) (diff)
downloadpokeyellow-bc2354dd6626ce28bb9561547ed2107cfa56c18e.tar.gz
pokeyellow-bc2354dd6626ce28bb9561547ed2107cfa56c18e.tar.xz
pokeyellow-bc2354dd6626ce28bb9561547ed2107cfa56c18e.zip
Merge branch 'master' of https://github.com/pret/pokered
Diffstat (limited to 'data/player')
-rw-r--r--data/player/names.asm15
-rw-r--r--data/player/names_list.asm17
2 files changed, 32 insertions, 0 deletions
diff --git a/data/player/names.asm b/data/player/names.asm
new file mode 100644
index 00000000..67f2df36
--- /dev/null
+++ b/data/player/names.asm
@@ -0,0 +1,15 @@
+; 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 "@"
diff --git a/data/player/names_list.asm b/data/player/names_list.asm
new file mode 100644
index 00000000..44f3c7f1
--- /dev/null
+++ b/data/player/names_list.asm
@@ -0,0 +1,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