summaryrefslogtreecommitdiff
path: root/constants
diff options
context:
space:
mode:
authorIIMarckus <iimarckus@gmail.com>2018-09-21 14:49:35 -0600
committerIIMarckus <iimarckus@gmail.com>2018-09-21 14:49:35 -0600
commitc8b4bd17311651738aa2bc7726d14f6f89e66cf4 (patch)
tree6e856a8c9125293a5187d4e9c4d4b0f571ac81e8 /constants
parent7cb7b67cddd4857b7e35fe47df8c8db689251140 (diff)
Add map objects from bank 59.
Diffstat (limited to 'constants')
-rw-r--r--constants/wram_constants.asm25
1 files changed, 25 insertions, 0 deletions
diff --git a/constants/wram_constants.asm b/constants/wram_constants.asm
index 8f996cfb..c8eca267 100644
--- a/constants/wram_constants.asm
+++ b/constants/wram_constants.asm
@@ -78,6 +78,31 @@ NUM_OBJECTS EQU $10
; InputType: ; c2c7
AUTO_INPUT EQU $ff
+; wJohtoBadges: ; d57c
+ const_def
+ const ZEPHYRBADGE
+ const HIVEBADGE
+ const PLAINBADGE
+ const FOGBADGE
+ const MINERALBADGE
+ const STORMBADGE
+ const GLACIERBADGE
+ const RISINGBADGE
+NUM_JOHTO_BADGES EQU const_value
+
+; wKantoBadges:: ds 1 ; d57d
+ const_def
+ const BOULDERBADGE
+ const CASCADEBADGE
+ const THUNDERBADGE
+ const RAINBOWBADGE
+ const SOULBADGE
+ const MARSHBADGE
+ const VOLCANOBADGE
+ const EARTHBADGE
+NUM_KANTO_BADGES EQU const_value
+NUM_BADGES EQU NUM_JOHTO_BADGES + NUM_KANTO_BADGES
+
; WhichRegisteredItem: ; d95b
REGISTERED_POCKET EQU %11000000
REGISTERED_NUMBER EQU %00111111