summaryrefslogtreecommitdiff
path: root/asm/macros
diff options
context:
space:
mode:
authorGriffinR <griffin.g.richards@gmail.com>2020-01-24 14:42:46 -0500
committerGriffinR <griffin.g.richards@gmail.com>2020-01-24 20:46:09 -0500
commitc0be66fc2e0ace7a9004fcbebe3a7595c30cda87 (patch)
tree947ee58af189e0ff488e1eb556d951d1393dcd5f /asm/macros
parent85e5c57e8c86cca00e8bfc7d54e21d08c9e62e69 (diff)
Document Viridian City scripts and adjacent routes
Diffstat (limited to 'asm/macros')
-rw-r--r--asm/macros/event.inc8
1 files changed, 4 insertions, 4 deletions
diff --git a/asm/macros/event.inc b/asm/macros/event.inc
index 7e95af9f4..51f8e7330 100644
--- a/asm/macros/event.inc
+++ b/asm/macros/event.inc
@@ -652,7 +652,7 @@
.4byte \pointer2 @ text
.4byte \pointer3 @ text
.4byte \pointer4 @ event script
- .elseif \type == TRAINER_BATTLE_TUTORIAL
+ .elseif \type == TRAINER_BATTLE_EARLY_RIVAL
.4byte \pointer1 @ text
.4byte \pointer2 @ text
.endif
@@ -699,9 +699,9 @@
trainerbattle TRAINER_BATTLE_SINGLE_NO_INTRO_TEXT, \trainer, 0, \lose_text
.endm
- @
- .macro trainerbattle_tutorial trainer:req, unk:req, intro_text:req, lose_text:req
- trainerbattle TRAINER_BATTLE_TUTORIAL, \trainer, \unk, \intro_text, \lose_text
+ @ Starts a trainer battle with victory text if the player loses. If flags is nonzero, the player will be healed after battle (and its assumed to be the tutorial battle)
+ .macro trainerbattle_earlyrival trainer:req, flags:req, defeat_text:req, victory_text:req
+ trainerbattle TRAINER_BATTLE_EARLY_RIVAL, \trainer, \flags, \defeat_text, \victory_text
.endm
@ Starts a trainer battle using the battle information stored in RAM (usually by trainerbattle, which actually calls this command behind-the-scenes), and blocks script execution until the battle finishes.