summaryrefslogtreecommitdiff
path: root/src/data/pokemon_graphics/still_front_pic_table.h
blob: 308a872b4897d7a4c27a500519b55f242e9d2ae0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
#define STILL_FRONT_PIC(species, frontpic) [SPECIES_##species] = {frontpic, 0x800, SPECIES_##species}

const struct CompressedSpriteSheet gMonStillFrontPicTable[] = 
{
    STILL_FRONT_PIC(NONE,          gMonStillFrontPic_CircledQuestionMark),
    STILL_FRONT_PIC(BULBASAUR,     gMonStillFrontPic_Bulbasaur),
    STILL_FRONT_PIC(IVYSAUR,       gMonStillFrontPic_Ivysaur),
    STILL_FRONT_PIC(VENUSAUR,      gMonStillFrontPic_Venusaur),
    STILL_FRONT_PIC(CHARMANDER,    gMonStillFrontPic_Charmander),
    STILL_FRONT_PIC(CHARMELEON,    gMonStillFrontPic_Charmeleon),
    STILL_FRONT_PIC(CHARIZARD,     gMonStillFrontPic_Charizard),
    STILL_FRONT_PIC(SQUIRTLE,      gMonStillFrontPic_Squirtle),
    STILL_FRONT_PIC(WARTORTLE,     gMonStillFrontPic_Wartortle),
    STILL_FRONT_PIC(BLASTOISE,     gMonStillFrontPic_Blastoise),
    STILL_FRONT_PIC(CATERPIE,      gMonStillFrontPic_Caterpie),
    STILL_FRONT_PIC(METAPOD,       gMonStillFrontPic_Metapod),
    STILL_FRONT_PIC(BUTTERFREE,    gMonStillFrontPic_Butterfree),
    STILL_FRONT_PIC(WEEDLE,        gMonStillFrontPic_Weedle),
    STILL_FRONT_PIC(KAKUNA,        gMonStillFrontPic_Kakuna),
    STILL_FRONT_PIC(BEEDRILL,      gMonStillFrontPic_Beedrill),
    STILL_FRONT_PIC(PIDGEY,        gMonStillFrontPic_Pidgey),
    STILL_FRONT_PIC(PIDGEOTTO,     gMonStillFrontPic_Pidgeotto),
    STILL_FRONT_PIC(PIDGEOT,       gMonStillFrontPic_Pidgeot),
    STILL_FRONT_PIC(RATTATA,       gMonStillFrontPic_Rattata),
    STILL_FRONT_PIC(RATICATE,      gMonStillFrontPic_Raticate),
    STILL_FRONT_PIC(SPEAROW,       gMonStillFrontPic_Spearow),
    STILL_FRONT_PIC(FEAROW,        gMonStillFrontPic_Fearow),
    STILL_FRONT_PIC(EKANS,         gMonStillFrontPic_Ekans),
    STILL_FRONT_PIC(ARBOK,         gMonStillFrontPic_Arbok),
    STILL_FRONT_PIC(PIKACHU,       gMonStillFrontPic_Pikachu),
    STILL_FRONT_PIC(RAICHU,        gMonStillFrontPic_Raichu),
    STILL_FRONT_PIC(SANDSHREW,     gMonStillFrontPic_Sandshrew),
    STILL_FRONT_PIC(SANDSLASH,     gMonStillFrontPic_Sandslash),
    STILL_FRONT_PIC(NIDORAN_F,     gMonStillFrontPic_NidoranF),
    STILL_FRONT_PIC(NIDORINA,      gMonStillFrontPic_Nidorina),
    STILL_FRONT_PIC(NIDOQUEEN,     gMonStillFrontPic_Nidoqueen),
    STILL_FRONT_PIC(NIDORAN_M,     gMonStillFrontPic_NidoranM),
    STILL_FRONT_PIC(NIDORINO,      gMonStillFrontPic_Nidorino),
    STILL_FRONT_PIC(NIDOKING,      gMonStillFrontPic_Nidoking),
    STILL_FRONT_PIC(CLEFAIRY,      gMonStillFrontPic_Clefairy),
    STILL_FRONT_PIC(CLEFABLE,      gMonStillFrontPic_Clefable),
    STILL_FRONT_PIC(VULPIX,        gMonStillFrontPic_Vulpix),
    STILL_FRONT_PIC(NINETALES,     gMonStillFrontPic_Ninetales),
    STILL_FRONT_PIC(JIGGLYPUFF,    gMonStillFrontPic_Jigglypuff),
    STILL_FRONT_PIC(WIGGLYTUFF,    gMonStillFrontPic_Wigglytuff),
    STILL_FRONT_PIC(ZUBAT,         gMonStillFrontPic_Zubat),
    STILL_FRONT_PIC(GOLBAT,        gMonStillFrontPic_Golbat),
    STILL_FRONT_PIC(ODDISH,        gMonStillFrontPic_Oddish),
    STILL_FRONT_PIC(GLOOM,         gMonStillFrontPic_Gloom),
    STILL_FRONT_PIC(VILEPLUME,     gMonStillFrontPic_Vileplume),
    STILL_FRONT_PIC(PARAS,         gMonStillFrontPic_Paras),
    STILL_FRONT_PIC(PARASECT,      gMonStillFrontPic_Parasect),
    STILL_FRONT_PIC(VENONAT,       gMonStillFrontPic_Venonat),
    STILL_FRONT_PIC(VENOMOTH,      gMonStillFrontPic_Venomoth),
    STILL_FRONT_PIC(DIGLETT,       gMonStillFrontPic_Diglett),
    STILL_FRONT_PIC(DUGTRIO,       gMonStillFrontPic_Dugtrio),
    STILL_FRONT_PIC(MEOWTH,        gMonStillFrontPic_Meowth),
    STILL_FRONT_PIC(PERSIAN,       gMonStillFrontPic_Persian),
    STILL_FRONT_PIC(PSYDUCK,       gMonStillFrontPic_Psyduck),
    STILL_FRONT_PIC(GOLDUCK,       gMonStillFrontPic_Golduck),
    STILL_FRONT_PIC(MANKEY,        gMonStillFrontPic_Mankey),
    STILL_FRONT_PIC(PRIMEAPE,      gMonStillFrontPic_Primeape),
    STILL_FRONT_PIC(GROWLITHE,     gMonStillFrontPic_Growlithe),
    STILL_FRONT_PIC(ARCANINE,      gMonStillFrontPic_Arcanine),
    STILL_FRONT_PIC(POLIWAG,       gMonStillFrontPic_Poliwag),
    STILL_FRONT_PIC(POLIWHIRL,     gMonStillFrontPic_Poliwhirl),
    STILL_FRONT_PIC(POLIWRATH,     gMonStillFrontPic_Poliwrath),
    STILL_FRONT_PIC(ABRA,          gMonStillFrontPic_Abra),
    STILL_FRONT_PIC(KADABRA,       gMonStillFrontPic_Kadabra),
    STILL_FRONT_PIC(ALAKAZAM,      gMonStillFrontPic_Alakazam),
    STILL_FRONT_PIC(MACHOP,        gMonStillFrontPic_Machop),
    STILL_FRONT_PIC(MACHOKE,       gMonStillFrontPic_Machoke),
    STILL_FRONT_PIC(MACHAMP,       gMonStillFrontPic_Machamp),
    STILL_FRONT_PIC(BELLSPROUT,    gMonStillFrontPic_Bellsprout),
    STILL_FRONT_PIC(WEEPINBELL,    gMonStillFrontPic_Weepinbell),
    STILL_FRONT_PIC(VICTREEBEL,    gMonStillFrontPic_Victreebel),
    STILL_FRONT_PIC(TENTACOOL,     gMonStillFrontPic_Tentacool),
    STILL_FRONT_PIC(TENTACRUEL,    gMonStillFrontPic_Tentacruel),
    STILL_FRONT_PIC(GEODUDE,       gMonStillFrontPic_Geodude),
    STILL_FRONT_PIC(GRAVELER,      gMonStillFrontPic_Graveler),
    STILL_FRONT_PIC(GOLEM,         gMonStillFrontPic_Golem),
    STILL_FRONT_PIC(PONYTA,        gMonStillFrontPic_Ponyta),
    STILL_FRONT_PIC(RAPIDASH,      gMonStillFrontPic_Rapidash),
    STILL_FRONT_PIC(SLOWPOKE,      gMonStillFrontPic_Slowpoke),
    STILL_FRONT_PIC(SLOWBRO,       gMonStillFrontPic_Slowbro),
    STILL_FRONT_PIC(MAGNEMITE,     gMonStillFrontPic_Magnemite),
    STILL_FRONT_PIC(MAGNETON,      gMonStillFrontPic_Magneton),
    STILL_FRONT_PIC(FARFETCHD,     gMonStillFrontPic_Farfetchd),
    STILL_FRONT_PIC(DODUO,         gMonStillFrontPic_Doduo),
    STILL_FRONT_PIC(DODRIO,        gMonStillFrontPic_Dodrio),
    STILL_FRONT_PIC(SEEL,          gMonStillFrontPic_Seel),
    STILL_FRONT_PIC(DEWGONG,       gMonStillFrontPic_Dewgong),
    STILL_FRONT_PIC(GRIMER,        gMonStillFrontPic_Grimer),
    STILL_FRONT_PIC(MUK,           gMonStillFrontPic_Muk),
    STILL_FRONT_PIC(SHELLDER,      gMonStillFrontPic_Shellder),
    STILL_FRONT_PIC(CLOYSTER,      gMonStillFrontPic_Cloyster),
    STILL_FRONT_PIC(GASTLY,        gMonStillFrontPic_Gastly),
    STILL_FRONT_PIC(HAUNTER,       gMonStillFrontPic_Haunter),
    STILL_FRONT_PIC(GENGAR,        gMonStillFrontPic_Gengar),
    STILL_FRONT_PIC(ONIX,          gMonStillFrontPic_Onix),
    STILL_FRONT_PIC(DROWZEE,       gMonStillFrontPic_Drowzee),
    STILL_FRONT_PIC(HYPNO,         gMonStillFrontPic_Hypno),
    STILL_FRONT_PIC(KRABBY,        gMonStillFrontPic_Krabby),
    STILL_FRONT_PIC(KINGLER,       gMonStillFrontPic_Kingler),
    STILL_FRONT_PIC(VOLTORB,       gMonStillFrontPic_Voltorb),
    STILL_FRONT_PIC(ELECTRODE,     gMonStillFrontPic_Electrode),
    STILL_FRONT_PIC(EXEGGCUTE,     gMonStillFrontPic_Exeggcute),
    STILL_FRONT_PIC(EXEGGUTOR,     gMonStillFrontPic_Exeggutor),
    STILL_FRONT_PIC(CUBONE,        gMonStillFrontPic_Cubone),
    STILL_FRONT_PIC(MAROWAK,       gMonStillFrontPic_Marowak),
    STILL_FRONT_PIC(HITMONLEE,     gMonStillFrontPic_Hitmonlee),
    STILL_FRONT_PIC(HITMONCHAN,    gMonStillFrontPic_Hitmonchan),
    STILL_FRONT_PIC(LICKITUNG,     gMonStillFrontPic_Lickitung),
    STILL_FRONT_PIC(KOFFING,       gMonStillFrontPic_Koffing),
    STILL_FRONT_PIC(WEEZING,       gMonStillFrontPic_Weezing),
    STILL_FRONT_PIC(RHYHORN,       gMonStillFrontPic_Rhyhorn),
    STILL_FRONT_PIC(RHYDON,        gMonStillFrontPic_Rhydon),
    STILL_FRONT_PIC(CHANSEY,       gMonStillFrontPic_Chansey),
    STILL_FRONT_PIC(TANGELA,       gMonStillFrontPic_Tangela),
    STILL_FRONT_PIC(KANGASKHAN,    gMonStillFrontPic_Kangaskhan),
    STILL_FRONT_PIC(HORSEA,        gMonStillFrontPic_Horsea),
    STILL_FRONT_PIC(SEADRA,        gMonStillFrontPic_Seadra),
    STILL_FRONT_PIC(GOLDEEN,       gMonStillFrontPic_Goldeen),
    STILL_FRONT_PIC(SEAKING,       gMonStillFrontPic_Seaking),
    STILL_FRONT_PIC(STARYU,        gMonStillFrontPic_Staryu),
    STILL_FRONT_PIC(STARMIE,       gMonStillFrontPic_Starmie),
    STILL_FRONT_PIC(MR_MIME,       gMonStillFrontPic_Mrmime),
    STILL_FRONT_PIC(SCYTHER,       gMonStillFrontPic_Scyther),
    STILL_FRONT_PIC(JYNX,          gMonStillFrontPic_Jynx),
    STILL_FRONT_PIC(ELECTABUZZ,    gMonStillFrontPic_Electabuzz),
    STILL_FRONT_PIC(MAGMAR,        gMonStillFrontPic_Magmar),
    STILL_FRONT_PIC(PINSIR,        gMonStillFrontPic_Pinsir),
    STILL_FRONT_PIC(TAUROS,        gMonStillFrontPic_Tauros),
    STILL_FRONT_PIC(MAGIKARP,      gMonStillFrontPic_Magikarp),
    STILL_FRONT_PIC(GYARADOS,      gMonStillFrontPic_Gyarados),
    STILL_FRONT_PIC(LAPRAS,        gMonStillFrontPic_Lapras),
    STILL_FRONT_PIC(DITTO,         gMonStillFrontPic_Ditto),
    STILL_FRONT_PIC(EEVEE,         gMonStillFrontPic_Eevee),
    STILL_FRONT_PIC(VAPOREON,      gMonStillFrontPic_Vaporeon),
    STILL_FRONT_PIC(JOLTEON,       gMonStillFrontPic_Jolteon),
    STILL_FRONT_PIC(FLAREON,       gMonStillFrontPic_Flareon),
    STILL_FRONT_PIC(PORYGON,       gMonStillFrontPic_Porygon),
    STILL_FRONT_PIC(OMANYTE,       gMonStillFrontPic_Omanyte),
    STILL_FRONT_PIC(OMASTAR,       gMonStillFrontPic_Omastar),
    STILL_FRONT_PIC(KABUTO,        gMonStillFrontPic_Kabuto),
    STILL_FRONT_PIC(KABUTOPS,      gMonStillFrontPic_Kabutops),
    STILL_FRONT_PIC(AERODACTYL,    gMonStillFrontPic_Aerodactyl),
    STILL_FRONT_PIC(SNORLAX,       gMonStillFrontPic_Snorlax),
    STILL_FRONT_PIC(ARTICUNO,      gMonStillFrontPic_Articuno),
    STILL_FRONT_PIC(ZAPDOS,        gMonStillFrontPic_Zapdos),
    STILL_FRONT_PIC(MOLTRES,       gMonStillFrontPic_Moltres),
    STILL_FRONT_PIC(DRATINI,       gMonStillFrontPic_Dratini),
    STILL_FRONT_PIC(DRAGONAIR,     gMonStillFrontPic_Dragonair),
    STILL_FRONT_PIC(DRAGONITE,     gMonStillFrontPic_Dragonite),
    STILL_FRONT_PIC(MEWTWO,        gMonStillFrontPic_Mewtwo),
    STILL_FRONT_PIC(MEW,           gMonStillFrontPic_Mew),
// Gen II
    STILL_FRONT_PIC(CHIKORITA,     gMonStillFrontPic_Chikorita),
    STILL_FRONT_PIC(BAYLEEF,       gMonStillFrontPic_Bayleef),
    STILL_FRONT_PIC(MEGANIUM,      gMonStillFrontPic_Meganium),
    STILL_FRONT_PIC(CYNDAQUIL,     gMonStillFrontPic_Cyndaquil),
    STILL_FRONT_PIC(QUILAVA,       gMonStillFrontPic_Quilava),
    STILL_FRONT_PIC(TYPHLOSION,    gMonStillFrontPic_Typhlosion),
    STILL_FRONT_PIC(TOTODILE,      gMonStillFrontPic_Totodile),
    STILL_FRONT_PIC(CROCONAW,      gMonStillFrontPic_Croconaw),
    STILL_FRONT_PIC(FERALIGATR,    gMonStillFrontPic_Feraligatr),
    STILL_FRONT_PIC(SENTRET,       gMonStillFrontPic_Sentret),
    STILL_FRONT_PIC(FURRET,        gMonStillFrontPic_Furret),
    STILL_FRONT_PIC(HOOTHOOT,      gMonStillFrontPic_Hoothoot),
    STILL_FRONT_PIC(NOCTOWL,       gMonStillFrontPic_Noctowl),
    STILL_FRONT_PIC(LEDYBA,        gMonStillFrontPic_Ledyba),
    STILL_FRONT_PIC(LEDIAN,        gMonStillFrontPic_Ledian),
    STILL_FRONT_PIC(SPINARAK,      gMonStillFrontPic_Spinarak),
    STILL_FRONT_PIC(ARIADOS,       gMonStillFrontPic_Ariados),
    STILL_FRONT_PIC(CROBAT,        gMonStillFrontPic_Crobat),
    STILL_FRONT_PIC(CHINCHOU,      gMonStillFrontPic_Chinchou),
    STILL_FRONT_PIC(LANTURN,       gMonStillFrontPic_Lanturn),
    STILL_FRONT_PIC(PICHU,         gMonStillFrontPic_Pichu),
    STILL_FRONT_PIC(CLEFFA,        gMonStillFrontPic_Cleffa),
    STILL_FRONT_PIC(IGGLYBUFF,     gMonStillFrontPic_Igglybuff),
    STILL_FRONT_PIC(TOGEPI,        gMonStillFrontPic_Togepi),
    STILL_FRONT_PIC(TOGETIC,       gMonStillFrontPic_Togetic),
    STILL_FRONT_PIC(NATU,          gMonStillFrontPic_Natu),
    STILL_FRONT_PIC(XATU,          gMonStillFrontPic_Xatu),
    STILL_FRONT_PIC(MAREEP,        gMonStillFrontPic_Mareep),
    STILL_FRONT_PIC(FLAAFFY,       gMonStillFrontPic_Flaaffy),
    STILL_FRONT_PIC(AMPHAROS,      gMonStillFrontPic_Ampharos),
    STILL_FRONT_PIC(BELLOSSOM,     gMonStillFrontPic_Bellossom),
    STILL_FRONT_PIC(MARILL,        gMonStillFrontPic_Marill),
    STILL_FRONT_PIC(AZUMARILL,     gMonStillFrontPic_Azumarill),
    STILL_FRONT_PIC(SUDOWOODO,     gMonStillFrontPic_Sudowoodo),
    STILL_FRONT_PIC(POLITOED,      gMonStillFrontPic_Politoed),
    STILL_FRONT_PIC(HOPPIP,        gMonStillFrontPic_Hoppip),
    STILL_FRONT_PIC(SKIPLOOM,      gMonStillFrontPic_Skiploom),
    STILL_FRONT_PIC(JUMPLUFF,      gMonStillFrontPic_Jumpluff),
    STILL_FRONT_PIC(AIPOM,         gMonStillFrontPic_Aipom),
    STILL_FRONT_PIC(SUNKERN,       gMonStillFrontPic_Sunkern),
    STILL_FRONT_PIC(SUNFLORA,      gMonStillFrontPic_Sunflora),
    STILL_FRONT_PIC(YANMA,         gMonStillFrontPic_Yanma),
    STILL_FRONT_PIC(WOOPER,        gMonStillFrontPic_Wooper),
    STILL_FRONT_PIC(QUAGSIRE,      gMonStillFrontPic_Quagsire),
    STILL_FRONT_PIC(ESPEON,        gMonStillFrontPic_Espeon),
    STILL_FRONT_PIC(UMBREON,       gMonStillFrontPic_Umbreon),
    STILL_FRONT_PIC(MURKROW,       gMonStillFrontPic_Murkrow),
    STILL_FRONT_PIC(SLOWKING,      gMonStillFrontPic_Slowking),
    STILL_FRONT_PIC(MISDREAVUS,    gMonStillFrontPic_Misdreavus),
    STILL_FRONT_PIC(UNOWN,         gMonStillFrontPic_UnownA),
    STILL_FRONT_PIC(WOBBUFFET,     gMonStillFrontPic_Wobbuffet),
    STILL_FRONT_PIC(GIRAFARIG,     gMonStillFrontPic_Girafarig),
    STILL_FRONT_PIC(PINECO,        gMonStillFrontPic_Pineco),
    STILL_FRONT_PIC(FORRETRESS,    gMonStillFrontPic_Forretress),
    STILL_FRONT_PIC(DUNSPARCE,     gMonStillFrontPic_Dunsparce),
    STILL_FRONT_PIC(GLIGAR,        gMonStillFrontPic_Gligar),
    STILL_FRONT_PIC(STEELIX,       gMonStillFrontPic_Steelix),
    STILL_FRONT_PIC(SNUBBULL,      gMonStillFrontPic_Snubbull),
    STILL_FRONT_PIC(GRANBULL,      gMonStillFrontPic_Granbull),
    STILL_FRONT_PIC(QWILFISH,      gMonStillFrontPic_Qwilfish),
    STILL_FRONT_PIC(SCIZOR,        gMonStillFrontPic_Scizor),
    STILL_FRONT_PIC(SHUCKLE,       gMonStillFrontPic_Shuckle),
    STILL_FRONT_PIC(HERACROSS,     gMonStillFrontPic_Heracross),
    STILL_FRONT_PIC(SNEASEL,       gMonStillFrontPic_Sneasel),
    STILL_FRONT_PIC(TEDDIURSA,     gMonStillFrontPic_Teddiursa),
    STILL_FRONT_PIC(URSARING,      gMonStillFrontPic_Ursaring),
    STILL_FRONT_PIC(SLUGMA,        gMonStillFrontPic_Slugma),
    STILL_FRONT_PIC(MAGCARGO,      gMonStillFrontPic_Magcargo),
    STILL_FRONT_PIC(SWINUB,        gMonStillFrontPic_Swinub),
    STILL_FRONT_PIC(PILOSWINE,     gMonStillFrontPic_Piloswine),
    STILL_FRONT_PIC(CORSOLA,       gMonStillFrontPic_Corsola),
    STILL_FRONT_PIC(REMORAID,      gMonStillFrontPic_Remoraid),
    STILL_FRONT_PIC(OCTILLERY,     gMonStillFrontPic_Octillery),
    STILL_FRONT_PIC(DELIBIRD,      gMonStillFrontPic_Delibird),
    STILL_FRONT_PIC(MANTINE,       gMonStillFrontPic_Mantine),
    STILL_FRONT_PIC(SKARMORY,      gMonStillFrontPic_Skarmory),
    STILL_FRONT_PIC(HOUNDOUR,      gMonStillFrontPic_Houndour),
    STILL_FRONT_PIC(HOUNDOOM,      gMonStillFrontPic_Houndoom),
    STILL_FRONT_PIC(KINGDRA,       gMonStillFrontPic_Kingdra),
    STILL_FRONT_PIC(PHANPY,        gMonStillFrontPic_Phanpy),
    STILL_FRONT_PIC(DONPHAN,       gMonStillFrontPic_Donphan),
    STILL_FRONT_PIC(PORYGON2,      gMonStillFrontPic_Porygon2),
    STILL_FRONT_PIC(STANTLER,      gMonStillFrontPic_Stantler),
    STILL_FRONT_PIC(SMEARGLE,      gMonStillFrontPic_Smeargle),
    STILL_FRONT_PIC(TYROGUE,       gMonStillFrontPic_Tyrogue),
    STILL_FRONT_PIC(HITMONTOP,     gMonStillFrontPic_Hitmontop),
    STILL_FRONT_PIC(SMOOCHUM,      gMonStillFrontPic_Smoochum),
    STILL_FRONT_PIC(ELEKID,        gMonStillFrontPic_Elekid),
    STILL_FRONT_PIC(MAGBY,         gMonStillFrontPic_Magby),
    STILL_FRONT_PIC(MILTANK,       gMonStillFrontPic_Miltank),
    STILL_FRONT_PIC(BLISSEY,       gMonStillFrontPic_Blissey),
    STILL_FRONT_PIC(RAIKOU,        gMonStillFrontPic_Raikou),
    STILL_FRONT_PIC(ENTEI,         gMonStillFrontPic_Entei),
    STILL_FRONT_PIC(SUICUNE,       gMonStillFrontPic_Suicune),
    STILL_FRONT_PIC(LARVITAR,      gMonStillFrontPic_Larvitar),
    STILL_FRONT_PIC(PUPITAR,       gMonStillFrontPic_Pupitar),
    STILL_FRONT_PIC(TYRANITAR,     gMonStillFrontPic_Tyranitar),
    STILL_FRONT_PIC(LUGIA,         gMonStillFrontPic_Lugia),
    STILL_FRONT_PIC(HO_OH,         gMonStillFrontPic_HoOh),
    STILL_FRONT_PIC(CELEBI,        gMonStillFrontPic_Celebi),
// Empty slots
    STILL_FRONT_PIC(OLD_UNOWN_B,   gMonStillFrontPic_DoubleQuestionMark),
    STILL_FRONT_PIC(OLD_UNOWN_C,   gMonStillFrontPic_DoubleQuestionMark),
    STILL_FRONT_PIC(OLD_UNOWN_D,   gMonStillFrontPic_DoubleQuestionMark),
    STILL_FRONT_PIC(OLD_UNOWN_E,   gMonStillFrontPic_DoubleQuestionMark),
    STILL_FRONT_PIC(OLD_UNOWN_F,   gMonStillFrontPic_DoubleQuestionMark),
    STILL_FRONT_PIC(OLD_UNOWN_G,   gMonStillFrontPic_DoubleQuestionMark),
    STILL_FRONT_PIC(OLD_UNOWN_H,   gMonStillFrontPic_DoubleQuestionMark),
    STILL_FRONT_PIC(OLD_UNOWN_I,   gMonStillFrontPic_DoubleQuestionMark),
    STILL_FRONT_PIC(OLD_UNOWN_J,   gMonStillFrontPic_DoubleQuestionMark),
    STILL_FRONT_PIC(OLD_UNOWN_K,   gMonStillFrontPic_DoubleQuestionMark),
    STILL_FRONT_PIC(OLD_UNOWN_L,   gMonStillFrontPic_DoubleQuestionMark),
    STILL_FRONT_PIC(OLD_UNOWN_M,   gMonStillFrontPic_DoubleQuestionMark),
    STILL_FRONT_PIC(OLD_UNOWN_N,   gMonStillFrontPic_DoubleQuestionMark),
    STILL_FRONT_PIC(OLD_UNOWN_O,   gMonStillFrontPic_DoubleQuestionMark),
    STILL_FRONT_PIC(OLD_UNOWN_P,   gMonStillFrontPic_DoubleQuestionMark),
    STILL_FRONT_PIC(OLD_UNOWN_Q,   gMonStillFrontPic_DoubleQuestionMark),
    STILL_FRONT_PIC(OLD_UNOWN_R,   gMonStillFrontPic_DoubleQuestionMark),
    STILL_FRONT_PIC(OLD_UNOWN_S,   gMonStillFrontPic_DoubleQuestionMark),
    STILL_FRONT_PIC(OLD_UNOWN_T,   gMonStillFrontPic_DoubleQuestionMark),
    STILL_FRONT_PIC(OLD_UNOWN_U,   gMonStillFrontPic_DoubleQuestionMark),
    STILL_FRONT_PIC(OLD_UNOWN_V,   gMonStillFrontPic_DoubleQuestionMark),
    STILL_FRONT_PIC(OLD_UNOWN_W,   gMonStillFrontPic_DoubleQuestionMark),
    STILL_FRONT_PIC(OLD_UNOWN_X,   gMonStillFrontPic_DoubleQuestionMark),
    STILL_FRONT_PIC(OLD_UNOWN_Y,   gMonStillFrontPic_DoubleQuestionMark),
    STILL_FRONT_PIC(OLD_UNOWN_Z,   gMonStillFrontPic_DoubleQuestionMark),
// Gen III
    STILL_FRONT_PIC(TREECKO,       gMonStillFrontPic_Treecko),
    STILL_FRONT_PIC(GROVYLE,       gMonStillFrontPic_Grovyle),
    STILL_FRONT_PIC(SCEPTILE,      gMonStillFrontPic_Sceptile),
    STILL_FRONT_PIC(TORCHIC,       gMonStillFrontPic_Torchic),
    STILL_FRONT_PIC(COMBUSKEN,     gMonStillFrontPic_Combusken),
    STILL_FRONT_PIC(BLAZIKEN,      gMonStillFrontPic_Blaziken),
    STILL_FRONT_PIC(MUDKIP,        gMonStillFrontPic_Mudkip),
    STILL_FRONT_PIC(MARSHTOMP,     gMonStillFrontPic_Marshtomp),
    STILL_FRONT_PIC(SWAMPERT,      gMonStillFrontPic_Swampert),
    STILL_FRONT_PIC(POOCHYENA,     gMonStillFrontPic_Poochyena),
    STILL_FRONT_PIC(MIGHTYENA,     gMonStillFrontPic_Mightyena),
    STILL_FRONT_PIC(ZIGZAGOON,     gMonStillFrontPic_Zigzagoon),
    STILL_FRONT_PIC(LINOONE,       gMonStillFrontPic_Linoone),
    STILL_FRONT_PIC(WURMPLE,       gMonStillFrontPic_Wurmple),
    STILL_FRONT_PIC(SILCOON,       gMonStillFrontPic_Silcoon),
    STILL_FRONT_PIC(BEAUTIFLY,     gMonStillFrontPic_Beautifly),
    STILL_FRONT_PIC(CASCOON,       gMonStillFrontPic_Cascoon),
    STILL_FRONT_PIC(DUSTOX,        gMonStillFrontPic_Dustox),
    STILL_FRONT_PIC(LOTAD,         gMonStillFrontPic_Lotad),
    STILL_FRONT_PIC(LOMBRE,        gMonStillFrontPic_Lombre),
    STILL_FRONT_PIC(LUDICOLO,      gMonStillFrontPic_Ludicolo),
    STILL_FRONT_PIC(SEEDOT,        gMonStillFrontPic_Seedot),
    STILL_FRONT_PIC(NUZLEAF,       gMonStillFrontPic_Nuzleaf),
    STILL_FRONT_PIC(SHIFTRY,       gMonStillFrontPic_Shiftry),
    STILL_FRONT_PIC(NINCADA,       gMonStillFrontPic_Nincada),
    STILL_FRONT_PIC(NINJASK,       gMonStillFrontPic_Ninjask),
    STILL_FRONT_PIC(SHEDINJA,      gMonStillFrontPic_Shedinja),
    STILL_FRONT_PIC(TAILLOW,       gMonStillFrontPic_Taillow),
    STILL_FRONT_PIC(SWELLOW,       gMonStillFrontPic_Swellow),
    STILL_FRONT_PIC(SHROOMISH,     gMonStillFrontPic_Shroomish),
    STILL_FRONT_PIC(BRELOOM,       gMonStillFrontPic_Breloom),
    STILL_FRONT_PIC(SPINDA,        gMonStillFrontPic_Spinda),
    STILL_FRONT_PIC(WINGULL,       gMonStillFrontPic_Wingull),
    STILL_FRONT_PIC(PELIPPER,      gMonStillFrontPic_Pelipper),
    STILL_FRONT_PIC(SURSKIT,       gMonStillFrontPic_Surskit),
    STILL_FRONT_PIC(MASQUERAIN,    gMonStillFrontPic_Masquerain),
    STILL_FRONT_PIC(WAILMER,       gMonStillFrontPic_Wailmer),
    STILL_FRONT_PIC(WAILORD,       gMonStillFrontPic_Wailord),
    STILL_FRONT_PIC(SKITTY,        gMonStillFrontPic_Skitty),
    STILL_FRONT_PIC(DELCATTY,      gMonStillFrontPic_Delcatty),
    STILL_FRONT_PIC(KECLEON,       gMonStillFrontPic_Kecleon),
    STILL_FRONT_PIC(BALTOY,        gMonStillFrontPic_Baltoy),
    STILL_FRONT_PIC(CLAYDOL,       gMonStillFrontPic_Claydol),
    STILL_FRONT_PIC(NOSEPASS,      gMonStillFrontPic_Nosepass),
    STILL_FRONT_PIC(TORKOAL,       gMonStillFrontPic_Torkoal),
    STILL_FRONT_PIC(SABLEYE,       gMonStillFrontPic_Sableye),
    STILL_FRONT_PIC(BARBOACH,      gMonStillFrontPic_Barboach),
    STILL_FRONT_PIC(WHISCASH,      gMonStillFrontPic_Whiscash),
    STILL_FRONT_PIC(LUVDISC,       gMonStillFrontPic_Luvdisc),
    STILL_FRONT_PIC(CORPHISH,      gMonStillFrontPic_Corphish),
    STILL_FRONT_PIC(CRAWDAUNT,     gMonStillFrontPic_Crawdaunt),
    STILL_FRONT_PIC(FEEBAS,        gMonStillFrontPic_Feebas),
    STILL_FRONT_PIC(MILOTIC,       gMonStillFrontPic_Milotic),
    STILL_FRONT_PIC(CARVANHA,      gMonStillFrontPic_Carvanha),
    STILL_FRONT_PIC(SHARPEDO,      gMonStillFrontPic_Sharpedo),
    STILL_FRONT_PIC(TRAPINCH,      gMonStillFrontPic_Trapinch),
    STILL_FRONT_PIC(VIBRAVA,       gMonStillFrontPic_Vibrava),
    STILL_FRONT_PIC(FLYGON,        gMonStillFrontPic_Flygon),
    STILL_FRONT_PIC(MAKUHITA,      gMonStillFrontPic_Makuhita),
    STILL_FRONT_PIC(HARIYAMA,      gMonStillFrontPic_Hariyama),
    STILL_FRONT_PIC(ELECTRIKE,     gMonStillFrontPic_Electrike),
    STILL_FRONT_PIC(MANECTRIC,     gMonStillFrontPic_Manectric),
    STILL_FRONT_PIC(NUMEL,         gMonStillFrontPic_Numel),
    STILL_FRONT_PIC(CAMERUPT,      gMonStillFrontPic_Camerupt),
    STILL_FRONT_PIC(SPHEAL,        gMonStillFrontPic_Spheal),
    STILL_FRONT_PIC(SEALEO,        gMonStillFrontPic_Sealeo),
    STILL_FRONT_PIC(WALREIN,       gMonStillFrontPic_Walrein),
    STILL_FRONT_PIC(CACNEA,        gMonStillFrontPic_Cacnea),
    STILL_FRONT_PIC(CACTURNE,      gMonStillFrontPic_Cacturne),
    STILL_FRONT_PIC(SNORUNT,       gMonStillFrontPic_Snorunt),
    STILL_FRONT_PIC(GLALIE,        gMonStillFrontPic_Glalie),
    STILL_FRONT_PIC(LUNATONE,      gMonStillFrontPic_Lunatone),
    STILL_FRONT_PIC(SOLROCK,       gMonStillFrontPic_Solrock),
    STILL_FRONT_PIC(AZURILL,       gMonStillFrontPic_Azurill),
    STILL_FRONT_PIC(SPOINK,        gMonStillFrontPic_Spoink),
    STILL_FRONT_PIC(GRUMPIG,       gMonStillFrontPic_Grumpig),
    STILL_FRONT_PIC(PLUSLE,        gMonStillFrontPic_Plusle),
    STILL_FRONT_PIC(MINUN,         gMonStillFrontPic_Minun),
    STILL_FRONT_PIC(MAWILE,        gMonStillFrontPic_Mawile),
    STILL_FRONT_PIC(MEDITITE,      gMonStillFrontPic_Meditite),
    STILL_FRONT_PIC(MEDICHAM,      gMonStillFrontPic_Medicham),
    STILL_FRONT_PIC(SWABLU,        gMonStillFrontPic_Swablu),
    STILL_FRONT_PIC(ALTARIA,       gMonStillFrontPic_Altaria),
    STILL_FRONT_PIC(WYNAUT,        gMonStillFrontPic_Wynaut),
    STILL_FRONT_PIC(DUSKULL,       gMonStillFrontPic_Duskull),
    STILL_FRONT_PIC(DUSCLOPS,      gMonStillFrontPic_Dusclops),
    STILL_FRONT_PIC(ROSELIA,       gMonStillFrontPic_Roselia),
    STILL_FRONT_PIC(SLAKOTH,       gMonStillFrontPic_Slakoth),
    STILL_FRONT_PIC(VIGOROTH,      gMonStillFrontPic_Vigoroth),
    STILL_FRONT_PIC(SLAKING,       gMonStillFrontPic_Slaking),
    STILL_FRONT_PIC(GULPIN,        gMonStillFrontPic_Gulpin),
    STILL_FRONT_PIC(SWALOT,        gMonStillFrontPic_Swalot),
    STILL_FRONT_PIC(TROPIUS,       gMonStillFrontPic_Tropius),
    STILL_FRONT_PIC(WHISMUR,       gMonStillFrontPic_Whismur),
    STILL_FRONT_PIC(LOUDRED,       gMonStillFrontPic_Loudred),
    STILL_FRONT_PIC(EXPLOUD,       gMonStillFrontPic_Exploud),
    STILL_FRONT_PIC(CLAMPERL,      gMonStillFrontPic_Clamperl),
    STILL_FRONT_PIC(HUNTAIL,       gMonStillFrontPic_Huntail),
    STILL_FRONT_PIC(GOREBYSS,      gMonStillFrontPic_Gorebyss),
    STILL_FRONT_PIC(ABSOL,         gMonStillFrontPic_Absol),
    STILL_FRONT_PIC(SHUPPET,       gMonStillFrontPic_Shuppet),
    STILL_FRONT_PIC(BANETTE,       gMonStillFrontPic_Banette),
    STILL_FRONT_PIC(SEVIPER,       gMonStillFrontPic_Seviper),
    STILL_FRONT_PIC(ZANGOOSE,      gMonStillFrontPic_Zangoose),
    STILL_FRONT_PIC(RELICANTH,     gMonStillFrontPic_Relicanth),
    STILL_FRONT_PIC(ARON,          gMonStillFrontPic_Aron),
    STILL_FRONT_PIC(LAIRON,        gMonStillFrontPic_Lairon),
    STILL_FRONT_PIC(AGGRON,        gMonStillFrontPic_Aggron),
    STILL_FRONT_PIC(CASTFORM,      gMonStillFrontPic_Castform),
    STILL_FRONT_PIC(VOLBEAT,       gMonStillFrontPic_Volbeat),
    STILL_FRONT_PIC(ILLUMISE,      gMonStillFrontPic_Illumise),
    STILL_FRONT_PIC(LILEEP,        gMonStillFrontPic_Lileep),
    STILL_FRONT_PIC(CRADILY,       gMonStillFrontPic_Cradily),
    STILL_FRONT_PIC(ANORITH,       gMonStillFrontPic_Anorith),
    STILL_FRONT_PIC(ARMALDO,       gMonStillFrontPic_Armaldo),
    STILL_FRONT_PIC(RALTS,         gMonStillFrontPic_Ralts),
    STILL_FRONT_PIC(KIRLIA,        gMonStillFrontPic_Kirlia),
    STILL_FRONT_PIC(GARDEVOIR,     gMonStillFrontPic_Gardevoir),
    STILL_FRONT_PIC(BAGON,         gMonStillFrontPic_Bagon),
    STILL_FRONT_PIC(SHELGON,       gMonStillFrontPic_Shelgon),
    STILL_FRONT_PIC(SALAMENCE,     gMonStillFrontPic_Salamence),
    STILL_FRONT_PIC(BELDUM,        gMonStillFrontPic_Beldum),
    STILL_FRONT_PIC(METANG,        gMonStillFrontPic_Metang),
    STILL_FRONT_PIC(METAGROSS,     gMonStillFrontPic_Metagross),
    STILL_FRONT_PIC(REGIROCK,      gMonStillFrontPic_Regirock),
    STILL_FRONT_PIC(REGICE,        gMonStillFrontPic_Regice),
    STILL_FRONT_PIC(REGISTEEL,     gMonStillFrontPic_Registeel),
    STILL_FRONT_PIC(KYOGRE,        gMonStillFrontPic_Kyogre),
    STILL_FRONT_PIC(GROUDON,       gMonStillFrontPic_Groudon),
    STILL_FRONT_PIC(RAYQUAZA,      gMonStillFrontPic_Rayquaza),
    STILL_FRONT_PIC(LATIAS,        gMonStillFrontPic_Latias),
    STILL_FRONT_PIC(LATIOS,        gMonStillFrontPic_Latios),
    STILL_FRONT_PIC(JIRACHI,       gMonStillFrontPic_Jirachi),
    STILL_FRONT_PIC(DEOXYS,        gMonStillFrontPic_Deoxys),
    STILL_FRONT_PIC(CHIMECHO,      gMonStillFrontPic_Chimecho),
    STILL_FRONT_PIC(EGG,           gMonStillFrontPic_Egg),
    STILL_FRONT_PIC(UNOWN_B,       gMonStillFrontPic_UnownB),
    STILL_FRONT_PIC(UNOWN_C,       gMonStillFrontPic_UnownC),
    STILL_FRONT_PIC(UNOWN_D,       gMonStillFrontPic_UnownD),
    STILL_FRONT_PIC(UNOWN_E,       gMonStillFrontPic_UnownE),
    STILL_FRONT_PIC(UNOWN_F,       gMonStillFrontPic_UnownF),
    STILL_FRONT_PIC(UNOWN_G,       gMonStillFrontPic_UnownG),
    STILL_FRONT_PIC(UNOWN_H,       gMonStillFrontPic_UnownH),
    STILL_FRONT_PIC(UNOWN_I,       gMonStillFrontPic_UnownI),
    STILL_FRONT_PIC(UNOWN_J,       gMonStillFrontPic_UnownJ),
    STILL_FRONT_PIC(UNOWN_K,       gMonStillFrontPic_UnownK),
    STILL_FRONT_PIC(UNOWN_L,       gMonStillFrontPic_UnownL),
    STILL_FRONT_PIC(UNOWN_M,       gMonStillFrontPic_UnownM),
    STILL_FRONT_PIC(UNOWN_N,       gMonStillFrontPic_UnownN),
    STILL_FRONT_PIC(UNOWN_O,       gMonStillFrontPic_UnownO),
    STILL_FRONT_PIC(UNOWN_P,       gMonStillFrontPic_UnownP),
    STILL_FRONT_PIC(UNOWN_Q,       gMonStillFrontPic_UnownQ),
    STILL_FRONT_PIC(UNOWN_R,       gMonStillFrontPic_UnownR),
    STILL_FRONT_PIC(UNOWN_S,       gMonStillFrontPic_UnownS),
    STILL_FRONT_PIC(UNOWN_T,       gMonStillFrontPic_UnownT),
    STILL_FRONT_PIC(UNOWN_U,       gMonStillFrontPic_UnownU),
    STILL_FRONT_PIC(UNOWN_V,       gMonStillFrontPic_UnownV),
    STILL_FRONT_PIC(UNOWN_W,       gMonStillFrontPic_UnownW),
    STILL_FRONT_PIC(UNOWN_X,       gMonStillFrontPic_UnownX),
    STILL_FRONT_PIC(UNOWN_Y,       gMonStillFrontPic_UnownY),
    STILL_FRONT_PIC(UNOWN_Z,       gMonStillFrontPic_UnownZ),
    STILL_FRONT_PIC(UNOWN_EMARK,   gMonStillFrontPic_UnownExclamationMark),
    STILL_FRONT_PIC(UNOWN_QMARK,   gMonStillFrontPic_UnownQuestionMark),
};