pokered/data/tilemaps.asm

49 lines
1.1 KiB
NASM
Raw Normal View History

MACRO tile_ids
2020-07-17 02:23:03 +00:00
dw \1
dn \3, \2
ENDM
TileIDListPointerTable:
2020-07-17 17:44:28 +00:00
; entries correspond to TILEMAP_* constants (see constants/gfx_constants.asm)
table_width 3, TileIDListPointerTable
2020-07-17 02:23:03 +00:00
; tilemap pointer, width, height
2020-07-17 17:44:28 +00:00
tile_ids MonTiles, 7, 7
tile_ids SlideDownMonTiles_7x5, 7, 5
tile_ids SlideDownMonTiles_7x3, 7, 3
tile_ids GengarIntroTiles1, 7, 7
tile_ids GengarIntroTiles2, 7, 7
tile_ids GengarIntroTiles3, 7, 7
tile_ids GameBoyTiles, 6, 8
tile_ids LinkCableTiles, 12, 3
assert_table_length NUM_TILEMAPS
2020-07-17 02:23:03 +00:00
DownscaledMonTiles_5x5:
2020-07-17 17:44:28 +00:00
INCBIN "gfx/pokemon/downscaled_5x5.tilemap"
2020-07-17 02:23:03 +00:00
DownscaledMonTiles_3x3:
2020-07-17 17:44:28 +00:00
INCBIN "gfx/pokemon/downscaled_3x3.tilemap"
MonTiles:
INCBIN "gfx/pokemon/front.tilemap"
SlideDownMonTiles_7x5:
INCBIN "gfx/pokemon/slide_down_7x5.tilemap"
SlideDownMonTiles_7x3:
INCBIN "gfx/pokemon/slide_down_7x3.tilemap"
2020-07-17 02:23:03 +00:00
GengarIntroTiles1:
INCBIN "gfx/intro/gengar_1.tilemap"
2020-07-17 02:23:03 +00:00
GengarIntroTiles2:
INCBIN "gfx/intro/gengar_2.tilemap"
2020-07-17 02:23:03 +00:00
GengarIntroTiles3:
INCBIN "gfx/intro/gengar_3.tilemap"
2020-07-17 02:23:03 +00:00
2020-07-17 02:30:40 +00:00
GameBoyTiles:
INCBIN "gfx/trade/game_boy.tilemap"
2020-07-17 02:23:03 +00:00
2020-07-17 02:30:40 +00:00
LinkCableTiles:
INCBIN "gfx/trade/link_cable.tilemap"