summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIIMarckus <iimarckus@gmail.com>2016-04-12 04:07:14 -0600
committerIIMarckus <iimarckus@gmail.com>2016-04-12 04:07:14 -0600
commit8499e769c93f3810a2d0d6897eb928e68f7b3e2a (patch)
tree0ac6545bbbbe19eec67ecf671a4eca7477e686a5
parent4205cdac7d4cb513c4aaf3c5778a5ad0e2727610 (diff)
Add Mystery Gift item/decoration data.
-rw-r--r--stadiumgs/constants/decoration_constants.s45
-rw-r--r--stadiumgs/main.s85
2 files changed, 129 insertions, 1 deletions
diff --git a/stadiumgs/constants/decoration_constants.s b/stadiumgs/constants/decoration_constants.s
new file mode 100644
index 0000000..7ca5da1
--- /dev/null
+++ b/stadiumgs/constants/decoration_constants.s
@@ -0,0 +1,45 @@
+FEATHERY_BED EQU 0x00
+PINK_BED EQU 0x01
+POLKADOT_BED EQU 0x02
+PIKACHU_BED EQU 0x03
+RED_CARPET EQU 0x04
+BLUE_CARPET EQU 0x05
+YELLOW_CARPET EQU 0x06
+GREEN_CARPET EQU 0x07
+MAGNAPLANT EQU 0x08
+TROPICPLANT EQU 0x09
+JUMBOPLANT EQU 0x0a
+TOWN_MAP EQU 0x0b
+PIKACHU_POSTER EQU 0x0c
+CLEFAIRY_POSTER EQU 0x0d
+JIGGLYPUFF_POSTER EQU 0x0e
+FAMICOM EQU 0x0f
+SNES EQU 0x10
+N64 EQU 0x11
+VIRTUAL_BOY EQU 0x12
+BIG_SNORLAX_DOLL EQU 0x13
+BIG_ONIX_DOLL EQU 0x14
+BIG_LAPRAS_DOLL EQU 0x15
+PIKACHU_DOLL EQU 0x16
+SURF_PIKACHU_DOLL EQU 0x17
+CLEFAIRY_DOLL EQU 0x18
+JIGGLYPUFF_DOLL EQU 0x19
+BULBASAUR_DOLL EQU 0x1a
+CHARMANDER_DOLL EQU 0x1b
+SQUIRTLE_DOLL EQU 0x1c
+POLIWAG_DOLL EQU 0x1d
+DIGLETT_DOLL EQU 0x1e
+STARMIE_DOLL EQU 0x1f
+MAGIKARP_DOLL EQU 0x20
+ODDISH_DOLL EQU 0x21
+GENGAR_DOLL EQU 0x22
+SHELLDER_DOLL EQU 0x23
+GRIMER_DOLL EQU 0x24
+VOLTORB_DOLL EQU 0x25
+WEEDLE_DOLL EQU 0x26
+UNOWN_DOLL EQU 0x27
+GEODUDE_DOLL EQU 0x28
+MACHOP_DOLL EQU 0x29
+TENTACOOL_DOLL EQU 0x2a
+GOLD_TROPHY EQU 0x2b
+SILVER_TROPHY EQU 0x2c
diff --git a/stadiumgs/main.s b/stadiumgs/main.s
index eb3ef62..4dd6296 100644
--- a/stadiumgs/main.s
+++ b/stadiumgs/main.s
@@ -4,6 +4,7 @@
.include "constants/type_constants.s"
.include "constants/move_constants.s"
.include "constants/item_constants.s"
+.include "constants/decoration_constants.s"
.incbin "baseromgs.n64",0,0x97f54
CarrierCartridgeString:
@@ -1341,7 +1342,89 @@ CarrieTeam3:
.db FOCUS_ENERGY
.db GROWL
-.incbin "baseromgs.n64",0x4374bc,0x23a5000-0x4374bc
+MysteryGiftItems:
+ .db BERRY
+ .db PRZCUREBERRY
+ .db MINT_BERRY
+ .db ICE_BERRY
+ .db BURNT_BERRY
+ .db PSNCUREBERRY
+ .db GUARD_SPEC
+ .db X_DEFEND
+ .db X_ATTACK
+ .db BITTER_BERRY
+ .db DIRE_HIT
+ .db X_SPECIAL
+ .db X_ACCURACY
+ .db EON_MAIL
+ .db MORPH_MAIL
+ .db MUSIC_MAIL
+ .db MIRACLEBERRY
+ .db GOLD_BERRY
+ .db REVIVE
+ .db GREAT_BALL
+ .db SUPER_REPEL
+ .db MAX_REPEL
+ .db ELIXER
+ .db ETHER
+ .db WATER_STONE
+ .db FIRE_STONE
+ .db LEAF_STONE
+ .db THUNDERSTONE
+ .db MAX_ETHER
+ .db MAX_ELIXER
+ .db MAX_REVIVE
+ .db SCOPE_LENS
+ .db HP_UP
+ .db PP_UP
+ .db RARE_CANDY
+ .db BLUESKY_MAIL
+ .db MIRAGE_MAIL
+
+ .align
+
+MysteryGiftDecorations:
+ .db PIKACHU_DOLL
+ .db BULBASAUR_DOLL
+ .db CHARMANDER_DOLL
+ .db SQUIRTLE_DOLL
+ .db POLIWAG_DOLL
+ .db DIGLETT_DOLL
+ .db STARMIE_DOLL
+ .db MAGIKARP_DOLL
+ .db ODDISH_DOLL
+ .db GENGAR_DOLL
+ .db CLEFAIRY_POSTER
+ .db JIGGLYPUFF_POSTER
+ .db SNES
+ .db SHELLDER_DOLL
+ .db VOLTORB_DOLL
+ .db WEEDLE_DOLL
+ .db MAGNAPLANT
+ .db TROPICPLANT
+ .db FAMICOM
+ .db N64
+ .db SURF_PIKACHU_DOLL
+ .db JIGGLYPUFF_DOLL
+ .db PINK_BED
+ .db POLKADOT_BED
+ .db RED_CARPET
+ .db BLUE_CARPET
+ .db YELLOW_CARPET
+ .db GREEN_CARPET
+ .db JUMBOPLANT
+ .db VIRTUAL_BOY
+ .db MACHOP_DOLL
+ .db PIKACHU_POSTER
+ .db TENTACOOL_DOLL
+ .db BIG_ONIX_DOLL
+ .db PIKACHU_BED
+ .db GRIMER_DOLL
+ .db UNOWN_DOLL
+
+ .align
+
+.incbin "baseromgs.n64",0x43750c,0x23a5000-0x43750c
Unknown0x23A5000: