2018-02-04 18:39:46 -08:00
|
|
|
; 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
|
2022-06-06 14:25:42 -07:00
|
|
|
DEF NUM_ROOFS EQU const_value
|
2018-02-04 18:39:46 -08:00
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
MapGroupRoofs:
|
2021-03-10 18:06:06 -08:00
|
|
|
; entries correspond to MAPGROUP_* constants
|
2018-01-09 20:53:58 -08:00
|
|
|
; values are indexes for Roofs (see below)
|
2021-03-03 19:22:41 -08:00
|
|
|
table_width 1, MapGroupRoofs
|
2018-02-04 18:39:46 -08:00
|
|
|
db -1 ; 0
|
2023-07-25 06:33:08 -07:00
|
|
|
db ROOF_OLIVINE ; 1 (Level1)
|
2023-09-02 15:22:23 -07:00
|
|
|
if DEF(_DEBUG)
|
|
|
|
db ROOF_OLIVINE ; 1 (DebugLevel1)
|
|
|
|
endc
|
2021-03-03 19:22:41 -08:00
|
|
|
assert_table_length NUM_MAP_GROUPS + 1
|
2017-12-25 09:41:31 -08:00
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
Roofs:
|
2018-02-04 18:39:46 -08:00
|
|
|
; entries correspond to ROOF_* constants
|
2021-03-03 19:22:41 -08:00
|
|
|
table_width ROOF_LENGTH * LEN_2BPP_TILE, Roofs
|
2018-10-31 14:46:18 -07:00
|
|
|
INCBIN "gfx/tilesets/roofs/new_bark.2bpp"
|
|
|
|
INCBIN "gfx/tilesets/roofs/violet.2bpp"
|
|
|
|
INCBIN "gfx/tilesets/roofs/azalea.2bpp"
|
|
|
|
INCBIN "gfx/tilesets/roofs/olivine.2bpp"
|
|
|
|
INCBIN "gfx/tilesets/roofs/goldenrod.2bpp"
|
2021-03-03 19:22:41 -08:00
|
|
|
assert_table_length NUM_ROOFS
|