summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpikalaxalt <PikalaxALT@gmail.com>2016-05-30 11:44:44 -0400
committerpikalaxalt <PikalaxALT@gmail.com>2016-05-30 11:44:44 -0400
commit8b52fbcfb03b559979b6f480d49fd4e9764aee4b (patch)
treecbb515c863af7a3f5f4844692aa57fe048421484
parent6e3581df4b9cbc8cf14fc7948df5df70002cc062 (diff)
Route 5 gate
-rw-r--r--data/map_header_banks.asm2
-rw-r--r--data/map_header_pointers.asm2
-rwxr-xr-xmain.asm9
3 files changed, 10 insertions, 3 deletions
diff --git a/data/map_header_banks.asm b/data/map_header_banks.asm
index ca060492..44795d97 100644
--- a/data/map_header_banks.asm
+++ b/data/map_header_banks.asm
@@ -70,7 +70,7 @@ MapHeaderBanks:: ; fc3e4 (3f:43e4)
db BANK(CeruleanMart_h)
db BANK(MtMoonPokecenter_h)
db BANK(CeruleanHouseTrashed_h)
- db $07 ; db BANK(Route5Gate_h)
+ db BANK(Route5Gate_h)
db $17 ; db BANK(UndergroundPathEntranceRoute5_h)
db $15 ; db BANK(DayCareM_h)
db $07 ; db BANK(Route6Gate_h)
diff --git a/data/map_header_pointers.asm b/data/map_header_pointers.asm
index d2ecea33..b6ec84ca 100644
--- a/data/map_header_pointers.asm
+++ b/data/map_header_pointers.asm
@@ -70,7 +70,7 @@ MapHeaderPointers:: ; fc1f2 (3f:41f2)
dw CeruleanMart_h
dw MtMoonPokecenter_h
dw CeruleanHouseTrashed_h ; copy
- dw $5831 ; dw Route5Gate_h
+ dw Route5Gate_h
dw $55a8 ; dw UndergroundPathEntranceRoute5_h
dw $6233 ; dw DayCareM_h
dw $593b ; dw Route6Gate_h
diff --git a/main.asm b/main.asm
index 58846267..890cb726 100755
--- a/main.asm
+++ b/main.asm
@@ -366,7 +366,14 @@ INCLUDE "data/mapObjects/diglettscaveroute2.asm"
INCLUDE "data/mapHeaders/route2house.asm"
INCLUDE "scripts/route2house.asm"
INCLUDE "data/mapObjects/route2house.asm"
- dr $1d831,$1e2ae ; map scripts
+
+INCLUDE "data/mapHeaders/route5gate.asm"
+INCLUDE "scripts/route5gate.asm"
+INCLUDE "data/mapObjects/route5gate.asm"
+Route5GateBlocks: ; 1d92f
+INCBIN "maps/route5gate.blk"
+
+ dr $1d93b,$1e2ae ; map scripts
INCLUDE "engine/menu/oaks_pc.asm"