diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-07-04 17:09:35 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-07-04 21:14:46 -0400 |
commit | 139a28ff9906d728a6820fe678a2a616eb309421 (patch) | |
tree | 9a4339b97e16e10c5b007e836f1f3fadd33bd9f4 /scripts/AgathasRoom.asm | |
parent | 2718c36065e7eb201a149938bcdd51987c4e56b6 (diff) |
Port pokecrystal's formatting of text commands and special characters
Diffstat (limited to 'scripts/AgathasRoom.asm')
-rwxr-xr-x | scripts/AgathasRoom.asm | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/scripts/AgathasRoom.asm b/scripts/AgathasRoom.asm index a1dba196..6d304de8 100755 --- a/scripts/AgathasRoom.asm +++ b/scripts/AgathasRoom.asm @@ -132,23 +132,23 @@ AgathaTrainerHeader0: db $ff AgathaText1: - TX_ASM + text_asm ld hl, AgathaTrainerHeader0 call TalkToTrainer jp TextScriptEnd AgathaBeforeBattleText: - TX_FAR _AgathaBeforeBattleText - db "@" + text_far _AgathaBeforeBattleText + text_end AgathaEndBattleText: - TX_FAR _AgathaEndBattleText - db "@" + text_far _AgathaEndBattleText + text_end AgathaAfterBattleText: - TX_FAR _AgathaAfterBattleText - db "@" + text_far _AgathaAfterBattleText + text_end AgathaDontRunAwayText: - TX_FAR _AgathaDontRunAwayText - db "@" + text_far _AgathaDontRunAwayText + text_end |