aboutsummaryrefslogtreecommitdiffstats
path: root/data/player_names.asm
diff options
context:
space:
mode:
authorRangi <35663410+Rangi42@users.noreply.github.com>2025-12-01 11:00:56 -0500
committerGitHub <noreply@github.com>2025-12-01 11:00:56 -0500
commit9a6bb3ed0c44155a711d66df4d8996d9396ebd6a (patch)
treef1a00935b4672fffdbde8bcf5959b4d22955966f /data/player_names.asm
parentUse more Pokemon data constants, create MOVE_NAME_LENGTH (#543) (diff)
downloadpokeyellow-9a6bb3ed0c44155a711d66df4d8996d9396ebd6a.tar.gz
pokeyellow-9a6bb3ed0c44155a711d66df4d8996d9396ebd6a.tar.xz
pokeyellow-9a6bb3ed0c44155a711d66df4d8996d9396ebd6a.zip
Define player and rival names once, to be used in two places (#545)
Diffstat (limited to 'data/player_names.asm')
-rw-r--r--data/player_names.asm31
1 files changed, 0 insertions, 31 deletions
diff --git a/data/player_names.asm b/data/player_names.asm
deleted file mode 100644
index f57c9877..00000000
--- a/data/player_names.asm
+++ /dev/null
@@ -1,31 +0,0 @@
-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