diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-01-23 13:08:48 -0500 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-01-23 13:08:48 -0500 |
commit | 8f2878c37e6755a4ac41ea65568bbfabd77bbe83 (patch) | |
tree | a082947316f88193c6020b04bb51243a74c96f00 /macros/scripts | |
parent | dea26c663961a19073927e11c140d5ae576f275f (diff) |
trainers put the class and id first: `trainer YOUNGSTER, JOEY1, ...`
Diffstat (limited to 'macros/scripts')
-rw-r--r-- | macros/scripts/maps.asm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/macros/scripts/maps.asm b/macros/scripts/maps.asm index f7452080e..48c8f0104 100644 --- a/macros/scripts/maps.asm +++ b/macros/scripts/maps.asm @@ -76,15 +76,15 @@ ENDM trainer: MACRO -;\1: flag: an EVENT_BEAT_* constant -;\2: trainer group -;\3: trainer id +;\1: trainer group +;\2: trainer id +;\3: flag: an EVENT_BEAT_* constant ;\4: seen text ;\5: win text ;\6: loss text ;\7: after-battle text - dw \1 - db \2, \3 + dw \3 + db \1, \2 dw \4, \5, \6, \7 ENDM |