diff options
author | Marcus Huderle <huderlem@gmail.com> | 2017-07-14 10:29:47 -0700 |
---|---|---|
committer | Marcus Huderle <huderlem@gmail.com> | 2017-07-14 10:29:47 -0700 |
commit | 8887222e60f6af052e1da709851254cc63e6625f (patch) | |
tree | c6aa8a196b66bbabbd33e392869d6644ba65a73a /constants | |
parent | 37eb934ee355fecf853cc1f085299529ab03b55b (diff) |
Label Bonus Stage transition stuff
Diffstat (limited to 'constants')
-rwxr-xr-x | constants/bonus_stage_order_constants.asm | 6 | ||||
-rw-r--r-- | constants/stage_constants.asm | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/constants/bonus_stage_order_constants.asm b/constants/bonus_stage_order_constants.asm new file mode 100755 index 0000000..dd226a5 --- /dev/null +++ b/constants/bonus_stage_order_constants.asm @@ -0,0 +1,6 @@ +; See wNextBonusStage
+BONUS_STAGE_ORDER_GENGAR EQU 0
+BONUS_STAGE_ORDER_MEWTWO EQU 1
+BONUS_STAGE_ORDER_MEOWTH EQU 2
+BONUS_STAGE_ORDER_DIGLETT EQU 3
+BONUS_STAGE_ORDER_SEEL EQU 4
diff --git a/constants/stage_constants.asm b/constants/stage_constants.asm index 600abf9..7f4cd73 100644 --- a/constants/stage_constants.asm +++ b/constants/stage_constants.asm @@ -4,6 +4,8 @@ STAGE_RED_FIELD_BOTTOM EQU $1 ; XXX EQU $3 STAGE_BLUE_FIELD_TOP EQU $4 STAGE_BLUE_FIELD_BOTTOM EQU $5 + +FIRST_BONUS_STAGE EQU $6 ; STAGE_GENGAR_BONUS EQU $6 ; buggy STAGE_GENGAR_BONUS EQU $7 ; STAGE_MEWTWO_BONUS EQU $8 ; buggy |