src/table/town_land.h
author rubidium
Fri, 14 Sep 2007 21:32:21 +0000
changeset 7577 ab000224166b
parent 6605 d92f454a00a6
child 8298 681e3c5f50ad
permissions -rw-r--r--
(svn r11102) -Codechange: remove some pointless addition+substractions. Patch by frosch.
2186
db48cf29b983 (svn r2701) Insert Id tags into all source files
tron
parents: 501
diff changeset
     1
/* $Id$ */
db48cf29b983 (svn r2701) Insert Id tags into all source files
tron
parents: 501
diff changeset
     2
4549
106ed18a7675 (svn r6381) -Cleanup: make the '/* */' comments that span multiple lines more uniform.
rubidium
parents: 4293
diff changeset
     3
/** @file town_land.h */
2187
a0e206ce9fbf (svn r2702) -Codechange: Cleaned up the sprite code and replaced many magic numbers
celestar
parents: 2186
diff changeset
     4
483
d8374ce6b365 (svn r764) Enumerate the houses only one per town can exist and use the enums instead of magic numbers to check for these
tron
parents: 482
diff changeset
     5
2187
a0e206ce9fbf (svn r2702) -Codechange: Cleaned up the sprite code and replaced many magic numbers
celestar
parents: 2186
diff changeset
     6
/** Writes the data into the Town Tile Drawing Struct
4549
106ed18a7675 (svn r6381) -Cleanup: make the '/* */' comments that span multiple lines more uniform.
rubidium
parents: 4293
diff changeset
     7
 * @param s1 The first sprite of the building, mostly the ground sprite
6459
bd2721f73d2a (svn r9619) -Documentation: Comments on drawing arrays of houses and industries
belugas
parents: 6341
diff changeset
     8
 * @param p1 The first sprite's palette of the building, mostly the ground sprite
4549
106ed18a7675 (svn r6381) -Cleanup: make the '/* */' comments that span multiple lines more uniform.
rubidium
parents: 4293
diff changeset
     9
 * @param s2 The second sprite of the building.
6459
bd2721f73d2a (svn r9619) -Documentation: Comments on drawing arrays of houses and industries
belugas
parents: 6341
diff changeset
    10
 * @param p2 The second sprite's palette of the building.
4549
106ed18a7675 (svn r6381) -Cleanup: make the '/* */' comments that span multiple lines more uniform.
rubidium
parents: 4293
diff changeset
    11
 * @param sx The x-position of the sprite within the tile
6459
bd2721f73d2a (svn r9619) -Documentation: Comments on drawing arrays of houses and industries
belugas
parents: 6341
diff changeset
    12
 * @param sy the y-position of the sprite within the tile
4549
106ed18a7675 (svn r6381) -Cleanup: make the '/* */' comments that span multiple lines more uniform.
rubidium
parents: 4293
diff changeset
    13
 * @param w the width of the sprite
106ed18a7675 (svn r6381) -Cleanup: make the '/* */' comments that span multiple lines more uniform.
rubidium
parents: 4293
diff changeset
    14
 * @param h the height of the sprite
106ed18a7675 (svn r6381) -Cleanup: make the '/* */' comments that span multiple lines more uniform.
rubidium
parents: 4293
diff changeset
    15
 * @param dz the virtual height of the sprite
6459
bd2721f73d2a (svn r9619) -Documentation: Comments on drawing arrays of houses and industries
belugas
parents: 6341
diff changeset
    16
 * @param p set to 1 if a lift is present ()
bd2721f73d2a (svn r9619) -Documentation: Comments on drawing arrays of houses and industries
belugas
parents: 6341
diff changeset
    17
 * @see DrawBuildingsTileStruct */
7577
ab000224166b (svn r11102) -Codechange: remove some pointless addition+substractions. Patch by frosch.
rubidium
parents: 6605
diff changeset
    18
#define M(s1, p1, s2, p2, sx, sy, w, h, dz, p) { { s1, p1 }, { s2, p2 }, sx, sy, w, h, dz, p}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    19
6459
bd2721f73d2a (svn r9619) -Documentation: Comments on drawing arrays of houses and industries
belugas
parents: 6341
diff changeset
    20
/** structure of houses graphics*/
3654
c09872510a61 (svn r4568) CodeChange : Bring definitions and uses of DrawTypesStructures toguether.
belugas
parents: 3278
diff changeset
    21
static const DrawBuildingsTileStruct _town_draw_tile_data[] = {
5669
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    22
	M( 0xf54, PAL_NONE,  0x58d, PAL_NONE,  0,  0, 14, 14,   8, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    23
	M( 0xf54, PAL_NONE,  0x58e, PAL_NONE,  0,  0, 14, 14,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    24
	M( 0xf54, PAL_NONE,  0x58f, PAL_NONE,  0,  0, 14, 14,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    25
	M( 0x590, PAL_NONE,  0x58f, PAL_NONE,  0,  0, 14, 14,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    26
	M( 0xf54, PAL_NONE,  0x58d, PAL_NONE,  0,  0, 14, 14,   8, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    27
	M( 0xf54, PAL_NONE,  0x58e, PAL_NONE,  0,  0, 14, 14,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    28
	M( 0xf54, PAL_NONE,  0x591, PAL_NONE,  0,  0, 14, 14,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    29
	M( 0x590, PAL_NONE,  0x591, PAL_NONE,  0,  0, 14, 14,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    30
	M( 0xf54, PAL_NONE,  0x58d, PALETTE_TO_STRUCT_WHITE,  0,  0, 14, 14,   8, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    31
	M( 0xf54, PAL_NONE,  0x58e, PALETTE_TO_STRUCT_WHITE,  0,  0, 14, 14,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    32
	M( 0xf54, PAL_NONE,  0x591, PALETTE_TO_STRUCT_WHITE,  0,  0, 14, 14,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    33
	M( 0x590, PAL_NONE,  0x591, PALETTE_TO_STRUCT_WHITE,  0,  0, 14, 14,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    34
	M( 0xf54, PAL_NONE,  0x58d, PALETTE_TO_STRUCT_CONCRETE,  0,  0, 14, 14,   8, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    35
	M( 0xf54, PAL_NONE,  0x58e, PALETTE_TO_STRUCT_CONCRETE,  0,  0, 14, 14,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    36
	M( 0xf54, PAL_NONE,  0x591, PALETTE_TO_STRUCT_CONCRETE,  0,  0, 14, 14,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    37
	M( 0x590, PAL_NONE,  0x591, PALETTE_TO_STRUCT_CONCRETE,  0,  0, 14, 14,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    38
	M( 0xf54, PAL_NONE,  0x592, PAL_NONE,  0,  0, 14, 16,  11, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    39
	M( 0xf54, PAL_NONE,  0x593, PAL_NONE,  0,  0, 14, 16,  33, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    40
	M( 0xf54, PAL_NONE,  0x594, PAL_NONE,  0,  0, 14, 16,  33, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    41
	M( 0x595, PAL_NONE,  0x594, PAL_NONE,  0,  0, 14, 16,  33, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    42
	M( 0xf54, PAL_NONE,  0x592, PALETTE_TO_STRUCT_WHITE,  0,  0, 16, 16,  11, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    43
	M( 0xf54, PAL_NONE,  0x593, PALETTE_TO_STRUCT_WHITE,  0,  0, 16, 16,  33, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    44
	M( 0xf54, PAL_NONE,  0x594, PALETTE_TO_STRUCT_WHITE,  0,  0, 16, 16,  33, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    45
	M( 0x595, PAL_NONE,  0x594, PALETTE_TO_STRUCT_WHITE,  0,  0, 16, 16,  33, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    46
	M( 0xf54, PAL_NONE,  0x592, PALETTE_TO_STRUCT_CONCRETE,  0,  0, 16, 16,  11, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    47
	M( 0xf54, PAL_NONE,  0x593, PALETTE_TO_STRUCT_CONCRETE,  0,  0, 16, 16,  33, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    48
	M( 0xf54, PAL_NONE,  0x594, PALETTE_TO_STRUCT_CONCRETE,  0,  0, 16, 16,  33, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    49
	M( 0x595, PAL_NONE,  0x594, PALETTE_TO_STRUCT_CONCRETE,  0,  0, 16, 16,  33, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    50
	M( 0xf54, PAL_NONE,  0x592, PALETTE_TO_STRUCT_BROWN,  0,  0, 16, 16,  11, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    51
	M( 0xf54, PAL_NONE,  0x593, PALETTE_TO_STRUCT_BROWN,  0,  0, 16, 16,  33, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    52
	M( 0xf54, PAL_NONE,  0x594, PALETTE_TO_STRUCT_BROWN,  0,  0, 16, 16,  33, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    53
	M( 0x595, PAL_NONE,  0x594, PALETTE_TO_STRUCT_BROWN,  0,  0, 16, 16,  33, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    54
	M( 0xf54, PAL_NONE,  0x596, PAL_NONE,  0,  0, 12, 12,   6, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    55
	M( 0xf54, PAL_NONE,  0x597, PAL_NONE,  0,  0, 12, 12,  17, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    56
	M( 0xf54, PAL_NONE,  0x598, PAL_NONE,  0,  0, 12, 12,  17, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    57
	M( 0x599, PAL_NONE,  0x598, PAL_NONE,  0,  0, 12, 12,  17, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    58
	M( 0xf54, PAL_NONE,  0x596, PAL_NONE,  0,  0, 12, 12,   6, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    59
	M( 0xf54, PAL_NONE,  0x597, PAL_NONE,  0,  0, 12, 12,  17, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    60
	M( 0xf54, PAL_NONE,  0x598, PAL_NONE,  0,  0, 12, 12,  17, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    61
	M( 0x599, PAL_NONE,  0x598, PAL_NONE,  0,  0, 12, 12,  17, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    62
	M( 0xf54, PAL_NONE,  0x596, PAL_NONE,  0,  0, 12, 12,   6, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    63
	M( 0xf54, PAL_NONE,  0x597, PAL_NONE,  0,  0, 12, 12,  17, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    64
	M( 0xf54, PAL_NONE,  0x598, PAL_NONE,  0,  0, 12, 12,  17, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    65
	M( 0x599, PAL_NONE,  0x598, PAL_NONE,  0,  0, 12, 12,  17, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    66
	M( 0xf54, PAL_NONE,  0x596, PAL_NONE,  0,  0, 12, 12,   6, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    67
	M( 0xf54, PAL_NONE,  0x597, PAL_NONE,  0,  0, 12, 12,  17, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    68
	M( 0xf54, PAL_NONE,  0x598, PAL_NONE,  0,  0, 12, 12,  17, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    69
	M( 0x599, PAL_NONE,  0x598, PAL_NONE,  0,  0, 12, 12,  17, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    70
	M( 0xf54, PAL_NONE,  0x59a, PAL_NONE,  0,  0, 14, 16,  16, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    71
	M( 0xf54, PAL_NONE,  0x59b, PAL_NONE,  0,  0, 14, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    72
	M( 0xf54, PAL_NONE,  0x59c, PAL_NONE,  0,  0, 14, 16,  35, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    73
	M( 0x59d, PAL_NONE,  0x59c, PAL_NONE,  0,  0, 14, 16,  35, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    74
	M( 0xf54, PAL_NONE,  0x59a, PALETTE_59E,  0,  0, 14, 16,  16, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    75
	M( 0xf54, PAL_NONE,  0x59b, PALETTE_59E,  0,  0, 14, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    76
	M( 0xf54, PAL_NONE,  0x59c, PALETTE_59E,  0,  0, 14, 16,  35, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    77
	M( 0x59d, PAL_NONE,  0x59c, PALETTE_59E,  0,  0, 14, 16,  35, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    78
	M( 0xf54, PAL_NONE,  0x59a, PALETTE_59F,  0,  0, 14, 16,  16, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    79
	M( 0xf54, PAL_NONE,  0x59b, PALETTE_59F,  0,  0, 14, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    80
	M( 0xf54, PAL_NONE,  0x59c, PALETTE_59F,  0,  0, 14, 16,  35, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    81
	M( 0x59d, PAL_NONE,  0x59c, PALETTE_59F,  0,  0, 14, 16,  35, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    82
	M( 0xf54, PAL_NONE,  0x59a, PALETTE_59F,  0,  0, 14, 16,  16, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    83
	M( 0xf54, PAL_NONE,  0x59b, PALETTE_59F,  0,  0, 14, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    84
	M( 0xf54, PAL_NONE,  0x59c, PALETTE_59F,  0,  0, 14, 16,  35, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    85
	M( 0x59d, PAL_NONE,  0x59c, PALETTE_59F,  0,  0, 14, 16,  35, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    86
	M( 0xf54, PAL_NONE,  0x5a0, PAL_NONE,  0,  0, 15, 15,   5, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    87
	M( 0xf54, PAL_NONE,  0x5a1, PAL_NONE,  0,  0, 15, 15,  53, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    88
	M( 0xf54, PAL_NONE,  0x5a2, PAL_NONE,  0,  0, 15, 15,  53, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    89
	M( 0x58c, PAL_NONE,  0x5a2, PAL_NONE,  0,  0, 15, 15,  53, 1),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    90
	M( 0xf54, PAL_NONE,  0x5a0, PAL_NONE,  0,  0, 15, 15,   5, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    91
	M( 0xf54, PAL_NONE,  0x5a1, PAL_NONE,  0,  0, 15, 15,  53, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    92
	M( 0xf54, PAL_NONE,  0x5a2, PAL_NONE,  0,  0, 15, 15,  53, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    93
	M( 0x58c, PAL_NONE,  0x5a2, PAL_NONE,  0,  0, 15, 15,  53, 1),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    94
	M( 0xf54, PAL_NONE,  0x5a0, PAL_NONE,  0,  0, 15, 15,   5, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    95
	M( 0xf54, PAL_NONE,  0x5a1, PAL_NONE,  0,  0, 15, 15,  53, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    96
	M( 0xf54, PAL_NONE,  0x5a2, PAL_NONE,  0,  0, 15, 15,  53, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    97
	M( 0x58c, PAL_NONE,  0x5a2, PAL_NONE,  0,  0, 15, 15,  53, 1),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    98
	M( 0xf54, PAL_NONE,  0x5a0, PAL_NONE,  0,  0, 15, 15,   5, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    99
	M( 0xf54, PAL_NONE,  0x5a1, PAL_NONE,  0,  0, 15, 15,  53, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   100
	M( 0xf54, PAL_NONE,  0x5a2, PAL_NONE,  0,  0, 15, 15,  53, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   101
	M( 0x58c, PAL_NONE,  0x5a2, PAL_NONE,  0,  0, 15, 15,  53, 1),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   102
	M( 0xf54, PAL_NONE,  0x5a0, PAL_NONE,  0,  0, 15, 15,   5, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   103
	M( 0xf54, PAL_NONE,  0x5a1, PAL_NONE,  0,  0, 15, 15,  53, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   104
	M( 0xf54, PAL_NONE, 0x11d9, PAL_NONE,  0,  0, 15, 15,  53, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   105
	M( 0x58c, PAL_NONE, 0x11d9, PAL_NONE,  0,  0, 15, 15,  53, 1),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   106
	M( 0xf54, PAL_NONE,  0x5a0, PAL_NONE,  0,  0, 15, 15,   5, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   107
	M( 0xf54, PAL_NONE,  0x5a1, PAL_NONE,  0,  0, 15, 15,  53, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   108
	M( 0xf54, PAL_NONE, 0x11d9, PAL_NONE,  0,  0, 15, 15,  53, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   109
	M( 0x58c, PAL_NONE, 0x11d9, PAL_NONE,  0,  0, 15, 15,  53, 1),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   110
	M( 0xf54, PAL_NONE,  0x5a0, PAL_NONE,  0,  0, 15, 15,   5, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   111
	M( 0xf54, PAL_NONE,  0x5a1, PAL_NONE,  0,  0, 15, 15,  53, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   112
	M( 0xf54, PAL_NONE, 0x11d9, PAL_NONE,  0,  0, 15, 15,  53, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   113
	M( 0x58c, PAL_NONE, 0x11d9, PAL_NONE,  0,  0, 15, 15,  53, 1),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   114
	M( 0xf54, PAL_NONE,  0x5a0, PAL_NONE,  0,  0, 15, 15,   5, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   115
	M( 0xf54, PAL_NONE,  0x5a1, PAL_NONE,  0,  0, 15, 15,  53, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   116
	M( 0xf54, PAL_NONE, 0x11d9, PAL_NONE,  0,  0, 15, 15,  53, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   117
	M( 0x58c, PAL_NONE, 0x11d9, PAL_NONE,  0,  0, 15, 15,  53, 1),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   118
	M( 0xf54, PAL_NONE,  0x5a4, PAL_NONE,  0,  0, 16, 16,  16, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   119
	M( 0xf54, PAL_NONE,  0x5a5, PAL_NONE,  0,  0, 16, 16,  16, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   120
	M( 0xf54, PAL_NONE,  0x5a6, PAL_NONE,  0,  0, 16, 16,  16, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   121
	M( 0x5a7, PAL_NONE,  0x5a6, PAL_NONE,  0,  0, 16, 16,  16, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   122
	M( 0xf54, PAL_NONE,  0x5a4, PAL_NONE,  0,  0, 16, 16,  16, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   123
	M( 0xf54, PAL_NONE,  0x5a5, PAL_NONE,  0,  0, 16, 16,  16, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   124
	M( 0xf54, PAL_NONE,  0x5a6, PAL_NONE,  0,  0, 16, 16,  16, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   125
	M( 0x5a7, PAL_NONE,  0x5a6, PAL_NONE,  0,  0, 16, 16,  16, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   126
	M( 0x5dd, PAL_NONE,  0x5de, PAL_NONE,  0,  0, 16, 16,  16, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   127
	M( 0x5df, PAL_NONE,  0x5e0, PAL_NONE,  0,  0, 16, 16,  16, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   128
	M( 0x5e1, PAL_NONE,  0x5e2, PAL_NONE,  0,  0, 16, 16,  16, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   129
	M( 0x5e1, PAL_NONE,  0x5e2, PAL_NONE,  0,  0, 16, 16,  16, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   130
	M( 0x5dd, PAL_NONE,  0x5de, PAL_NONE,  0,  0, 16, 16,  16, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   131
	M( 0x5df, PAL_NONE,  0x5e0, PAL_NONE,  0,  0, 16, 16,  16, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   132
	M( 0x5e1, PAL_NONE,  0x5e2, PAL_NONE,  0,  0, 16, 16,  16, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   133
	M( 0x5e1, PAL_NONE,  0x5e2, PAL_NONE,  0,  0, 16, 16,  16, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   134
	M( 0xf54, PAL_NONE,  0x5a8, PAL_NONE,  0,  0, 16, 16,  15, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   135
	M( 0xf54, PAL_NONE,  0x5a9, PAL_NONE,  0,  0, 16, 16,  38, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   136
	M( 0xf54, PAL_NONE,  0x5aa, PAL_NONE,  0,  0, 16, 16,  45, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   137
	M( 0x58c, PAL_NONE,  0x5aa, PAL_NONE,  0,  0, 16, 16,  45, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   138
	M( 0xf54, PAL_NONE,  0x5a8, PAL_NONE,  0,  0, 16, 16,  15, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   139
	M( 0xf54, PAL_NONE,  0x5a9, PAL_NONE,  0,  0, 16, 16,  38, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   140
	M( 0xf54, PAL_NONE,  0x5aa, PAL_NONE,  0,  0, 16, 16,  45, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   141
	M( 0x58c, PAL_NONE,  0x5aa, PAL_NONE,  0,  0, 16, 16,  45, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   142
	M( 0xf54, PAL_NONE,  0x5a8, PAL_NONE,  0,  0, 16, 16,  15, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   143
	M( 0xf54, PAL_NONE,  0x5a9, PAL_NONE,  0,  0, 16, 16,  38, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   144
	M( 0xf54, PAL_NONE,  0x5aa, PAL_NONE,  0,  0, 16, 16,  45, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   145
	M( 0x58c, PAL_NONE,  0x5aa, PAL_NONE,  0,  0, 16, 16,  45, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   146
	M( 0xf54, PAL_NONE,  0x5a8, PAL_NONE,  0,  0, 16, 16,  15, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   147
	M( 0xf54, PAL_NONE,  0x5a9, PAL_NONE,  0,  0, 16, 16,  38, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   148
	M( 0xf54, PAL_NONE,  0x5aa, PAL_NONE,  0,  0, 16, 16,  45, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   149
	M( 0x58c, PAL_NONE,  0x5aa, PAL_NONE,  0,  0, 16, 16,  45, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   150
	M( 0xf54, PAL_NONE,  0x5ab, PAL_NONE,  0,  0, 16, 16,  15, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   151
	M( 0xf54, PAL_NONE,  0x5ac, PAL_NONE,  0,  0, 16, 16,  38, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   152
	M( 0xf54, PAL_NONE,  0x5ad, PAL_NONE,  0,  0, 16, 16,  45, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   153
	M( 0x58c, PAL_NONE,  0x5ad, PAL_NONE,  0,  0, 16, 16,  45, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   154
	M( 0xf54, PAL_NONE,  0x5ab, PAL_NONE,  0,  0, 16, 16,  15, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   155
	M( 0xf54, PAL_NONE,  0x5ac, PAL_NONE,  0,  0, 16, 16,  38, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   156
	M( 0xf54, PAL_NONE,  0x5ad, PAL_NONE,  0,  0, 16, 16,  45, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   157
	M( 0x58c, PAL_NONE,  0x5ad, PAL_NONE,  0,  0, 16, 16,  45, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   158
	M( 0xf54, PAL_NONE,  0x5ab, PAL_NONE,  0,  0, 16, 16,  15, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   159
	M( 0xf54, PAL_NONE,  0x5ac, PAL_NONE,  0,  0, 16, 16,  38, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   160
	M( 0xf54, PAL_NONE,  0x5ad, PAL_NONE,  0,  0, 16, 16,  45, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   161
	M( 0x58c, PAL_NONE,  0x5ad, PAL_NONE,  0,  0, 16, 16,  45, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   162
	M( 0xf54, PAL_NONE,  0x5ab, PAL_NONE,  0,  0, 16, 16,  15, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   163
	M( 0xf54, PAL_NONE,  0x5ac, PAL_NONE,  0,  0, 16, 16,  38, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   164
	M( 0xf54, PAL_NONE,  0x5ad, PAL_NONE,  0,  0, 16, 16,  45, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   165
	M( 0x58c, PAL_NONE,  0x5ad, PAL_NONE,  0,  0, 16, 16,  45, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   166
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  6,  5,  3,  6,   8, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   167
	M( 0x58c, PAL_NONE,    0x0, PAL_NONE,  6,  5,  3,  6,   8, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   168
	M( 0x58c, PAL_NONE,  0x5ae, PAL_NONE,  6,  5,  3,  6,   8, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   169
	M( 0x58c, PAL_NONE,  0x5ae, PAL_NONE,  6,  5,  3,  6,   8, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   170
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  6,  5,  3,  6,   8, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   171
	M( 0x58c, PAL_NONE,    0x0, PAL_NONE,  6,  5,  3,  6,   8, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   172
	M( 0x58c, PAL_NONE,  0x5ae, PAL_NONE,  6,  5,  3,  6,   8, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   173
	M( 0x58c, PAL_NONE,  0x5ae, PAL_NONE,  6,  5,  3,  6,   8, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   174
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  6,  5,  3,  6,   8, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   175
	M( 0x58c, PAL_NONE,    0x0, PAL_NONE,  6,  5,  3,  6,   8, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   176
	M( 0x58c, PAL_NONE,  0x5ae, PAL_NONE,  6,  5,  3,  6,   8, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   177
	M( 0x58c, PAL_NONE,  0x5ae, PAL_NONE,  6,  5,  3,  6,   8, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   178
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  6,  5,  3,  6,   8, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   179
	M( 0x58c, PAL_NONE,    0x0, PAL_NONE,  6,  5,  3,  6,   8, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   180
	M( 0x58c, PAL_NONE,  0x5ae, PAL_NONE,  6,  5,  3,  6,   8, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   181
	M( 0x58c, PAL_NONE,  0x5ae, PAL_NONE,  6,  5,  3,  6,   8, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   182
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  3,  3,  9,  9,   8, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   183
	M( 0x58c, PAL_NONE,    0x0, PAL_NONE,  3,  3,  9,  9,   8, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   184
	M( 0x58c, PAL_NONE,  0x5af, PAL_NONE,  3,  3,  9,  9,   8, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   185
	M( 0x58c, PAL_NONE,  0x5af, PAL_NONE,  3,  3,  9,  9,   8, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   186
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  3,  3,  9,  9,   8, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   187
	M( 0x58c, PAL_NONE,    0x0, PAL_NONE,  3,  3,  9,  9,   8, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   188
	M( 0x58c, PAL_NONE,  0x5af, PAL_NONE,  3,  3,  9,  9,   8, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   189
	M( 0x58c, PAL_NONE,  0x5af, PAL_NONE,  3,  3,  9,  9,   8, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   190
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  3,  3,  9,  9,   8, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   191
	M( 0x58c, PAL_NONE,    0x0, PAL_NONE,  3,  3,  9,  9,   8, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   192
	M( 0x58c, PAL_NONE,  0x5af, PAL_NONE,  3,  3,  9,  9,   8, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   193
	M( 0x58c, PAL_NONE,  0x5af, PAL_NONE,  3,  3,  9,  9,   8, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   194
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  3,  3,  9,  9,   8, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   195
	M( 0x58c, PAL_NONE,    0x0, PAL_NONE,  3,  3,  9,  9,   8, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   196
	M( 0x58c, PAL_NONE,  0x5af, PAL_NONE,  3,  3,  9,  9,   8, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   197
	M( 0x58c, PAL_NONE,  0x5af, PAL_NONE,  3,  3,  9,  9,   8, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   198
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  15, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   199
	M( 0xf8d, PAL_NONE,  0x5b0, PAL_NONE,  0,  0, 16, 16,  15, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   200
	M( 0xf8d, PAL_NONE,  0x5b0, PAL_NONE,  0,  0, 16, 16,  15, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   201
	M( 0xf8d, PAL_NONE,  0x5b0, PAL_NONE,  0,  0, 16, 16,  15, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   202
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  15, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   203
	M( 0xf8d, PAL_NONE,  0x5b0, PAL_NONE,  0,  0, 16, 16,  15, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   204
	M( 0xf8d, PAL_NONE,  0x5b0, PAL_NONE,  0,  0, 16, 16,  15, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   205
	M( 0xf8d, PAL_NONE,  0x5b0, PAL_NONE,  0,  0, 16, 16,  15, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   206
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  15, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   207
	M( 0xf8d, PAL_NONE,  0x5b0, PAL_NONE,  0,  0, 16, 16,  15, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   208
	M( 0xf8d, PAL_NONE,  0x5b0, PAL_NONE,  0,  0, 16, 16,  15, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   209
	M( 0xf8d, PAL_NONE,  0x5b0, PAL_NONE,  0,  0, 16, 16,  15, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   210
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  15, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   211
	M( 0xf8d, PAL_NONE,  0x5b0, PAL_NONE,  0,  0, 16, 16,  15, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   212
	M( 0xf8d, PAL_NONE,  0x5b0, PAL_NONE,  0,  0, 16, 16,  15, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   213
	M( 0xf8d, PAL_NONE,  0x5b0, PAL_NONE,  0,  0, 16, 16,  15, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   214
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  15, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   215
	M( 0xf8d, PAL_NONE,  0x5b1, PAL_NONE,  0,  0, 16, 16,  15, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   216
	M( 0xf8d, PAL_NONE,  0x5b1, PAL_NONE,  0,  0, 16, 16,  15, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   217
	M( 0xf8d, PAL_NONE,  0x5b1, PAL_NONE,  0,  0, 16, 16,  15, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   218
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  15, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   219
	M( 0xf8d, PAL_NONE,  0x5b1, PAL_NONE,  0,  0, 16, 16,  15, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   220
	M( 0xf8d, PAL_NONE,  0x5b1, PAL_NONE,  0,  0, 16, 16,  15, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   221
	M( 0xf8d, PAL_NONE,  0x5b1, PAL_NONE,  0,  0, 16, 16,  15, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   222
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  15, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   223
	M( 0xf8d, PAL_NONE,  0x5b1, PAL_NONE,  0,  0, 16, 16,  15, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   224
	M( 0xf8d, PAL_NONE,  0x5b1, PAL_NONE,  0,  0, 16, 16,  15, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   225
	M( 0xf8d, PAL_NONE,  0x5b1, PAL_NONE,  0,  0, 16, 16,  15, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   226
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  15, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   227
	M( 0xf8d, PAL_NONE,  0x5b1, PAL_NONE,  0,  0, 16, 16,  15, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   228
	M( 0xf8d, PAL_NONE,  0x5b1, PAL_NONE,  0,  0, 16, 16,  15, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   229
	M( 0xf8d, PAL_NONE,  0x5b1, PAL_NONE,  0,  0, 16, 16,  15, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   230
	M( 0xf54, PAL_NONE,  0x5b2, PAL_NONE,  0,  0, 16, 16,   8, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   231
	M( 0xf54, PAL_NONE,  0x5b3, PAL_NONE,  0,  0, 16, 16,  42, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   232
	M( 0xf54, PAL_NONE,  0x5b4, PAL_NONE,  0,  0, 16, 16,  42, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   233
	M( 0x58c, PAL_NONE,  0x5b4, PAL_NONE,  0,  0, 16, 16,  42, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   234
	M( 0xf54, PAL_NONE,  0x5b2, PALETTE_TO_STRUCT_WHITE,  0,  0, 16, 16,   8, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   235
	M( 0xf54, PAL_NONE,  0x5b3, PALETTE_TO_STRUCT_WHITE,  0,  0, 16, 16,  42, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   236
	M( 0xf54, PAL_NONE,  0x5b4, PALETTE_TO_STRUCT_WHITE,  0,  0, 16, 16,  42, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   237
	M( 0x58c, PAL_NONE,  0x5b4, PALETTE_TO_STRUCT_WHITE,  0,  0, 16, 16,  42, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   238
	M( 0xf54, PAL_NONE,  0x5b2, PALETTE_TO_STRUCT_RED,  0,  0, 16, 16,   8, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   239
	M( 0xf54, PAL_NONE,  0x5b3, PALETTE_TO_STRUCT_RED,  0,  0, 16, 16,  42, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   240
	M( 0xf54, PAL_NONE,  0x5b4, PALETTE_TO_STRUCT_RED,  0,  0, 16, 16,  42, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   241
	M( 0x58c, PAL_NONE,  0x5b4, PALETTE_TO_STRUCT_RED,  0,  0, 16, 16,  42, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   242
	M( 0xf54, PAL_NONE,  0x5b2, PALETTE_TO_STRUCT_BROWN,  0,  0, 16, 16,   8, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   243
	M( 0xf54, PAL_NONE,  0x5b3, PALETTE_TO_STRUCT_BROWN,  0,  0, 16, 16,  42, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   244
	M( 0xf54, PAL_NONE,  0x5b4, PALETTE_TO_STRUCT_BROWN,  0,  0, 16, 16,  42, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   245
	M( 0x58c, PAL_NONE,  0x5b4, PALETTE_TO_STRUCT_BROWN,  0,  0, 16, 16,  42, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   246
	M( 0xf54, PAL_NONE,  0x5b5, PAL_NONE,  1,  3, 14, 11,   7, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   247
	M( 0xf54, PAL_NONE,  0x5b6, PAL_NONE,  1,  3, 14, 11,  53, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   248
	M( 0xf54, PAL_NONE,  0x5b7, PAL_NONE,  1,  3, 14, 11,  53, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   249
	M( 0x58c, PAL_NONE,  0x5b7, PAL_NONE,  1,  3, 14, 11,  53, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   250
	M( 0xf54, PAL_NONE,  0x5b5, PAL_NONE,  1,  3, 14, 11,   7, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   251
	M( 0xf54, PAL_NONE,  0x5b6, PAL_NONE,  1,  3, 14, 11,  53, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   252
	M( 0xf54, PAL_NONE,  0x5b7, PAL_NONE,  1,  3, 14, 11,  53, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   253
	M( 0x58c, PAL_NONE,  0x5b7, PAL_NONE,  1,  3, 14, 11,  53, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   254
	M( 0xf54, PAL_NONE,  0x5b5, PAL_NONE,  1,  3, 14, 11,   7, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   255
	M( 0xf54, PAL_NONE,  0x5b6, PAL_NONE,  1,  3, 14, 11,  53, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   256
	M( 0xf54, PAL_NONE,  0x5b7, PAL_NONE,  1,  3, 14, 11,  53, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   257
	M( 0x58c, PAL_NONE,  0x5b7, PAL_NONE,  1,  3, 14, 11,  53, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   258
	M( 0xf54, PAL_NONE,  0x5b5, PAL_NONE,  1,  3, 14, 11,   7, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   259
	M( 0xf54, PAL_NONE,  0x5b6, PAL_NONE,  1,  3, 14, 11,  53, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   260
	M( 0xf54, PAL_NONE,  0x5b7, PAL_NONE,  1,  3, 14, 11,  53, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   261
	M( 0x58c, PAL_NONE,  0x5b7, PAL_NONE,  1,  3, 14, 11,  53, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   262
	M( 0xf54, PAL_NONE,  0x5b8, PAL_NONE,  3,  1, 11, 14,   6, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   263
	M( 0xf54, PAL_NONE,  0x5b9, PAL_NONE,  3,  1, 11, 14,  28, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   264
	M( 0xf54, PAL_NONE,  0x5ba, PAL_NONE,  3,  1, 11, 14,  28, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   265
	M( 0x58c, PAL_NONE,  0x5ba, PAL_NONE,  3,  1, 11, 14,  28, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   266
	M( 0xf54, PAL_NONE,  0x5b8, PAL_NONE,  3,  1, 11, 14,   6, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   267
	M( 0xf54, PAL_NONE,  0x5b9, PAL_NONE,  3,  1, 11, 14,  28, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   268
	M( 0xf54, PAL_NONE,  0x5ba, PAL_NONE,  3,  1, 11, 14,  28, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   269
	M( 0x58c, PAL_NONE,  0x5ba, PAL_NONE,  3,  1, 11, 14,  28, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   270
	M( 0xf54, PAL_NONE,  0x5b8, PAL_NONE,  3,  1, 11, 14,   6, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   271
	M( 0xf54, PAL_NONE,  0x5b9, PAL_NONE,  3,  1, 11, 14,  28, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   272
	M( 0xf54, PAL_NONE,  0x5ba, PAL_NONE,  3,  1, 11, 14,  28, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   273
	M( 0x58c, PAL_NONE,  0x5ba, PAL_NONE,  3,  1, 11, 14,  28, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   274
	M( 0xf54, PAL_NONE,  0x5b8, PAL_NONE,  3,  1, 11, 14,   6, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   275
	M( 0xf54, PAL_NONE,  0x5b9, PAL_NONE,  3,  1, 11, 14,  28, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   276
	M( 0xf54, PAL_NONE,  0x5ba, PAL_NONE,  3,  1, 11, 14,  28, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   277
	M( 0x58c, PAL_NONE,  0x5ba, PAL_NONE,  3,  1, 11, 14,  28, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   278
	M( 0xf54, PAL_NONE,  0x5bb, PAL_NONE,  2,  0, 13, 16,   6, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   279
	M( 0xf54, PAL_NONE,  0x5bc, PAL_NONE,  2,  0, 13, 16,  45, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   280
	M( 0xf54, PAL_NONE,  0x5bd, PAL_NONE,  2,  0, 13, 16,  46, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   281
	M( 0x58c, PAL_NONE,  0x5bd, PAL_NONE,  2,  0, 13, 16,  46, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   282
	M( 0xf54, PAL_NONE,  0x5bb, PAL_NONE,  2,  0, 13, 16,   6, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   283
	M( 0xf54, PAL_NONE,  0x5bc, PAL_NONE,  2,  0, 13, 16,  45, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   284
	M( 0xf54, PAL_NONE,  0x5bd, PAL_NONE,  2,  0, 13, 16,  46, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   285
	M( 0x58c, PAL_NONE,  0x5bd, PAL_NONE,  2,  0, 13, 16,  46, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   286
	M( 0xf54, PAL_NONE,  0x5bb, PALETTE_TO_STRUCT_BLUE,  2,  0, 13, 16,   6, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   287
	M( 0xf54, PAL_NONE,  0x5bc, PALETTE_TO_STRUCT_BLUE,  2,  0, 13, 16,  45, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   288
	M( 0xf54, PAL_NONE,  0x5bd, PALETTE_TO_STRUCT_BLUE,  2,  0, 13, 16,  46, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   289
	M( 0x58c, PAL_NONE,  0x5bd, PALETTE_TO_STRUCT_BLUE,  2,  0, 13, 16,  46, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   290
	M( 0xf54, PAL_NONE,  0x5bb, PALETTE_TO_STRUCT_WHITE,  2,  0, 13, 16,   6, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   291
	M( 0xf54, PAL_NONE,  0x5bc, PALETTE_TO_STRUCT_WHITE,  2,  0, 13, 16,  45, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   292
	M( 0xf54, PAL_NONE,  0x5bd, PALETTE_TO_STRUCT_WHITE,  2,  0, 13, 16,  46, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   293
	M( 0x58c, PAL_NONE,  0x5bd, PALETTE_TO_STRUCT_WHITE,  2,  0, 13, 16,  46, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   294
	M( 0xf54, PAL_NONE,  0x5be, PALETTE_TO_RED,  2,  0, 13, 16,  13, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   295
	M( 0xf54, PAL_NONE,  0x5bf, PALETTE_TO_RED,  2,  0, 13, 16, 110, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   296
	M( 0xf54, PAL_NONE,  0x5c0, PALETTE_TO_RED,  2,  0, 13, 16, 110, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   297
	M( 0x58c, PAL_NONE,  0x5c0, PALETTE_TO_RED,  2,  0, 13, 16, 110, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   298
	M( 0xf54, PAL_NONE,  0x5be, PALETTE_TO_BLUE,  2,  0, 13, 16,  13, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   299
	M( 0xf54, PAL_NONE,  0x5bf, PALETTE_TO_BLUE,  2,  0, 13, 16, 110, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   300
	M( 0xf54, PAL_NONE,  0x5c0, PALETTE_TO_BLUE,  2,  0, 13, 16, 110, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   301
	M( 0x58c, PAL_NONE,  0x5c0, PALETTE_TO_BLUE,  2,  0, 13, 16, 110, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   302
	M( 0xf54, PAL_NONE,  0x5be, PALETTE_TO_ORANGE,  2,  0, 13, 16,  13, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   303
	M( 0xf54, PAL_NONE,  0x5bf, PALETTE_TO_ORANGE,  2,  0, 13, 16, 110, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   304
	M( 0xf54, PAL_NONE,  0x5c0, PALETTE_TO_ORANGE,  2,  0, 13, 16, 110, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   305
	M( 0x58c, PAL_NONE,  0x5c0, PALETTE_TO_ORANGE,  2,  0, 13, 16, 110, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   306
	M( 0xf54, PAL_NONE,  0x5be, PALETTE_TO_GREEN,  2,  0, 13, 16,  13, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   307
	M( 0xf54, PAL_NONE,  0x5bf, PALETTE_TO_GREEN,  2,  0, 13, 16, 110, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   308
	M( 0xf54, PAL_NONE,  0x5c0, PALETTE_TO_GREEN,  2,  0, 13, 16, 110, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   309
	M( 0x58c, PAL_NONE,  0x5c0, PALETTE_TO_GREEN,  2,  0, 13, 16, 110, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   310
	M( 0xf54, PAL_NONE,  0x5c1, PAL_NONE,  1,  2, 15, 12,   4, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   311
	M( 0xf54, PAL_NONE,  0x5c2, PAL_NONE,  1,  2, 15, 12,  24, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   312
	M( 0xf54, PAL_NONE,  0x5c3, PAL_NONE,  1,  2, 15, 12,  31, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   313
	M( 0x58c, PAL_NONE,  0x5c3, PAL_NONE,  1,  2, 15, 12,  31, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   314
	M( 0xf54, PAL_NONE,  0x5c1, PAL_NONE,  1,  2, 15, 12,   4, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   315
	M( 0xf54, PAL_NONE,  0x5c2, PAL_NONE,  1,  2, 15, 12,  24, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   316
	M( 0xf54, PAL_NONE,  0x5c3, PAL_NONE,  1,  2, 15, 12,  31, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   317
	M( 0x58c, PAL_NONE,  0x5c3, PAL_NONE,  1,  2, 15, 12,  31, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   318
	M( 0xf54, PAL_NONE,  0x5c1, PAL_NONE,  1,  2, 15, 12,   4, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   319
	M( 0xf54, PAL_NONE,  0x5c2, PAL_NONE,  1,  2, 15, 12,  24, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   320
	M( 0xf54, PAL_NONE,  0x5c3, PAL_NONE,  1,  2, 15, 12,  31, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   321
	M( 0x58c, PAL_NONE,  0x5c3, PAL_NONE,  1,  2, 15, 12,  31, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   322
	M( 0xf54, PAL_NONE,  0x5c1, PAL_NONE,  1,  2, 15, 12,   4, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   323
	M( 0xf54, PAL_NONE,  0x5c2, PAL_NONE,  1,  2, 15, 12,  24, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   324
	M( 0xf54, PAL_NONE,  0x5c3, PAL_NONE,  1,  2, 15, 12,  31, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   325
	M( 0x58c, PAL_NONE,  0x5c3, PAL_NONE,  1,  2, 15, 12,  31, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   326
	M( 0xf54, PAL_NONE,  0x5c4, PAL_NONE,  1,  0, 14, 15,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   327
	M( 0xf54, PAL_NONE,  0x5c5, PAL_NONE,  1,  0, 14, 15,  42, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   328
	M( 0xf54, PAL_NONE,  0x5c6, PAL_NONE,  1,  0, 14, 15,  42, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   329
	M( 0x58c, PAL_NONE,  0x5c6, PAL_NONE,  1,  0, 14, 15,  42, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   330
	M( 0xf54, PAL_NONE,  0x5c4, PAL_NONE,  1,  0, 14, 15,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   331
	M( 0xf54, PAL_NONE,  0x5c5, PAL_NONE,  1,  0, 14, 15,  42, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   332
	M( 0xf54, PAL_NONE,  0x5c6, PAL_NONE,  1,  0, 14, 15,  42, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   333
	M( 0x58c, PAL_NONE,  0x5c6, PAL_NONE,  1,  0, 14, 15,  42, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   334
	M( 0xf54, PAL_NONE,  0x5c4, PAL_NONE,  1,  0, 14, 15,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   335
	M( 0xf54, PAL_NONE,  0x5c5, PAL_NONE,  1,  0, 14, 15,  42, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   336
	M( 0xf54, PAL_NONE,  0x5c6, PAL_NONE,  1,  0, 14, 15,  42, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   337
	M( 0x58c, PAL_NONE,  0x5c6, PAL_NONE,  1,  0, 14, 15,  42, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   338
	M( 0xf54, PAL_NONE,  0x5c4, PAL_NONE,  1,  0, 14, 15,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   339
	M( 0xf54, PAL_NONE,  0x5c5, PAL_NONE,  1,  0, 14, 15,  42, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   340
	M( 0xf54, PAL_NONE,  0x5c6, PAL_NONE,  1,  0, 14, 15,  42, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   341
	M( 0x58c, PAL_NONE,  0x5c6, PAL_NONE,  1,  0, 14, 15,  42, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   342
	M( 0x5c7, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   343
	M( 0x5c7, PAL_NONE,  0x5cb, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   344
	M( 0x5c7, PAL_NONE,  0x5cb, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   345
	M( 0x5c7, PAL_NONE,  0x5cb, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   346
	M( 0x5c7, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   347
	M( 0x5c7, PAL_NONE,  0x5cb, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   348
	M( 0x5c7, PAL_NONE,  0x5cb, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   349
	M( 0x5c7, PAL_NONE,  0x5cb, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   350
	M( 0x5c7, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   351
	M( 0x5c7, PAL_NONE,  0x5cb, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   352
	M( 0x5c7, PAL_NONE,  0x5cb, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   353
	M( 0x5c7, PAL_NONE,  0x5cb, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   354
	M( 0x5c7, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   355
	M( 0x5c7, PAL_NONE,  0x5cb, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   356
	M( 0x5c7, PAL_NONE,  0x5cb, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   357
	M( 0x5c7, PAL_NONE,  0x5cb, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   358
	M( 0x5c8, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   359
	M( 0x5c8, PAL_NONE,  0x5cc, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   360
	M( 0x5c8, PAL_NONE,  0x5cc, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   361
	M( 0x5c8, PAL_NONE,  0x5cc, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   362
	M( 0x5c8, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   363
	M( 0x5c8, PAL_NONE,  0x5cc, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   364
	M( 0x5c8, PAL_NONE,  0x5cc, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   365
	M( 0x5c8, PAL_NONE,  0x5cc, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   366
	M( 0x5c8, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   367
	M( 0x5c8, PAL_NONE,  0x5cc, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   368
	M( 0x5c8, PAL_NONE,  0x5cc, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   369
	M( 0x5c8, PAL_NONE,  0x5cc, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   370
	M( 0x5c8, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   371
	M( 0x5c8, PAL_NONE,  0x5cc, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   372
	M( 0x5c8, PAL_NONE,  0x5cc, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   373
	M( 0x5c8, PAL_NONE,  0x5cc, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   374
	M( 0x5c9, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   375
	M( 0x5c9, PAL_NONE,  0x5cd, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   376
	M( 0x5c9, PAL_NONE,  0x5cd, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   377
	M( 0x5c9, PAL_NONE,  0x5cd, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   378
	M( 0x5c9, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   379
	M( 0x5c9, PAL_NONE,  0x5cd, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   380
	M( 0x5c9, PAL_NONE,  0x5cd, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   381
	M( 0x5c9, PAL_NONE,  0x5cd, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   382
	M( 0x5c9, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   383
	M( 0x5c9, PAL_NONE,  0x5cd, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   384
	M( 0x5c9, PAL_NONE,  0x5cd, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   385
	M( 0x5c9, PAL_NONE,  0x5cd, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   386
	M( 0x5c9, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   387
	M( 0x5c9, PAL_NONE,  0x5cd, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   388
	M( 0x5c9, PAL_NONE,  0x5cd, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   389
	M( 0x5c9, PAL_NONE,  0x5cd, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   390
	M( 0x5ca, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   391
	M( 0x5ca, PAL_NONE,  0x5ce, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   392
	M( 0x5ca, PAL_NONE,  0x5ce, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   393
	M( 0x5ca, PAL_NONE,  0x5ce, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   394
	M( 0x5ca, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   395
	M( 0x5ca, PAL_NONE,  0x5ce, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   396
	M( 0x5ca, PAL_NONE,  0x5ce, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   397
	M( 0x5ca, PAL_NONE,  0x5ce, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   398
	M( 0x5ca, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   399
	M( 0x5ca, PAL_NONE,  0x5ce, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   400
	M( 0x5ca, PAL_NONE,  0x5ce, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   401
	M( 0x5ca, PAL_NONE,  0x5ce, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   402
	M( 0x5ca, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   403
	M( 0x5ca, PAL_NONE,  0x5ce, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   404
	M( 0x5ca, PAL_NONE,  0x5ce, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   405
	M( 0x5ca, PAL_NONE,  0x5ce, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   406
	M( 0xf54, PAL_NONE,  0x5d4, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   407
	M( 0x5d3, PAL_NONE,  0x5d4, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   408
	M( 0x5d3, PAL_NONE,  0x5d4, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   409
	M( 0x5d3, PAL_NONE,  0x5d4, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   410
	M( 0xf54, PAL_NONE,  0x5d6, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   411
	M( 0x5d5, PAL_NONE,  0x5d6, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   412
	M( 0x5d5, PAL_NONE,  0x5d6, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   413
	M( 0x5d5, PAL_NONE,  0x5d6, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   414
	M( 0xf54, PAL_NONE,  0x5d0, PAL_NONE,  0,  0, 16, 16,  21, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   415
	M( 0x5cf, PAL_NONE,  0x5d0, PAL_NONE,  0,  0, 16, 16,  21, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   416
	M( 0x5cf, PAL_NONE,  0x5d0, PAL_NONE,  0,  0, 16, 16,  21, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   417
	M( 0x5cf, PAL_NONE,  0x5d0, PAL_NONE,  0,  0, 16, 16,  21, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   418
	M( 0xf54, PAL_NONE,  0x5d2, PAL_NONE,  0,  0, 16, 16,  11, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   419
	M( 0x5d1, PAL_NONE,  0x5d2, PAL_NONE,  0,  0, 16, 16,  11, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   420
	M( 0x5d1, PAL_NONE,  0x5d2, PAL_NONE,  0,  0, 16, 16,  11, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   421
	M( 0x5d1, PAL_NONE,  0x5d2, PAL_NONE,  0,  0, 16, 16,  11, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   422
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   423
	M( 0x5d7, PAL_NONE,  0x5d8, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   424
	M( 0x5d7, PAL_NONE,  0x5d8, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   425
	M( 0x5d7, PAL_NONE,  0x5d8, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   426
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   427
	M( 0x5d7, PAL_NONE,  0x5d8, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   428
	M( 0x5d7, PAL_NONE,  0x5d8, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   429
	M( 0x5d7, PAL_NONE,  0x5d8, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   430
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   431
	M( 0x5d7, PAL_NONE,  0x5d8, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   432
	M( 0x5d7, PAL_NONE,  0x5d8, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   433
	M( 0x5d7, PAL_NONE,  0x5d8, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   434
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   435
	M( 0x5d7, PAL_NONE,  0x5d8, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   436
	M( 0x5d7, PAL_NONE,  0x5d8, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   437
	M( 0x5d7, PAL_NONE,  0x5d8, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   438
	M( 0x5d9, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   439
	M( 0x5da, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   440
	M( 0x5db, PAL_NONE,  0x5dc, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   441
	M( 0x5db, PAL_NONE,  0x5dc, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   442
	M( 0x622, PAL_NONE,  0x623, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   443
	M( 0x624, PAL_NONE,  0x625, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   444
	M( 0x626, PAL_NONE,  0x627, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   445
	M( 0x626, PAL_NONE,  0x627, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   446
	M( 0x5e3, PAL_NONE,  0x5e4, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   447
	M( 0x5e5, PAL_NONE,  0x5e6, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   448
	M( 0x5e7, PAL_NONE,  0x5e8, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   449
	M( 0x5e7, PAL_NONE,  0x5e8, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   450
	M( 0x5e9, PAL_NONE,  0x5ea, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   451
	M( 0x5eb, PAL_NONE,  0x5ec, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   452
	M( 0x5ed, PAL_NONE,  0x5ee, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   453
	M( 0x5ed, PAL_NONE,  0x5ee, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   454
	M( 0x5ef, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   455
	M( 0x5f0, PAL_NONE,  0x5f1, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   456
	M( 0x5f2, PAL_NONE,  0x5f3, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   457
	M( 0x5f2, PAL_NONE,  0x5f3, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   458
	M( 0x5ef, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   459
	M( 0x5f0, PAL_NONE,  0x5f1, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   460
	M( 0x5f2, PAL_NONE,  0x5f3, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   461
	M( 0x5f2, PAL_NONE,  0x5f3, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   462
	M( 0x5f4, PAL_NONE,  0x5f5, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   463
	M( 0x5f6, PAL_NONE,  0x5f7, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   464
	M( 0x5f8, PAL_NONE,  0x5f9, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   465
	M( 0x5f8, PAL_NONE,  0x5f9, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   466
	M( 0x5f4, PAL_NONE,  0x5f5, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   467
	M( 0x5f6, PAL_NONE,  0x5f7, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   468
	M( 0x5f8, PAL_NONE,  0x5f9, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   469
	M( 0x5f8, PAL_NONE,  0x5f9, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   470
	M( 0x5fa, PAL_NONE,  0x5fb, PAL_NONE,  0,  0, 16, 16,  85, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   471
	M( 0x5fc, PAL_NONE,  0x5fd, PAL_NONE,  0,  0, 16, 16,  85, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   472
	M( 0x5fe, PAL_NONE,  0x5ff, PAL_NONE,  0,  0, 16, 16,  85, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   473
	M( 0x5fe, PAL_NONE,  0x5ff, PAL_NONE,  0,  0, 16, 16,  85, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   474
	M( 0x5fa, PAL_NONE,  0x5fb, PAL_NONE,  0,  0, 16, 16,  85, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   475
	M( 0x5fc, PAL_NONE,  0x5fd, PAL_NONE,  0,  0, 16, 16,  85, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   476
	M( 0x5fe, PAL_NONE,  0x5ff, PAL_NONE,  0,  0, 16, 16,  85, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   477
	M( 0x5fe, PAL_NONE,  0x5ff, PAL_NONE,  0,  0, 16, 16,  85, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   478
	M( 0x60a, PAL_NONE,  0x60b, PAL_NONE,  0,  0, 16, 16,  95, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   479
	M( 0x60c, PAL_NONE,  0x60d, PAL_NONE,  0,  0, 16, 16,  95, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   480
	M( 0x60e, PAL_NONE,  0x60f, PAL_NONE,  0,  0, 16, 16,  95, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   481
	M( 0x60e, PAL_NONE,  0x60f, PAL_NONE,  0,  0, 16, 16,  95, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   482
	M( 0x60a, PAL_NONE,  0x60b, PAL_NONE,  0,  0, 16, 16,  95, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   483
	M( 0x60c, PAL_NONE,  0x60d, PAL_NONE,  0,  0, 16, 16,  95, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   484
	M( 0x60e, PAL_NONE,  0x60f, PAL_NONE,  0,  0, 16, 16,  95, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   485
	M( 0x60e, PAL_NONE,  0x60f, PAL_NONE,  0,  0, 16, 16,  95, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   486
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   487
	M( 0x600, PAL_NONE,  0x601, PAL_NONE,  0,  0, 16, 16,  55, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   488
	M( 0x600, PAL_NONE,  0x601, PAL_NONE,  0,  0, 16, 16,  55, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   489
	M( 0x600, PAL_NONE,  0x601, PAL_NONE,  0,  0, 16, 16,  55, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   490
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   491
	M( 0x600, PALETTE_TO_STRUCT_WHITE,  0x601, PALETTE_TO_STRUCT_WHITE,  0,  0, 16, 16,  55, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   492
	M( 0x600, PALETTE_TO_STRUCT_WHITE,  0x601, PALETTE_TO_STRUCT_WHITE,  0,  0, 16, 16,  55, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   493
	M( 0x600, PALETTE_TO_STRUCT_WHITE,  0x601, PALETTE_TO_STRUCT_WHITE,  0,  0, 16, 16,  55, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   494
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   495
	M( 0x602, PAL_NONE,  0x603, PAL_NONE,  0,  0, 16, 16,  42, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   496
	M( 0x602, PAL_NONE,  0x603, PAL_NONE,  0,  0, 16, 16,  42, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   497
	M( 0x602, PAL_NONE,  0x603, PAL_NONE,  0,  0, 16, 16,  42, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   498
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   499
	M( 0x602, PALETTE_TO_STRUCT_CONCRETE,  0x603, PALETTE_TO_STRUCT_CONCRETE,  0,  0, 16, 16,  42, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   500
	M( 0x602, PALETTE_TO_STRUCT_CONCRETE,  0x603, PALETTE_TO_STRUCT_CONCRETE,  0,  0, 16, 16,  42, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   501
	M( 0x602, PALETTE_TO_STRUCT_CONCRETE,  0x603, PALETTE_TO_STRUCT_CONCRETE,  0,  0, 16, 16,  42, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   502
	M( 0x604, PAL_NONE,  0x605, PAL_NONE,  0,  0, 16, 16,  88, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   503
	M( 0x606, PAL_NONE,  0x607, PAL_NONE,  0,  0, 16, 16,  88, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   504
	M( 0x608, PAL_NONE,  0x609, PAL_NONE,  0,  0, 16, 16,  88, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   505
	M( 0x608, PAL_NONE,  0x609, PAL_NONE,  0,  0, 16, 16,  88, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   506
	M( 0x604, PAL_NONE,  0x605, PAL_NONE,  0,  0, 16, 16,  88, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   507
	M( 0x606, PAL_NONE,  0x607, PAL_NONE,  0,  0, 16, 16,  88, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   508
	M( 0x608, PAL_NONE,  0x609, PAL_NONE,  0,  0, 16, 16,  88, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   509
	M( 0x608, PAL_NONE,  0x609, PAL_NONE,  0,  0, 16, 16,  88, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   510
	M( 0x604, PAL_NONE,  0x605, PAL_NONE,  0,  0, 16, 16,  88, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   511
	M( 0x606, PAL_NONE,  0x607, PAL_NONE,  0,  0, 16, 16,  88, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   512
	M( 0x608, PAL_NONE,  0x609, PAL_NONE,  0,  0, 16, 16,  88, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   513
	M( 0x608, PAL_NONE,  0x609, PAL_NONE,  0,  0, 16, 16,  88, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   514
	M( 0x604, PAL_NONE,  0x605, PAL_NONE,  0,  0, 16, 16,  88, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   515
	M( 0x606, PAL_NONE,  0x607, PAL_NONE,  0,  0, 16, 16,  88, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   516
	M( 0x608, PAL_NONE,  0x609, PAL_NONE,  0,  0, 16, 16,  88, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   517
	M( 0x608, PAL_NONE,  0x609, PAL_NONE,  0,  0, 16, 16,  88, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   518
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   519
	M( 0x610, PAL_NONE,  0x611, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   520
	M( 0x610, PAL_NONE,  0x611, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   521
	M( 0x610, PAL_NONE,  0x611, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   522
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   523
	M( 0x610, PAL_NONE,  0x611, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   524
	M( 0x610, PAL_NONE,  0x611, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   525
	M( 0x610, PAL_NONE,  0x611, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   526
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   527
	M( 0x610, PAL_NONE,  0x611, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   528
	M( 0x610, PAL_NONE,  0x611, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   529
	M( 0x610, PAL_NONE,  0x611, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   530
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   531
	M( 0x610, PAL_NONE,  0x611, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   532
	M( 0x610, PAL_NONE,  0x611, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   533
	M( 0x610, PAL_NONE,  0x611, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   534
	M( 0x612, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   535
	M( 0x612, PAL_NONE,  0x616, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   536
	M( 0x612, PAL_NONE,  0x616, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   537
	M( 0x612, PAL_NONE,  0x616, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   538
	M( 0x612, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   539
	M( 0x612, PAL_NONE,  0x616, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   540
	M( 0x612, PAL_NONE,  0x616, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   541
	M( 0x612, PAL_NONE,  0x616, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   542
	M( 0x612, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   543
	M( 0x612, PAL_NONE,  0x616, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   544
	M( 0x612, PAL_NONE,  0x616, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   545
	M( 0x612, PAL_NONE,  0x616, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   546
	M( 0x612, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   547
	M( 0x612, PAL_NONE,  0x616, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   548
	M( 0x612, PAL_NONE,  0x616, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   549
	M( 0x612, PAL_NONE,  0x616, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   550
	M( 0x613, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   551
	M( 0x613, PAL_NONE,  0x617, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   552
	M( 0x613, PAL_NONE,  0x617, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   553
	M( 0x613, PAL_NONE,  0x617, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   554
	M( 0x613, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   555
	M( 0x613, PAL_NONE,  0x617, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   556
	M( 0x613, PAL_NONE,  0x617, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   557
	M( 0x613, PAL_NONE,  0x617, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   558
	M( 0x613, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   559
	M( 0x613, PAL_NONE,  0x617, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   560
	M( 0x613, PAL_NONE,  0x617, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   561
	M( 0x613, PAL_NONE,  0x617, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   562
	M( 0x613, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   563
	M( 0x613, PAL_NONE,  0x617, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   564
	M( 0x613, PAL_NONE,  0x617, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   565
	M( 0x613, PAL_NONE,  0x617, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   566
	M( 0x614, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   567
	M( 0x614, PAL_NONE,  0x618, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   568
	M( 0x614, PAL_NONE,  0x618, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   569
	M( 0x614, PAL_NONE,  0x618, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   570
	M( 0x614, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   571
	M( 0x614, PAL_NONE,  0x618, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   572
	M( 0x614, PAL_NONE,  0x618, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   573
	M( 0x614, PAL_NONE,  0x618, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   574
	M( 0x614, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   575
	M( 0x614, PAL_NONE,  0x618, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   576
	M( 0x614, PAL_NONE,  0x618, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   577
	M( 0x614, PAL_NONE,  0x618, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   578
	M( 0x614, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   579
	M( 0x614, PAL_NONE,  0x618, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   580
	M( 0x614, PAL_NONE,  0x618, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   581
	M( 0x614, PAL_NONE,  0x618, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   582
	M( 0x615, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   583
	M( 0x615, PAL_NONE,  0x619, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   584
	M( 0x615, PAL_NONE,  0x619, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   585
	M( 0x615, PAL_NONE,  0x619, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   586
	M( 0x615, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   587
	M( 0x615, PAL_NONE,  0x619, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   588
	M( 0x615, PAL_NONE,  0x619, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   589
	M( 0x615, PAL_NONE,  0x619, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   590
	M( 0x615, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   591
	M( 0x615, PAL_NONE,  0x619, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   592
	M( 0x615, PAL_NONE,  0x619, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   593
	M( 0x615, PAL_NONE,  0x619, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   594
	M( 0x615, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   595
	M( 0x615, PAL_NONE,  0x619, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   596
	M( 0x615, PAL_NONE,  0x619, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   597
	M( 0x615, PAL_NONE,  0x619, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   598
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   599
	M( 0x61a, PAL_NONE,  0x61b, PAL_NONE,  0,  0, 16, 16, 100, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   600
	M( 0x61a, PAL_NONE,  0x61b, PAL_NONE,  0,  0, 16, 16, 100, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   601
	M( 0x61c, PAL_NONE,  0x61d, PAL_NONE,  0,  0, 16, 16, 100, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   602
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   603
	M( 0x61a, PAL_NONE,  0x61b, PAL_NONE,  0,  0, 16, 16, 100, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   604
	M( 0x61a, PAL_NONE,  0x61b, PAL_NONE,  0,  0, 16, 16, 100, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   605
	M( 0x61c, PAL_NONE,  0x61d, PAL_NONE,  0,  0, 16, 16, 100, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   606
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   607
	M( 0x61a, PAL_NONE,  0x61b, PAL_NONE,  0,  0, 16, 16, 100, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   608
	M( 0x61a, PAL_NONE,  0x61b, PAL_NONE,  0,  0, 16, 16, 100, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   609
	M( 0x61c, PAL_NONE,  0x61d, PAL_NONE,  0,  0, 16, 16, 100, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   610
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   611
	M( 0x61a, PAL_NONE,  0x61b, PAL_NONE,  0,  0, 16, 16, 100, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   612
	M( 0x61a, PAL_NONE,  0x61b, PAL_NONE,  0,  0, 16, 16, 100, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   613
	M( 0x61c, PAL_NONE,  0x61d, PAL_NONE,  0,  0, 16, 16, 100, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   614
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   615
	M( 0x61e, PAL_NONE,  0x61f, PAL_NONE,  0,  0, 16, 16,  25, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   616
	M( 0x61e, PAL_NONE,  0x61f, PAL_NONE,  0,  0, 16, 16,  25, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   617
	M( 0x61e, PAL_NONE,  0x61f, PAL_NONE,  0,  0, 16, 16,  25, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   618
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   619
	M( 0x61e, PALETTE_TO_STRUCT_WHITE,  0x61f, PALETTE_TO_STRUCT_WHITE,  0,  0, 16, 16,  25, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   620
	M( 0x61e, PALETTE_TO_STRUCT_WHITE,  0x61f, PALETTE_TO_STRUCT_WHITE,  0,  0, 16, 16,  25, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   621
	M( 0x61e, PALETTE_TO_STRUCT_WHITE,  0x61f, PALETTE_TO_STRUCT_WHITE,  0,  0, 16, 16,  25, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   622
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   623
	M( 0x620, PAL_NONE,  0x621, PAL_NONE,  0,  0, 16, 16,  25, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   624
	M( 0x620, PAL_NONE,  0x621, PAL_NONE,  0,  0, 16, 16,  25, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   625
	M( 0x620, PAL_NONE,  0x621, PAL_NONE,  0,  0, 16, 16,  25, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   626
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   627
	M( 0x620, PALETTE_TO_CREAM,  0x621, PALETTE_TO_CREAM,  0,  0, 16, 16,  25, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   628
	M( 0x620, PALETTE_TO_CREAM,  0x621, PALETTE_TO_CREAM,  0,  0, 16, 16,  25, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   629
	M( 0x620, PALETTE_TO_CREAM,  0x621, PALETTE_TO_CREAM,  0,  0, 16, 16,  25, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   630
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   631
	M(0x11da, PAL_NONE, 0x11db, PAL_NONE,  0,  0, 16, 16,  25, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   632
	M(0x11da, PAL_NONE, 0x11db, PAL_NONE,  0,  0, 16, 16,  25, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   633
	M(0x11da, PAL_NONE, 0x11db, PAL_NONE,  0,  0, 16, 16,  25, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   634
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   635
	M(0x11da, PALETTE_TO_STRUCT_WHITE, 0x11db, PALETTE_TO_STRUCT_WHITE,  0,  0, 16, 16,  25, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   636
	M(0x11da, PALETTE_TO_STRUCT_WHITE, 0x11db, PALETTE_TO_STRUCT_WHITE,  0,  0, 16, 16,  25, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   637
	M(0x11da, PALETTE_TO_STRUCT_WHITE, 0x11db, PALETTE_TO_STRUCT_WHITE,  0,  0, 16, 16,  25, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   638
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   639
	M(0x11dc, PAL_NONE, 0x11dd, PAL_NONE,  0,  0, 16, 16,  25, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   640
	M(0x11dc, PAL_NONE, 0x11dd, PAL_NONE,  0,  0, 16, 16,  25, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   641
	M(0x11dc, PAL_NONE, 0x11dd, PAL_NONE,  0,  0, 16, 16,  25, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   642
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   643
	M(0x11dc, PALETTE_TO_CREAM, 0x11dd, PALETTE_TO_CREAM,  0,  0, 16, 16,  25, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   644
	M(0x11dc, PALETTE_TO_CREAM, 0x11dd, PALETTE_TO_CREAM,  0,  0, 16, 16,  25, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   645
	M(0x11dc, PALETTE_TO_CREAM, 0x11dd, PALETTE_TO_CREAM,  0,  0, 16, 16,  25, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   646
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   647
	M(0x1134, PAL_NONE, 0x1135, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   648
	M(0x1134, PAL_NONE, 0x1135, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   649
	M(0x1134, PAL_NONE, 0x1135, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   650
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   651
	M(0x1134, PAL_NONE, 0x1135, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   652
	M(0x1134, PAL_NONE, 0x1135, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   653
	M(0x1134, PAL_NONE, 0x1135, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   654
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   655
	M(0x1134, PAL_NONE, 0x1135, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   656
	M(0x1134, PAL_NONE, 0x1135, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   657
	M(0x1134, PAL_NONE, 0x1135, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   658
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  22, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   659
	M(0x1134, PAL_NONE, 0x1135, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   660
	M(0x1134, PAL_NONE, 0x1135, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   661
	M(0x1134, PAL_NONE, 0x1135, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   662
	M(0x1136, PAL_NONE, 0x1137, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   663
	M(0x1136, PAL_NONE, 0x1137, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   664
	M(0x113b, PAL_NONE, 0x113c, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   665
	M(0x113b, PAL_NONE, 0x113c, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   666
	M(0x1136, PAL_NONE, 0x1137, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   667
	M(0x1136, PAL_NONE, 0x1137, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   668
	M(0x113b, PAL_NONE, 0x113c, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   669
	M(0x113b, PAL_NONE, 0x113c, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   670
	M(0x1136, PAL_NONE, 0x1137, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   671
	M(0x1136, PAL_NONE, 0x1137, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   672
	M(0x113b, PAL_NONE, 0x113c, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   673
	M(0x113b, PAL_NONE, 0x113c, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   674
	M(0x1136, PAL_NONE, 0x1137, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   675
	M(0x1136, PAL_NONE, 0x1137, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   676
	M(0x113b, PAL_NONE, 0x113c, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   677
	M(0x113b, PAL_NONE, 0x113c, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   678
	M(0x1138, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   679
	M(0x1138, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   680
	M(0x113d, PAL_NONE, 0x113e, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   681
	M(0x113d, PAL_NONE, 0x113e, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   682
	M(0x1138, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   683
	M(0x1138, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   684
	M(0x113d, PAL_NONE, 0x113e, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   685
	M(0x113d, PAL_NONE, 0x113e, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   686
	M(0x1138, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   687
	M(0x1138, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   688
	M(0x113d, PAL_NONE, 0x113e, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   689
	M(0x113d, PAL_NONE, 0x113e, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   690
	M(0x1138, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   691
	M(0x1138, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   692
	M(0x113d, PAL_NONE, 0x113e, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   693
	M(0x113d, PAL_NONE, 0x113e, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   694
	M(0x1139, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   695
	M(0x1139, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   696
	M(0x113f, PAL_NONE, 0x1140, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   697
	M(0x113f, PAL_NONE, 0x1140, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   698
	M(0x1139, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   699
	M(0x1139, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   700
	M(0x113f, PAL_NONE, 0x1140, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   701
	M(0x113f, PAL_NONE, 0x1140, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   702
	M(0x1139, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   703
	M(0x1139, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   704
	M(0x113f, PAL_NONE, 0x1140, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   705
	M(0x113f, PAL_NONE, 0x1140, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   706
	M(0x1139, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   707
	M(0x1139, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   708
	M(0x113f, PAL_NONE, 0x1140, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   709
	M(0x113f, PAL_NONE, 0x1140, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   710
	M(0x113a, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   711
	M(0x113a, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   712
	M(0x1141, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   713
	M(0x1141, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   714
	M(0x113a, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   715
	M(0x113a, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   716
	M(0x1141, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   717
	M(0x1141, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   718
	M(0x113a, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   719
	M(0x113a, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   720
	M(0x1141, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   721
	M(0x1141, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   722
	M(0x113a, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   723
	M(0x113a, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   724
	M(0x1141, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   725
	M(0x1141, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   726
	M( 0xf54, PAL_NONE, 0x1144, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   727
	M( 0xf54, PAL_NONE, 0x1145, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   728
	M( 0xf54, PAL_NONE, 0x1146, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   729
	M(0x1142, PAL_NONE, 0x1146, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   730
	M( 0xf54, PAL_NONE, 0x1144, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   731
	M( 0xf54, PAL_NONE, 0x1145, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   732
	M( 0xf54, PAL_NONE, 0x1146, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   733
	M(0x1142, PAL_NONE, 0x1146, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   734
	M( 0xf54, PAL_NONE, 0x1144, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   735
	M( 0xf54, PAL_NONE, 0x1145, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   736
	M( 0xf54, PAL_NONE, 0x1146, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   737
	M(0x1142, PAL_NONE, 0x1146, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   738
	M( 0xf54, PAL_NONE, 0x1144, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   739
	M( 0xf54, PAL_NONE, 0x1145, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   740
	M( 0xf54, PAL_NONE, 0x1146, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   741
	M(0x1142, PAL_NONE, 0x1146, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   742
	M( 0xf54, PAL_NONE, 0x1144, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   743
	M( 0xf54, PAL_NONE, 0x1145, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   744
	M( 0xf54, PAL_NONE, 0x1146, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   745
	M(0x1143, PAL_NONE, 0x1147, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   746
	M( 0xf54, PAL_NONE, 0x1144, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   747
	M( 0xf54, PAL_NONE, 0x1145, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   748
	M( 0xf54, PAL_NONE, 0x1146, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   749
	M(0x1143, PAL_NONE, 0x1147, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   750
	M( 0xf54, PAL_NONE, 0x1144, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   751
	M( 0xf54, PAL_NONE, 0x1145, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   752
	M( 0xf54, PAL_NONE, 0x1146, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   753
	M(0x1143, PAL_NONE, 0x1147, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   754
	M( 0xf54, PAL_NONE, 0x1144, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   755
	M( 0xf54, PAL_NONE, 0x1145, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   756
	M( 0xf54, PAL_NONE, 0x1146, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   757
	M(0x1143, PAL_NONE, 0x1147, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   758
	M( 0xf54, PAL_NONE, 0x1148, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   759
	M( 0xf54, PAL_NONE, 0x1149, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   760
	M( 0xf54, PAL_NONE, 0x114a, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   761
	M(0x1142, PAL_NONE, 0x114a, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   762
	M( 0xf54, PAL_NONE, 0x1148, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   763
	M( 0xf54, PAL_NONE, 0x1149, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   764
	M( 0xf54, PAL_NONE, 0x114a, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   765
	M(0x1142, PAL_NONE, 0x114a, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   766
	M( 0xf54, PAL_NONE, 0x1148, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   767
	M( 0xf54, PAL_NONE, 0x1149, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   768
	M( 0xf54, PAL_NONE, 0x114a, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   769
	M(0x1142, PAL_NONE, 0x114a, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   770
	M( 0xf54, PAL_NONE, 0x1148, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   771
	M( 0xf54, PAL_NONE, 0x1149, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   772
	M( 0xf54, PAL_NONE, 0x114a, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   773
	M(0x1142, PAL_NONE, 0x114a, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   774
	M( 0xf54, PAL_NONE, 0x1148, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   775
	M( 0xf54, PAL_NONE, 0x1149, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   776
	M( 0xf54, PAL_NONE, 0x114a, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   777
	M(0x1143, PAL_NONE, 0x114b, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   778
	M( 0xf54, PAL_NONE, 0x1148, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   779
	M( 0xf54, PAL_NONE, 0x1149, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   780
	M( 0xf54, PAL_NONE, 0x114a, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   781
	M(0x1143, PAL_NONE, 0x114b, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   782
	M( 0xf54, PAL_NONE, 0x1148, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   783
	M( 0xf54, PAL_NONE, 0x1149, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   784
	M( 0xf54, PAL_NONE, 0x114a, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   785
	M(0x1143, PAL_NONE, 0x114b, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   786
	M( 0xf54, PAL_NONE, 0x1148, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   787
	M( 0xf54, PAL_NONE, 0x1149, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   788
	M( 0xf54, PAL_NONE, 0x114a, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   789
	M(0x1143, PAL_NONE, 0x114b, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   790
	M( 0xf54, PAL_NONE, 0x114e, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   791
	M( 0xf54, PAL_NONE, 0x114f, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   792
	M( 0xf54, PAL_NONE, 0x1150, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   793
	M(0x114c, PAL_NONE, 0x1150, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   794
	M( 0xf54, PAL_NONE, 0x114e, PALETTE_TO_PINK,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   795
	M( 0xf54, PAL_NONE, 0x114f, PALETTE_TO_PINK,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   796
	M( 0xf54, PAL_NONE, 0x1150, PALETTE_TO_PINK,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   797
	M(0x114c, PAL_NONE, 0x1150, PALETTE_TO_PINK,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   798
	M( 0xf54, PAL_NONE, 0x114e, PALETTE_TO_CREAM,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   799
	M( 0xf54, PAL_NONE, 0x114f, PALETTE_TO_CREAM,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   800
	M( 0xf54, PAL_NONE, 0x1150, PALETTE_TO_CREAM,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   801
	M(0x114c, PAL_NONE, 0x1150, PALETTE_TO_CREAM,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   802
	M( 0xf54, PAL_NONE, 0x114e, PALETTE_TO_DARK_GREEN,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   803
	M( 0xf54, PAL_NONE, 0x114f, PALETTE_TO_DARK_GREEN,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   804
	M( 0xf54, PAL_NONE, 0x1150, PALETTE_TO_DARK_GREEN,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   805
	M(0x114c, PAL_NONE, 0x1150, PALETTE_TO_DARK_GREEN,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   806
	M( 0xf54, PAL_NONE, 0x114e, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   807
	M( 0xf54, PAL_NONE, 0x114f, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   808
	M( 0xf54, PAL_NONE, 0x1150, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   809
	M(0x114d, PAL_NONE, 0x1151, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   810
	M( 0xf54, PAL_NONE, 0x114e, PALETTE_TO_PINK,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   811
	M( 0xf54, PAL_NONE, 0x114f, PALETTE_TO_PINK,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   812
	M( 0xf54, PAL_NONE, 0x1150, PALETTE_TO_PINK,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   813
	M(0x114d, PAL_NONE, 0x1151, PALETTE_TO_PINK,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   814
	M( 0xf54, PAL_NONE, 0x114e, PALETTE_TO_CREAM,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   815
	M( 0xf54, PAL_NONE, 0x114f, PALETTE_TO_CREAM,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   816
	M( 0xf54, PAL_NONE, 0x1150, PALETTE_TO_CREAM,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   817
	M(0x114d, PAL_NONE, 0x1151, PALETTE_TO_CREAM,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   818
	M( 0xf54, PAL_NONE, 0x114e, PALETTE_TO_DARK_GREEN,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   819
	M( 0xf54, PAL_NONE, 0x114f, PALETTE_TO_DARK_GREEN,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   820
	M( 0xf54, PAL_NONE, 0x1150, PALETTE_TO_DARK_GREEN,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   821
	M(0x114d, PAL_NONE, 0x1151, PALETTE_TO_DARK_GREEN,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   822
	M( 0xf54, PAL_NONE, 0x1153, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   823
	M( 0xf54, PAL_NONE, 0x1154, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   824
	M( 0xf54, PAL_NONE, 0x1155, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   825
	M(0x1152, PAL_NONE, 0x1155, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   826
	M( 0xf54, PAL_NONE, 0x1153, PALETTE_TO_RED,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   827
	M( 0xf54, PAL_NONE, 0x1154, PALETTE_TO_RED,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   828
	M( 0xf54, PAL_NONE, 0x1155, PALETTE_TO_RED,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   829
	M(0x1152, PAL_NONE, 0x1155, PALETTE_TO_RED,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   830
	M( 0xf54, PAL_NONE, 0x1153, PALETTE_TO_DARK_GREEN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   831
	M( 0xf54, PAL_NONE, 0x1154, PALETTE_TO_DARK_GREEN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   832
	M( 0xf54, PAL_NONE, 0x1155, PALETTE_TO_DARK_GREEN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   833
	M(0x1152, PAL_NONE, 0x1155, PALETTE_TO_DARK_GREEN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   834
	M( 0xf54, PAL_NONE, 0x1153, PALETTE_TO_GREY,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   835
	M( 0xf54, PAL_NONE, 0x1154, PALETTE_TO_GREY,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   836
	M( 0xf54, PAL_NONE, 0x1155, PALETTE_TO_GREY,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   837
	M(0x1152, PAL_NONE, 0x1155, PALETTE_TO_GREY,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   838
	M( 0xf54, PAL_NONE, 0x1153, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   839
	M( 0xf54, PAL_NONE, 0x1154, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   840
	M( 0xf54, PAL_NONE, 0x11de, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   841
	M(0x1152, PAL_NONE, 0x11de, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   842
	M( 0xf54, PAL_NONE, 0x1153, PALETTE_TO_RED,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   843
	M( 0xf54, PAL_NONE, 0x1154, PALETTE_TO_RED,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   844
	M( 0xf54, PAL_NONE, 0x11de, PALETTE_TO_RED,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   845
	M(0x1152, PAL_NONE, 0x11de, PALETTE_TO_RED,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   846
	M( 0xf54, PAL_NONE, 0x1153, PALETTE_TO_DARK_GREEN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   847
	M( 0xf54, PAL_NONE, 0x1154, PALETTE_TO_DARK_GREEN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   848
	M( 0xf54, PAL_NONE, 0x11de, PALETTE_TO_DARK_GREEN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   849
	M(0x1152, PAL_NONE, 0x11de, PALETTE_TO_DARK_GREEN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   850
	M( 0xf54, PAL_NONE, 0x1153, PALETTE_TO_GREY,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   851
	M( 0xf54, PAL_NONE, 0x1154, PALETTE_TO_GREY,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   852
	M( 0xf54, PAL_NONE, 0x11de, PALETTE_TO_GREY,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   853
	M(0x1152, PAL_NONE, 0x11de, PALETTE_TO_GREY,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   854
	M( 0xf54, PAL_NONE, 0x1157, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   855
	M( 0xf54, PAL_NONE, 0x1158, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   856
	M( 0xf54, PAL_NONE, 0x1159, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   857
	M(0x1156, PAL_NONE, 0x1159, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   858
	M( 0xf54, PAL_NONE, 0x1157, PALETTE_TO_DARK_GREEN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   859
	M( 0xf54, PAL_NONE, 0x1158, PALETTE_TO_DARK_GREEN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   860
	M( 0xf54, PAL_NONE, 0x1159, PALETTE_TO_DARK_GREEN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   861
	M(0x1156, PAL_NONE, 0x1159, PALETTE_TO_DARK_GREEN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   862
	M( 0xf54, PAL_NONE, 0x1157, PALETTE_TO_CREAM,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   863
	M( 0xf54, PAL_NONE, 0x1158, PALETTE_TO_CREAM,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   864
	M( 0xf54, PAL_NONE, 0x1159, PALETTE_TO_CREAM,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   865
	M(0x1156, PAL_NONE, 0x1159, PALETTE_TO_CREAM,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   866
	M( 0xf54, PAL_NONE, 0x1157, PALETTE_TO_YELLOW,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   867
	M( 0xf54, PAL_NONE, 0x1158, PALETTE_TO_YELLOW,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   868
	M( 0xf54, PAL_NONE, 0x1159, PALETTE_TO_YELLOW,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   869
	M(0x1156, PAL_NONE, 0x1159, PALETTE_TO_YELLOW,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   870
	M( 0xf54, PAL_NONE, 0x1157, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   871
	M( 0xf54, PAL_NONE, 0x1158, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   872
	M( 0xf54, PAL_NONE, 0x11df, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   873
	M(0x1156, PAL_NONE, 0x11df, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   874
	M( 0xf54, PAL_NONE, 0x1157, PALETTE_TO_DARK_GREEN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   875
	M( 0xf54, PAL_NONE, 0x1158, PALETTE_TO_DARK_GREEN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   876
	M( 0xf54, PAL_NONE, 0x11df, PALETTE_TO_DARK_GREEN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   877
	M(0x1156, PAL_NONE, 0x11df, PALETTE_TO_DARK_GREEN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   878
	M( 0xf54, PAL_NONE, 0x1157, PALETTE_TO_CREAM,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   879
	M( 0xf54, PAL_NONE, 0x1158, PALETTE_TO_CREAM,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   880
	M( 0xf54, PAL_NONE, 0x11df, PALETTE_TO_CREAM,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   881
	M(0x1156, PAL_NONE, 0x11df, PALETTE_TO_CREAM,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   882
	M( 0xf54, PAL_NONE, 0x1157, PALETTE_TO_YELLOW,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   883
	M( 0xf54, PAL_NONE, 0x1158, PALETTE_TO_YELLOW,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   884
	M( 0xf54, PAL_NONE, 0x11df, PALETTE_TO_YELLOW,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   885
	M(0x1156, PAL_NONE, 0x11df, PALETTE_TO_YELLOW,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   886
	M( 0xf54, PAL_NONE, 0x115b, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   887
	M( 0xf54, PAL_NONE, 0x115c, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   888
	M( 0xf54, PAL_NONE, 0x115d, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   889
	M(0x115a, PAL_NONE, 0x115d, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   890
	M( 0xf54, PAL_NONE, 0x115b, PALETTE_TO_RED,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   891
	M( 0xf54, PAL_NONE, 0x115c, PALETTE_TO_RED,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   892
	M( 0xf54, PAL_NONE, 0x115d, PALETTE_TO_RED,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   893
	M(0x115a, PAL_NONE, 0x115d, PALETTE_TO_RED,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   894
	M( 0xf54, PAL_NONE, 0x115b, PALETTE_TO_ORANGE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   895
	M( 0xf54, PAL_NONE, 0x115c, PALETTE_TO_ORANGE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   896
	M( 0xf54, PAL_NONE, 0x115d, PALETTE_TO_ORANGE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   897
	M(0x115a, PAL_NONE, 0x115d, PALETTE_TO_ORANGE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   898
	M( 0xf54, PAL_NONE, 0x115b, PALETTE_TO_BROWN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   899
	M( 0xf54, PAL_NONE, 0x115c, PALETTE_TO_BROWN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   900
	M( 0xf54, PAL_NONE, 0x115d, PALETTE_TO_BROWN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   901
	M(0x115a, PAL_NONE, 0x115d, PALETTE_TO_BROWN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   902
	M( 0xf54, PAL_NONE, 0x115b, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   903
	M( 0xf54, PAL_NONE, 0x115c, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   904
	M( 0xf54, PAL_NONE, 0x11e0, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   905
	M(0x115a, PAL_NONE, 0x11e0, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   906
	M( 0xf54, PAL_NONE, 0x115b, PALETTE_TO_RED,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   907
	M( 0xf54, PAL_NONE, 0x115c, PALETTE_TO_RED,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   908
	M( 0xf54, PAL_NONE, 0x11e0, PALETTE_TO_RED,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   909
	M(0x115a, PAL_NONE, 0x11e0, PALETTE_TO_RED,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   910
	M( 0xf54, PAL_NONE, 0x115b, PALETTE_TO_ORANGE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   911
	M( 0xf54, PAL_NONE, 0x115c, PALETTE_TO_ORANGE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   912
	M( 0xf54, PAL_NONE, 0x11e0, PALETTE_TO_ORANGE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   913
	M(0x115a, PAL_NONE, 0x11e0, PALETTE_TO_ORANGE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   914
	M( 0xf54, PAL_NONE, 0x115b, PALETTE_TO_BROWN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   915
	M( 0xf54, PAL_NONE, 0x115c, PALETTE_TO_BROWN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   916
	M( 0xf54, PAL_NONE, 0x11e0, PALETTE_TO_BROWN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   917
	M(0x115a, PAL_NONE, 0x11e0, PALETTE_TO_BROWN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   918
	M( 0xf54, PAL_NONE, 0x1160, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   919
	M( 0xf54, PAL_NONE, 0x1161, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   920
	M( 0xf54, PAL_NONE, 0x1162, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   921
	M(0x115e, PAL_NONE, 0x1162, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   922
	M( 0xf54, PAL_NONE, 0x1160, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   923
	M( 0xf54, PAL_NONE, 0x1161, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   924
	M( 0xf54, PAL_NONE, 0x1162, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   925
	M(0x115e, PAL_NONE, 0x1162, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   926
	M( 0xf54, PAL_NONE, 0x1166, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   927
	M( 0xf54, PAL_NONE, 0x1167, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   928
	M( 0xf54, PAL_NONE, 0x1168, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   929
	M(0x1164, PAL_NONE, 0x1168, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   930
	M( 0xf54, PAL_NONE, 0x1166, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   931
	M( 0xf54, PAL_NONE, 0x1167, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   932
	M( 0xf54, PAL_NONE, 0x1168, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   933
	M(0x1164, PAL_NONE, 0x1168, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   934
	M( 0xf54, PAL_NONE, 0x1160, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   935
	M( 0xf54, PAL_NONE, 0x1161, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   936
	M( 0xf54, PAL_NONE, 0x1162, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   937
	M(0x115f, PAL_NONE, 0x1163, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   938
	M( 0xf54, PAL_NONE, 0x1160, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   939
	M( 0xf54, PAL_NONE, 0x1161, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   940
	M( 0xf54, PAL_NONE, 0x1162, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   941
	M(0x115f, PAL_NONE, 0x1163, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   942
	M( 0xf54, PAL_NONE, 0x1166, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   943
	M( 0xf54, PAL_NONE, 0x1167, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   944
	M( 0xf54, PAL_NONE, 0x1168, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   945
	M(0x1165, PAL_NONE, 0x1169, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   946
	M( 0xf54, PAL_NONE, 0x1166, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   947
	M( 0xf54, PAL_NONE, 0x1167, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   948
	M( 0xf54, PAL_NONE, 0x1168, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   949
	M(0x1165, PAL_NONE, 0x1169, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   950
	M(0x116b, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   951
	M( 0xf54, PAL_NONE, 0x116c, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   952
	M( 0xf54, PAL_NONE, 0x116d, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   953
	M(0x116a, PAL_NONE, 0x116d, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   954
	M(0x116b, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   955
	M( 0xf54, PAL_NONE, 0x116c, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   956
	M( 0xf54, PAL_NONE, 0x116d, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   957
	M(0x116a, PAL_NONE, 0x116d, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   958
	M(0x116b, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   959
	M( 0xf54, PAL_NONE, 0x116c, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   960
	M( 0xf54, PAL_NONE, 0x116d, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   961
	M(0x116a, PAL_NONE, 0x116d, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   962
	M(0x116b, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   963
	M( 0xf54, PAL_NONE, 0x116c, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   964
	M( 0xf54, PAL_NONE, 0x116d, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   965
	M(0x116a, PAL_NONE, 0x116d, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   966
	M(0x116b, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   967
	M( 0xf54, PAL_NONE, 0x116c, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   968
	M( 0xf54, PAL_NONE, 0x11e2, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   969
	M(0x116a, PAL_NONE, 0x11e2, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   970
	M(0x116b, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   971
	M( 0xf54, PAL_NONE, 0x116c, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   972
	M( 0xf54, PAL_NONE, 0x11e2, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   973
	M(0x116a, PAL_NONE, 0x11e2, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   974
	M(0x116b, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   975
	M( 0xf54, PAL_NONE, 0x116c, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   976
	M( 0xf54, PAL_NONE, 0x11e2, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   977
	M(0x116a, PAL_NONE, 0x11e2, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   978
	M(0x116b, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   979
	M( 0xf54, PAL_NONE, 0x116c, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   980
	M( 0xf54, PAL_NONE, 0x11e2, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   981
	M(0x116a, PAL_NONE, 0x11e2, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   982
	M(0x116f, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   983
	M( 0xf54, PAL_NONE, 0x1170, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   984
	M( 0xf54, PAL_NONE, 0x1171, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   985
	M(0x116e, PAL_NONE, 0x1171, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   986
	M(0x116f, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   987
	M( 0xf54, PAL_NONE, 0x1170, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   988
	M( 0xf54, PAL_NONE, 0x1171, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   989
	M(0x116e, PAL_NONE, 0x1171, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   990
	M(0x116f, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   991
	M( 0xf54, PAL_NONE, 0x1170, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   992
	M( 0xf54, PAL_NONE, 0x1171, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   993
	M(0x116e, PAL_NONE, 0x1171, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   994
	M(0x116f, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   995
	M( 0xf54, PAL_NONE, 0x1170, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   996
	M( 0xf54, PAL_NONE, 0x1171, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   997
	M(0x116e, PAL_NONE, 0x1171, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   998
	M(0x116f, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
   999
	M( 0xf54, PAL_NONE, 0x1170, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1000
	M( 0xf54, PAL_NONE, 0x11e3, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1001
	M(0x116e, PAL_NONE, 0x11e3, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1002
	M(0x116f, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1003
	M( 0xf54, PAL_NONE, 0x1170, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1004
	M( 0xf54, PAL_NONE, 0x11e3, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1005
	M(0x116e, PAL_NONE, 0x11e3, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1006
	M(0x116f, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1007
	M( 0xf54, PAL_NONE, 0x1170, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1008
	M( 0xf54, PAL_NONE, 0x11e3, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1009
	M(0x116e, PAL_NONE, 0x11e3, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1010
	M(0x116f, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1011
	M( 0xf54, PAL_NONE, 0x1170, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1012
	M( 0xf54, PAL_NONE, 0x11e3, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1013
	M(0x116e, PAL_NONE, 0x11e3, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1014
	M( 0xf54, PAL_NONE, 0x1173, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1015
	M( 0xf54, PAL_NONE, 0x1174, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1016
	M( 0xf54, PAL_NONE, 0x1175, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1017
	M(0x1172, PAL_NONE, 0x1175, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1018
	M( 0xf54, PAL_NONE, 0x1173, PALETTE_TO_BROWN,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1019
	M( 0xf54, PAL_NONE, 0x1174, PALETTE_TO_BROWN,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1020
	M( 0xf54, PAL_NONE, 0x1175, PALETTE_TO_BROWN,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1021
	M(0x1172, PAL_NONE, 0x1175, PALETTE_TO_BROWN,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1022
	M( 0xf54, PAL_NONE, 0x1173, PALETTE_TO_CREAM,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1023
	M( 0xf54, PAL_NONE, 0x1174, PALETTE_TO_CREAM,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1024
	M( 0xf54, PAL_NONE, 0x1175, PALETTE_TO_CREAM,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1025
	M(0x1172, PAL_NONE, 0x1175, PALETTE_TO_CREAM,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1026
	M( 0xf54, PAL_NONE, 0x1173, PALETTE_TO_GREY,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1027
	M( 0xf54, PAL_NONE, 0x1174, PALETTE_TO_GREY,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1028
	M( 0xf54, PAL_NONE, 0x1175, PALETTE_TO_GREY,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1029
	M(0x1172, PAL_NONE, 0x1175, PALETTE_TO_GREY,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1030
	M( 0xf54, PAL_NONE, 0x1173, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1031
	M( 0xf54, PAL_NONE, 0x1174, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1032
	M( 0xf54, PAL_NONE, 0x1175, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1033
	M(0x11e4, PAL_NONE, 0x11e5, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1034
	M( 0xf54, PAL_NONE, 0x1173, PALETTE_TO_BROWN,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1035
	M( 0xf54, PAL_NONE, 0x1174, PALETTE_TO_BROWN,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1036
	M( 0xf54, PAL_NONE, 0x1175, PALETTE_TO_BROWN,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1037
	M(0x11e4, PAL_NONE, 0x11e5, PALETTE_TO_BROWN,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1038
	M( 0xf54, PAL_NONE, 0x1173, PALETTE_TO_CREAM,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1039
	M( 0xf54, PAL_NONE, 0x1174, PALETTE_TO_CREAM,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1040
	M( 0xf54, PAL_NONE, 0x1175, PALETTE_TO_CREAM,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1041
	M(0x11e4, PAL_NONE, 0x11e5, PALETTE_TO_CREAM,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1042
	M( 0xf54, PAL_NONE, 0x1173, PALETTE_TO_GREY,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1043
	M( 0xf54, PAL_NONE, 0x1174, PALETTE_TO_GREY,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1044
	M( 0xf54, PAL_NONE, 0x1175, PALETTE_TO_GREY,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1045
	M(0x11e4, PAL_NONE, 0x11e5, PALETTE_TO_GREY,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1046
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1047
	M( 0xf54, PAL_NONE, 0x1176, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1048
	M( 0xf54, PAL_NONE, 0x1176, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1049
	M( 0xf54, PAL_NONE, 0x1176, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1050
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1051
	M( 0xf54, PAL_NONE, 0x1176, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1052
	M( 0xf54, PAL_NONE, 0x1176, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1053
	M( 0xf54, PAL_NONE, 0x1176, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1054
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1055
	M( 0xf54, PAL_NONE, 0x1176, PALETTE_TO_STRUCT_BROWN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1056
	M( 0xf54, PAL_NONE, 0x1176, PALETTE_TO_STRUCT_BROWN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1057
	M( 0xf54, PAL_NONE, 0x1176, PALETTE_TO_STRUCT_BROWN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1058
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1059
	M( 0xf54, PAL_NONE, 0x1176, PALETTE_TO_STRUCT_BROWN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1060
	M( 0xf54, PAL_NONE, 0x1176, PALETTE_TO_STRUCT_BROWN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1061
	M( 0xf54, PAL_NONE, 0x1176, PALETTE_TO_STRUCT_BROWN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1062
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1063
	M( 0xf54, PAL_NONE, 0x11e6, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1064
	M( 0xf54, PAL_NONE, 0x11e6, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1065
	M( 0xf54, PAL_NONE, 0x11e6, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1066
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1067
	M( 0xf54, PAL_NONE, 0x11e6, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1068
	M( 0xf54, PAL_NONE, 0x11e6, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1069
	M( 0xf54, PAL_NONE, 0x11e6, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1070
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1071
	M( 0xf54, PAL_NONE, 0x11e6, PALETTE_TO_STRUCT_BROWN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1072
	M( 0xf54, PAL_NONE, 0x11e6, PALETTE_TO_STRUCT_BROWN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1073
	M( 0xf54, PAL_NONE, 0x11e6, PALETTE_TO_STRUCT_BROWN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1074
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1075
	M( 0xf54, PAL_NONE, 0x11e6, PALETTE_TO_STRUCT_BROWN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1076
	M( 0xf54, PAL_NONE, 0x11e6, PALETTE_TO_STRUCT_BROWN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1077
	M( 0xf54, PAL_NONE, 0x11e6, PALETTE_TO_STRUCT_BROWN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1078
	M(0x1177, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1079
	M( 0xf54, PAL_NONE, 0x1179, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1080
	M( 0xf54, PAL_NONE, 0x117b, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1081
	M( 0xf54, PAL_NONE, 0x117b, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1082
	M(0x1177, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1083
	M( 0xf54, PAL_NONE, 0x1179, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1084
	M( 0xf54, PAL_NONE, 0x117b, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1085
	M( 0xf54, PAL_NONE, 0x117b, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1086
	M(0x1177, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1087
	M( 0xf54, PAL_NONE, 0x1179, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1088
	M( 0xf54, PAL_NONE, 0x117b, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1089
	M( 0xf54, PAL_NONE, 0x117b, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1090
	M(0x1177, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1091
	M( 0xf54, PAL_NONE, 0x1179, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1092
	M( 0xf54, PAL_NONE, 0x117b, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1093
	M( 0xf54, PAL_NONE, 0x117b, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1094
	M(0x1178, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1095
	M( 0xf54, PAL_NONE, 0x117a, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1096
	M( 0xf54, PAL_NONE, 0x117c, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1097
	M( 0xf54, PAL_NONE, 0x117c, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1098
	M(0x1178, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1099
	M( 0xf54, PAL_NONE, 0x117a, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1100
	M( 0xf54, PAL_NONE, 0x117c, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1101
	M( 0xf54, PAL_NONE, 0x117c, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1102
	M(0x1178, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1103
	M( 0xf54, PAL_NONE, 0x117a, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1104
	M( 0xf54, PAL_NONE, 0x117c, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1105
	M( 0xf54, PAL_NONE, 0x117c, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1106
	M(0x1178, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1107
	M( 0xf54, PAL_NONE, 0x117a, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1108
	M( 0xf54, PAL_NONE, 0x117c, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1109
	M( 0xf54, PAL_NONE, 0x117c, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1110
	M(0x1177, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1111
	M( 0xf54, PAL_NONE, 0x1179, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1112
	M( 0xf54, PAL_NONE, 0x11e7, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1113
	M( 0xf54, PAL_NONE, 0x11e7, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1114
	M(0x1177, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1115
	M( 0xf54, PAL_NONE, 0x1179, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1116
	M( 0xf54, PAL_NONE, 0x11e7, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1117
	M( 0xf54, PAL_NONE, 0x11e7, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1118
	M(0x1177, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1119
	M( 0xf54, PAL_NONE, 0x1179, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1120
	M( 0xf54, PAL_NONE, 0x11e7, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1121
	M( 0xf54, PAL_NONE, 0x11e7, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1122
	M(0x1177, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1123
	M( 0xf54, PAL_NONE, 0x1179, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1124
	M( 0xf54, PAL_NONE, 0x11e7, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1125
	M( 0xf54, PAL_NONE, 0x11e7, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1126
	M(0x1178, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1127
	M( 0xf54, PAL_NONE, 0x117a, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1128
	M( 0xf54, PAL_NONE, 0x11e8, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1129
	M( 0xf54, PAL_NONE, 0x11e8, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1130
	M(0x1178, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1131
	M( 0xf54, PAL_NONE, 0x117a, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1132
	M( 0xf54, PAL_NONE, 0x11e8, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1133
	M( 0xf54, PAL_NONE, 0x11e8, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1134
	M(0x1178, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1135
	M( 0xf54, PAL_NONE, 0x117a, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1136
	M( 0xf54, PAL_NONE, 0x11e8, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1137
	M( 0xf54, PAL_NONE, 0x11e8, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1138
	M(0x1178, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1139
	M( 0xf54, PAL_NONE, 0x117a, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1140
	M( 0xf54, PAL_NONE, 0x11e8, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1141
	M( 0xf54, PAL_NONE, 0x11e8, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1142
	M( 0xf54, PAL_NONE, 0x117d, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1143
	M( 0xf54, PAL_NONE, 0x117e, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1144
	M( 0xf54, PAL_NONE, 0x117f, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1145
	M( 0x58c, PAL_NONE, 0x117f, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1146
	M( 0xf54, PAL_NONE, 0x117d, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1147
	M( 0xf54, PAL_NONE, 0x117e, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1148
	M( 0xf54, PAL_NONE, 0x117f, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1149
	M( 0x58c, PAL_NONE, 0x117f, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1150
	M( 0xf54, PAL_NONE, 0x117d, PALETTE_TO_STRUCT_BROWN,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1151
	M( 0xf54, PAL_NONE, 0x117e, PALETTE_TO_STRUCT_BROWN,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1152
	M( 0xf54, PAL_NONE, 0x117f, PALETTE_TO_STRUCT_BROWN,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1153
	M( 0x58c, PAL_NONE, 0x117f, PALETTE_TO_STRUCT_BROWN,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1154
	M( 0xf54, PAL_NONE, 0x117d, PALETTE_TO_STRUCT_WHITE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1155
	M( 0xf54, PAL_NONE, 0x117e, PALETTE_TO_STRUCT_WHITE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1156
	M( 0xf54, PAL_NONE, 0x117f, PALETTE_TO_STRUCT_WHITE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1157
	M( 0x58c, PAL_NONE, 0x117f, PALETTE_TO_STRUCT_WHITE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1158
	M( 0xf54, PAL_NONE, 0x117d, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1159
	M( 0xf54, PAL_NONE, 0x117e, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1160
	M( 0xf54, PAL_NONE, 0x11e1, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1161
	M( 0x58c, PAL_NONE, 0x11e1, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1162
	M( 0xf54, PAL_NONE, 0x117d, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1163
	M( 0xf54, PAL_NONE, 0x117e, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1164
	M( 0xf54, PAL_NONE, 0x11e1, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1165
	M( 0x58c, PAL_NONE, 0x11e1, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1166
	M( 0xf54, PAL_NONE, 0x117d, PALETTE_TO_STRUCT_BROWN,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1167
	M( 0xf54, PAL_NONE, 0x117e, PALETTE_TO_STRUCT_BROWN,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1168
	M( 0xf54, PAL_NONE, 0x11e1, PALETTE_TO_STRUCT_BROWN,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1169
	M( 0x58c, PAL_NONE, 0x11e3, PALETTE_TO_STRUCT_BROWN,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1170
	M( 0xf54, PAL_NONE, 0x117d, PALETTE_TO_STRUCT_WHITE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1171
	M( 0xf54, PAL_NONE, 0x117e, PALETTE_TO_STRUCT_WHITE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1172
	M( 0xf54, PAL_NONE, 0x11e1, PALETTE_TO_STRUCT_WHITE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1173
	M( 0x58c, PAL_NONE, 0x11e1, PALETTE_TO_STRUCT_WHITE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1174
	M(0x1180, PAL_NONE, 0x1181, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1175
	M(0x1183, PAL_NONE, 0x1182, PALETTE_TO_DARK_GREEN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1176
	M(0x1183, PAL_NONE, 0x1182, PALETTE_TO_DARK_GREEN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1177
	M(0x1183, PAL_NONE, 0x1184, PALETTE_TO_DARK_GREEN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1178
	M(0x1180, PAL_NONE, 0x1181, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1179
	M(0x1183, PAL_NONE, 0x1182, PALETTE_TO_ORANGE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1180
	M(0x1183, PAL_NONE, 0x1182, PALETTE_TO_ORANGE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1181
	M(0x1183, PAL_NONE, 0x1184, PALETTE_TO_ORANGE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1182
	M(0x1180, PAL_NONE, 0x1181, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1183
	M(0x1183, PAL_NONE, 0x1182, PALETTE_TO_BROWN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1184
	M(0x1183, PAL_NONE, 0x1182, PALETTE_TO_BROWN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1185
	M(0x1183, PAL_NONE, 0x1184, PALETTE_TO_BROWN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1186
	M(0x1180, PAL_NONE, 0x1181, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1187
	M(0x1183, PAL_NONE, 0x1182, PALETTE_TO_GREY,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1188
	M(0x1183, PAL_NONE, 0x1182, PALETTE_TO_GREY,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1189
	M(0x1183, PAL_NONE, 0x1184, PALETTE_TO_GREY,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1190
	M(0x1180, PAL_NONE, 0x1181, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1191
	M(0x1183, PAL_NONE, 0x1182, PALETTE_TO_DARK_GREEN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1192
	M(0x1183, PAL_NONE, 0x1182, PALETTE_TO_DARK_GREEN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1193
	M(0x1183, PAL_NONE, 0x11e9, PALETTE_TO_DARK_GREEN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1194
	M(0x1180, PAL_NONE, 0x1181, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1195
	M(0x1183, PAL_NONE, 0x1182, PALETTE_TO_ORANGE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1196
	M(0x1183, PAL_NONE, 0x1182, PALETTE_TO_ORANGE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1197
	M(0x1183, PAL_NONE, 0x11e9, PALETTE_TO_ORANGE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1198
	M(0x1180, PAL_NONE, 0x1181, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1199
	M(0x1183, PAL_NONE, 0x1182, PALETTE_TO_BROWN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1200
	M(0x1183, PAL_NONE, 0x1182, PALETTE_TO_BROWN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1201
	M(0x1183, PAL_NONE, 0x11e9, PALETTE_TO_BROWN,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1202
	M(0x1180, PAL_NONE, 0x1181, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1203
	M(0x1183, PAL_NONE, 0x1182, PALETTE_TO_GREY,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1204
	M(0x1183, PAL_NONE, 0x1182, PALETTE_TO_GREY,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1205
	M(0x1183, PAL_NONE, 0x11e9, PALETTE_TO_GREY,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1206
	M(0x1185, PAL_NONE, 0x1187, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1207
	M(0x1185, PAL_NONE, 0x1189, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1208
	M(0x1185, PAL_NONE, 0x1189, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1209
	M(0x1185, PAL_NONE, 0x118b, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1210
	M(0x1185, PAL_NONE, 0x1187, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1211
	M(0x1185, PAL_NONE, 0x1189, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1212
	M(0x1185, PAL_NONE, 0x1189, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1213
	M(0x1185, PAL_NONE, 0x118b, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1214
	M(0x1185, PAL_NONE, 0x1187, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1215
	M(0x1185, PAL_NONE, 0x1189, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1216
	M(0x1185, PAL_NONE, 0x1189, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1217
	M(0x1185, PAL_NONE, 0x118b, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1218
	M(0x1185, PAL_NONE, 0x1187, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1219
	M(0x1185, PAL_NONE, 0x1189, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1220
	M(0x1185, PAL_NONE, 0x1189, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1221
	M(0x1185, PAL_NONE, 0x118b, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1222
	M(0x1186, PAL_NONE, 0x1188, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1223
	M(0x1186, PAL_NONE, 0x118a, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1224
	M(0x1186, PAL_NONE, 0x118a, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1225
	M(0x1186, PAL_NONE, 0x118c, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1226
	M(0x1186, PAL_NONE, 0x1188, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1227
	M(0x1186, PAL_NONE, 0x118a, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1228
	M(0x1186, PAL_NONE, 0x118a, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1229
	M(0x1186, PAL_NONE, 0x118c, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1230
	M(0x1186, PAL_NONE, 0x1188, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1231
	M(0x1186, PAL_NONE, 0x118a, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1232
	M(0x1186, PAL_NONE, 0x118a, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1233
	M(0x1186, PAL_NONE, 0x118c, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1234
	M(0x1186, PAL_NONE, 0x1188, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1235
	M(0x1186, PAL_NONE, 0x118a, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1236
	M(0x1186, PAL_NONE, 0x118a, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1237
	M(0x1186, PAL_NONE, 0x118c, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1238
	M(0x1185, PAL_NONE, 0x1187, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1239
	M(0x1185, PAL_NONE, 0x1189, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1240
	M(0x1185, PAL_NONE, 0x1189, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1241
	M(0x1185, PAL_NONE, 0x11ea, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1242
	M(0x1185, PAL_NONE, 0x1187, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1243
	M(0x1185, PAL_NONE, 0x1189, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1244
	M(0x1185, PAL_NONE, 0x1189, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1245
	M(0x1185, PAL_NONE, 0x11ea, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1246
	M(0x1185, PAL_NONE, 0x1187, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1247
	M(0x1185, PAL_NONE, 0x1189, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1248
	M(0x1185, PAL_NONE, 0x1189, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1249
	M(0x1185, PAL_NONE, 0x11ea, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1250
	M(0x1185, PAL_NONE, 0x1187, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1251
	M(0x1185, PAL_NONE, 0x1189, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1252
	M(0x1185, PAL_NONE, 0x1189, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1253
	M(0x1185, PAL_NONE, 0x11ea, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1254
	M(0x1186, PAL_NONE, 0x1188, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1255
	M(0x1186, PAL_NONE, 0x118a, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1256
	M(0x1186, PAL_NONE, 0x118a, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1257
	M(0x1186, PAL_NONE, 0x11eb, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1258
	M(0x1186, PAL_NONE, 0x1188, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1259
	M(0x1186, PAL_NONE, 0x118a, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1260
	M(0x1186, PAL_NONE, 0x118a, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1261
	M(0x1186, PAL_NONE, 0x11eb, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1262
	M(0x1186, PAL_NONE, 0x1188, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1263
	M(0x1186, PAL_NONE, 0x118a, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1264
	M(0x1186, PAL_NONE, 0x118a, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1265
	M(0x1186, PAL_NONE, 0x11eb, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1266
	M(0x1186, PAL_NONE, 0x1188, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1267
	M(0x1186, PAL_NONE, 0x118a, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1268
	M(0x1186, PAL_NONE, 0x118a, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1269
	M(0x1186, PAL_NONE, 0x11eb, PAL_NONE,  0,  0, 16, 16,  10, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1270
	M( 0xf54, PAL_NONE, 0x11ec, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1271
	M( 0xf54, PAL_NONE, 0x11ed, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1272
	M( 0xf54, PAL_NONE, 0x11ed, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1273
	M( 0xf54, PAL_NONE, 0x11ee, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1274
	M( 0xf54, PAL_NONE, 0x11ec, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1275
	M( 0xf54, PAL_NONE, 0x11ed, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1276
	M( 0xf54, PAL_NONE, 0x11ed, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1277
	M( 0xf54, PAL_NONE, 0x11ee, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1278
	M( 0xf54, PAL_NONE, 0x11ec, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1279
	M( 0xf54, PAL_NONE, 0x11ed, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1280
	M( 0xf54, PAL_NONE, 0x11ed, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1281
	M( 0xf54, PAL_NONE, 0x11ee, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1282
	M( 0xf54, PAL_NONE, 0x11ec, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1283
	M( 0xf54, PAL_NONE, 0x11ed, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1284
	M( 0xf54, PAL_NONE, 0x11ed, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1285
	M( 0xf54, PAL_NONE, 0x11ee, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1286
	M( 0xf54, PAL_NONE, 0x11ef, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1287
	M( 0xf54, PAL_NONE, 0x11f0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1288
	M( 0xf54, PAL_NONE, 0x11f0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1289
	M( 0xf54, PAL_NONE, 0x11f1, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1290
	M( 0xf54, PAL_NONE, 0x11ef, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1291
	M( 0xf54, PAL_NONE, 0x11f0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1292
	M( 0xf54, PAL_NONE, 0x11f0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1293
	M( 0xf54, PAL_NONE, 0x11f1, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1294
	M( 0xf54, PAL_NONE, 0x11ef, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1295
	M( 0xf54, PAL_NONE, 0x11f0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1296
	M( 0xf54, PAL_NONE, 0x11f0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1297
	M( 0xf54, PAL_NONE, 0x11f1, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1298
	M( 0xf54, PAL_NONE, 0x11ef, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1299
	M( 0xf54, PAL_NONE, 0x11f0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1300
	M( 0xf54, PAL_NONE, 0x11f0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1301
	M( 0xf54, PAL_NONE, 0x11f1, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1302
	M( 0xf54, PAL_NONE, 0x11f2, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1303
	M( 0xf54, PAL_NONE, 0x11f3, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1304
	M( 0xf54, PAL_NONE, 0x11f3, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1305
	M( 0xf54, PAL_NONE, 0x11f4, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1306
	M( 0xf54, PAL_NONE, 0x11f2, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1307
	M( 0xf54, PAL_NONE, 0x11f3, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1308
	M( 0xf54, PAL_NONE, 0x11f3, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1309
	M( 0xf54, PAL_NONE, 0x11f4, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1310
	M( 0xf54, PAL_NONE, 0x11f2, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1311
	M( 0xf54, PAL_NONE, 0x11f3, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1312
	M( 0xf54, PAL_NONE, 0x11f3, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1313
	M( 0xf54, PAL_NONE, 0x11f4, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1314
	M( 0xf54, PAL_NONE, 0x11f2, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1315
	M( 0xf54, PAL_NONE, 0x11f3, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1316
	M( 0xf54, PAL_NONE, 0x11f3, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1317
	M( 0xf54, PAL_NONE, 0x11f4, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1318
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1319
	M( 0xf54, PAL_NONE, 0x11f5, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1320
	M( 0xf54, PAL_NONE, 0x11f5, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1321
	M( 0xf54, PAL_NONE, 0x11f5, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1322
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1323
	M( 0xf54, PAL_NONE, 0x11f6, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1324
	M( 0xf54, PAL_NONE, 0x11f6, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1325
	M( 0xf54, PAL_NONE, 0x11f6, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1326
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1327
	M( 0xf54, PAL_NONE, 0x11f7, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1328
	M( 0xf54, PAL_NONE, 0x11f7, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1329
	M( 0xf54, PAL_NONE, 0x11f7, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1330
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1331
	M( 0xf54, PAL_NONE, 0x11f8, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1332
	M( 0xf54, PAL_NONE, 0x11f8, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1333
	M( 0xf54, PAL_NONE, 0x11f8, PAL_NONE,  0,  0, 16, 16,  20, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1334
	M( 0xf54, PAL_NONE, 0x11f9, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1335
	M( 0xf54, PAL_NONE, 0x11fa, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1336
	M( 0xf54, PAL_NONE, 0x11fa, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1337
	M( 0xf54, PAL_NONE, 0x11fb, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1338
	M( 0xf54, PAL_NONE, 0x11f9, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1339
	M( 0xf54, PAL_NONE, 0x11fa, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1340
	M( 0xf54, PAL_NONE, 0x11fa, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1341
	M( 0xf54, PAL_NONE, 0x11fb, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1342
	M( 0xf54, PAL_NONE, 0x11f9, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1343
	M( 0xf54, PAL_NONE, 0x11fa, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1344
	M( 0xf54, PAL_NONE, 0x11fa, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1345
	M( 0xf54, PAL_NONE, 0x11fb, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1346
	M( 0xf54, PAL_NONE, 0x11f9, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1347
	M( 0xf54, PAL_NONE, 0x11fa, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1348
	M( 0xf54, PAL_NONE, 0x11fa, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1349
	M( 0xf54, PAL_NONE, 0x11fb, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1350
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1351
	M( 0xf54, PAL_NONE, 0x11fc, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1352
	M( 0xf54, PAL_NONE, 0x11fc, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1353
	M( 0xf54, PAL_NONE, 0x11fc, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1354
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1355
	M( 0xf54, PAL_NONE, 0x11fc, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1356
	M( 0xf54, PAL_NONE, 0x11fc, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1357
	M( 0xf54, PAL_NONE, 0x11fc, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1358
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1359
	M( 0xf54, PAL_NONE, 0x11fc, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1360
	M( 0xf54, PAL_NONE, 0x11fc, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1361
	M( 0xf54, PAL_NONE, 0x11fc, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1362
	M( 0xf54, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1363
	M( 0xf54, PAL_NONE, 0x11fc, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1364
	M( 0xf54, PAL_NONE, 0x11fc, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1365
	M( 0xf54, PAL_NONE, 0x11fc, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1366
	M( 0xf54, PAL_NONE, 0x11fd, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1367
	M( 0xf54, PAL_NONE, 0x11fe, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1368
	M( 0xf54, PAL_NONE, 0x11fe, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1369
	M( 0xf54, PAL_NONE, 0x11ff, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1370
	M( 0xf54, PAL_NONE, 0x11fd, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1371
	M( 0xf54, PAL_NONE, 0x11fe, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1372
	M( 0xf54, PAL_NONE, 0x11fe, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1373
	M( 0xf54, PAL_NONE, 0x11ff, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1374
	M( 0xf54, PAL_NONE, 0x11fd, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1375
	M( 0xf54, PAL_NONE, 0x11fe, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1376
	M( 0xf54, PAL_NONE, 0x11fe, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1377
	M( 0xf54, PAL_NONE, 0x11ff, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1378
	M( 0xf54, PAL_NONE, 0x11fd, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1379
	M( 0xf54, PAL_NONE, 0x11fe, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1380
	M( 0xf54, PAL_NONE, 0x11fe, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1381
	M( 0xf54, PAL_NONE, 0x11ff, PAL_NONE,  0,  0, 16, 16,  40, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1382
	M( 0xf54, PAL_NONE, 0x1200, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1383
	M( 0xf54, PAL_NONE, 0x1201, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1384
	M( 0xf54, PAL_NONE, 0x1201, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1385
	M( 0xf54, PAL_NONE, 0x1202, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1386
	M( 0xf54, PAL_NONE, 0x1200, PALETTE_TO_PINK,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1387
	M( 0xf54, PAL_NONE, 0x1201, PALETTE_TO_PINK,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1388
	M( 0xf54, PAL_NONE, 0x1201, PALETTE_TO_PINK,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1389
	M( 0xf54, PAL_NONE, 0x1202, PALETTE_TO_PINK,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1390
	M( 0xf54, PAL_NONE, 0x1200, PALETTE_TO_YELLOW,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1391
	M( 0xf54, PAL_NONE, 0x1201, PALETTE_TO_YELLOW,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1392
	M( 0xf54, PAL_NONE, 0x1201, PALETTE_TO_YELLOW,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1393
	M( 0xf54, PAL_NONE, 0x1202, PALETTE_TO_YELLOW,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1394
	M( 0xf54, PAL_NONE, 0x1200, PALETTE_TO_RED,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1395
	M( 0xf54, PAL_NONE, 0x1201, PALETTE_TO_RED,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1396
	M( 0xf54, PAL_NONE, 0x1201, PALETTE_TO_RED,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1397
	M( 0xf54, PAL_NONE, 0x1202, PALETTE_TO_RED,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1398
	M( 0xf54, PAL_NONE, 0x1203, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1399
	M( 0xf54, PAL_NONE, 0x1204, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1400
	M( 0xf54, PAL_NONE, 0x1204, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1401
	M( 0xf54, PAL_NONE, 0x1205, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1402
	M( 0xf54, PAL_NONE, 0x1203, PALETTE_TO_PINK,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1403
	M( 0xf54, PAL_NONE, 0x1204, PALETTE_TO_PINK,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1404
	M( 0xf54, PAL_NONE, 0x1204, PALETTE_TO_PINK,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1405
	M( 0xf54, PAL_NONE, 0x1205, PALETTE_TO_PINK,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1406
	M( 0xf54, PAL_NONE, 0x1203, PALETTE_TO_YELLOW,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1407
	M( 0xf54, PAL_NONE, 0x1204, PALETTE_TO_YELLOW,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1408
	M( 0xf54, PAL_NONE, 0x1204, PALETTE_TO_YELLOW,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1409
	M( 0xf54, PAL_NONE, 0x1205, PALETTE_TO_YELLOW,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1410
	M( 0xf54, PAL_NONE, 0x1203, PALETTE_TO_RED,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1411
	M( 0xf54, PAL_NONE, 0x1204, PALETTE_TO_RED,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1412
	M( 0xf54, PAL_NONE, 0x1204, PALETTE_TO_RED,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1413
	M( 0xf54, PAL_NONE, 0x1205, PALETTE_TO_RED,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1414
	M( 0xf54, PAL_NONE, 0x1206, PAL_NONE,  0,  0, 16, 16,  80, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1415
	M( 0xf54, PAL_NONE, 0x1208, PAL_NONE,  0,  0, 16, 16,  80, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1416
	M( 0xf54, PAL_NONE, 0x1208, PAL_NONE,  0,  0, 16, 16,  80, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1417
	M( 0xf54, PAL_NONE, 0x120a, PAL_NONE,  0,  0, 16, 16,  80, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1418
	M( 0xf54, PAL_NONE, 0x1206, PAL_NONE,  0,  0, 16, 16,  80, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1419
	M( 0xf54, PAL_NONE, 0x1208, PAL_NONE,  0,  0, 16, 16,  80, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1420
	M( 0xf54, PAL_NONE, 0x1208, PAL_NONE,  0,  0, 16, 16,  80, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1421
	M( 0xf54, PAL_NONE, 0x120a, PAL_NONE,  0,  0, 16, 16,  80, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1422
	M( 0xf54, PAL_NONE, 0x1206, PAL_NONE,  0,  0, 16, 16,  80, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1423
	M( 0xf54, PAL_NONE, 0x1208, PAL_NONE,  0,  0, 16, 16,  80, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1424
	M( 0xf54, PAL_NONE, 0x1208, PAL_NONE,  0,  0, 16, 16,  80, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1425
	M( 0xf54, PAL_NONE, 0x120a, PAL_NONE,  0,  0, 16, 16,  80, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1426
	M( 0xf54, PAL_NONE, 0x1206, PAL_NONE,  0,  0, 16, 16,  80, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1427
	M( 0xf54, PAL_NONE, 0x1208, PAL_NONE,  0,  0, 16, 16,  80, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1428
	M( 0xf54, PAL_NONE, 0x1208, PAL_NONE,  0,  0, 16, 16,  80, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1429
	M( 0xf54, PAL_NONE, 0x120a, PAL_NONE,  0,  0, 16, 16,  80, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1430
	M( 0xf54, PAL_NONE, 0x1207, PAL_NONE,  0,  0, 16, 16,  80, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1431
	M( 0xf54, PAL_NONE, 0x1209, PAL_NONE,  0,  0, 16, 16,  80, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1432
	M( 0xf54, PAL_NONE, 0x1209, PAL_NONE,  0,  0, 16, 16,  80, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1433
	M( 0xf54, PAL_NONE, 0x120b, PAL_NONE,  0,  0, 16, 16,  80, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1434
	M( 0xf54, PAL_NONE, 0x1207, PAL_NONE,  0,  0, 16, 16,  80, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1435
	M( 0xf54, PAL_NONE, 0x1209, PAL_NONE,  0,  0, 16, 16,  80, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1436
	M( 0xf54, PAL_NONE, 0x1209, PAL_NONE,  0,  0, 16, 16,  80, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1437
	M( 0xf54, PAL_NONE, 0x120b, PAL_NONE,  0,  0, 16, 16,  80, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1438
	M( 0xf54, PAL_NONE, 0x1207, PAL_NONE,  0,  0, 16, 16,  80, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1439
	M( 0xf54, PAL_NONE, 0x1209, PAL_NONE,  0,  0, 16, 16,  80, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1440
	M( 0xf54, PAL_NONE, 0x1209, PAL_NONE,  0,  0, 16, 16,  80, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1441
	M( 0xf54, PAL_NONE, 0x120b, PAL_NONE,  0,  0, 16, 16,  80, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1442
	M( 0xf54, PAL_NONE, 0x1207, PAL_NONE,  0,  0, 16, 16,  80, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1443
	M( 0xf54, PAL_NONE, 0x1209, PAL_NONE,  0,  0, 16, 16,  80, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1444
	M( 0xf54, PAL_NONE, 0x1209, PAL_NONE,  0,  0, 16, 16,  80, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1445
	M( 0xf54, PAL_NONE, 0x120b, PAL_NONE,  0,  0, 16, 16,  80, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1446
	M( 0xf54, PAL_NONE, 0x120c, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1447
	M( 0xf54, PAL_NONE, 0x120d, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1448
	M( 0xf54, PAL_NONE, 0x120d, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1449
	M( 0xf54, PAL_NONE, 0x120e, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1450
	M( 0xf54, PAL_NONE, 0x120c, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1451
	M( 0xf54, PAL_NONE, 0x120d, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1452
	M( 0xf54, PAL_NONE, 0x120d, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1453
	M( 0xf54, PAL_NONE, 0x120e, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1454
	M( 0xf54, PAL_NONE, 0x120c, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1455
	M( 0xf54, PAL_NONE, 0x120d, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1456
	M( 0xf54, PAL_NONE, 0x120d, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1457
	M( 0xf54, PAL_NONE, 0x120e, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1458
	M( 0xf54, PAL_NONE, 0x120c, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1459
	M( 0xf54, PAL_NONE, 0x120d, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1460
	M( 0xf54, PAL_NONE, 0x120d, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1461
	M( 0xf54, PAL_NONE, 0x120e, PAL_NONE,  0,  0, 16, 16,  60, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1462
	M( 0xf54, PAL_NONE, 0x120f, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1463
	M( 0xf54, PAL_NONE, 0x1210, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1464
	M( 0xf54, PAL_NONE, 0x1210, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1465
	M( 0xf54, PAL_NONE, 0x1211, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1466
	M( 0xf54, PAL_NONE, 0x120f, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1467
	M( 0xf54, PAL_NONE, 0x1210, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1468
	M( 0xf54, PAL_NONE, 0x1210, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1469
	M( 0xf54, PAL_NONE, 0x1211, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1470
	M( 0xf54, PAL_NONE, 0x120f, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1471
	M( 0xf54, PAL_NONE, 0x1210, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1472
	M( 0xf54, PAL_NONE, 0x1210, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1473
	M( 0xf54, PAL_NONE, 0x1211, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1474
	M( 0xf54, PAL_NONE, 0x120f, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1475
	M( 0xf54, PAL_NONE, 0x1210, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1476
	M( 0xf54, PAL_NONE, 0x1210, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1477
	M( 0xf54, PAL_NONE, 0x1211, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1478
	M(0x1243, PAL_NONE, 0x1213, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1479
	M(0x1243, PAL_NONE, 0x1214, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1480
	M(0x1243, PAL_NONE, 0x1214, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1481
	M(0x1243, PAL_NONE, 0x1215, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1482
	M(0x1244, PAL_NONE, 0x1213, PALETTE_TO_RED,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1483
	M(0x1244, PAL_NONE, 0x1214, PALETTE_TO_RED,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1484
	M(0x1244, PAL_NONE, 0x1214, PALETTE_TO_RED,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1485
	M(0x1244, PAL_NONE, 0x1215, PALETTE_TO_RED,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1486
	M(0x1243, PAL_NONE, 0x1213, PALETTE_TO_PINK,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1487
	M(0x1243, PAL_NONE, 0x1214, PALETTE_TO_PINK,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1488
	M(0x1243, PAL_NONE, 0x1214, PALETTE_TO_PINK,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1489
	M(0x1243, PAL_NONE, 0x1215, PALETTE_TO_PINK,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1490
	M(0x1244, PAL_NONE, 0x1213, PALETTE_TO_PALE_GREEN,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1491
	M(0x1244, PAL_NONE, 0x1214, PALETTE_TO_PALE_GREEN,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1492
	M(0x1244, PAL_NONE, 0x1214, PALETTE_TO_PALE_GREEN,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1493
	M(0x1244, PAL_NONE, 0x1215, PALETTE_TO_PALE_GREEN,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1494
	M(0x1243, PAL_NONE, 0x1216, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1495
	M(0x1243, PAL_NONE, 0x1217, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1496
	M(0x1243, PAL_NONE, 0x1217, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1497
	M(0x1243, PAL_NONE, 0x1218, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1498
	M(0x1243, PAL_NONE, 0x1216, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1499
	M(0x1243, PAL_NONE, 0x1217, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1500
	M(0x1243, PAL_NONE, 0x1217, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1501
	M(0x1243, PAL_NONE, 0x1218, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1502
	M(0x1243, PAL_NONE, 0x1216, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1503
	M(0x1243, PAL_NONE, 0x1217, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1504
	M(0x1243, PAL_NONE, 0x1217, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1505
	M(0x1243, PAL_NONE, 0x1218, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1506
	M(0x1243, PAL_NONE, 0x1216, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1507
	M(0x1243, PAL_NONE, 0x1217, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1508
	M(0x1243, PAL_NONE, 0x1217, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1509
	M(0x1243, PAL_NONE, 0x1218, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1510
	M(0x1244, PAL_NONE, 0x1219, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1511
	M(0x1244, PAL_NONE, 0x121a, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1512
	M(0x1244, PAL_NONE, 0x121a, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1513
	M(0x1244, PAL_NONE, 0x121b, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1514
	M(0x1244, PAL_NONE, 0x1219, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1515
	M(0x1244, PAL_NONE, 0x121a, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1516
	M(0x1244, PAL_NONE, 0x121a, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1517
	M(0x1244, PAL_NONE, 0x121b, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1518
	M(0x1244, PAL_NONE, 0x1219, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1519
	M(0x1244, PAL_NONE, 0x121a, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1520
	M(0x1244, PAL_NONE, 0x121a, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1521
	M(0x1244, PAL_NONE, 0x121b, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1522
	M(0x1244, PAL_NONE, 0x1219, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1523
	M(0x1244, PAL_NONE, 0x121a, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1524
	M(0x1244, PAL_NONE, 0x121a, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1525
	M(0x1244, PAL_NONE, 0x121b, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1526
	M(0x1243, PAL_NONE, 0x121c, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1527
	M(0x1243, PAL_NONE, 0x121d, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1528
	M(0x1243, PAL_NONE, 0x121d, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1529
	M(0x1243, PAL_NONE, 0x121e, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1530
	M(0x1243, PAL_NONE, 0x121c, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1531
	M(0x1243, PAL_NONE, 0x121d, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1532
	M(0x1243, PAL_NONE, 0x121d, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1533
	M(0x1243, PAL_NONE, 0x121e, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1534
	M(0x1243, PAL_NONE, 0x121c, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1535
	M(0x1243, PAL_NONE, 0x121d, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1536
	M(0x1243, PAL_NONE, 0x121d, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1537
	M(0x1243, PAL_NONE, 0x121e, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1538
	M(0x1243, PAL_NONE, 0x121c, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1539
	M(0x1243, PAL_NONE, 0x121d, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1540
	M(0x1243, PAL_NONE, 0x121d, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1541
	M(0x1243, PAL_NONE, 0x121e, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1542
	M(0x1244, PAL_NONE, 0x121f, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1543
	M(0x1244, PAL_NONE, 0x1220, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1544
	M(0x1244, PAL_NONE, 0x1220, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1545
	M(0x1244, PAL_NONE, 0x1221, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1546
	M(0x1243, PAL_NONE, 0x121f, PALETTE_TO_PINK,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1547
	M(0x1243, PAL_NONE, 0x1220, PALETTE_TO_PINK,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1548
	M(0x1243, PAL_NONE, 0x1220, PALETTE_TO_PINK,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1549
	M(0x1243, PAL_NONE, 0x1221, PALETTE_TO_PINK,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1550
	M(0x1244, PAL_NONE, 0x121f, PALETTE_TO_MAUVE, 0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1551
	M(0x1244, PAL_NONE, 0x1220, PALETTE_TO_MAUVE, 0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1552
	M(0x1244, PAL_NONE, 0x1220, PALETTE_TO_MAUVE, 0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1553
	M(0x1244, PAL_NONE, 0x1221, PALETTE_TO_MAUVE, 0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1554
	M(0x1243, PAL_NONE, 0x121f, PALETTE_TO_CREAM,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1555
	M(0x1243, PAL_NONE, 0x1220, PALETTE_TO_CREAM,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1556
	M(0x1243, PAL_NONE, 0x1220, PALETTE_TO_CREAM,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1557
	M(0x1243, PAL_NONE, 0x1221, PALETTE_TO_CREAM,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1558
	M(0x1244, PAL_NONE, 0x1222, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1559
	M(0x1244, PAL_NONE, 0x1223, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1560
	M(0x1244, PAL_NONE, 0x1223, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1561
	M(0x1244, PAL_NONE, 0x1224, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1562
	M(0x1243, PAL_NONE, 0x1222, PALETTE_TO_PINK,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1563
	M(0x1243, PAL_NONE, 0x1223, PALETTE_TO_PINK,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1564
	M(0x1243, PAL_NONE, 0x1223, PALETTE_TO_PINK,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1565
	M(0x1243, PAL_NONE, 0x1224, PALETTE_TO_PINK,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1566
	M(0x1244, PAL_NONE, 0x1222, PALETTE_TO_CREAM,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1567
	M(0x1244, PAL_NONE, 0x1223, PALETTE_TO_CREAM,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1568
	M(0x1244, PAL_NONE, 0x1223, PALETTE_TO_CREAM,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1569
	M(0x1244, PAL_NONE, 0x1224, PALETTE_TO_CREAM,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1570
	M(0x1243, PAL_NONE, 0x1222, PALETTE_TO_PALE_GREEN,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1571
	M(0x1243, PAL_NONE, 0x1223, PALETTE_TO_PALE_GREEN,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1572
	M(0x1243, PAL_NONE, 0x1223, PALETTE_TO_PALE_GREEN,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1573
	M(0x1243, PAL_NONE, 0x1224, PALETTE_TO_PALE_GREEN,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1574
	M(0x1243, PAL_NONE, 0x1225, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1575
	M(0x1243, PAL_NONE, 0x1226, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1576
	M(0x1243, PAL_NONE, 0x1226, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1577
	M(0x1243, PAL_NONE, 0x1227, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1578
	M(0x1244, PAL_NONE, 0x1225, PALETTE_TO_PINK,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1579
	M(0x1244, PAL_NONE, 0x1226, PALETTE_TO_PINK,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1580
	M(0x1244, PAL_NONE, 0x1226, PALETTE_TO_PINK,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1581
	M(0x1244, PAL_NONE, 0x1227, PALETTE_TO_PINK,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1582
	M(0x1244, PAL_NONE, 0x1225, PALETTE_TO_RED,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1583
	M(0x1244, PAL_NONE, 0x1226, PALETTE_TO_RED,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1584
	M(0x1244, PAL_NONE, 0x1226, PALETTE_TO_RED,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1585
	M(0x1244, PAL_NONE, 0x1227, PALETTE_TO_RED,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1586
	M(0x1243, PAL_NONE, 0x1225, PALETTE_TO_PALE_GREEN,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1587
	M(0x1243, PAL_NONE, 0x1226, PALETTE_TO_PALE_GREEN,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1588
	M(0x1243, PAL_NONE, 0x1226, PALETTE_TO_PALE_GREEN,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1589
	M(0x1243, PAL_NONE, 0x1227, PALETTE_TO_PALE_GREEN,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1590
	M(0x1243, PAL_NONE, 0x1228, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1591
	M(0x1243, PAL_NONE, 0x1229, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1592
	M(0x1243, PAL_NONE, 0x1229, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1593
	M(0x1243, PAL_NONE, 0x122a, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1594
	M(0x1243, PAL_NONE, 0x1228, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1595
	M(0x1243, PAL_NONE, 0x1229, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1596
	M(0x1243, PAL_NONE, 0x1229, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1597
	M(0x1243, PAL_NONE, 0x122a, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1598
	M(0x1243, PAL_NONE, 0x1228, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1599
	M(0x1243, PAL_NONE, 0x1229, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1600
	M(0x1243, PAL_NONE, 0x1229, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1601
	M(0x1243, PAL_NONE, 0x122a, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1602
	M(0x1243, PAL_NONE, 0x1228, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1603
	M(0x1243, PAL_NONE, 0x1229, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1604
	M(0x1243, PAL_NONE, 0x1229, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1605
	M(0x1243, PAL_NONE, 0x122a, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1606
	M(0x1244, PAL_NONE, 0x122b, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1607
	M(0x1244, PAL_NONE, 0x122d, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1608
	M(0x1244, PAL_NONE, 0x122d, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1609
	M(0x1244, PAL_NONE, 0x122f, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1610
	M(0x1244, PAL_NONE, 0x122b, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1611
	M(0x1244, PAL_NONE, 0x122d, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1612
	M(0x1244, PAL_NONE, 0x122d, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1613
	M(0x1244, PAL_NONE, 0x122f, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1614
	M(0x1244, PAL_NONE, 0x122b, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1615
	M(0x1244, PAL_NONE, 0x122d, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1616
	M(0x1244, PAL_NONE, 0x122d, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1617
	M(0x1244, PAL_NONE, 0x122f, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1618
	M(0x1244, PAL_NONE, 0x122b, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1619
	M(0x1244, PAL_NONE, 0x122d, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1620
	M(0x1244, PAL_NONE, 0x122d, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1621
	M(0x1244, PAL_NONE, 0x122f, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1622
	M(0x1243, PAL_NONE, 0x122c, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1623
	M(0x1243, PAL_NONE, 0x122e, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1624
	M(0x1243, PAL_NONE, 0x122e, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1625
	M(0x1243, PAL_NONE, 0x1230, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1626
	M(0x1243, PAL_NONE, 0x122c, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1627
	M(0x1243, PAL_NONE, 0x122e, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1628
	M(0x1243, PAL_NONE, 0x122e, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1629
	M(0x1243, PAL_NONE, 0x1230, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1630
	M(0x1243, PAL_NONE, 0x122c, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1631
	M(0x1243, PAL_NONE, 0x122e, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1632
	M(0x1243, PAL_NONE, 0x122e, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1633
	M(0x1243, PAL_NONE, 0x1230, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1634
	M(0x1243, PAL_NONE, 0x122c, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1635
	M(0x1243, PAL_NONE, 0x122e, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1636
	M(0x1243, PAL_NONE, 0x122e, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1637
	M(0x1243, PAL_NONE, 0x1230, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1638
	M(0x1244, PAL_NONE, 0x1231, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1639
	M(0x1244, PAL_NONE, 0x1232, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1640
	M(0x1244, PAL_NONE, 0x1232, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1641
	M(0x1244, PAL_NONE, 0x1233, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1642
	M(0x1244, PAL_NONE, 0x1231, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1643
	M(0x1244, PAL_NONE, 0x1232, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1644
	M(0x1244, PAL_NONE, 0x1232, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1645
	M(0x1244, PAL_NONE, 0x1233, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1646
	M(0x1244, PAL_NONE, 0x1231, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1647
	M(0x1244, PAL_NONE, 0x1232, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1648
	M(0x1244, PAL_NONE, 0x1232, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1649
	M(0x1244, PAL_NONE, 0x1233, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1650
	M(0x1244, PAL_NONE, 0x1231, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1651
	M(0x1244, PAL_NONE, 0x1232, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1652
	M(0x1244, PAL_NONE, 0x1232, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1653
	M(0x1244, PAL_NONE, 0x1233, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1654
	M(0x1243, PAL_NONE, 0x1234, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1655
	M(0x1243, PAL_NONE, 0x1235, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1656
	M(0x1243, PAL_NONE, 0x1235, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1657
	M(0x1243, PAL_NONE, 0x1236, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1658
	M(0x1243, PAL_NONE, 0x1234, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1659
	M(0x1243, PAL_NONE, 0x1235, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1660
	M(0x1243, PAL_NONE, 0x1235, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1661
	M(0x1243, PAL_NONE, 0x1236, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1662
	M(0x1243, PAL_NONE, 0x1234, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1663
	M(0x1243, PAL_NONE, 0x1235, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1664
	M(0x1243, PAL_NONE, 0x1235, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1665
	M(0x1243, PAL_NONE, 0x1236, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1666
	M(0x1243, PAL_NONE, 0x1234, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1667
	M(0x1243, PAL_NONE, 0x1235, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1668
	M(0x1243, PAL_NONE, 0x1235, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1669
	M(0x1243, PAL_NONE, 0x1236, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1670
	M(0x1244, PAL_NONE, 0x1237, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1671
	M(0x1244, PAL_NONE, 0x1238, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1672
	M(0x1244, PAL_NONE, 0x1238, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1673
	M(0x1244, PAL_NONE, 0x1239, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1674
	M(0x1244, PAL_NONE, 0x1237, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1675
	M(0x1244, PAL_NONE, 0x1238, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1676
	M(0x1244, PAL_NONE, 0x1238, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1677
	M(0x1244, PAL_NONE, 0x1239, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1678
	M(0x1244, PAL_NONE, 0x1237, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1679
	M(0x1244, PAL_NONE, 0x1238, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1680
	M(0x1244, PAL_NONE, 0x1238, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1681
	M(0x1244, PAL_NONE, 0x1239, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1682
	M(0x1244, PAL_NONE, 0x1237, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1683
	M(0x1244, PAL_NONE, 0x1238, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1684
	M(0x1244, PAL_NONE, 0x1238, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1685
	M(0x1244, PAL_NONE, 0x1239, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1686
	M(0x1243, PAL_NONE, 0x123a, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1687
	M(0x1243, PAL_NONE, 0x123b, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1688
	M(0x1243, PAL_NONE, 0x123b, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1689
	M(0x1243, PAL_NONE, 0x123c, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1690
	M(0x1243, PAL_NONE, 0x123a, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1691
	M(0x1243, PAL_NONE, 0x123b, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1692
	M(0x1243, PAL_NONE, 0x123b, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1693
	M(0x1243, PAL_NONE, 0x123c, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1694
	M(0x1243, PAL_NONE, 0x123a, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1695
	M(0x1243, PAL_NONE, 0x123b, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1696
	M(0x1243, PAL_NONE, 0x123b, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1697
	M(0x1243, PAL_NONE, 0x123c, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1698
	M(0x1243, PAL_NONE, 0x123a, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1699
	M(0x1243, PAL_NONE, 0x123b, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1700
	M(0x1243, PAL_NONE, 0x123b, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1701
	M(0x1243, PAL_NONE, 0x123c, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1702
	M(0x1244, PAL_NONE, 0x123d, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1703
	M(0x1244, PAL_NONE, 0x123e, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1704
	M(0x1244, PAL_NONE, 0x123e, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1705
	M(0x1244, PAL_NONE, 0x123f, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1706
	M(0x1244, PAL_NONE, 0x123d, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1707
	M(0x1244, PAL_NONE, 0x123e, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1708
	M(0x1244, PAL_NONE, 0x123e, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1709
	M(0x1244, PAL_NONE, 0x123f, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1710
	M(0x1244, PAL_NONE, 0x123d, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1711
	M(0x1244, PAL_NONE, 0x123e, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1712
	M(0x1244, PAL_NONE, 0x123e, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1713
	M(0x1244, PAL_NONE, 0x123f, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1714
	M(0x1244, PAL_NONE, 0x123d, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1715
	M(0x1244, PAL_NONE, 0x123e, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1716
	M(0x1244, PAL_NONE, 0x123e, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1717
	M(0x1244, PAL_NONE, 0x123f, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1718
	M(0x1243, PAL_NONE, 0x1240, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1719
	M(0x1243, PAL_NONE, 0x1241, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1720
	M(0x1243, PAL_NONE, 0x1241, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1721
	M(0x1243, PAL_NONE, 0x1242, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1722
	M(0x1243, PAL_NONE, 0x1240, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1723
	M(0x1243, PAL_NONE, 0x1241, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1724
	M(0x1243, PAL_NONE, 0x1241, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1725
	M(0x1243, PAL_NONE, 0x1242, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1726
	M(0x1243, PAL_NONE, 0x1240, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1727
	M(0x1243, PAL_NONE, 0x1241, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1728
	M(0x1243, PAL_NONE, 0x1241, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1729
	M(0x1243, PAL_NONE, 0x1242, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1730
	M(0x1243, PAL_NONE, 0x1240, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1731
	M(0x1243, PAL_NONE, 0x1241, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1732
	M(0x1243, PAL_NONE, 0x1241, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1733
	M(0x1243, PAL_NONE, 0x1242, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1734
	M(0x1243, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1735
	M(0x1243, PAL_NONE, 0x1256, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1736
	M(0x1243, PAL_NONE, 0x1256, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1737
	M(0x1243, PAL_NONE, 0x1256, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1738
	M(0x1244, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1739
	M(0x1244, PAL_NONE, 0x1256, PALETTE_TO_PALE_GREEN,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1740
	M(0x1244, PAL_NONE, 0x1256, PALETTE_TO_PALE_GREEN,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1741
	M(0x1244, PAL_NONE, 0x1256, PALETTE_TO_PALE_GREEN,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1742
	M(0x1243, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1743
	M(0x1243, PAL_NONE, 0x1256, PALETTE_TO_RED,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1744
	M(0x1243, PAL_NONE, 0x1256, PALETTE_TO_RED,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1745
	M(0x1243, PAL_NONE, 0x1256, PALETTE_TO_RED,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1746
	M(0x1244, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1747
	M(0x1244, PAL_NONE, 0x1256, PALETTE_TO_CREAM,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1748
	M(0x1244, PAL_NONE, 0x1256, PALETTE_TO_CREAM,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1749
	M(0x1244, PAL_NONE, 0x1256, PALETTE_TO_CREAM,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1750
	M(0x1243, PAL_NONE, 0x1257, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1751
	M(0x1243, PAL_NONE, 0x1258, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1752
	M(0x1243, PAL_NONE, 0x1258, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1753
	M(0x1243, PAL_NONE, 0x1259, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1754
	M(0x1243, PAL_NONE, 0x1257, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1755
	M(0x1243, PAL_NONE, 0x1258, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1756
	M(0x1243, PAL_NONE, 0x1258, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1757
	M(0x1243, PAL_NONE, 0x1259, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1758
	M(0x1243, PAL_NONE, 0x1257, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1759
	M(0x1243, PAL_NONE, 0x1258, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1760
	M(0x1243, PAL_NONE, 0x1258, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1761
	M(0x1243, PAL_NONE, 0x1259, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1762
	M(0x1243, PAL_NONE, 0x1257, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1763
	M(0x1243, PAL_NONE, 0x1258, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1764
	M(0x1243, PAL_NONE, 0x1258, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1765
	M(0x1243, PAL_NONE, 0x1259, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1766
	M(0x1244, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1767
	M(0x1244, PAL_NONE, 0x125a, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1768
	M(0x1244, PAL_NONE, 0x125a, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1769
	M(0x1244, PAL_NONE, 0x125a, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1770
	M(0x1244, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1771
	M(0x1244, PAL_NONE, 0x125a, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1772
	M(0x1244, PAL_NONE, 0x125a, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1773
	M(0x1244, PAL_NONE, 0x125a, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1774
	M(0x1244, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1775
	M(0x1244, PAL_NONE, 0x125a, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1776
	M(0x1244, PAL_NONE, 0x125a, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1777
	M(0x1244, PAL_NONE, 0x125a, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1778
	M(0x1244, PAL_NONE,    0x0, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1779
	M(0x1244, PAL_NONE, 0x125a, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1780
	M(0x1244, PAL_NONE, 0x125a, PAL_NONE,  0,  0, 16, 16,  50, 0),
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
  1781
	M(0x1244, PAL_NONE, 0x125a, PAL_NONE,  0,  0, 16, 16,  50, 0),
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1782
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1783
#undef M
6474
c9793cb1ecc9 (svn r9650) -Documentation: Finalize doxygen comments for town_land.h
belugas
parents: 6466
diff changeset
  1784
/** Make sure we have the right number of elements: 4 variants * 4 build stages for each house */
6332
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6248
diff changeset
  1785
assert_compile(lengthof(_town_draw_tile_data) == (NEW_HOUSE_OFFSET) * 4 * 4);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1786
6332
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6248
diff changeset
  1787
/** Describes the data that defines each house in the game
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6248
diff changeset
  1788
 * @param mnd introduction year of the house
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6248
diff changeset
  1789
 * @param mxd last year it can be built
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6248
diff changeset
  1790
 * @param p   population
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6248
diff changeset
  1791
 * @param rc  cost multiplier for removing it
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6248
diff changeset
  1792
 * @param bn  building name
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6248
diff changeset
  1793
 * @param rr  rating decrease if removed
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6248
diff changeset
  1794
 * @param mg  mail generation multiplier
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1795
 * @param ca1 acceptance for 1st CargoID
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1796
 * @param ca2 acceptance for 2nd CargoID
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1797
 * @param ca3 acceptance for 3rd CargoID
6332
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6248
diff changeset
  1798
 * @param bf  building flags (size, stadium etc...)
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6248
diff changeset
  1799
 * @param ba  building availability (zone, climate...)
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1800
 * @param cg1 1st CargoID available
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1801
 * @param cg2 2nd CargoID available
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1802
 * @param cg3 3rd CargoID available
6332
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6248
diff changeset
  1803
 * @see HouseSpec
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6248
diff changeset
  1804
 */
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  1805
#define MS(mnd, mxd, p, rc, bn, rr, mg, ca1, ca2, ca3, bf, ba, cg1, cg2, cg3) \
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1806
	{mnd, mxd, p, rc, bn, rr, mg, {ca1, ca2, ca3}, {cg1, cg2, cg3}, bf, ba, true, \
6605
d92f454a00a6 (svn r9823) -Feature: Add support for house property 1F - minimum life span.
maedhros
parents: 6474
diff changeset
  1807
	 0, NULL, 0, 0, {0, 0, 0, 0}, 16, NO_EXTRA_FLAG, HOUSE_NO_CLASS, 0, 2, 0, 0, 0, NULL}
6474
c9793cb1ecc9 (svn r9650) -Documentation: Finalize doxygen comments for town_land.h
belugas
parents: 6466
diff changeset
  1808
/** House specifications from original data */
6332
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6248
diff changeset
  1809
static const HouseSpec _original_house_specs[] = {
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6248
diff changeset
  1810
	/**
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6248
diff changeset
  1811
	 *                                                              remove_rating_decrease
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6248
diff changeset
  1812
	 *                                                               |    mail_generation
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1813
	 *     min_date                                                  |    |    1st CargoID acceptance
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1814
	 *     |         max_date                                        |    |    |    2nd CargoID acceptance
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1815
	 *     |         |    population                                 |    |    |    |    3th CargoID acceptance
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1816
	 *     |         |    |    removal_cost                          |    |    |    |    |
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1817
	 *     |         |    |    |    building_name                    |    |    |    |    |
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1818
	 *     |         |    |    |    |                                |    |    |    |    |
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1819
	 *     |         |    |    |    |                                |    |    |    |    |
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1820
	 * +-building_flags   |    |    |                                |    |    |    |    |
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1821
	 * +-building_availability |    |                                |    |    |    |    |
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1822
	 * +-cargoID accepted |    |    |                                |    |    |    |    |
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1823
	 * |   |         |    |    |    |                                |    |    |    |    | */
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  1824
	MS(1963, MAX_YEAR, 187, 150, STR_200F_TALL_OFFICE_BLOCK,      140,  70,   8,   3,   4,
6332
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6248
diff changeset
  1825
	   TILE_SIZE_1x1,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1826
	   HZ_TEMP | HZ_ZON5,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1827
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //00
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  1828
	MS(1957, MAX_YEAR,  85, 140, STR_2010_OFFICE_BLOCK,           130,  55,   8,   3,   4,
6332
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6248
diff changeset
  1829
	   TILE_SIZE_1x1,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1830
	   HZ_TEMP | HZ_ZON5 | HZ_ZON4,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1831
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //01
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  1832
	MS(1968, MAX_YEAR,  40, 100, STR_2011_SMALL_BLOCK_OF_FLATS,    90,  20,   8,   3,   1,
6332
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6248
diff changeset
  1833
	   TILE_SIZE_1x1,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1834
	   HZ_TEMP | HZ_ZON4 | HZ_ZON3 | HZ_ZON2,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1835
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //02
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  1836
	MS(   0, MAX_YEAR,   5,  90, STR_2012_CHURCH,                 230,   2,   2,   0,   0,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1837
	   BUILDING_IS_CHURCH | TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1838
	   HZ_TEMP | HZ_ZON4 | HZ_ZON3 | HZ_ZON2 | HZ_ZON1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1839
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //03
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  1840
	MS(1975, MAX_YEAR, 220, 160, STR_2013_LARGE_OFFICE_BLOCK,     160,  85,  10,   4,   6,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1841
	   BUILDING_IS_ANIMATED | TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1842
	   HZ_TEMP | HZ_SUBARTC_BELOW | HZ_SUBTROPIC | HZ_ZON5,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1843
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //04
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  1844
	MS(1975, MAX_YEAR, 220, 160, STR_2013_LARGE_OFFICE_BLOCK,     160,  85,  10,   4,   6,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1845
	   BUILDING_IS_ANIMATED | TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1846
	   HZ_SUBARTC_ABOVE  | HZ_ZON5,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1847
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //05
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  1848
	MS(   0, MAX_YEAR,  30,  80, STR_2014_TOWN_HOUSES,             80,  12,   4,   1,   0,
6332
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6248
diff changeset
  1849
	   TILE_SIZE_1x1,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1850
	   HZ_TEMP | HZ_ZON4 | HZ_ZON3 | HZ_ZON2 | HZ_ZON1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1851
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //06
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  1852
	MS(1959, MAX_YEAR, 140, 180, STR_2015_HOTEL,                  150,  22,   6,   1,   2,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1853
	   TILE_SIZE_1x2,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1854
	   HZ_TEMP | HZ_ZON5 | HZ_ZON3,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1855
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //07
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  1856
	MS(1959, MAX_YEAR,   0, 180, STR_2015_HOTEL,                  150,  22,   6,   1,   2,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1857
	   TILE_NO_FLAG,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1858
	   HZ_NOZNS,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1859
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //08
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  1860
	MS(1945, MAX_YEAR,   0,  65, STR_2016_STATUE,                  40,   0,   2,   0,   0,
6332
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6248
diff changeset
  1861
	   TILE_SIZE_1x1,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1862
	   HZ_TEMP | HZ_SUBARTC_BELOW | HZ_SUBTROPIC | HZ_ZON5 | HZ_ZON4,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1863
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //09
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  1864
	MS(1945, MAX_YEAR,   0,  65, STR_2017_FOUNTAIN,                40,   0,   2,   0,   0,
6332
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6248
diff changeset
  1865
	   TILE_SIZE_1x1,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1866
	   HZ_TEMP | HZ_SUBARTC_BELOW | HZ_SUBTROPIC | HZ_ZON5,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1867
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //0A
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  1868
	MS(   0, MAX_YEAR,   0,  60, STR_2018_PARK,                    75,   0,   2,   0,   0,
6332
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6248
diff changeset
  1869
	   TILE_SIZE_1x1,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1870
	   HZ_TEMP | HZ_ZON3,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1871
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //0B
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  1872
	MS(1935, MAX_YEAR,   0,  60, STR_2018_PARK,                    75,   0,   2,   0,   0,
6332
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6248
diff changeset
  1873
	   TILE_SIZE_1x1,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1874
	   HZ_TEMP | HZ_ZON4,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1875
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //0C
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  1876
	MS(1951, MAX_YEAR, 150, 130, STR_2019_OFFICE_BLOCK,           110,  65,   8,   2,   4,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1877
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1878
	   HZ_TEMP | HZ_ZON5 | HZ_ZON4,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1879
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //0D
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  1880
	MS(1930, 1960,      95, 110, STR_201A_SHOPS_AND_OFFICES,      100,  48,   6,   2,   3,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1881
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1882
	   HZ_TEMP | HZ_ZON5 | HZ_ZON4 | HZ_ZON3,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1883
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //0E
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  1884
	MS(1930, 1960,      95, 105, STR_201A_SHOPS_AND_OFFICES,      100,  48,   6,   2,   3,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1885
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1886
	   HZ_TEMP | HZ_ZON5 | HZ_ZON4 | HZ_ZON3,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1887
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //0F
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  1888
	MS(1930, 1960,      95, 107, STR_201A_SHOPS_AND_OFFICES,      100,  48,   6,   2,   3,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1889
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1890
	   HZ_TEMP | HZ_ZON5 | HZ_ZON4 | HZ_ZON3,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1891
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //10
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  1892
	MS(1977, MAX_YEAR, 130, 200, STR_201B_MODERN_OFFICE_BUILDING, 150,  50,  10,   3,   6,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1893
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1894
	   HZ_TEMP | HZ_SUBARTC_BELOW | HZ_SUBTROPIC | HZ_ZON5,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1895
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //11
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  1896
	MS(1983, MAX_YEAR,   6, 145, STR_201C_WAREHOUSE,              110,  10,   6,   3,   8,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1897
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1898
	   HZ_TEMP | HZ_ZON5,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1899
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //12
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  1900
	MS(1985, MAX_YEAR, 110, 155, STR_201D_OFFICE_BLOCK,           110,  55,   6,   2,   6,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1901
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1902
	   HZ_TEMP | HZ_ZON5,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1903
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //13
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  1904
	MS(   0, MAX_YEAR,  65, 250, STR_201E_STADIUM,                300,   5,   4,   0,   0,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1905
	   BUILDING_IS_STADIUM | TILE_SIZE_2x2,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1906
	   HZ_TEMP | HZ_ZON4 | HZ_ZON3 | HZ_ZON2 | HZ_ZON1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1907
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //14
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  1908
	MS(   0, MAX_YEAR,   0, 250, STR_201E_STADIUM,                300,   5,   4,   0,   0,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1909
	   TILE_NO_FLAG,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1910
	   HZ_NOZNS,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1911
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //15
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  1912
	MS(   0, MAX_YEAR,   0, 250, STR_201E_STADIUM,                300,   5,   4,   0,   0,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1913
	   TILE_NO_FLAG,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1914
	   HZ_NOZNS,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1915
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //16
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  1916
	MS(   0, MAX_YEAR,   0, 250, STR_201E_STADIUM,                300,   5,   4,   0,   0,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1917
	   TILE_NO_FLAG,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1918
	   HZ_NOZNS,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1919
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //17
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  1920
	MS(   0, 1951,      15,  70, STR_201F_OLD_HOUSES,              75,   6,   3,   1,   0,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1921
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1922
	   HZ_TEMP | HZ_ZON2 | HZ_ZON1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1923
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //18
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  1924
	MS(   0, 1952,      12,  75, STR_2036_COTTAGES,                75,   7,   3,   1,   0,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1925
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1926
	   HZ_TEMP | HZ_ZON1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1927
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //19
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  1928
	MS(1931, MAX_YEAR,  13,  71, STR_2037_HOUSES,                  75,   8,   3,   1,   0,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1929
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1930
	   HZ_TEMP | HZ_ZON4 | HZ_ZON3 | HZ_ZON2 | HZ_ZON1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1931
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //1A
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  1932
	MS(1935, MAX_YEAR, 100, 135, STR_2038_FLATS,                  100,  35,   7,   2,   2,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1933
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1934
	   HZ_TEMP | HZ_ZON5 | HZ_ZON4 | HZ_ZON3,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1935
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //1B
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  1936
	MS(1963, MAX_YEAR, 170, 145, STR_2039_TALL_OFFICE_BLOCK,      170,  50,   8,   3,   3,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1937
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1938
	   HZ_TEMP | HZ_ZON5 | HZ_ZON4 | HZ_ZON3,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1939
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //1C
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  1940
	MS(   0, 1955,     100, 132, STR_203A_SHOPS_AND_OFFICES,      135,  40,   6,   2,   3,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1941
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1942
	   HZ_TEMP | HZ_ZON5 | HZ_ZON4 | HZ_ZON3,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1943
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //1D
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  1944
	MS(1973, MAX_YEAR, 180, 155, STR_203B_SHOPS_AND_OFFICES,      180,  64,   8,   3,   3,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1945
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1946
	   HZ_TEMP | HZ_SUBTROPIC | HZ_ZON5 | HZ_ZON3,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1947
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //1E
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  1948
	MS(   0, MAX_YEAR,  35, 220, STR_203C_THEATER,                230,  23,   8,   2,   2,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1949
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1950
	   HZ_TEMP | HZ_ZON5 | HZ_ZON4,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1951
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //1F
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  1952
	MS(1958, MAX_YEAR,  65, 250, STR_203D_STADIUM,                300,   5,   4,   0,   0,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1953
	   BUILDING_IS_STADIUM | TILE_SIZE_2x2,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1954
	   HZ_TEMP | HZ_SUBARTC_BELOW | HZ_SUBTROPIC | HZ_ZON4 | HZ_ZON3 | HZ_ZON2 | HZ_ZON1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1955
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //20
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  1956
	MS(1958, MAX_YEAR,   0, 250, STR_203D_STADIUM,                300,   5,   4,   0,   0,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1957
	   TILE_NO_FLAG,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1958
	   HZ_NOZNS,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1959
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //21
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  1960
	MS(1958, MAX_YEAR,   0, 250, STR_203D_STADIUM,                300,   5,   4,   0,   0,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1961
	   TILE_NO_FLAG,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1962
	   HZ_NOZNS,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1963
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //22
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  1964
	MS(1958, MAX_YEAR,   0, 250, STR_203D_STADIUM,                300,   5,   4,   0,   0,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1965
	   TILE_NO_FLAG,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1966
	   HZ_NOZNS,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1967
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //23
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  1968
	MS(2000, MAX_YEAR, 140, 170, STR_203E_OFFICES,                250,  65,   8,   3,   2,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1969
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1970
	   HZ_TEMP | HZ_SUBARTC_BELOW | HZ_SUBTROPIC | HZ_ZON5 | HZ_ZON4,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1971
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //24
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  1972
	MS(   0, 1960,      15,  70, STR_203F_HOUSES,                  75,   6,   3,   1,   1,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1973
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1974
	   HZ_SUBARTC_BELOW | HZ_ZON2 | HZ_ZON1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1975
	   CT_PASSENGERS, CT_MAIL, CT_FOOD), //25
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  1976
	MS(   0, 1960,      15,  70, STR_203F_HOUSES,                  75,   6,   3,   1,   1,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1977
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1978
	   HZ_SUBARTC_ABOVE | HZ_ZON2 | HZ_ZON1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1979
	   CT_PASSENGERS, CT_MAIL, CT_FOOD), //26
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  1980
	MS(1945, MAX_YEAR,  35, 210, STR_2040_CINEMA,                 230,  23,   8,   2,   2,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1981
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1982
	   HZ_TEMP | HZ_ZON5 | HZ_ZON4 | HZ_ZON3,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1983
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //27
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  1984
	MS(1983, MAX_YEAR, 180, 250, STR_2041_SHOPPING_MALL,          300,   5,   8,   2,   3,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1985
	   TILE_SIZE_2x2,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1986
	   HZ_TEMP | HZ_ZON5 | HZ_ZON4 | HZ_ZON3 |HZ_ZON2,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1987
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //28
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  1988
	MS(1983, MAX_YEAR,   0, 250, STR_2041_SHOPPING_MALL,          300,   5,   8,   2,   3,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1989
	   TILE_NO_FLAG,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1990
	   HZ_NOZNS,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1991
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //29
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  1992
	MS(1983, MAX_YEAR,   0, 250, STR_2041_SHOPPING_MALL,          300,   5,   8,   2,   3,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1993
	   TILE_NO_FLAG,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1994
	   HZ_NOZNS,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1995
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //2A
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  1996
	MS(1983, MAX_YEAR,   0, 250, STR_2041_SHOPPING_MALL,          300,   5,   8,   2,   3,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1997
	   TILE_NO_FLAG,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1998
	   HZ_NOZNS,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  1999
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //2B
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2000
	MS(   0, MAX_YEAR,  80, 100, STR_2038_FLATS,                   90,  20,   5,   2,   2,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2001
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2002
	   HZ_SUBARTC_BELOW | HZ_ZON5 | HZ_ZON4 | HZ_ZON3,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2003
	   CT_PASSENGERS, CT_MAIL, CT_FOOD), //2C
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2004
	MS(   0, MAX_YEAR,  80, 100, STR_2038_FLATS,                   90,  20,   5,   2,   2,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2005
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2006
	   HZ_SUBARTC_ABOVE  | HZ_ZON5 | HZ_ZON4 | HZ_ZON3,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2007
	   CT_PASSENGERS, CT_MAIL, CT_FOOD), //2D
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2008
	MS(   0, MAX_YEAR,  16,  70, STR_203F_HOUSES,                  70,   6,   3,   1,   2,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2009
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2010
	   HZ_SUBARTC_BELOW | HZ_ZON4 | HZ_ZON3 | HZ_ZON2 | HZ_ZON1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2011
	   CT_PASSENGERS, CT_MAIL, CT_FOOD), //2E
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2012
	MS(   0, MAX_YEAR,  16,  70, STR_203F_HOUSES,                  70,   6,   3,   1,   2,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2013
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2014
	   HZ_SUBARTC_ABOVE | HZ_ZON4 | HZ_ZON3 | HZ_ZON2 | HZ_ZON1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2015
	   CT_PASSENGERS, CT_MAIL, CT_FOOD), //2F
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2016
	MS(   0, 1963,      14,  80, STR_203F_HOUSES,                  70,   6,   3,   1,   2,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2017
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2018
	   HZ_SUBARTC_BELOW | HZ_ZON3 | HZ_ZON2 | HZ_ZON1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2019
	   CT_PASSENGERS, CT_MAIL, CT_FOOD), //30
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2020
	MS(   0, 1963,      14,  80, STR_203F_HOUSES,                  70,   6,   3,   1,   2,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2021
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2022
	   HZ_SUBARTC_ABOVE | HZ_ZON3 | HZ_ZON2 | HZ_ZON1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2023
	   CT_PASSENGERS, CT_MAIL, CT_FOOD), //31
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2024
	MS(1966, MAX_YEAR, 135, 150, STR_200F_TALL_OFFICE_BLOCK,      120,  60,   8,   3,   4,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2025
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2026
	   HZ_SUBARTC_BELOW | HZ_SUBTROPIC | HZ_ZON5 | HZ_ZON4,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2027
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //32
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2028
	MS(1966, MAX_YEAR, 135, 150, STR_200F_TALL_OFFICE_BLOCK,      120,  60,   8,   3,   4,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2029
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2030
	   HZ_SUBARTC_ABOVE | HZ_ZON5 | HZ_ZON4,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2031
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //33
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2032
	MS(1970, MAX_YEAR, 170, 170, STR_200F_TALL_OFFICE_BLOCK,      130,  70,   9,   3,   4,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2033
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2034
	   HZ_SUBARTC_BELOW | HZ_ZON5 | HZ_ZON4,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2035
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //34
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2036
	MS(1970, MAX_YEAR, 170, 170, STR_200F_TALL_OFFICE_BLOCK,      130,  70,   9,   3,   4,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2037
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2038
	   HZ_SUBARTC_ABOVE | HZ_ZON5 | HZ_ZON4,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2039
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //35
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2040
	MS(1974, MAX_YEAR, 210, 200, STR_200F_TALL_OFFICE_BLOCK,      140,  80,  10,   3,   5,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2041
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2042
	   HZ_SUBARTC_BELOW | HZ_SUBTROPIC | HZ_ZON5 | HZ_ZON4,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2043
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //36
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2044
	MS(1974, MAX_YEAR, 210, 200, STR_200F_TALL_OFFICE_BLOCK,      140,  80,  10,   3,   5,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2045
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2046
	   HZ_SUBARTC_ABOVE | HZ_ZON5 | HZ_ZON4,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2047
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //37
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2048
	MS(   0, MAX_YEAR,  10,  60, STR_203F_HOUSES,                  60,   5,   2,   1,   1,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2049
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2050
	   HZ_SUBARTC_BELOW | HZ_ZON1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2051
	   CT_PASSENGERS, CT_MAIL, CT_FOOD), //38
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2052
	MS(   0, MAX_YEAR,  10,  60, STR_203F_HOUSES,                  60,   5,   2,   1,   1,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2053
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2054
	   HZ_SUBARTC_ABOVE | HZ_ZON1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2055
	   CT_PASSENGERS, CT_MAIL, CT_FOOD), //39
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2056
	MS(   0, MAX_YEAR,  25, 100, STR_201A_SHOPS_AND_OFFICES,       80,  20,   3,   1,   1,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2057
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2058
	   HZ_SUBARTC_BELOW | HZ_ZON5 | HZ_ZON4 | HZ_ZON3 | HZ_ZON2,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2059
	   CT_PASSENGERS, CT_MAIL, CT_FOOD), //3A
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2060
	MS(   0, MAX_YEAR,  25, 100, STR_201A_SHOPS_AND_OFFICES,       80,  20,   3,   1,   1,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2061
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2062
	   HZ_SUBARTC_ABOVE | HZ_ZON5 | HZ_ZON4 | HZ_ZON3 | HZ_ZON2,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2063
	   CT_PASSENGERS, CT_MAIL, CT_FOOD), //3B
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2064
	MS(   0, MAX_YEAR,   6,  85, STR_2012_CHURCH,                 230,   2,   2,   0,   0,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2065
	   BUILDING_IS_CHURCH | TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2066
	   HZ_SUBARTC_BELOW | HZ_ZON4 | HZ_ZON3 | HZ_ZON2 | HZ_ZON1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2067
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //3C
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2068
	MS(   0, MAX_YEAR,   6,  85, STR_2012_CHURCH,                 230,   2,   2,   0,   0,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2069
	   BUILDING_IS_CHURCH | TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2070
	   HZ_SUBARTC_ABOVE | HZ_ZON4 | HZ_ZON3 | HZ_ZON2 | HZ_ZON1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2071
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //3D
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2072
	MS(   0, MAX_YEAR,  17,  80, STR_203F_HOUSES,                  80,   7,   3,   1,   1,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2073
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2074
	   HZ_SUBARTC_BELOW | HZ_ZON3 | HZ_ZON2 | HZ_ZON1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2075
	   CT_PASSENGERS, CT_MAIL, CT_FOOD), //3E
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2076
	MS(   0, MAX_YEAR,  17,  80, STR_203F_HOUSES,                  80,   7,   3,   1,   1,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2077
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2078
	   HZ_SUBARTC_ABOVE | HZ_ZON3 | HZ_ZON2 | HZ_ZON1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2079
	   CT_PASSENGERS, CT_MAIL, CT_FOOD), //3F
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2080
	MS(   0, 1960,      90, 140, STR_201A_SHOPS_AND_OFFICES,      110,  45,   6,   2,   3,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2081
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2082
	   HZ_SUBARTC_BELOW| HZ_ZON5 | HZ_ZON4 | HZ_ZON3,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2083
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //40
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2084
	MS(   0, 1960,      90, 140, STR_201A_SHOPS_AND_OFFICES,      110,  45,   6,   2,   3,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2085
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2086
	   HZ_SUBARTC_ABOVE| HZ_ZON5 | HZ_ZON4 | HZ_ZON3,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2087
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //41
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2088
	MS(1972, MAX_YEAR, 140, 160, STR_2015_HOTEL,                  160,  25,   6,   1,   3,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2089
	   TILE_SIZE_1x2,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2090
	   HZ_SUBARTC_BELOW| HZ_ZON5 | HZ_ZON4 | HZ_ZON3,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2091
	   CT_PASSENGERS, CT_MAIL, CT_FOOD), //42
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2092
	MS(1972, MAX_YEAR,   0, 160, STR_2015_HOTEL,                  160,  25,   6,   1,   2,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2093
	   TILE_NO_FLAG,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2094
	   HZ_NOZNS,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2095
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //43
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2096
	MS(1972, MAX_YEAR, 140, 160, STR_2015_HOTEL,                  160,  25,   6,   1,   3,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2097
	   TILE_SIZE_1x2,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2098
	   HZ_SUBARTC_ABOVE| HZ_ZON5 | HZ_ZON4 | HZ_ZON3,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2099
	   CT_PASSENGERS, CT_MAIL, CT_FOOD), //44
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2100
	MS(1972, MAX_YEAR,   0, 160, STR_2015_HOTEL,                  160,  25,   6,   1,   2,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2101
	   TILE_NO_FLAG,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2102
	   HZ_NOZNS,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2103
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //45
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2104
	MS(1963, MAX_YEAR, 105, 130, STR_201A_SHOPS_AND_OFFICES,      105,  50,   7,   2,   3,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2105
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2106
	   HZ_SUBARTC_BELOW | HZ_SUBTROPIC | HZ_ZON5 | HZ_ZON4 | HZ_ZON3,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2107
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //46
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2108
	MS(1963, MAX_YEAR, 105, 130, STR_201A_SHOPS_AND_OFFICES,      105,  50,   7,   2,   3,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2109
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2110
	   HZ_SUBARTC_ABOVE| HZ_ZON5 | HZ_ZON4 | HZ_ZON3,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2111
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //47
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2112
	MS(1978, MAX_YEAR, 190, 190, STR_200F_TALL_OFFICE_BLOCK,      135,  75,   9,   3,   4,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2113
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2114
	   HZ_SUBARTC_BELOW | HZ_ZON5 | HZ_ZON4,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2115
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //48
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2116
	MS(1978, MAX_YEAR, 190, 190, STR_200F_TALL_OFFICE_BLOCK,      135,  75,   9,   3,   4,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2117
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2118
	   HZ_SUBARTC_ABOVE | HZ_ZON5 | HZ_ZON4,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2119
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //49
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2120
	MS(1967, MAX_YEAR, 250, 140, STR_200F_TALL_OFFICE_BLOCK,      200,  60,   7,   2,   2,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2121
	   TILE_SIZE_2x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2122
	   HZ_SUBARTC_BELOW| HZ_ZON5 | HZ_ZON4 | HZ_ZON3,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2123
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //4A
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2124
	MS(1967, MAX_YEAR,   0, 140, STR_200F_TALL_OFFICE_BLOCK,      200,  60,   7,   2,   2,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2125
	   TILE_NO_FLAG,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2126
	   HZ_NOZNS,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2127
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //4B
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2128
	MS(1967, MAX_YEAR, 250, 140, STR_200F_TALL_OFFICE_BLOCK,      200,  60,   7,   2,   2,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2129
	   TILE_SIZE_2x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2130
	   HZ_SUBARTC_ABOVE | HZ_ZON5 | HZ_ZON4 | HZ_ZON3,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2131
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //4C
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2132
	MS(1967, MAX_YEAR,   0, 140, STR_200F_TALL_OFFICE_BLOCK,      200,  60,   7,   2,   2,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2133
	   TILE_NO_FLAG,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2134
	   HZ_NOZNS,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2135
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //4D
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2136
	MS(   0, MAX_YEAR,  16,  80, STR_203F_HOUSES,                  80,   6,   3,   1,   2,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2137
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2138
	   HZ_SUBTROPIC | HZ_ZON5 | HZ_ZON4 | HZ_ZON3 | HZ_ZON2,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2139
	   CT_PASSENGERS, CT_MAIL, CT_FOOD), //4E
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2140
	MS(   0, MAX_YEAR,  16,  80, STR_203F_HOUSES,                  80,   6,   3,   1,   2,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2141
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2142
	   HZ_SUBTROPIC | HZ_ZON5 | HZ_ZON4 | HZ_ZON3 | HZ_ZON2,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2143
	   CT_PASSENGERS, CT_MAIL, CT_FOOD), //4F
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2144
	MS(   0, MAX_YEAR,  16,  80, STR_203F_HOUSES,                  80,   5,   3,   1,   2,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2145
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2146
	   HZ_SUBTROPIC | HZ_ZON5 | HZ_ZON4 | HZ_ZON3 | HZ_ZON2,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2147
	   CT_PASSENGERS, CT_MAIL, CT_FOOD), //50
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2148
	MS(   0, MAX_YEAR,   7,  30, STR_203F_HOUSES,                  30,   4,   3,   1,   1,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2149
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2150
	   HZ_SUBTROPIC | HZ_ZON1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2151
	   CT_PASSENGERS, CT_MAIL, CT_FOOD), //51
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2152
	MS(   0, MAX_YEAR,  45, 130, STR_2038_FLATS,                   95,  15,   6,   2,   1,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2153
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2154
	   HZ_SUBTROPIC | HZ_ZON5 | HZ_ZON4 | HZ_ZON3,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2155
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //52
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2156
	MS(   0, MAX_YEAR,   8,  90, STR_2012_CHURCH,                 200,   3,   2,   0,   0,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2157
	   BUILDING_IS_CHURCH | TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2158
	   HZ_SUBTROPIC | HZ_ZON4 | HZ_ZON3 | HZ_ZON2,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2159
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //53
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2160
	MS(   0, MAX_YEAR,  18,  80, STR_203F_HOUSES,                  80,   7,   3,   1,   2,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2161
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2162
	   HZ_SUBTROPIC | HZ_ZON5 | HZ_ZON4 | HZ_ZON3 | HZ_ZON2,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2163
	   CT_PASSENGERS, CT_MAIL, CT_FOOD), //54
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2164
	MS(1973, MAX_YEAR,  90, 110, STR_2038_FLATS,                   95,  24,   6,   2,   1,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2165
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2166
	   HZ_SUBTROPIC | HZ_ZON5 | HZ_ZON4 | HZ_ZON3,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2167
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //55
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2168
	MS(1962, MAX_YEAR, 120, 120, STR_2038_FLATS,                   95,  25,   6,   2,   1,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2169
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2170
	   HZ_SUBTROPIC | HZ_ZON5 | HZ_ZON4 | HZ_ZON3,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2171
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //56
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2172
	MS(1984, MAX_YEAR, 250, 190, STR_200F_TALL_OFFICE_BLOCK,      140,  80,   8,   3,   4,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2173
	   TILE_SIZE_2x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2174
	   HZ_SUBTROPIC | HZ_ZON5 | HZ_ZON4,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2175
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //57
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2176
	MS(1984, MAX_YEAR,   0, 190, STR_200F_TALL_OFFICE_BLOCK,      140,  80,   8,   3,   4,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2177
	   TILE_NO_FLAG,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2178
	   HZ_SUBTROPIC,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2179
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //58
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2180
	MS(   0, MAX_YEAR,  80, 110, STR_2038_FLATS,                   95,  23,   6,   2,   1,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2181
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2182
	   HZ_SUBTROPIC | HZ_ZON5 | HZ_ZON4 | HZ_ZON3,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2183
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //59
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2184
	MS(1993, MAX_YEAR, 180, 180, STR_200F_TALL_OFFICE_BLOCK,      150,  90,   8,   3,   4,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2185
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2186
	   HZ_SUBTROPIC | HZ_ZON5 | HZ_ZON4 | HZ_ZON3,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2187
	   CT_PASSENGERS, CT_MAIL, CT_GOODS), //5A
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2188
	MS(   0, MAX_YEAR,   8,  90, STR_2012_CHURCH,                 200,   3,   2,   0,   0,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2189
	   BUILDING_IS_CHURCH | TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2190
	   HZ_TOYLND | HZ_ZON5 | HZ_ZON4 | HZ_ZON3 | HZ_ZON2 | HZ_ZON1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2191
	   CT_PASSENGERS, CT_MAIL, CT_CANDY), //5B
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2192
	MS(   0, MAX_YEAR,  18,  90, STR_203F_HOUSES,                  90,   5,   6,   2,   2,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2193
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2194
	   HZ_TOYLND | HZ_ZON5 | HZ_ZON4 | HZ_ZON3 | HZ_ZON2 | HZ_ZON1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2195
	   CT_PASSENGERS, CT_MAIL, CT_CANDY), //5C
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2196
	MS(   0, MAX_YEAR,   7,  70, STR_203F_HOUSES,                  50,   3,   3,   1,   1,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2197
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2198
	   HZ_TOYLND | HZ_ZON2 | HZ_ZON1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2199
	   CT_PASSENGERS, CT_MAIL, CT_CANDY), //5D
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2200
	MS(   0, MAX_YEAR,  15,  80, STR_203F_HOUSES,                  75,   6,   3,   1,   2,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2201
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2202
	   HZ_TOYLND | HZ_ZON4 | HZ_ZON3 | HZ_ZON2 | HZ_ZON1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2203
	   CT_PASSENGERS, CT_MAIL, CT_CANDY), //5E
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2204
	MS(   0, MAX_YEAR,  17,  80, STR_203F_HOUSES,                  75,   6,   3,   1,   2,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2205
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2206
	   HZ_TOYLND | HZ_ZON4 | HZ_ZON3 | HZ_ZON2 | HZ_ZON1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2207
	   CT_PASSENGERS, CT_MAIL, CT_CANDY), //5F
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2208
	MS(   0, MAX_YEAR,  19,  80, STR_203F_HOUSES,                  75,   6,   3,   1,   2,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2209
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2210
	   HZ_TOYLND | HZ_ZON4 | HZ_ZON3 | HZ_ZON2 | HZ_ZON1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2211
	   CT_PASSENGERS, CT_MAIL, CT_CANDY), //60
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2212
	MS(   0, MAX_YEAR,  21,  80, STR_203F_HOUSES,                  75,   6,   3,   1,   2,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2213
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2214
	   HZ_TOYLND | HZ_ZON4 | HZ_ZON3 | HZ_ZON2 | HZ_ZON1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2215
	   CT_PASSENGERS, CT_MAIL, CT_CANDY), //61
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2216
	MS(   0, MAX_YEAR,  75, 160, STR_200F_TALL_OFFICE_BLOCK,      130,  20,   8,   4,   2,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2217
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2218
	   HZ_TOYLND | HZ_ZON5 | HZ_ZON4 | HZ_ZON3,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2219
	   CT_PASSENGERS, CT_MAIL, CT_CANDY), //62
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2220
	MS(   0, MAX_YEAR,  35,  90, STR_203F_HOUSES,                  80,   9,   4,   1,   2,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2221
	   TILE_SIZE_1x2,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2222
	   HZ_TOYLND | HZ_ZON5 | HZ_ZON4 | HZ_ZON3 | HZ_ZON2 | HZ_ZON1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2223
	   CT_PASSENGERS, CT_MAIL, CT_CANDY), //63
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2224
	MS(   0, MAX_YEAR,   0,  90, STR_203F_HOUSES,                  80,   0,   4,   1,   2,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2225
	   TILE_NO_FLAG,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2226
	   HZ_NOZNS,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2227
	   CT_PASSENGERS, CT_MAIL, CT_CANDY), //64
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2228
	MS(   0, MAX_YEAR,  85, 150, STR_200F_TALL_OFFICE_BLOCK,      130,  18,   8,   4,   2,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2229
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2230
	   HZ_TOYLND | HZ_ZON5 | HZ_ZON4 | HZ_ZON3,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2231
	   CT_PASSENGERS, CT_MAIL, CT_CANDY), //65
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2232
	MS(   0, MAX_YEAR,  11,  60, STR_2059_IGLOO,                   45,   3,   3,   1,   1,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2233
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2234
	   HZ_TOYLND | HZ_ZON1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2235
	   CT_PASSENGERS, CT_MAIL, CT_CANDY), //66
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2236
	MS(   0, MAX_YEAR,  10,  60, STR_205A_TEPEES,                  45,   3,   3,   1,   1,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2237
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2238
	   HZ_TOYLND | HZ_ZON1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2239
	   CT_PASSENGERS, CT_MAIL, CT_CANDY), //67
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2240
	MS(   0, MAX_YEAR,  67, 140, STR_201A_SHOPS_AND_OFFICES,      130,  22,   8,   4,   4,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2241
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2242
	   HZ_TOYLND | HZ_ZON5 | HZ_ZON4 | HZ_ZON3,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2243
	   CT_PASSENGERS, CT_MAIL, CT_FIZZY_DRINKS), //68
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2244
	MS(   0, MAX_YEAR,  86, 145, STR_201A_SHOPS_AND_OFFICES,      130,  23,   8,   4,   4,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2245
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2246
	   HZ_TOYLND | HZ_ZON5 | HZ_ZON4 | HZ_ZON3,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2247
	   CT_PASSENGERS, CT_MAIL, CT_FIZZY_DRINKS), //69
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2248
	MS(   0, MAX_YEAR,  95, 165, STR_200F_TALL_OFFICE_BLOCK,      130,  28,   8,   4,   2,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2249
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2250
	   HZ_TOYLND | HZ_ZON5 | HZ_ZON4 | HZ_ZON3,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2251
	   CT_PASSENGERS, CT_MAIL, CT_CANDY), //6A
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2252
	MS(   0, MAX_YEAR,  30,  90, STR_2016_STATUE,                  70,  10,   4,   1,   2,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2253
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2254
	   HZ_TOYLND | HZ_ZON5 | HZ_ZON4 | HZ_ZON3,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2255
	   CT_PASSENGERS, CT_MAIL, CT_CANDY), //6B
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2256
	MS(   0, MAX_YEAR,  25,  75, STR_205B_TEAPOT_HOUSE,            65,   8,   3,   1,   2,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2257
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2258
	   HZ_TOYLND | HZ_ZON5 | HZ_ZON4 | HZ_ZON3 | HZ_ZON2 | HZ_ZON1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2259
	   CT_PASSENGERS, CT_MAIL, CT_CANDY), //6C
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2260
	MS(   0, MAX_YEAR,  18,  85, STR_205C_PIGGY_BANK,              95,   7,   3,   2,   4,
6341
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2261
	   TILE_SIZE_1x1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2262
	   HZ_TOYLND | HZ_ZON5 | HZ_ZON4 | HZ_ZON3 | HZ_ZON2 | HZ_ZON1,
b670e4765225 (svn r9366) -Codechange: Unify the different houses acceptances attributes on their cargo counterpart, as well as specifying cargo slot.
belugas
parents: 6332
diff changeset
  2263
	   CT_PASSENGERS, CT_MAIL, CT_FIZZY_DRINKS), //6D
6248
e4a2ed7e5613 (svn r9051) -Codechange: typedef [enum|struct] Y {} X; -> [enum|struct] X {};
rubidium
parents: 5669
diff changeset
  2264
};
6466
674d898f2997 (svn r9642) -Documentation: Having a different macro name for _original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
belugas
parents: 6459
diff changeset
  2265
#undef MS
6474
c9793cb1ecc9 (svn r9650) -Documentation: Finalize doxygen comments for town_land.h
belugas
parents: 6466
diff changeset
  2266
c9793cb1ecc9 (svn r9650) -Documentation: Finalize doxygen comments for town_land.h
belugas
parents: 6466
diff changeset
  2267
/** Make sure we have the right number of elements: one entry for each house */
6332
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6248
diff changeset
  2268
assert_compile(lengthof(_original_house_specs) == NEW_HOUSE_OFFSET);