mirror of
https://github.com/pret/pokegold-spaceworld.git
synced 2026-08-09 11:47:38 -05:00
22 lines
530 B
NASM
22 lines
530 B
NASM
INCLUDE "constants.asm"
|
|
|
|
SECTION "data/maps/objects/SugarRouteGate.asm", ROMX
|
|
|
|
map_attributes SugarRouteGate, SUGAR_ROUTE_GATE, 0
|
|
|
|
SugarRouteGate_MapEvents::
|
|
dw $4000 ; unknown
|
|
|
|
db 4 ; warp events
|
|
warp_event 4, 7, 12, NEWTYPE, wOverworldMapBlocks + 47
|
|
warp_event 5, 7, 13, NEWTYPE, wOverworldMapBlocks + 47
|
|
warp_event 4, 0, 1, SUGAR_ROUTE, wOverworldMapBlocks + 14
|
|
warp_event 5, 0, 2, SUGAR_ROUTE, wOverworldMapBlocks + 14
|
|
|
|
db 0 ; bg events
|
|
|
|
db 0 ; person events
|
|
|
|
SugarRouteGate_Blocks::
|
|
INCBIN "maps/SugarRouteGate.blk"
|