summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2021-03-17 16:16:02 -0400
committerRangi <remy.oukaour+rangi42@gmail.com>2021-03-17 16:38:21 -0400
commit4522162d4578ab40a071efec9e1fa28c2756e596 (patch)
tree3f04ac12fac11d6aa0782cc72acbe358213845a4 /data
parent6c8f8609cb0d8dce34c6f8125267edfa11bbb3f1 (diff)
Consistent labels for each nickname in RAM
Diffstat (limited to 'data')
-rw-r--r--data/text/battle.asm42
-rw-r--r--data/text/common_1.asm4
-rw-r--r--data/text/common_2.asm8
-rw-r--r--data/text/common_3.asm10
-rw-r--r--data/text_buffers.asm14
5 files changed, 39 insertions, 39 deletions
diff --git a/data/text/battle.asm b/data/text/battle.asm
index d40f28f8d..f9328e89a 100644
--- a/data/text/battle.asm
+++ b/data/text/battle.asm
@@ -9,7 +9,7 @@ BattleText_PlayerPickedUpPayDayMoney:
WildPokemonAppearedText:
text "Wild @"
- text_ram wEnemyMonNick
+ text_ram wEnemyMonNickname
text_start
line "appeared!"
prompt
@@ -17,20 +17,20 @@ WildPokemonAppearedText:
HookedPokemonAttackedText:
text "The hooked"
line "@"
- text_ram wEnemyMonNick
+ text_ram wEnemyMonNickname
text_start
cont "attacked!"
prompt
PokemonFellFromTreeText:
- text_ram wEnemyMonNick
+ text_ram wEnemyMonNickname
text " fell"
line "out of the tree!"
prompt
WildCelebiAppearedText:
text "Wild @"
- text_ram wEnemyMonNick
+ text_ram wEnemyMonNickname
text_start
line "appeared!"
prompt
@@ -42,14 +42,14 @@ WantsToBattleText::
BattleText_WildFled:
text "Wild @"
- text_ram wEnemyMonNick
+ text_ram wEnemyMonNickname
text_start
line "fled!"
prompt
BattleText_EnemyFled:
text "Enemy @"
- text_ram wEnemyMonNick
+ text_ram wEnemyMonNickname
text_start
line "fled!"
prompt
@@ -161,7 +161,7 @@ BattleText_TheSandstormSubsided:
BattleText_EnemyMonFainted:
text "Enemy @"
- text_ram wEnemyMonNick
+ text_ram wEnemyMonNickname
text_start
line "fainted!"
prompt
@@ -206,7 +206,7 @@ UnusedRivalLossText: ; unreferenced
prompt
BattleText_MonFainted:
- text_ram wBattleMonNick
+ text_ram wBattleMonNickname
text_start
line "fainted!"
prompt
@@ -230,7 +230,7 @@ BattleText_EnemyIsAboutToUseWillPlayerChangeMon:
text "<ENEMY>"
line "is about to use"
cont "@"
- text_ram wEnemyMonNick
+ text_ram wEnemyMonNickname
text "."
para "Will <PLAYER>"
@@ -241,7 +241,7 @@ BattleText_EnemySentOut:
text "<ENEMY>"
line "sent out"
cont "@"
- text_ram wEnemyMonNick
+ text_ram wEnemyMonNickname
text "!"
done
@@ -308,13 +308,13 @@ BattleText_ItemsCantBeUsedHere:
prompt
BattleText_MonIsAlreadyOut:
- text_ram wBattleMonNick
+ text_ram wBattleMonNickname
text_start
line "is already out."
prompt
BattleText_MonCantBeRecalled:
- text_ram wBattleMonNick
+ text_ram wBattleMonNickname
text_start
line "can't be recalled!"
prompt
@@ -330,7 +330,7 @@ BattleText_TheMoveIsDisabled:
prompt
BattleText_MonHasNoMovesLeft:
- text_ram wBattleMonNick
+ text_ram wBattleMonNickname
text_start
line "has no moves left!"
done
@@ -353,14 +353,14 @@ BattleText_StringBuffer1GrewToLevel:
BattleText_WildMonIsEating:
text "Wild @"
- text_ram wEnemyMonNick
+ text_ram wEnemyMonNickname
text_start
line "is eating!"
prompt
BattleText_WildMonIsAngry:
text "Wild @"
- text_ram wEnemyMonNick
+ text_ram wEnemyMonNickname
text_start
line "is angry!"
prompt
@@ -516,37 +516,37 @@ DisabledMoveText:
prompt
LoafingAroundText:
- text_ram wBattleMonNick
+ text_ram wBattleMonNickname
text " is"
line "loafing around."
prompt
BeganToNapText:
- text_ram wBattleMonNick
+ text_ram wBattleMonNickname
text " began"
line "to nap!"
prompt
WontObeyText:
- text_ram wBattleMonNick
+ text_ram wBattleMonNickname
text " won't"
line "obey!"
prompt
TurnedAwayText:
- text_ram wBattleMonNick
+ text_ram wBattleMonNickname
text " turned"
line "away!"
prompt
IgnoredOrdersText:
- text_ram wBattleMonNick
+ text_ram wBattleMonNickname
text " ignored"
line "orders!"
prompt
IgnoredSleepingText:
- text_ram wBattleMonNick
+ text_ram wBattleMonNickname
text " ignored"
line "orders…sleeping!"
prompt
diff --git a/data/text/common_1.asm b/data/text/common_1.asm
index cf896b8d2..34c463ce8 100644
--- a/data/text/common_1.asm
+++ b/data/text/common_1.asm
@@ -1106,7 +1106,7 @@ _EnemyWithdrewText::
text "<ENEMY>"
line "withdrew"
cont "@"
- text_ram wEnemyMonNick
+ text_ram wEnemyMonNickname
text "!"
prompt
@@ -1116,7 +1116,7 @@ _EnemyUsedOnText::
text_ram wMonOrItemNameBuffer
text_start
cont "on @"
- text_ram wEnemyMonNick
+ text_ram wEnemyMonNickname
text "!"
prompt
diff --git a/data/text/common_2.asm b/data/text/common_2.asm
index 92d289a06..ee723dd23 100644
--- a/data/text/common_2.asm
+++ b/data/text/common_2.asm
@@ -133,12 +133,12 @@ _YourFoesWeakGetmMonText::
text_end
_BattleMonNicknameText::
- text_ram wBattleMonNick
+ text_ram wBattleMonNickname
text "!"
done
_BattleMonNickCommaText::
- text_ram wBattleMonNick
+ text_ram wBattleMonNickname
text ",@"
text_end
@@ -807,7 +807,7 @@ _BreedAskNicknameText::
_LeftWithDayCareLadyText::
text "It's @"
- text_ram wBreedMon2Nick
+ text_ram wBreedMon2Nickname
text_start
line "that was left with"
cont "the DAY-CARE LADY."
@@ -815,7 +815,7 @@ _LeftWithDayCareLadyText::
_LeftWithDayCareManText::
text "It's @"
- text_ram wBreedMon1Nick
+ text_ram wBreedMon1Nickname
text_start
line "that was left with"
cont "the DAY-CARE MAN."
diff --git a/data/text/common_3.asm b/data/text/common_3.asm
index ae0f0068f..0d2224f37 100644
--- a/data/text/common_3.asm
+++ b/data/text/common_3.asm
@@ -72,7 +72,7 @@ _LinkAbnormalMonText::
_LinkAskTradeForText::
text "Trade @"
- text_ram wBufferTrademonNick
+ text_ram wBufferTrademonNickname
text_start
line "for @"
text_ram wStringBuffer1
@@ -322,7 +322,7 @@ _SeerTradeText::
text_ram wSeerNickname
text_start
line "came from @"
- text_ram wSeerOTName
+ text_ram wSeerOT
text_start
cont "in a trade?"
@@ -330,7 +330,7 @@ _SeerTradeText::
text_ram wSeerCaughtLocation
text_start
line "was where @"
- text_ram wSeerOTName
+ text_ram wSeerOT
text_start
cont "met @"
text_ram wSeerNickname
@@ -1216,7 +1216,7 @@ _BallSoCloseText::
Text_BallCaught::
text "Gotcha! @"
- text_ram wEnemyMonNick
+ text_ram wEnemyMonNickname
text_start
line "was caught!@"
sound_caught_mon
@@ -1237,7 +1237,7 @@ _BallSentToPCText::
prompt
_NewDexDataText::
- text_ram wEnemyMonNick
+ text_ram wEnemyMonNickname
text "'s data"
line "was newly added to"
cont "the #DEX.@"
diff --git a/data/text_buffers.asm b/data/text_buffers.asm
index 7c28c11e0..2f6810047 100644
--- a/data/text_buffers.asm
+++ b/data/text_buffers.asm
@@ -1,9 +1,9 @@
StringBufferPointers::
; entries correspond to arguments for text_buffer (TX_STRINGBUFFER)
- dw wStringBuffer3 ; 0
- dw wStringBuffer4 ; 1
- dw wStringBuffer5 ; 2
- dw wStringBuffer2 ; 3
- dw wStringBuffer1 ; 4
- dw wEnemyMonNick ; 5
- dw wBattleMonNick ; 6
+ dw wStringBuffer3 ; 0
+ dw wStringBuffer4 ; 1
+ dw wStringBuffer5 ; 2
+ dw wStringBuffer2 ; 3
+ dw wStringBuffer1 ; 4
+ dw wEnemyMonNickname ; 5
+ dw wBattleMonNickname ; 6