mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
49 lines
1.3 KiB
NASM
49 lines
1.3 KiB
NASM
; MapGroupRoofs values; Roofs indexes
|
|
const_def
|
|
const ROOF_NEW_BARK ; 0
|
|
const ROOF_VIOLET ; 1
|
|
const ROOF_AZALEA ; 2
|
|
const ROOF_OLIVINE ; 3
|
|
const ROOF_GOLDENROD ; 4
|
|
|
|
MapGroupRoofs: ; 1c021i
|
|
; entries correspond to map groups
|
|
; values are indexes for Roofs (see below)
|
|
db -1 ; 0
|
|
db ROOF_OLIVINE ; 1 (Olivine)
|
|
db ROOF_AZALEA ; 2 (Mahogany)
|
|
db -1 ; 3
|
|
db ROOF_VIOLET ; 4 (Ecruteak)
|
|
db ROOF_AZALEA ; 5 (Blackthorn)
|
|
db -1 ; 6
|
|
db -1 ; 7
|
|
db ROOF_AZALEA ; 8 (Azalea)
|
|
db ROOF_AZALEA ; 9 (Lake of Rage)
|
|
db ROOF_VIOLET ; 10 (Violet)
|
|
db ROOF_GOLDENROD ; 11 (Goldenrod)
|
|
db -1 ; 12
|
|
db -1 ; 13
|
|
db -1 ; 14
|
|
db -1 ; 15
|
|
db -1 ; 16
|
|
db -1 ; 17
|
|
db -1 ; 18
|
|
db ROOF_NEW_BARK ; 19 (Silver Cave)
|
|
db -1 ; 20
|
|
db -1 ; 21
|
|
db ROOF_OLIVINE ; 22 (Cianwood)
|
|
db -1 ; 23
|
|
db ROOF_NEW_BARK ; 24 (New Bark)
|
|
db -1 ; 25
|
|
db ROOF_NEW_BARK ; 26 (Cherrygrove)
|
|
; 1c03c
|
|
|
|
Roofs: ; 1c03c
|
|
; entries correspond to ROOF_* constants
|
|
INCBIN "gfx/tilesets/roofs/0.2bpp"
|
|
INCBIN "gfx/tilesets/roofs/1.2bpp"
|
|
INCBIN "gfx/tilesets/roofs/2.2bpp"
|
|
INCBIN "gfx/tilesets/roofs/3.2bpp"
|
|
INCBIN "gfx/tilesets/roofs/4.2bpp"
|
|
; 1c30c
|