1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
INCLUDE "constants.asm"
SECTION "data/maps/attributes/placeholder/SugarRoute.asm", ROMX
map_attributes SugarRoute, SUGAR_ROUTE, NORTH | SOUTH
connection north, Sugar, SUGAR, 0, 0, 10
connection south, Newtype, NEWTYPE, -3, 2, 16
SugarRoute_MapEvents::
dw $4000 ; unknown
db 2 ; warp events
warp_event 8, 48, 3, SUGAR_ROUTE_GATE, wOverworldMapBlocks + 405
warp_event 9, 48, 4, SUGAR_ROUTE_GATE, wOverworldMapBlocks + 405
db 0 ; bg events
db 0 ; person events
SugarRoute_Blocks:: INCBIN "maps/placeholder/blk/SugarRoute.blk"
|