blob: 4567fdc1946a20ccf79300892aecdd2570c3b9b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
tilepal: MACRO
; used in gfx/tilesets/*_palette_map.asm
; vram bank, pals
x = \1 << OAM_TILE_BANK
rept (_NARG - 1) / 2
dn (x | PAL_BG_\3), (x | PAL_BG_\2)
shift 2
endr
ENDM
TilesetKantoPalMap:
INCLUDE "gfx/tilesets/kanto_palette_map.asm"
Tileset0PalMap:
TilesetJohtoPalMap:
INCLUDE "gfx/tilesets/johto_palette_map.asm"
TilesetJohtoModernPalMap:
INCLUDE "gfx/tilesets/johto_modern_palette_map.asm"
TilesetHousePalMap:
INCLUDE "gfx/tilesets/house_palette_map.asm"
TilesetPlayersHousePalMap:
INCLUDE "gfx/tilesets/players_house_palette_map.asm"
TilesetPokecenterPalMap:
INCLUDE "gfx/tilesets/pokecenter_palette_map.asm"
TilesetGatePalMap:
INCLUDE "gfx/tilesets/gate_palette_map.asm"
TilesetPortPalMap:
INCLUDE "gfx/tilesets/port_palette_map.asm"
TilesetLabPalMap:
INCLUDE "gfx/tilesets/lab_palette_map.asm"
TilesetFacilityPalMap:
INCLUDE "gfx/tilesets/facility_palette_map.asm"
TilesetMartPalMap:
INCLUDE "gfx/tilesets/mart_palette_map.asm"
TilesetMansionPalMap:
INCLUDE "gfx/tilesets/mansion_palette_map.asm"
TilesetGameCornerPalMap:
INCLUDE "gfx/tilesets/game_corner_palette_map.asm"
TilesetEliteFourRoomPalMap:
INCLUDE "gfx/tilesets/elite_four_room_palette_map.asm"
TilesetTraditionalHousePalMap:
INCLUDE "gfx/tilesets/traditional_house_palette_map.asm"
TilesetTowerPalMap:
INCLUDE "gfx/tilesets/tower_palette_map.asm"
TilesetCavePalMap:
TilesetDarkCavePalMap:
INCLUDE "gfx/tilesets/cave_palette_map.asm"
TilesetParkPalMap:
INCLUDE "gfx/tilesets/park_palette_map.asm"
TilesetRuinsOfAlphPalMap:
INCLUDE "gfx/tilesets/ruins_of_alph_palette_map.asm"
TilesetRadioTowerPalMap:
INCLUDE "gfx/tilesets/radio_tower_palette_map.asm"
TilesetTrainStationPalMap:
INCLUDE "gfx/tilesets/train_station_palette_map.asm"
TilesetUndergroundPalMap:
INCLUDE "gfx/tilesets/underground_palette_map.asm"
TilesetChampionsRoomPalMap:
INCLUDE "gfx/tilesets/champions_room_palette_map.asm"
TilesetLighthousePalMap:
INCLUDE "gfx/tilesets/lighthouse_palette_map.asm"
TilesetPlayersRoomPalMap:
INCLUDE "gfx/tilesets/players_room_palette_map.asm"
UnusedMuseumPalMap: ; unreferenced
INCLUDE "gfx/tilesets/unused_museum_palette_map.asm"
TilesetIcePathPalMap:
INCLUDE "gfx/tilesets/ice_path_palette_map.asm"
TilesetForestPalMap:
INCLUDE "gfx/tilesets/forest_palette_map.asm"
MapGroupPalettes:
; entries correspond to MAPGROUP_* constants
rept NUM_MAP_GROUPS
db PAL_BG_ROOF
endr
|