silphscope 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/NOTICE +23 -0
- package/README.md +21 -0
- package/graphics-maps/fr-graphic-map.json +29080 -0
- package/main.js +9 -0
- package/mon-data/monData.json +4815 -0
- package/package.json +33 -0
- package/rom-maps/pokefirered.map +35107 -0
- package/src/graphics/decode-1bpp.js +15 -0
- package/src/graphics/decode-4bpp.js +15 -0
- package/src/graphics/decode-palette.js +17 -0
- package/src/graphics/extract.js +24 -0
- package/src/graphics/graphics-extractor-main.js +70 -0
- package/src/graphics/lz77-decompress.js +58 -0
- package/src/graphics/render-mon-foot.js +82 -0
- package/src/graphics/render-mon-icon.js +87 -0
- package/src/graphics/render-mons.js +104 -0
- package/src/mon-data-parser.js +113 -0
- package/src/rom-map-parser.js +85 -0
|
@@ -0,0 +1,4815 @@
|
|
|
1
|
+
{
|
|
2
|
+
"NONE": {
|
|
3
|
+
"frontPics": "gMonFrontPic_CircledQuestionMark",
|
|
4
|
+
"backPics": "gMonBackPic_CircledQuestionMark",
|
|
5
|
+
"normPalette": "gMonPalette_CircledQuestionMark",
|
|
6
|
+
"shinyPalette": "gMonShinyPalette_CircledQuestionMark",
|
|
7
|
+
"footprintPics": "gMonFootprint_Bulbasaur",
|
|
8
|
+
"width": "64",
|
|
9
|
+
"height": "64",
|
|
10
|
+
"iconPalIndex": "0",
|
|
11
|
+
"Icon": "gMonIcon_QuestionMark"
|
|
12
|
+
},
|
|
13
|
+
"BULBASAUR": {
|
|
14
|
+
"frontPics": "gMonFrontPic_Bulbasaur",
|
|
15
|
+
"backPics": "gMonBackPic_Bulbasaur",
|
|
16
|
+
"normPalette": "gMonPalette_Bulbasaur",
|
|
17
|
+
"shinyPalette": "gMonShinyPalette_Bulbasaur",
|
|
18
|
+
"footprintPics": "gMonFootprint_Bulbasaur",
|
|
19
|
+
"width": "40",
|
|
20
|
+
"height": "40",
|
|
21
|
+
"iconPalIndex": "1",
|
|
22
|
+
"Icon": "gMonIcon_Bulbasaur"
|
|
23
|
+
},
|
|
24
|
+
"IVYSAUR": {
|
|
25
|
+
"frontPics": "gMonFrontPic_Ivysaur",
|
|
26
|
+
"backPics": "gMonBackPic_Ivysaur",
|
|
27
|
+
"normPalette": "gMonPalette_Ivysaur",
|
|
28
|
+
"shinyPalette": "gMonShinyPalette_Ivysaur",
|
|
29
|
+
"footprintPics": "gMonFootprint_Ivysaur",
|
|
30
|
+
"width": "48",
|
|
31
|
+
"height": "48",
|
|
32
|
+
"iconPalIndex": "1",
|
|
33
|
+
"Icon": "gMonIcon_Ivysaur"
|
|
34
|
+
},
|
|
35
|
+
"VENUSAUR": {
|
|
36
|
+
"frontPics": "gMonFrontPic_Venusaur",
|
|
37
|
+
"backPics": "gMonBackPic_Venusaur",
|
|
38
|
+
"normPalette": "gMonPalette_Venusaur",
|
|
39
|
+
"shinyPalette": "gMonShinyPalette_Venusaur",
|
|
40
|
+
"footprintPics": "gMonFootprint_Venusaur",
|
|
41
|
+
"width": "64",
|
|
42
|
+
"height": "56",
|
|
43
|
+
"iconPalIndex": "1",
|
|
44
|
+
"Icon": "gMonIcon_Venusaur"
|
|
45
|
+
},
|
|
46
|
+
"CHARMANDER": {
|
|
47
|
+
"frontPics": "gMonFrontPic_Charmander",
|
|
48
|
+
"backPics": "gMonBackPic_Charmander",
|
|
49
|
+
"normPalette": "gMonPalette_Charmander",
|
|
50
|
+
"shinyPalette": "gMonShinyPalette_Charmander",
|
|
51
|
+
"footprintPics": "gMonFootprint_Charmander",
|
|
52
|
+
"width": "40",
|
|
53
|
+
"height": "40",
|
|
54
|
+
"iconPalIndex": "0",
|
|
55
|
+
"Icon": "gMonIcon_Charmander"
|
|
56
|
+
},
|
|
57
|
+
"CHARMELEON": {
|
|
58
|
+
"frontPics": "gMonFrontPic_Charmeleon",
|
|
59
|
+
"backPics": "gMonBackPic_Charmeleon",
|
|
60
|
+
"normPalette": "gMonPalette_Charmeleon",
|
|
61
|
+
"shinyPalette": "gMonShinyPalette_Charmeleon",
|
|
62
|
+
"footprintPics": "gMonFootprint_Charmeleon",
|
|
63
|
+
"width": "56",
|
|
64
|
+
"height": "48",
|
|
65
|
+
"iconPalIndex": "0",
|
|
66
|
+
"Icon": "gMonIcon_Charmeleon"
|
|
67
|
+
},
|
|
68
|
+
"CHARIZARD": {
|
|
69
|
+
"frontPics": "gMonFrontPic_Charizard",
|
|
70
|
+
"backPics": "gMonBackPic_Charizard",
|
|
71
|
+
"normPalette": "gMonPalette_Charizard",
|
|
72
|
+
"shinyPalette": "gMonShinyPalette_Charizard",
|
|
73
|
+
"footprintPics": "gMonFootprint_Charizard",
|
|
74
|
+
"width": "64",
|
|
75
|
+
"height": "64",
|
|
76
|
+
"iconPalIndex": "0",
|
|
77
|
+
"Icon": "gMonIcon_Charizard"
|
|
78
|
+
},
|
|
79
|
+
"SQUIRTLE": {
|
|
80
|
+
"frontPics": "gMonFrontPic_Squirtle",
|
|
81
|
+
"backPics": "gMonBackPic_Squirtle",
|
|
82
|
+
"normPalette": "gMonPalette_Squirtle",
|
|
83
|
+
"shinyPalette": "gMonShinyPalette_Squirtle",
|
|
84
|
+
"footprintPics": "gMonFootprint_Squirtle",
|
|
85
|
+
"width": "48",
|
|
86
|
+
"height": "40",
|
|
87
|
+
"iconPalIndex": "0",
|
|
88
|
+
"Icon": "gMonIcon_Squirtle"
|
|
89
|
+
},
|
|
90
|
+
"WARTORTLE": {
|
|
91
|
+
"frontPics": "gMonFrontPic_Wartortle",
|
|
92
|
+
"backPics": "gMonBackPic_Wartortle",
|
|
93
|
+
"normPalette": "gMonPalette_Wartortle",
|
|
94
|
+
"shinyPalette": "gMonShinyPalette_Wartortle",
|
|
95
|
+
"footprintPics": "gMonFootprint_Wartortle",
|
|
96
|
+
"width": "56",
|
|
97
|
+
"height": "48",
|
|
98
|
+
"iconPalIndex": "2",
|
|
99
|
+
"Icon": "gMonIcon_Wartortle"
|
|
100
|
+
},
|
|
101
|
+
"BLASTOISE": {
|
|
102
|
+
"frontPics": "gMonFrontPic_Blastoise",
|
|
103
|
+
"backPics": "gMonBackPic_Blastoise",
|
|
104
|
+
"normPalette": "gMonPalette_Blastoise",
|
|
105
|
+
"shinyPalette": "gMonShinyPalette_Blastoise",
|
|
106
|
+
"footprintPics": "gMonFootprint_Blastoise",
|
|
107
|
+
"width": "64",
|
|
108
|
+
"height": "56",
|
|
109
|
+
"iconPalIndex": "2",
|
|
110
|
+
"Icon": "gMonIcon_Blastoise"
|
|
111
|
+
},
|
|
112
|
+
"CATERPIE": {
|
|
113
|
+
"frontPics": "gMonFrontPic_Caterpie",
|
|
114
|
+
"backPics": "gMonBackPic_Caterpie",
|
|
115
|
+
"normPalette": "gMonPalette_Caterpie",
|
|
116
|
+
"shinyPalette": "gMonShinyPalette_Caterpie",
|
|
117
|
+
"footprintPics": "gMonFootprint_Caterpie",
|
|
118
|
+
"width": "40",
|
|
119
|
+
"height": "32",
|
|
120
|
+
"iconPalIndex": "1",
|
|
121
|
+
"Icon": "gMonIcon_Caterpie"
|
|
122
|
+
},
|
|
123
|
+
"METAPOD": {
|
|
124
|
+
"frontPics": "gMonFrontPic_Metapod",
|
|
125
|
+
"backPics": "gMonBackPic_Metapod",
|
|
126
|
+
"normPalette": "gMonPalette_Metapod",
|
|
127
|
+
"shinyPalette": "gMonShinyPalette_Metapod",
|
|
128
|
+
"footprintPics": "gMonFootprint_Metapod",
|
|
129
|
+
"width": "40",
|
|
130
|
+
"height": "32",
|
|
131
|
+
"iconPalIndex": "1",
|
|
132
|
+
"Icon": "gMonIcon_Metapod"
|
|
133
|
+
},
|
|
134
|
+
"BUTTERFREE": {
|
|
135
|
+
"frontPics": "gMonFrontPic_Butterfree",
|
|
136
|
+
"backPics": "gMonBackPic_Butterfree",
|
|
137
|
+
"normPalette": "gMonPalette_Butterfree",
|
|
138
|
+
"shinyPalette": "gMonShinyPalette_Butterfree",
|
|
139
|
+
"footprintPics": "gMonFootprint_Butterfree",
|
|
140
|
+
"width": "56",
|
|
141
|
+
"height": "48",
|
|
142
|
+
"iconPalIndex": "0",
|
|
143
|
+
"Icon": "gMonIcon_Butterfree"
|
|
144
|
+
},
|
|
145
|
+
"WEEDLE": {
|
|
146
|
+
"frontPics": "gMonFrontPic_Weedle",
|
|
147
|
+
"backPics": "gMonBackPic_Weedle",
|
|
148
|
+
"normPalette": "gMonPalette_Weedle",
|
|
149
|
+
"shinyPalette": "gMonShinyPalette_Weedle",
|
|
150
|
+
"footprintPics": "gMonFootprint_Weedle",
|
|
151
|
+
"width": "40",
|
|
152
|
+
"height": "32",
|
|
153
|
+
"iconPalIndex": "1",
|
|
154
|
+
"Icon": "gMonIcon_Weedle"
|
|
155
|
+
},
|
|
156
|
+
"KAKUNA": {
|
|
157
|
+
"frontPics": "gMonFrontPic_Kakuna",
|
|
158
|
+
"backPics": "gMonBackPic_Kakuna",
|
|
159
|
+
"normPalette": "gMonPalette_Kakuna",
|
|
160
|
+
"shinyPalette": "gMonShinyPalette_Kakuna",
|
|
161
|
+
"footprintPics": "gMonFootprint_Kakuna",
|
|
162
|
+
"width": "32",
|
|
163
|
+
"height": "40",
|
|
164
|
+
"iconPalIndex": "2",
|
|
165
|
+
"Icon": "gMonIcon_Kakuna"
|
|
166
|
+
},
|
|
167
|
+
"BEEDRILL": {
|
|
168
|
+
"frontPics": "gMonFrontPic_Beedrill",
|
|
169
|
+
"backPics": "gMonBackPic_Beedrill",
|
|
170
|
+
"normPalette": "gMonPalette_Beedrill",
|
|
171
|
+
"shinyPalette": "gMonShinyPalette_Beedrill",
|
|
172
|
+
"footprintPics": "gMonFootprint_Beedrill",
|
|
173
|
+
"width": "64",
|
|
174
|
+
"height": "48",
|
|
175
|
+
"iconPalIndex": "2",
|
|
176
|
+
"Icon": "gMonIcon_Beedrill"
|
|
177
|
+
},
|
|
178
|
+
"PIDGEY": {
|
|
179
|
+
"frontPics": "gMonFrontPic_Pidgey",
|
|
180
|
+
"backPics": "gMonBackPic_Pidgey",
|
|
181
|
+
"normPalette": "gMonPalette_Pidgey",
|
|
182
|
+
"shinyPalette": "gMonShinyPalette_Pidgey",
|
|
183
|
+
"footprintPics": "gMonFootprint_Pidgey",
|
|
184
|
+
"width": "40",
|
|
185
|
+
"height": "40",
|
|
186
|
+
"iconPalIndex": "0",
|
|
187
|
+
"Icon": "gMonIcon_Pidgey"
|
|
188
|
+
},
|
|
189
|
+
"PIDGEOTTO": {
|
|
190
|
+
"frontPics": "gMonFrontPic_Pidgeotto",
|
|
191
|
+
"backPics": "gMonBackPic_Pidgeotto",
|
|
192
|
+
"normPalette": "gMonPalette_Pidgeotto",
|
|
193
|
+
"shinyPalette": "gMonShinyPalette_Pidgeotto",
|
|
194
|
+
"footprintPics": "gMonFootprint_Pidgeotto",
|
|
195
|
+
"width": "48",
|
|
196
|
+
"height": "56",
|
|
197
|
+
"iconPalIndex": "0",
|
|
198
|
+
"Icon": "gMonIcon_Pidgeotto"
|
|
199
|
+
},
|
|
200
|
+
"PIDGEOT": {
|
|
201
|
+
"frontPics": "gMonFrontPic_Pidgeot",
|
|
202
|
+
"backPics": "gMonBackPic_Pidgeot",
|
|
203
|
+
"normPalette": "gMonPalette_Pidgeot",
|
|
204
|
+
"shinyPalette": "gMonShinyPalette_Pidgeot",
|
|
205
|
+
"footprintPics": "gMonFootprint_Pidgeot",
|
|
206
|
+
"width": "64",
|
|
207
|
+
"height": "64",
|
|
208
|
+
"iconPalIndex": "0",
|
|
209
|
+
"Icon": "gMonIcon_Pidgeot"
|
|
210
|
+
},
|
|
211
|
+
"RATTATA": {
|
|
212
|
+
"frontPics": "gMonFrontPic_Rattata",
|
|
213
|
+
"backPics": "gMonBackPic_Rattata",
|
|
214
|
+
"normPalette": "gMonPalette_Rattata",
|
|
215
|
+
"shinyPalette": "gMonShinyPalette_Rattata",
|
|
216
|
+
"footprintPics": "gMonFootprint_Rattata",
|
|
217
|
+
"width": "48",
|
|
218
|
+
"height": "40",
|
|
219
|
+
"iconPalIndex": "2",
|
|
220
|
+
"Icon": "gMonIcon_Rattata"
|
|
221
|
+
},
|
|
222
|
+
"RATICATE": {
|
|
223
|
+
"frontPics": "gMonFrontPic_Raticate",
|
|
224
|
+
"backPics": "gMonBackPic_Raticate",
|
|
225
|
+
"normPalette": "gMonPalette_Raticate",
|
|
226
|
+
"shinyPalette": "gMonShinyPalette_Raticate",
|
|
227
|
+
"footprintPics": "gMonFootprint_Raticate",
|
|
228
|
+
"width": "56",
|
|
229
|
+
"height": "48",
|
|
230
|
+
"iconPalIndex": "1",
|
|
231
|
+
"Icon": "gMonIcon_Raticate"
|
|
232
|
+
},
|
|
233
|
+
"SPEAROW": {
|
|
234
|
+
"frontPics": "gMonFrontPic_Spearow",
|
|
235
|
+
"backPics": "gMonBackPic_Spearow",
|
|
236
|
+
"normPalette": "gMonPalette_Spearow",
|
|
237
|
+
"shinyPalette": "gMonShinyPalette_Spearow",
|
|
238
|
+
"footprintPics": "gMonFootprint_Spearow",
|
|
239
|
+
"width": "40",
|
|
240
|
+
"height": "40",
|
|
241
|
+
"iconPalIndex": "0",
|
|
242
|
+
"Icon": "gMonIcon_Spearow"
|
|
243
|
+
},
|
|
244
|
+
"FEAROW": {
|
|
245
|
+
"frontPics": "gMonFrontPic_Fearow",
|
|
246
|
+
"backPics": "gMonBackPic_Fearow",
|
|
247
|
+
"normPalette": "gMonPalette_Fearow",
|
|
248
|
+
"shinyPalette": "gMonShinyPalette_Fearow",
|
|
249
|
+
"footprintPics": "gMonFootprint_Fearow",
|
|
250
|
+
"width": "64",
|
|
251
|
+
"height": "64",
|
|
252
|
+
"iconPalIndex": "0",
|
|
253
|
+
"Icon": "gMonIcon_Fearow"
|
|
254
|
+
},
|
|
255
|
+
"EKANS": {
|
|
256
|
+
"frontPics": "gMonFrontPic_Ekans",
|
|
257
|
+
"backPics": "gMonBackPic_Ekans",
|
|
258
|
+
"normPalette": "gMonPalette_Ekans",
|
|
259
|
+
"shinyPalette": "gMonShinyPalette_Ekans",
|
|
260
|
+
"footprintPics": "gMonFootprint_Ekans",
|
|
261
|
+
"width": "48",
|
|
262
|
+
"height": "40",
|
|
263
|
+
"iconPalIndex": "2",
|
|
264
|
+
"Icon": "gMonIcon_Ekans"
|
|
265
|
+
},
|
|
266
|
+
"ARBOK": {
|
|
267
|
+
"frontPics": "gMonFrontPic_Arbok",
|
|
268
|
+
"backPics": "gMonBackPic_Arbok",
|
|
269
|
+
"normPalette": "gMonPalette_Arbok",
|
|
270
|
+
"shinyPalette": "gMonShinyPalette_Arbok",
|
|
271
|
+
"footprintPics": "gMonFootprint_Arbok",
|
|
272
|
+
"width": "56",
|
|
273
|
+
"height": "64",
|
|
274
|
+
"iconPalIndex": "2",
|
|
275
|
+
"Icon": "gMonIcon_Arbok"
|
|
276
|
+
},
|
|
277
|
+
"PIKACHU": {
|
|
278
|
+
"frontPics": "gMonFrontPic_Pikachu",
|
|
279
|
+
"backPics": "gMonBackPic_Pikachu",
|
|
280
|
+
"normPalette": "gMonPalette_Pikachu",
|
|
281
|
+
"shinyPalette": "gMonShinyPalette_Pikachu",
|
|
282
|
+
"footprintPics": "gMonFootprint_Pikachu",
|
|
283
|
+
"width": "48",
|
|
284
|
+
"height": "56",
|
|
285
|
+
"iconPalIndex": "2",
|
|
286
|
+
"Icon": "gMonIcon_Pikachu"
|
|
287
|
+
},
|
|
288
|
+
"RAICHU": {
|
|
289
|
+
"frontPics": "gMonFrontPic_Raichu",
|
|
290
|
+
"backPics": "gMonBackPic_Raichu",
|
|
291
|
+
"normPalette": "gMonPalette_Raichu",
|
|
292
|
+
"shinyPalette": "gMonShinyPalette_Raichu",
|
|
293
|
+
"footprintPics": "gMonFootprint_Raichu",
|
|
294
|
+
"width": "64",
|
|
295
|
+
"height": "64",
|
|
296
|
+
"iconPalIndex": "0",
|
|
297
|
+
"Icon": "gMonIcon_Raichu"
|
|
298
|
+
},
|
|
299
|
+
"SANDSHREW": {
|
|
300
|
+
"frontPics": "gMonFrontPic_Sandshrew",
|
|
301
|
+
"backPics": "gMonBackPic_Sandshrew",
|
|
302
|
+
"normPalette": "gMonPalette_Sandshrew",
|
|
303
|
+
"shinyPalette": "gMonShinyPalette_Sandshrew",
|
|
304
|
+
"footprintPics": "gMonFootprint_Sandshrew",
|
|
305
|
+
"width": "40",
|
|
306
|
+
"height": "48",
|
|
307
|
+
"iconPalIndex": "2",
|
|
308
|
+
"Icon": "gMonIcon_Sandshrew"
|
|
309
|
+
},
|
|
310
|
+
"SANDSLASH": {
|
|
311
|
+
"frontPics": "gMonFrontPic_Sandslash",
|
|
312
|
+
"backPics": "gMonBackPic_Sandslash",
|
|
313
|
+
"normPalette": "gMonPalette_Sandslash",
|
|
314
|
+
"shinyPalette": "gMonShinyPalette_Sandslash",
|
|
315
|
+
"footprintPics": "gMonFootprint_Sandslash",
|
|
316
|
+
"width": "56",
|
|
317
|
+
"height": "56",
|
|
318
|
+
"iconPalIndex": "2",
|
|
319
|
+
"Icon": "gMonIcon_Sandslash"
|
|
320
|
+
},
|
|
321
|
+
"NIDORAN_F": {
|
|
322
|
+
"frontPics": "gMonFrontPic_NidoranF",
|
|
323
|
+
"backPics": "gMonBackPic_NidoranF",
|
|
324
|
+
"normPalette": "gMonPalette_NidoranF",
|
|
325
|
+
"shinyPalette": "gMonShinyPalette_NidoranF",
|
|
326
|
+
"footprintPics": "gMonFootprint_NidoranF",
|
|
327
|
+
"width": "40",
|
|
328
|
+
"height": "32",
|
|
329
|
+
"iconPalIndex": "2",
|
|
330
|
+
"Icon": "gMonIcon_NidoranF"
|
|
331
|
+
},
|
|
332
|
+
"NIDORINA": {
|
|
333
|
+
"frontPics": "gMonFrontPic_Nidorina",
|
|
334
|
+
"backPics": "gMonBackPic_Nidorina",
|
|
335
|
+
"normPalette": "gMonPalette_Nidorina",
|
|
336
|
+
"shinyPalette": "gMonShinyPalette_Nidorina",
|
|
337
|
+
"footprintPics": "gMonFootprint_Nidorina",
|
|
338
|
+
"width": "48",
|
|
339
|
+
"height": "48",
|
|
340
|
+
"iconPalIndex": "2",
|
|
341
|
+
"Icon": "gMonIcon_Nidorina"
|
|
342
|
+
},
|
|
343
|
+
"NIDOQUEEN": {
|
|
344
|
+
"frontPics": "gMonFrontPic_Nidoqueen",
|
|
345
|
+
"backPics": "gMonBackPic_Nidoqueen",
|
|
346
|
+
"normPalette": "gMonPalette_Nidoqueen",
|
|
347
|
+
"shinyPalette": "gMonShinyPalette_Nidoqueen",
|
|
348
|
+
"footprintPics": "gMonFootprint_Nidoqueen",
|
|
349
|
+
"width": "56",
|
|
350
|
+
"height": "64",
|
|
351
|
+
"iconPalIndex": "2",
|
|
352
|
+
"Icon": "gMonIcon_Nidoqueen"
|
|
353
|
+
},
|
|
354
|
+
"NIDORAN_M": {
|
|
355
|
+
"frontPics": "gMonFrontPic_NidoranM",
|
|
356
|
+
"backPics": "gMonBackPic_NidoranM",
|
|
357
|
+
"normPalette": "gMonPalette_NidoranM",
|
|
358
|
+
"shinyPalette": "gMonShinyPalette_NidoranM",
|
|
359
|
+
"footprintPics": "gMonFootprint_NidoranM",
|
|
360
|
+
"width": "40",
|
|
361
|
+
"height": "40",
|
|
362
|
+
"iconPalIndex": "2",
|
|
363
|
+
"Icon": "gMonIcon_NidoranM"
|
|
364
|
+
},
|
|
365
|
+
"NIDORINO": {
|
|
366
|
+
"frontPics": "gMonFrontPic_Nidorino",
|
|
367
|
+
"backPics": "gMonBackPic_Nidorino",
|
|
368
|
+
"normPalette": "gMonPalette_Nidorino",
|
|
369
|
+
"shinyPalette": "gMonShinyPalette_Nidorino",
|
|
370
|
+
"footprintPics": "gMonFootprint_Nidorino",
|
|
371
|
+
"width": "48",
|
|
372
|
+
"height": "48",
|
|
373
|
+
"iconPalIndex": "2",
|
|
374
|
+
"Icon": "gMonIcon_Nidorino"
|
|
375
|
+
},
|
|
376
|
+
"NIDOKING": {
|
|
377
|
+
"frontPics": "gMonFrontPic_Nidoking",
|
|
378
|
+
"backPics": "gMonBackPic_Nidoking",
|
|
379
|
+
"normPalette": "gMonPalette_Nidoking",
|
|
380
|
+
"shinyPalette": "gMonShinyPalette_Nidoking",
|
|
381
|
+
"footprintPics": "gMonFootprint_Nidoking",
|
|
382
|
+
"width": "64",
|
|
383
|
+
"height": "64",
|
|
384
|
+
"iconPalIndex": "2",
|
|
385
|
+
"Icon": "gMonIcon_Nidoking"
|
|
386
|
+
},
|
|
387
|
+
"CLEFAIRY": {
|
|
388
|
+
"frontPics": "gMonFrontPic_Clefairy",
|
|
389
|
+
"backPics": "gMonBackPic_Clefairy",
|
|
390
|
+
"normPalette": "gMonPalette_Clefairy",
|
|
391
|
+
"shinyPalette": "gMonShinyPalette_Clefairy",
|
|
392
|
+
"footprintPics": "gMonFootprint_Clefairy",
|
|
393
|
+
"width": "40",
|
|
394
|
+
"height": "40",
|
|
395
|
+
"iconPalIndex": "0",
|
|
396
|
+
"Icon": "gMonIcon_Clefairy"
|
|
397
|
+
},
|
|
398
|
+
"CLEFABLE": {
|
|
399
|
+
"frontPics": "gMonFrontPic_Clefable",
|
|
400
|
+
"backPics": "gMonBackPic_Clefable",
|
|
401
|
+
"normPalette": "gMonPalette_Clefable",
|
|
402
|
+
"shinyPalette": "gMonShinyPalette_Clefable",
|
|
403
|
+
"footprintPics": "gMonFootprint_Clefable",
|
|
404
|
+
"width": "48",
|
|
405
|
+
"height": "56",
|
|
406
|
+
"iconPalIndex": "0",
|
|
407
|
+
"Icon": "gMonIcon_Clefable"
|
|
408
|
+
},
|
|
409
|
+
"VULPIX": {
|
|
410
|
+
"frontPics": "gMonFrontPic_Vulpix",
|
|
411
|
+
"backPics": "gMonBackPic_Vulpix",
|
|
412
|
+
"normPalette": "gMonPalette_Vulpix",
|
|
413
|
+
"shinyPalette": "gMonShinyPalette_Vulpix",
|
|
414
|
+
"footprintPics": "gMonFootprint_Vulpix",
|
|
415
|
+
"width": "48",
|
|
416
|
+
"height": "40",
|
|
417
|
+
"iconPalIndex": "2",
|
|
418
|
+
"Icon": "gMonIcon_Vulpix"
|
|
419
|
+
},
|
|
420
|
+
"NINETALES": {
|
|
421
|
+
"frontPics": "gMonFrontPic_Ninetales",
|
|
422
|
+
"backPics": "gMonBackPic_Ninetales",
|
|
423
|
+
"normPalette": "gMonPalette_Ninetales",
|
|
424
|
+
"shinyPalette": "gMonShinyPalette_Ninetales",
|
|
425
|
+
"footprintPics": "gMonFootprint_Ninetales",
|
|
426
|
+
"width": "64",
|
|
427
|
+
"height": "64",
|
|
428
|
+
"iconPalIndex": "1",
|
|
429
|
+
"Icon": "gMonIcon_Ninetales"
|
|
430
|
+
},
|
|
431
|
+
"JIGGLYPUFF": {
|
|
432
|
+
"frontPics": "gMonFrontPic_Jigglypuff",
|
|
433
|
+
"backPics": "gMonBackPic_Jigglypuff",
|
|
434
|
+
"normPalette": "gMonPalette_Jigglypuff",
|
|
435
|
+
"shinyPalette": "gMonShinyPalette_Jigglypuff",
|
|
436
|
+
"footprintPics": "gMonFootprint_Jigglypuff",
|
|
437
|
+
"width": "40",
|
|
438
|
+
"height": "40",
|
|
439
|
+
"iconPalIndex": "0",
|
|
440
|
+
"Icon": "gMonIcon_Jigglypuff"
|
|
441
|
+
},
|
|
442
|
+
"WIGGLYTUFF": {
|
|
443
|
+
"frontPics": "gMonFrontPic_Wigglytuff",
|
|
444
|
+
"backPics": "gMonBackPic_Wigglytuff",
|
|
445
|
+
"normPalette": "gMonPalette_Wigglytuff",
|
|
446
|
+
"shinyPalette": "gMonShinyPalette_Wigglytuff",
|
|
447
|
+
"footprintPics": "gMonFootprint_Wigglytuff",
|
|
448
|
+
"width": "48",
|
|
449
|
+
"height": "56",
|
|
450
|
+
"iconPalIndex": "0",
|
|
451
|
+
"Icon": "gMonIcon_Wigglytuff"
|
|
452
|
+
},
|
|
453
|
+
"ZUBAT": {
|
|
454
|
+
"frontPics": "gMonFrontPic_Zubat",
|
|
455
|
+
"backPics": "gMonBackPic_Zubat",
|
|
456
|
+
"normPalette": "gMonPalette_Zubat",
|
|
457
|
+
"shinyPalette": "gMonShinyPalette_Zubat",
|
|
458
|
+
"footprintPics": "gMonFootprint_Zubat",
|
|
459
|
+
"width": "48",
|
|
460
|
+
"height": "48",
|
|
461
|
+
"iconPalIndex": "2",
|
|
462
|
+
"Icon": "gMonIcon_Zubat"
|
|
463
|
+
},
|
|
464
|
+
"GOLBAT": {
|
|
465
|
+
"frontPics": "gMonFrontPic_Golbat",
|
|
466
|
+
"backPics": "gMonBackPic_Golbat",
|
|
467
|
+
"normPalette": "gMonPalette_Golbat",
|
|
468
|
+
"shinyPalette": "gMonShinyPalette_Golbat",
|
|
469
|
+
"footprintPics": "gMonFootprint_Golbat",
|
|
470
|
+
"width": "64",
|
|
471
|
+
"height": "64",
|
|
472
|
+
"iconPalIndex": "2",
|
|
473
|
+
"Icon": "gMonIcon_Golbat"
|
|
474
|
+
},
|
|
475
|
+
"ODDISH": {
|
|
476
|
+
"frontPics": "gMonFrontPic_Oddish",
|
|
477
|
+
"backPics": "gMonBackPic_Oddish",
|
|
478
|
+
"normPalette": "gMonPalette_Oddish",
|
|
479
|
+
"shinyPalette": "gMonShinyPalette_Oddish",
|
|
480
|
+
"footprintPics": "gMonFootprint_Oddish",
|
|
481
|
+
"width": "32",
|
|
482
|
+
"height": "40",
|
|
483
|
+
"iconPalIndex": "1",
|
|
484
|
+
"Icon": "gMonIcon_Oddish"
|
|
485
|
+
},
|
|
486
|
+
"GLOOM": {
|
|
487
|
+
"frontPics": "gMonFrontPic_Gloom",
|
|
488
|
+
"backPics": "gMonBackPic_Gloom",
|
|
489
|
+
"normPalette": "gMonPalette_Gloom",
|
|
490
|
+
"shinyPalette": "gMonShinyPalette_Gloom",
|
|
491
|
+
"footprintPics": "gMonFootprint_Gloom",
|
|
492
|
+
"width": "48",
|
|
493
|
+
"height": "48",
|
|
494
|
+
"iconPalIndex": "0",
|
|
495
|
+
"Icon": "gMonIcon_Gloom"
|
|
496
|
+
},
|
|
497
|
+
"VILEPLUME": {
|
|
498
|
+
"frontPics": "gMonFrontPic_Vileplume",
|
|
499
|
+
"backPics": "gMonBackPic_Vileplume",
|
|
500
|
+
"normPalette": "gMonPalette_Vileplume",
|
|
501
|
+
"shinyPalette": "gMonShinyPalette_Vileplume",
|
|
502
|
+
"footprintPics": "gMonFootprint_Vileplume",
|
|
503
|
+
"width": "56",
|
|
504
|
+
"height": "48",
|
|
505
|
+
"iconPalIndex": "0",
|
|
506
|
+
"Icon": "gMonIcon_Vileplume"
|
|
507
|
+
},
|
|
508
|
+
"PARAS": {
|
|
509
|
+
"frontPics": "gMonFrontPic_Paras",
|
|
510
|
+
"backPics": "gMonBackPic_Paras",
|
|
511
|
+
"normPalette": "gMonPalette_Paras",
|
|
512
|
+
"shinyPalette": "gMonShinyPalette_Paras",
|
|
513
|
+
"footprintPics": "gMonFootprint_Paras",
|
|
514
|
+
"width": "48",
|
|
515
|
+
"height": "32",
|
|
516
|
+
"iconPalIndex": "0",
|
|
517
|
+
"Icon": "gMonIcon_Paras"
|
|
518
|
+
},
|
|
519
|
+
"PARASECT": {
|
|
520
|
+
"frontPics": "gMonFrontPic_Parasect",
|
|
521
|
+
"backPics": "gMonBackPic_Parasect",
|
|
522
|
+
"normPalette": "gMonPalette_Parasect",
|
|
523
|
+
"shinyPalette": "gMonShinyPalette_Parasect",
|
|
524
|
+
"footprintPics": "gMonFootprint_Parasect",
|
|
525
|
+
"width": "64",
|
|
526
|
+
"height": "48",
|
|
527
|
+
"iconPalIndex": "0",
|
|
528
|
+
"Icon": "gMonIcon_Parasect"
|
|
529
|
+
},
|
|
530
|
+
"VENONAT": {
|
|
531
|
+
"frontPics": "gMonFrontPic_Venonat",
|
|
532
|
+
"backPics": "gMonBackPic_Venonat",
|
|
533
|
+
"normPalette": "gMonPalette_Venonat",
|
|
534
|
+
"shinyPalette": "gMonShinyPalette_Venonat",
|
|
535
|
+
"footprintPics": "gMonFootprint_Venonat",
|
|
536
|
+
"width": "40",
|
|
537
|
+
"height": "56",
|
|
538
|
+
"iconPalIndex": "0",
|
|
539
|
+
"Icon": "gMonIcon_Venonat"
|
|
540
|
+
},
|
|
541
|
+
"VENOMOTH": {
|
|
542
|
+
"frontPics": "gMonFrontPic_Venomoth",
|
|
543
|
+
"backPics": "gMonBackPic_Venomoth",
|
|
544
|
+
"normPalette": "gMonPalette_Venomoth",
|
|
545
|
+
"shinyPalette": "gMonShinyPalette_Venomoth",
|
|
546
|
+
"footprintPics": "gMonFootprint_Venomoth",
|
|
547
|
+
"width": "64",
|
|
548
|
+
"height": "56",
|
|
549
|
+
"iconPalIndex": "2",
|
|
550
|
+
"Icon": "gMonIcon_Venomoth"
|
|
551
|
+
},
|
|
552
|
+
"DIGLETT": {
|
|
553
|
+
"frontPics": "gMonFrontPic_Diglett",
|
|
554
|
+
"backPics": "gMonBackPic_Diglett",
|
|
555
|
+
"normPalette": "gMonPalette_Diglett",
|
|
556
|
+
"shinyPalette": "gMonShinyPalette_Diglett",
|
|
557
|
+
"footprintPics": "gMonFootprint_Diglett",
|
|
558
|
+
"width": "40",
|
|
559
|
+
"height": "32",
|
|
560
|
+
"iconPalIndex": "2",
|
|
561
|
+
"Icon": "gMonIcon_Diglett"
|
|
562
|
+
},
|
|
563
|
+
"DUGTRIO": {
|
|
564
|
+
"frontPics": "gMonFrontPic_Dugtrio",
|
|
565
|
+
"backPics": "gMonBackPic_Dugtrio",
|
|
566
|
+
"normPalette": "gMonPalette_Dugtrio",
|
|
567
|
+
"shinyPalette": "gMonShinyPalette_Dugtrio",
|
|
568
|
+
"footprintPics": "gMonFootprint_Dugtrio",
|
|
569
|
+
"width": "56",
|
|
570
|
+
"height": "40",
|
|
571
|
+
"iconPalIndex": "2",
|
|
572
|
+
"Icon": "gMonIcon_Dugtrio"
|
|
573
|
+
},
|
|
574
|
+
"MEOWTH": {
|
|
575
|
+
"frontPics": "gMonFrontPic_Meowth",
|
|
576
|
+
"backPics": "gMonBackPic_Meowth",
|
|
577
|
+
"normPalette": "gMonPalette_Meowth",
|
|
578
|
+
"shinyPalette": "gMonShinyPalette_Meowth",
|
|
579
|
+
"footprintPics": "gMonFootprint_Meowth",
|
|
580
|
+
"width": "40",
|
|
581
|
+
"height": "40",
|
|
582
|
+
"iconPalIndex": "1",
|
|
583
|
+
"Icon": "gMonIcon_Meowth"
|
|
584
|
+
},
|
|
585
|
+
"PERSIAN": {
|
|
586
|
+
"frontPics": "gMonFrontPic_Persian",
|
|
587
|
+
"backPics": "gMonBackPic_Persian",
|
|
588
|
+
"normPalette": "gMonPalette_Persian",
|
|
589
|
+
"shinyPalette": "gMonShinyPalette_Persian",
|
|
590
|
+
"footprintPics": "gMonFootprint_Persian",
|
|
591
|
+
"width": "56",
|
|
592
|
+
"height": "48",
|
|
593
|
+
"iconPalIndex": "1",
|
|
594
|
+
"Icon": "gMonIcon_Persian"
|
|
595
|
+
},
|
|
596
|
+
"PSYDUCK": {
|
|
597
|
+
"frontPics": "gMonFrontPic_Psyduck",
|
|
598
|
+
"backPics": "gMonBackPic_Psyduck",
|
|
599
|
+
"normPalette": "gMonPalette_Psyduck",
|
|
600
|
+
"shinyPalette": "gMonShinyPalette_Psyduck",
|
|
601
|
+
"footprintPics": "gMonFootprint_Psyduck",
|
|
602
|
+
"width": "40",
|
|
603
|
+
"height": "48",
|
|
604
|
+
"iconPalIndex": "1",
|
|
605
|
+
"Icon": "gMonIcon_Psyduck"
|
|
606
|
+
},
|
|
607
|
+
"GOLDUCK": {
|
|
608
|
+
"frontPics": "gMonFrontPic_Golduck",
|
|
609
|
+
"backPics": "gMonBackPic_Golduck",
|
|
610
|
+
"normPalette": "gMonPalette_Golduck",
|
|
611
|
+
"shinyPalette": "gMonShinyPalette_Golduck",
|
|
612
|
+
"footprintPics": "gMonFootprint_Golduck",
|
|
613
|
+
"width": "56",
|
|
614
|
+
"height": "56",
|
|
615
|
+
"iconPalIndex": "2",
|
|
616
|
+
"Icon": "gMonIcon_Golduck"
|
|
617
|
+
},
|
|
618
|
+
"MANKEY": {
|
|
619
|
+
"frontPics": "gMonFrontPic_Mankey",
|
|
620
|
+
"backPics": "gMonBackPic_Mankey",
|
|
621
|
+
"normPalette": "gMonPalette_Mankey",
|
|
622
|
+
"shinyPalette": "gMonShinyPalette_Mankey",
|
|
623
|
+
"footprintPics": "gMonFootprint_Mankey",
|
|
624
|
+
"width": "48",
|
|
625
|
+
"height": "48",
|
|
626
|
+
"iconPalIndex": "1",
|
|
627
|
+
"Icon": "gMonIcon_Mankey"
|
|
628
|
+
},
|
|
629
|
+
"PRIMEAPE": {
|
|
630
|
+
"frontPics": "gMonFrontPic_Primeape",
|
|
631
|
+
"backPics": "gMonBackPic_Primeape",
|
|
632
|
+
"normPalette": "gMonPalette_Primeape",
|
|
633
|
+
"shinyPalette": "gMonShinyPalette_Primeape",
|
|
634
|
+
"footprintPics": "gMonFootprint_Primeape",
|
|
635
|
+
"width": "56",
|
|
636
|
+
"height": "56",
|
|
637
|
+
"iconPalIndex": "2",
|
|
638
|
+
"Icon": "gMonIcon_Primeape"
|
|
639
|
+
},
|
|
640
|
+
"GROWLITHE": {
|
|
641
|
+
"frontPics": "gMonFrontPic_Growlithe",
|
|
642
|
+
"backPics": "gMonBackPic_Growlithe",
|
|
643
|
+
"normPalette": "gMonPalette_Growlithe",
|
|
644
|
+
"shinyPalette": "gMonShinyPalette_Growlithe",
|
|
645
|
+
"footprintPics": "gMonFootprint_Growlithe",
|
|
646
|
+
"width": "48",
|
|
647
|
+
"height": "40",
|
|
648
|
+
"iconPalIndex": "0",
|
|
649
|
+
"Icon": "gMonIcon_Growlithe"
|
|
650
|
+
},
|
|
651
|
+
"ARCANINE": {
|
|
652
|
+
"frontPics": "gMonFrontPic_Arcanine",
|
|
653
|
+
"backPics": "gMonBackPic_Arcanine",
|
|
654
|
+
"normPalette": "gMonPalette_Arcanine",
|
|
655
|
+
"shinyPalette": "gMonShinyPalette_Arcanine",
|
|
656
|
+
"footprintPics": "gMonFootprint_Arcanine",
|
|
657
|
+
"width": "64",
|
|
658
|
+
"height": "64",
|
|
659
|
+
"iconPalIndex": "0",
|
|
660
|
+
"Icon": "gMonIcon_Arcanine"
|
|
661
|
+
},
|
|
662
|
+
"POLIWAG": {
|
|
663
|
+
"frontPics": "gMonFrontPic_Poliwag",
|
|
664
|
+
"backPics": "gMonBackPic_Poliwag",
|
|
665
|
+
"normPalette": "gMonPalette_Poliwag",
|
|
666
|
+
"shinyPalette": "gMonShinyPalette_Poliwag",
|
|
667
|
+
"footprintPics": "gMonFootprint_Poliwag",
|
|
668
|
+
"width": "56",
|
|
669
|
+
"height": "32",
|
|
670
|
+
"iconPalIndex": "0",
|
|
671
|
+
"Icon": "gMonIcon_Poliwag"
|
|
672
|
+
},
|
|
673
|
+
"POLIWHIRL": {
|
|
674
|
+
"frontPics": "gMonFrontPic_Poliwhirl",
|
|
675
|
+
"backPics": "gMonBackPic_Poliwhirl",
|
|
676
|
+
"normPalette": "gMonPalette_Poliwhirl",
|
|
677
|
+
"shinyPalette": "gMonShinyPalette_Poliwhirl",
|
|
678
|
+
"footprintPics": "gMonFootprint_Poliwhirl",
|
|
679
|
+
"width": "56",
|
|
680
|
+
"height": "48",
|
|
681
|
+
"iconPalIndex": "0",
|
|
682
|
+
"Icon": "gMonIcon_Poliwhirl"
|
|
683
|
+
},
|
|
684
|
+
"POLIWRATH": {
|
|
685
|
+
"frontPics": "gMonFrontPic_Poliwrath",
|
|
686
|
+
"backPics": "gMonBackPic_Poliwrath",
|
|
687
|
+
"normPalette": "gMonPalette_Poliwrath",
|
|
688
|
+
"shinyPalette": "gMonShinyPalette_Poliwrath",
|
|
689
|
+
"footprintPics": "gMonFootprint_Poliwrath",
|
|
690
|
+
"width": "56",
|
|
691
|
+
"height": "56",
|
|
692
|
+
"iconPalIndex": "0",
|
|
693
|
+
"Icon": "gMonIcon_Poliwrath"
|
|
694
|
+
},
|
|
695
|
+
"ABRA": {
|
|
696
|
+
"frontPics": "gMonFrontPic_Abra",
|
|
697
|
+
"backPics": "gMonBackPic_Abra",
|
|
698
|
+
"normPalette": "gMonPalette_Abra",
|
|
699
|
+
"shinyPalette": "gMonShinyPalette_Abra",
|
|
700
|
+
"footprintPics": "gMonFootprint_Abra",
|
|
701
|
+
"width": "48",
|
|
702
|
+
"height": "48",
|
|
703
|
+
"iconPalIndex": "2",
|
|
704
|
+
"Icon": "gMonIcon_Abra"
|
|
705
|
+
},
|
|
706
|
+
"KADABRA": {
|
|
707
|
+
"frontPics": "gMonFrontPic_Kadabra",
|
|
708
|
+
"backPics": "gMonBackPic_Kadabra",
|
|
709
|
+
"normPalette": "gMonPalette_Kadabra",
|
|
710
|
+
"shinyPalette": "gMonShinyPalette_Kadabra",
|
|
711
|
+
"footprintPics": "gMonFootprint_Kadabra",
|
|
712
|
+
"width": "64",
|
|
713
|
+
"height": "56",
|
|
714
|
+
"iconPalIndex": "2",
|
|
715
|
+
"Icon": "gMonIcon_Kadabra"
|
|
716
|
+
},
|
|
717
|
+
"ALAKAZAM": {
|
|
718
|
+
"frontPics": "gMonFrontPic_Alakazam",
|
|
719
|
+
"backPics": "gMonBackPic_Alakazam",
|
|
720
|
+
"normPalette": "gMonPalette_Alakazam",
|
|
721
|
+
"shinyPalette": "gMonShinyPalette_Alakazam",
|
|
722
|
+
"footprintPics": "gMonFootprint_Alakazam",
|
|
723
|
+
"width": "64",
|
|
724
|
+
"height": "64",
|
|
725
|
+
"iconPalIndex": "2",
|
|
726
|
+
"Icon": "gMonIcon_Alakazam"
|
|
727
|
+
},
|
|
728
|
+
"MACHOP": {
|
|
729
|
+
"frontPics": "gMonFrontPic_Machop",
|
|
730
|
+
"backPics": "gMonBackPic_Machop",
|
|
731
|
+
"normPalette": "gMonPalette_Machop",
|
|
732
|
+
"shinyPalette": "gMonShinyPalette_Machop",
|
|
733
|
+
"footprintPics": "gMonFootprint_Machop",
|
|
734
|
+
"width": "32",
|
|
735
|
+
"height": "48",
|
|
736
|
+
"iconPalIndex": "0",
|
|
737
|
+
"Icon": "gMonIcon_Machop"
|
|
738
|
+
},
|
|
739
|
+
"MACHOKE": {
|
|
740
|
+
"frontPics": "gMonFrontPic_Machoke",
|
|
741
|
+
"backPics": "gMonBackPic_Machoke",
|
|
742
|
+
"normPalette": "gMonPalette_Machoke",
|
|
743
|
+
"shinyPalette": "gMonShinyPalette_Machoke",
|
|
744
|
+
"footprintPics": "gMonFootprint_Machoke",
|
|
745
|
+
"width": "56",
|
|
746
|
+
"height": "56",
|
|
747
|
+
"iconPalIndex": "2",
|
|
748
|
+
"Icon": "gMonIcon_Machoke"
|
|
749
|
+
},
|
|
750
|
+
"MACHAMP": {
|
|
751
|
+
"frontPics": "gMonFrontPic_Machamp",
|
|
752
|
+
"backPics": "gMonBackPic_Machamp",
|
|
753
|
+
"normPalette": "gMonPalette_Machamp",
|
|
754
|
+
"shinyPalette": "gMonShinyPalette_Machamp",
|
|
755
|
+
"footprintPics": "gMonFootprint_Machamp",
|
|
756
|
+
"width": "64",
|
|
757
|
+
"height": "64",
|
|
758
|
+
"iconPalIndex": "0",
|
|
759
|
+
"Icon": "gMonIcon_Machamp"
|
|
760
|
+
},
|
|
761
|
+
"BELLSPROUT": {
|
|
762
|
+
"frontPics": "gMonFrontPic_Bellsprout",
|
|
763
|
+
"backPics": "gMonBackPic_Bellsprout",
|
|
764
|
+
"normPalette": "gMonPalette_Bellsprout",
|
|
765
|
+
"shinyPalette": "gMonShinyPalette_Bellsprout",
|
|
766
|
+
"footprintPics": "gMonFootprint_Bellsprout",
|
|
767
|
+
"width": "48",
|
|
768
|
+
"height": "48",
|
|
769
|
+
"iconPalIndex": "1",
|
|
770
|
+
"Icon": "gMonIcon_Bellsprout"
|
|
771
|
+
},
|
|
772
|
+
"WEEPINBELL": {
|
|
773
|
+
"frontPics": "gMonFrontPic_Weepinbell",
|
|
774
|
+
"backPics": "gMonBackPic_Weepinbell",
|
|
775
|
+
"normPalette": "gMonPalette_Weepinbell",
|
|
776
|
+
"shinyPalette": "gMonShinyPalette_Weepinbell",
|
|
777
|
+
"footprintPics": "gMonFootprint_Weepinbell",
|
|
778
|
+
"width": "48",
|
|
779
|
+
"height": "48",
|
|
780
|
+
"iconPalIndex": "1",
|
|
781
|
+
"Icon": "gMonIcon_Weepinbell"
|
|
782
|
+
},
|
|
783
|
+
"VICTREEBEL": {
|
|
784
|
+
"frontPics": "gMonFrontPic_Victreebel",
|
|
785
|
+
"backPics": "gMonBackPic_Victreebel",
|
|
786
|
+
"normPalette": "gMonPalette_Victreebel",
|
|
787
|
+
"shinyPalette": "gMonShinyPalette_Victreebel",
|
|
788
|
+
"footprintPics": "gMonFootprint_Victreebel",
|
|
789
|
+
"width": "56",
|
|
790
|
+
"height": "56",
|
|
791
|
+
"iconPalIndex": "1",
|
|
792
|
+
"Icon": "gMonIcon_Victreebel"
|
|
793
|
+
},
|
|
794
|
+
"TENTACOOL": {
|
|
795
|
+
"frontPics": "gMonFrontPic_Tentacool",
|
|
796
|
+
"backPics": "gMonBackPic_Tentacool",
|
|
797
|
+
"normPalette": "gMonPalette_Tentacool",
|
|
798
|
+
"shinyPalette": "gMonShinyPalette_Tentacool",
|
|
799
|
+
"footprintPics": "gMonFootprint_Tentacool",
|
|
800
|
+
"width": "48",
|
|
801
|
+
"height": "48",
|
|
802
|
+
"iconPalIndex": "2",
|
|
803
|
+
"Icon": "gMonIcon_Tentacool"
|
|
804
|
+
},
|
|
805
|
+
"TENTACRUEL": {
|
|
806
|
+
"frontPics": "gMonFrontPic_Tentacruel",
|
|
807
|
+
"backPics": "gMonBackPic_Tentacruel",
|
|
808
|
+
"normPalette": "gMonPalette_Tentacruel",
|
|
809
|
+
"shinyPalette": "gMonShinyPalette_Tentacruel",
|
|
810
|
+
"footprintPics": "gMonFootprint_Tentacruel",
|
|
811
|
+
"width": "56",
|
|
812
|
+
"height": "64",
|
|
813
|
+
"iconPalIndex": "2",
|
|
814
|
+
"Icon": "gMonIcon_Tentacruel"
|
|
815
|
+
},
|
|
816
|
+
"GEODUDE": {
|
|
817
|
+
"frontPics": "gMonFrontPic_Geodude",
|
|
818
|
+
"backPics": "gMonBackPic_Geodude",
|
|
819
|
+
"normPalette": "gMonPalette_Geodude",
|
|
820
|
+
"shinyPalette": "gMonShinyPalette_Geodude",
|
|
821
|
+
"footprintPics": "gMonFootprint_Geodude",
|
|
822
|
+
"width": "56",
|
|
823
|
+
"height": "32",
|
|
824
|
+
"iconPalIndex": "1",
|
|
825
|
+
"Icon": "gMonIcon_Geodude"
|
|
826
|
+
},
|
|
827
|
+
"GRAVELER": {
|
|
828
|
+
"frontPics": "gMonFrontPic_Graveler",
|
|
829
|
+
"backPics": "gMonBackPic_Graveler",
|
|
830
|
+
"normPalette": "gMonPalette_Graveler",
|
|
831
|
+
"shinyPalette": "gMonShinyPalette_Graveler",
|
|
832
|
+
"footprintPics": "gMonFootprint_Graveler",
|
|
833
|
+
"width": "64",
|
|
834
|
+
"height": "48",
|
|
835
|
+
"iconPalIndex": "1",
|
|
836
|
+
"Icon": "gMonIcon_Graveler"
|
|
837
|
+
},
|
|
838
|
+
"GOLEM": {
|
|
839
|
+
"frontPics": "gMonFrontPic_Golem",
|
|
840
|
+
"backPics": "gMonBackPic_Golem",
|
|
841
|
+
"normPalette": "gMonPalette_Golem",
|
|
842
|
+
"shinyPalette": "gMonShinyPalette_Golem",
|
|
843
|
+
"footprintPics": "gMonFootprint_Golem",
|
|
844
|
+
"width": "64",
|
|
845
|
+
"height": "56",
|
|
846
|
+
"iconPalIndex": "1",
|
|
847
|
+
"Icon": "gMonIcon_Golem"
|
|
848
|
+
},
|
|
849
|
+
"PONYTA": {
|
|
850
|
+
"frontPics": "gMonFrontPic_Ponyta",
|
|
851
|
+
"backPics": "gMonBackPic_Ponyta",
|
|
852
|
+
"normPalette": "gMonPalette_Ponyta",
|
|
853
|
+
"shinyPalette": "gMonShinyPalette_Ponyta",
|
|
854
|
+
"footprintPics": "gMonFootprint_Ponyta",
|
|
855
|
+
"width": "48",
|
|
856
|
+
"height": "56",
|
|
857
|
+
"iconPalIndex": "0",
|
|
858
|
+
"Icon": "gMonIcon_Ponyta"
|
|
859
|
+
},
|
|
860
|
+
"RAPIDASH": {
|
|
861
|
+
"frontPics": "gMonFrontPic_Rapidash",
|
|
862
|
+
"backPics": "gMonBackPic_Rapidash",
|
|
863
|
+
"normPalette": "gMonPalette_Rapidash",
|
|
864
|
+
"shinyPalette": "gMonShinyPalette_Rapidash",
|
|
865
|
+
"footprintPics": "gMonFootprint_Rapidash",
|
|
866
|
+
"width": "64",
|
|
867
|
+
"height": "64",
|
|
868
|
+
"iconPalIndex": "0",
|
|
869
|
+
"Icon": "gMonIcon_Rapidash"
|
|
870
|
+
},
|
|
871
|
+
"SLOWPOKE": {
|
|
872
|
+
"frontPics": "gMonFrontPic_Slowpoke",
|
|
873
|
+
"backPics": "gMonBackPic_Slowpoke",
|
|
874
|
+
"normPalette": "gMonPalette_Slowpoke",
|
|
875
|
+
"shinyPalette": "gMonShinyPalette_Slowpoke",
|
|
876
|
+
"footprintPics": "gMonFootprint_Slowpoke",
|
|
877
|
+
"width": "48",
|
|
878
|
+
"height": "40",
|
|
879
|
+
"iconPalIndex": "0",
|
|
880
|
+
"Icon": "gMonIcon_Slowpoke"
|
|
881
|
+
},
|
|
882
|
+
"SLOWBRO": {
|
|
883
|
+
"frontPics": "gMonFrontPic_Slowbro",
|
|
884
|
+
"backPics": "gMonBackPic_Slowbro",
|
|
885
|
+
"normPalette": "gMonPalette_Slowbro",
|
|
886
|
+
"shinyPalette": "gMonShinyPalette_Slowbro",
|
|
887
|
+
"footprintPics": "gMonFootprint_Slowbro",
|
|
888
|
+
"width": "64",
|
|
889
|
+
"height": "64",
|
|
890
|
+
"iconPalIndex": "0",
|
|
891
|
+
"Icon": "gMonIcon_Slowbro"
|
|
892
|
+
},
|
|
893
|
+
"MAGNEMITE": {
|
|
894
|
+
"frontPics": "gMonFrontPic_Magnemite",
|
|
895
|
+
"backPics": "gMonBackPic_Magnemite",
|
|
896
|
+
"normPalette": "gMonPalette_Magnemite",
|
|
897
|
+
"shinyPalette": "gMonShinyPalette_Magnemite",
|
|
898
|
+
"footprintPics": "gMonFootprint_Magnemite",
|
|
899
|
+
"width": "40",
|
|
900
|
+
"height": "24",
|
|
901
|
+
"iconPalIndex": "0",
|
|
902
|
+
"Icon": "gMonIcon_Magnemite"
|
|
903
|
+
},
|
|
904
|
+
"MAGNETON": {
|
|
905
|
+
"frontPics": "gMonFrontPic_Magneton",
|
|
906
|
+
"backPics": "gMonBackPic_Magneton",
|
|
907
|
+
"normPalette": "gMonPalette_Magneton",
|
|
908
|
+
"shinyPalette": "gMonShinyPalette_Magneton",
|
|
909
|
+
"footprintPics": "gMonFootprint_Magneton",
|
|
910
|
+
"width": "56",
|
|
911
|
+
"height": "40",
|
|
912
|
+
"iconPalIndex": "0",
|
|
913
|
+
"Icon": "gMonIcon_Magneton"
|
|
914
|
+
},
|
|
915
|
+
"FARFETCHD": {
|
|
916
|
+
"frontPics": "gMonFrontPic_Farfetchd",
|
|
917
|
+
"backPics": "gMonBackPic_Farfetchd",
|
|
918
|
+
"normPalette": "gMonPalette_Farfetchd",
|
|
919
|
+
"shinyPalette": "gMonShinyPalette_Farfetchd",
|
|
920
|
+
"footprintPics": "gMonFootprint_Farfetchd",
|
|
921
|
+
"width": "56",
|
|
922
|
+
"height": "48",
|
|
923
|
+
"iconPalIndex": "1",
|
|
924
|
+
"Icon": "gMonIcon_Farfetchd"
|
|
925
|
+
},
|
|
926
|
+
"DODUO": {
|
|
927
|
+
"frontPics": "gMonFrontPic_Doduo",
|
|
928
|
+
"backPics": "gMonBackPic_Doduo",
|
|
929
|
+
"normPalette": "gMonPalette_Doduo",
|
|
930
|
+
"shinyPalette": "gMonShinyPalette_Doduo",
|
|
931
|
+
"footprintPics": "gMonFootprint_Doduo",
|
|
932
|
+
"width": "48",
|
|
933
|
+
"height": "56",
|
|
934
|
+
"iconPalIndex": "2",
|
|
935
|
+
"Icon": "gMonIcon_Doduo"
|
|
936
|
+
},
|
|
937
|
+
"DODRIO": {
|
|
938
|
+
"frontPics": "gMonFrontPic_Dodrio",
|
|
939
|
+
"backPics": "gMonBackPic_Dodrio",
|
|
940
|
+
"normPalette": "gMonPalette_Dodrio",
|
|
941
|
+
"shinyPalette": "gMonShinyPalette_Dodrio",
|
|
942
|
+
"footprintPics": "gMonFootprint_Dodrio",
|
|
943
|
+
"width": "64",
|
|
944
|
+
"height": "64",
|
|
945
|
+
"iconPalIndex": "2",
|
|
946
|
+
"Icon": "gMonIcon_Dodrio"
|
|
947
|
+
},
|
|
948
|
+
"SEEL": {
|
|
949
|
+
"frontPics": "gMonFrontPic_Seel",
|
|
950
|
+
"backPics": "gMonBackPic_Seel",
|
|
951
|
+
"normPalette": "gMonPalette_Seel",
|
|
952
|
+
"shinyPalette": "gMonShinyPalette_Seel",
|
|
953
|
+
"footprintPics": "gMonFootprint_Seel",
|
|
954
|
+
"width": "56",
|
|
955
|
+
"height": "48",
|
|
956
|
+
"iconPalIndex": "2",
|
|
957
|
+
"Icon": "gMonIcon_Seel"
|
|
958
|
+
},
|
|
959
|
+
"DEWGONG": {
|
|
960
|
+
"frontPics": "gMonFrontPic_Dewgong",
|
|
961
|
+
"backPics": "gMonBackPic_Dewgong",
|
|
962
|
+
"normPalette": "gMonPalette_Dewgong",
|
|
963
|
+
"shinyPalette": "gMonShinyPalette_Dewgong",
|
|
964
|
+
"footprintPics": "gMonFootprint_Dewgong",
|
|
965
|
+
"width": "64",
|
|
966
|
+
"height": "56",
|
|
967
|
+
"iconPalIndex": "2",
|
|
968
|
+
"Icon": "gMonIcon_Dewgong"
|
|
969
|
+
},
|
|
970
|
+
"GRIMER": {
|
|
971
|
+
"frontPics": "gMonFrontPic_Grimer",
|
|
972
|
+
"backPics": "gMonBackPic_Grimer",
|
|
973
|
+
"normPalette": "gMonPalette_Grimer",
|
|
974
|
+
"shinyPalette": "gMonShinyPalette_Grimer",
|
|
975
|
+
"footprintPics": "gMonFootprint_Grimer",
|
|
976
|
+
"width": "48",
|
|
977
|
+
"height": "48",
|
|
978
|
+
"iconPalIndex": "2",
|
|
979
|
+
"Icon": "gMonIcon_Grimer"
|
|
980
|
+
},
|
|
981
|
+
"MUK": {
|
|
982
|
+
"frontPics": "gMonFrontPic_Muk",
|
|
983
|
+
"backPics": "gMonBackPic_Muk",
|
|
984
|
+
"normPalette": "gMonPalette_Muk",
|
|
985
|
+
"shinyPalette": "gMonShinyPalette_Muk",
|
|
986
|
+
"footprintPics": "gMonFootprint_Muk",
|
|
987
|
+
"width": "64",
|
|
988
|
+
"height": "48",
|
|
989
|
+
"iconPalIndex": "2",
|
|
990
|
+
"Icon": "gMonIcon_Muk"
|
|
991
|
+
},
|
|
992
|
+
"SHELLDER": {
|
|
993
|
+
"frontPics": "gMonFrontPic_Shellder",
|
|
994
|
+
"backPics": "gMonBackPic_Shellder",
|
|
995
|
+
"normPalette": "gMonPalette_Shellder",
|
|
996
|
+
"shinyPalette": "gMonShinyPalette_Shellder",
|
|
997
|
+
"footprintPics": "gMonFootprint_Shellder",
|
|
998
|
+
"width": "40",
|
|
999
|
+
"height": "40",
|
|
1000
|
+
"iconPalIndex": "2",
|
|
1001
|
+
"Icon": "gMonIcon_Shellder"
|
|
1002
|
+
},
|
|
1003
|
+
"CLOYSTER": {
|
|
1004
|
+
"frontPics": "gMonFrontPic_Cloyster",
|
|
1005
|
+
"backPics": "gMonBackPic_Cloyster",
|
|
1006
|
+
"normPalette": "gMonPalette_Cloyster",
|
|
1007
|
+
"shinyPalette": "gMonShinyPalette_Cloyster",
|
|
1008
|
+
"footprintPics": "gMonFootprint_Cloyster",
|
|
1009
|
+
"width": "64",
|
|
1010
|
+
"height": "56",
|
|
1011
|
+
"iconPalIndex": "2",
|
|
1012
|
+
"Icon": "gMonIcon_Cloyster"
|
|
1013
|
+
},
|
|
1014
|
+
"GASTLY": {
|
|
1015
|
+
"frontPics": "gMonFrontPic_Gastly",
|
|
1016
|
+
"backPics": "gMonBackPic_Gastly",
|
|
1017
|
+
"normPalette": "gMonPalette_Gastly",
|
|
1018
|
+
"shinyPalette": "gMonShinyPalette_Gastly",
|
|
1019
|
+
"footprintPics": "gMonFootprint_Gastly",
|
|
1020
|
+
"width": "56",
|
|
1021
|
+
"height": "56",
|
|
1022
|
+
"iconPalIndex": "2",
|
|
1023
|
+
"Icon": "gMonIcon_Gastly"
|
|
1024
|
+
},
|
|
1025
|
+
"HAUNTER": {
|
|
1026
|
+
"frontPics": "gMonFrontPic_Haunter",
|
|
1027
|
+
"backPics": "gMonBackPic_Haunter",
|
|
1028
|
+
"normPalette": "gMonPalette_Haunter",
|
|
1029
|
+
"shinyPalette": "gMonShinyPalette_Haunter",
|
|
1030
|
+
"footprintPics": "gMonFootprint_Haunter",
|
|
1031
|
+
"width": "64",
|
|
1032
|
+
"height": "56",
|
|
1033
|
+
"iconPalIndex": "2",
|
|
1034
|
+
"Icon": "gMonIcon_Haunter"
|
|
1035
|
+
},
|
|
1036
|
+
"GENGAR": {
|
|
1037
|
+
"frontPics": "gMonFrontPic_Gengar",
|
|
1038
|
+
"backPics": "gMonBackPic_Gengar",
|
|
1039
|
+
"normPalette": "gMonPalette_Gengar",
|
|
1040
|
+
"shinyPalette": "gMonShinyPalette_Gengar",
|
|
1041
|
+
"footprintPics": "gMonFootprint_Gengar",
|
|
1042
|
+
"width": "56",
|
|
1043
|
+
"height": "48",
|
|
1044
|
+
"iconPalIndex": "2",
|
|
1045
|
+
"Icon": "gMonIcon_Gengar"
|
|
1046
|
+
},
|
|
1047
|
+
"ONIX": {
|
|
1048
|
+
"frontPics": "gMonFrontPic_Onix",
|
|
1049
|
+
"backPics": "gMonBackPic_Onix",
|
|
1050
|
+
"normPalette": "gMonPalette_Onix",
|
|
1051
|
+
"shinyPalette": "gMonShinyPalette_Onix",
|
|
1052
|
+
"footprintPics": "gMonFootprint_Onix",
|
|
1053
|
+
"width": "56",
|
|
1054
|
+
"height": "64",
|
|
1055
|
+
"iconPalIndex": "2",
|
|
1056
|
+
"Icon": "gMonIcon_Onix"
|
|
1057
|
+
},
|
|
1058
|
+
"DROWZEE": {
|
|
1059
|
+
"frontPics": "gMonFrontPic_Drowzee",
|
|
1060
|
+
"backPics": "gMonBackPic_Drowzee",
|
|
1061
|
+
"normPalette": "gMonPalette_Drowzee",
|
|
1062
|
+
"shinyPalette": "gMonShinyPalette_Drowzee",
|
|
1063
|
+
"footprintPics": "gMonFootprint_Drowzee",
|
|
1064
|
+
"width": "48",
|
|
1065
|
+
"height": "48",
|
|
1066
|
+
"iconPalIndex": "2",
|
|
1067
|
+
"Icon": "gMonIcon_Drowzee"
|
|
1068
|
+
},
|
|
1069
|
+
"HYPNO": {
|
|
1070
|
+
"frontPics": "gMonFrontPic_Hypno",
|
|
1071
|
+
"backPics": "gMonBackPic_Hypno",
|
|
1072
|
+
"normPalette": "gMonPalette_Hypno",
|
|
1073
|
+
"shinyPalette": "gMonShinyPalette_Hypno",
|
|
1074
|
+
"footprintPics": "gMonFootprint_Hypno",
|
|
1075
|
+
"width": "64",
|
|
1076
|
+
"height": "56",
|
|
1077
|
+
"iconPalIndex": "1",
|
|
1078
|
+
"Icon": "gMonIcon_Hypno"
|
|
1079
|
+
},
|
|
1080
|
+
"KRABBY": {
|
|
1081
|
+
"frontPics": "gMonFrontPic_Krabby",
|
|
1082
|
+
"backPics": "gMonBackPic_Krabby",
|
|
1083
|
+
"normPalette": "gMonPalette_Krabby",
|
|
1084
|
+
"shinyPalette": "gMonShinyPalette_Krabby",
|
|
1085
|
+
"footprintPics": "gMonFootprint_Krabby",
|
|
1086
|
+
"width": "56",
|
|
1087
|
+
"height": "40",
|
|
1088
|
+
"iconPalIndex": "2",
|
|
1089
|
+
"Icon": "gMonIcon_Krabby"
|
|
1090
|
+
},
|
|
1091
|
+
"KINGLER": {
|
|
1092
|
+
"frontPics": "gMonFrontPic_Kingler",
|
|
1093
|
+
"backPics": "gMonBackPic_Kingler",
|
|
1094
|
+
"normPalette": "gMonPalette_Kingler",
|
|
1095
|
+
"shinyPalette": "gMonShinyPalette_Kingler",
|
|
1096
|
+
"footprintPics": "gMonFootprint_Kingler",
|
|
1097
|
+
"width": "64",
|
|
1098
|
+
"height": "56",
|
|
1099
|
+
"iconPalIndex": "2",
|
|
1100
|
+
"Icon": "gMonIcon_Kingler"
|
|
1101
|
+
},
|
|
1102
|
+
"VOLTORB": {
|
|
1103
|
+
"frontPics": "gMonFrontPic_Voltorb",
|
|
1104
|
+
"backPics": "gMonBackPic_Voltorb",
|
|
1105
|
+
"normPalette": "gMonPalette_Voltorb",
|
|
1106
|
+
"shinyPalette": "gMonShinyPalette_Voltorb",
|
|
1107
|
+
"footprintPics": "gMonFootprint_Voltorb",
|
|
1108
|
+
"width": "32",
|
|
1109
|
+
"height": "32",
|
|
1110
|
+
"iconPalIndex": "0",
|
|
1111
|
+
"Icon": "gMonIcon_Voltorb"
|
|
1112
|
+
},
|
|
1113
|
+
"ELECTRODE": {
|
|
1114
|
+
"frontPics": "gMonFrontPic_Electrode",
|
|
1115
|
+
"backPics": "gMonBackPic_Electrode",
|
|
1116
|
+
"normPalette": "gMonPalette_Electrode",
|
|
1117
|
+
"shinyPalette": "gMonShinyPalette_Electrode",
|
|
1118
|
+
"footprintPics": "gMonFootprint_Electrode",
|
|
1119
|
+
"width": "40",
|
|
1120
|
+
"height": "40",
|
|
1121
|
+
"iconPalIndex": "0",
|
|
1122
|
+
"Icon": "gMonIcon_Electrode"
|
|
1123
|
+
},
|
|
1124
|
+
"EXEGGCUTE": {
|
|
1125
|
+
"frontPics": "gMonFrontPic_Exeggcute",
|
|
1126
|
+
"backPics": "gMonBackPic_Exeggcute",
|
|
1127
|
+
"normPalette": "gMonPalette_Exeggcute",
|
|
1128
|
+
"shinyPalette": "gMonShinyPalette_Exeggcute",
|
|
1129
|
+
"footprintPics": "gMonFootprint_Exeggcute",
|
|
1130
|
+
"width": "56",
|
|
1131
|
+
"height": "48",
|
|
1132
|
+
"iconPalIndex": "0",
|
|
1133
|
+
"Icon": "gMonIcon_Exeggcute"
|
|
1134
|
+
},
|
|
1135
|
+
"EXEGGUTOR": {
|
|
1136
|
+
"frontPics": "gMonFrontPic_Exeggutor",
|
|
1137
|
+
"backPics": "gMonBackPic_Exeggutor",
|
|
1138
|
+
"normPalette": "gMonPalette_Exeggutor",
|
|
1139
|
+
"shinyPalette": "gMonShinyPalette_Exeggutor",
|
|
1140
|
+
"footprintPics": "gMonFootprint_Exeggutor",
|
|
1141
|
+
"width": "64",
|
|
1142
|
+
"height": "64",
|
|
1143
|
+
"iconPalIndex": "1",
|
|
1144
|
+
"Icon": "gMonIcon_Exeggutor"
|
|
1145
|
+
},
|
|
1146
|
+
"CUBONE": {
|
|
1147
|
+
"frontPics": "gMonFrontPic_Cubone",
|
|
1148
|
+
"backPics": "gMonBackPic_Cubone",
|
|
1149
|
+
"normPalette": "gMonPalette_Cubone",
|
|
1150
|
+
"shinyPalette": "gMonShinyPalette_Cubone",
|
|
1151
|
+
"footprintPics": "gMonFootprint_Cubone",
|
|
1152
|
+
"width": "48",
|
|
1153
|
+
"height": "40",
|
|
1154
|
+
"iconPalIndex": "1",
|
|
1155
|
+
"Icon": "gMonIcon_Cubone"
|
|
1156
|
+
},
|
|
1157
|
+
"MAROWAK": {
|
|
1158
|
+
"frontPics": "gMonFrontPic_Marowak",
|
|
1159
|
+
"backPics": "gMonBackPic_Marowak",
|
|
1160
|
+
"normPalette": "gMonPalette_Marowak",
|
|
1161
|
+
"shinyPalette": "gMonShinyPalette_Marowak",
|
|
1162
|
+
"footprintPics": "gMonFootprint_Marowak",
|
|
1163
|
+
"width": "64",
|
|
1164
|
+
"height": "56",
|
|
1165
|
+
"iconPalIndex": "1",
|
|
1166
|
+
"Icon": "gMonIcon_Marowak"
|
|
1167
|
+
},
|
|
1168
|
+
"HITMONLEE": {
|
|
1169
|
+
"frontPics": "gMonFrontPic_Hitmonlee",
|
|
1170
|
+
"backPics": "gMonBackPic_Hitmonlee",
|
|
1171
|
+
"normPalette": "gMonPalette_Hitmonlee",
|
|
1172
|
+
"shinyPalette": "gMonShinyPalette_Hitmonlee",
|
|
1173
|
+
"footprintPics": "gMonFootprint_Hitmonlee",
|
|
1174
|
+
"width": "56",
|
|
1175
|
+
"height": "56",
|
|
1176
|
+
"iconPalIndex": "2",
|
|
1177
|
+
"Icon": "gMonIcon_Hitmonlee"
|
|
1178
|
+
},
|
|
1179
|
+
"HITMONCHAN": {
|
|
1180
|
+
"frontPics": "gMonFrontPic_Hitmonchan",
|
|
1181
|
+
"backPics": "gMonBackPic_Hitmonchan",
|
|
1182
|
+
"normPalette": "gMonPalette_Hitmonchan",
|
|
1183
|
+
"shinyPalette": "gMonShinyPalette_Hitmonchan",
|
|
1184
|
+
"footprintPics": "gMonFootprint_Hitmonchan",
|
|
1185
|
+
"width": "48",
|
|
1186
|
+
"height": "56",
|
|
1187
|
+
"iconPalIndex": "2",
|
|
1188
|
+
"Icon": "gMonIcon_Hitmonchan"
|
|
1189
|
+
},
|
|
1190
|
+
"LICKITUNG": {
|
|
1191
|
+
"frontPics": "gMonFrontPic_Lickitung",
|
|
1192
|
+
"backPics": "gMonBackPic_Lickitung",
|
|
1193
|
+
"normPalette": "gMonPalette_Lickitung",
|
|
1194
|
+
"shinyPalette": "gMonShinyPalette_Lickitung",
|
|
1195
|
+
"footprintPics": "gMonFootprint_Lickitung",
|
|
1196
|
+
"width": "64",
|
|
1197
|
+
"height": "48",
|
|
1198
|
+
"iconPalIndex": "1",
|
|
1199
|
+
"Icon": "gMonIcon_Lickitung"
|
|
1200
|
+
},
|
|
1201
|
+
"KOFFING": {
|
|
1202
|
+
"frontPics": "gMonFrontPic_Koffing",
|
|
1203
|
+
"backPics": "gMonBackPic_Koffing",
|
|
1204
|
+
"normPalette": "gMonPalette_Koffing",
|
|
1205
|
+
"shinyPalette": "gMonShinyPalette_Koffing",
|
|
1206
|
+
"footprintPics": "gMonFootprint_Koffing",
|
|
1207
|
+
"width": "48",
|
|
1208
|
+
"height": "48",
|
|
1209
|
+
"iconPalIndex": "2",
|
|
1210
|
+
"Icon": "gMonIcon_Koffing"
|
|
1211
|
+
},
|
|
1212
|
+
"WEEZING": {
|
|
1213
|
+
"frontPics": "gMonFrontPic_Weezing",
|
|
1214
|
+
"backPics": "gMonBackPic_Weezing",
|
|
1215
|
+
"normPalette": "gMonPalette_Weezing",
|
|
1216
|
+
"shinyPalette": "gMonShinyPalette_Weezing",
|
|
1217
|
+
"footprintPics": "gMonFootprint_Weezing",
|
|
1218
|
+
"width": "64",
|
|
1219
|
+
"height": "64",
|
|
1220
|
+
"iconPalIndex": "2",
|
|
1221
|
+
"Icon": "gMonIcon_Weezing"
|
|
1222
|
+
},
|
|
1223
|
+
"RHYHORN": {
|
|
1224
|
+
"frontPics": "gMonFrontPic_Rhyhorn",
|
|
1225
|
+
"backPics": "gMonBackPic_Rhyhorn",
|
|
1226
|
+
"normPalette": "gMonPalette_Rhyhorn",
|
|
1227
|
+
"shinyPalette": "gMonShinyPalette_Rhyhorn",
|
|
1228
|
+
"footprintPics": "gMonFootprint_Rhyhorn",
|
|
1229
|
+
"width": "56",
|
|
1230
|
+
"height": "48",
|
|
1231
|
+
"iconPalIndex": "1",
|
|
1232
|
+
"Icon": "gMonIcon_Rhyhorn"
|
|
1233
|
+
},
|
|
1234
|
+
"RHYDON": {
|
|
1235
|
+
"frontPics": "gMonFrontPic_Rhydon",
|
|
1236
|
+
"backPics": "gMonBackPic_Rhydon",
|
|
1237
|
+
"normPalette": "gMonPalette_Rhydon",
|
|
1238
|
+
"shinyPalette": "gMonShinyPalette_Rhydon",
|
|
1239
|
+
"footprintPics": "gMonFootprint_Rhydon",
|
|
1240
|
+
"width": "64",
|
|
1241
|
+
"height": "64",
|
|
1242
|
+
"iconPalIndex": "1",
|
|
1243
|
+
"Icon": "gMonIcon_Rhydon"
|
|
1244
|
+
},
|
|
1245
|
+
"CHANSEY": {
|
|
1246
|
+
"frontPics": "gMonFrontPic_Chansey",
|
|
1247
|
+
"backPics": "gMonBackPic_Chansey",
|
|
1248
|
+
"normPalette": "gMonPalette_Chansey",
|
|
1249
|
+
"shinyPalette": "gMonShinyPalette_Chansey",
|
|
1250
|
+
"footprintPics": "gMonFootprint_Chansey",
|
|
1251
|
+
"width": "56",
|
|
1252
|
+
"height": "48",
|
|
1253
|
+
"iconPalIndex": "0",
|
|
1254
|
+
"Icon": "gMonIcon_Chansey"
|
|
1255
|
+
},
|
|
1256
|
+
"TANGELA": {
|
|
1257
|
+
"frontPics": "gMonFrontPic_Tangela",
|
|
1258
|
+
"backPics": "gMonBackPic_Tangela",
|
|
1259
|
+
"normPalette": "gMonPalette_Tangela",
|
|
1260
|
+
"shinyPalette": "gMonShinyPalette_Tangela",
|
|
1261
|
+
"footprintPics": "gMonFootprint_Tangela",
|
|
1262
|
+
"width": "48",
|
|
1263
|
+
"height": "48",
|
|
1264
|
+
"iconPalIndex": "0",
|
|
1265
|
+
"Icon": "gMonIcon_Tangela"
|
|
1266
|
+
},
|
|
1267
|
+
"KANGASKHAN": {
|
|
1268
|
+
"frontPics": "gMonFrontPic_Kangaskhan",
|
|
1269
|
+
"backPics": "gMonBackPic_Kangaskhan",
|
|
1270
|
+
"normPalette": "gMonPalette_Kangaskhan",
|
|
1271
|
+
"shinyPalette": "gMonShinyPalette_Kangaskhan",
|
|
1272
|
+
"footprintPics": "gMonFootprint_Kangaskhan",
|
|
1273
|
+
"width": "64",
|
|
1274
|
+
"height": "64",
|
|
1275
|
+
"iconPalIndex": "1",
|
|
1276
|
+
"Icon": "gMonIcon_Kangaskhan"
|
|
1277
|
+
},
|
|
1278
|
+
"HORSEA": {
|
|
1279
|
+
"frontPics": "gMonFrontPic_Horsea",
|
|
1280
|
+
"backPics": "gMonBackPic_Horsea",
|
|
1281
|
+
"normPalette": "gMonPalette_Horsea",
|
|
1282
|
+
"shinyPalette": "gMonShinyPalette_Horsea",
|
|
1283
|
+
"footprintPics": "gMonFootprint_Horsea",
|
|
1284
|
+
"width": "32",
|
|
1285
|
+
"height": "40",
|
|
1286
|
+
"iconPalIndex": "0",
|
|
1287
|
+
"Icon": "gMonIcon_Horsea"
|
|
1288
|
+
},
|
|
1289
|
+
"SEADRA": {
|
|
1290
|
+
"frontPics": "gMonFrontPic_Seadra",
|
|
1291
|
+
"backPics": "gMonBackPic_Seadra",
|
|
1292
|
+
"normPalette": "gMonPalette_Seadra",
|
|
1293
|
+
"shinyPalette": "gMonShinyPalette_Seadra",
|
|
1294
|
+
"footprintPics": "gMonFootprint_Seadra",
|
|
1295
|
+
"width": "56",
|
|
1296
|
+
"height": "56",
|
|
1297
|
+
"iconPalIndex": "0",
|
|
1298
|
+
"Icon": "gMonIcon_Seadra"
|
|
1299
|
+
},
|
|
1300
|
+
"GOLDEEN": {
|
|
1301
|
+
"frontPics": "gMonFrontPic_Goldeen",
|
|
1302
|
+
"backPics": "gMonBackPic_Goldeen",
|
|
1303
|
+
"normPalette": "gMonPalette_Goldeen",
|
|
1304
|
+
"shinyPalette": "gMonShinyPalette_Goldeen",
|
|
1305
|
+
"footprintPics": "gMonFootprint_Goldeen",
|
|
1306
|
+
"width": "48",
|
|
1307
|
+
"height": "48",
|
|
1308
|
+
"iconPalIndex": "0",
|
|
1309
|
+
"Icon": "gMonIcon_Goldeen"
|
|
1310
|
+
},
|
|
1311
|
+
"SEAKING": {
|
|
1312
|
+
"frontPics": "gMonFrontPic_Seaking",
|
|
1313
|
+
"backPics": "gMonBackPic_Seaking",
|
|
1314
|
+
"normPalette": "gMonPalette_Seaking",
|
|
1315
|
+
"shinyPalette": "gMonShinyPalette_Seaking",
|
|
1316
|
+
"footprintPics": "gMonFootprint_Seaking",
|
|
1317
|
+
"width": "56",
|
|
1318
|
+
"height": "56",
|
|
1319
|
+
"iconPalIndex": "0",
|
|
1320
|
+
"Icon": "gMonIcon_Seaking"
|
|
1321
|
+
},
|
|
1322
|
+
"STARYU": {
|
|
1323
|
+
"frontPics": "gMonFrontPic_Staryu",
|
|
1324
|
+
"backPics": "gMonBackPic_Staryu",
|
|
1325
|
+
"normPalette": "gMonPalette_Staryu",
|
|
1326
|
+
"shinyPalette": "gMonShinyPalette_Staryu",
|
|
1327
|
+
"footprintPics": "gMonFootprint_Staryu",
|
|
1328
|
+
"width": "48",
|
|
1329
|
+
"height": "48",
|
|
1330
|
+
"iconPalIndex": "2",
|
|
1331
|
+
"Icon": "gMonIcon_Staryu"
|
|
1332
|
+
},
|
|
1333
|
+
"STARMIE": {
|
|
1334
|
+
"frontPics": "gMonFrontPic_Starmie",
|
|
1335
|
+
"backPics": "gMonBackPic_Starmie",
|
|
1336
|
+
"normPalette": "gMonPalette_Starmie",
|
|
1337
|
+
"shinyPalette": "gMonShinyPalette_Starmie",
|
|
1338
|
+
"footprintPics": "gMonFootprint_Starmie",
|
|
1339
|
+
"width": "48",
|
|
1340
|
+
"height": "56",
|
|
1341
|
+
"iconPalIndex": "2",
|
|
1342
|
+
"Icon": "gMonIcon_Starmie"
|
|
1343
|
+
},
|
|
1344
|
+
"MR_MIME": {
|
|
1345
|
+
"frontPics": "gMonFrontPic_Mrmime",
|
|
1346
|
+
"backPics": "gMonBackPic_Mrmime",
|
|
1347
|
+
"normPalette": "gMonPalette_Mrmime",
|
|
1348
|
+
"shinyPalette": "gMonShinyPalette_Mrmime",
|
|
1349
|
+
"footprintPics": "gMonFootprint_Mrmime",
|
|
1350
|
+
"width": "56",
|
|
1351
|
+
"height": "48",
|
|
1352
|
+
"iconPalIndex": "0",
|
|
1353
|
+
"Icon": "gMonIcon_Mrmime"
|
|
1354
|
+
},
|
|
1355
|
+
"SCYTHER": {
|
|
1356
|
+
"frontPics": "gMonFrontPic_Scyther",
|
|
1357
|
+
"backPics": "gMonBackPic_Scyther",
|
|
1358
|
+
"normPalette": "gMonPalette_Scyther",
|
|
1359
|
+
"shinyPalette": "gMonShinyPalette_Scyther",
|
|
1360
|
+
"footprintPics": "gMonFootprint_Scyther",
|
|
1361
|
+
"width": "56",
|
|
1362
|
+
"height": "64",
|
|
1363
|
+
"iconPalIndex": "1",
|
|
1364
|
+
"Icon": "gMonIcon_Scyther"
|
|
1365
|
+
},
|
|
1366
|
+
"JYNX": {
|
|
1367
|
+
"frontPics": "gMonFrontPic_Jynx",
|
|
1368
|
+
"backPics": "gMonBackPic_Jynx",
|
|
1369
|
+
"normPalette": "gMonPalette_Jynx",
|
|
1370
|
+
"shinyPalette": "gMonShinyPalette_Jynx",
|
|
1371
|
+
"footprintPics": "gMonFootprint_Jynx",
|
|
1372
|
+
"width": "48",
|
|
1373
|
+
"height": "48",
|
|
1374
|
+
"iconPalIndex": "2",
|
|
1375
|
+
"Icon": "gMonIcon_Jynx"
|
|
1376
|
+
},
|
|
1377
|
+
"ELECTABUZZ": {
|
|
1378
|
+
"frontPics": "gMonFrontPic_Electabuzz",
|
|
1379
|
+
"backPics": "gMonBackPic_Electabuzz",
|
|
1380
|
+
"normPalette": "gMonPalette_Electabuzz",
|
|
1381
|
+
"shinyPalette": "gMonShinyPalette_Electabuzz",
|
|
1382
|
+
"footprintPics": "gMonFootprint_Electabuzz",
|
|
1383
|
+
"width": "64",
|
|
1384
|
+
"height": "64",
|
|
1385
|
+
"iconPalIndex": "1",
|
|
1386
|
+
"Icon": "gMonIcon_Electabuzz"
|
|
1387
|
+
},
|
|
1388
|
+
"MAGMAR": {
|
|
1389
|
+
"frontPics": "gMonFrontPic_Magmar",
|
|
1390
|
+
"backPics": "gMonBackPic_Magmar",
|
|
1391
|
+
"normPalette": "gMonPalette_Magmar",
|
|
1392
|
+
"shinyPalette": "gMonShinyPalette_Magmar",
|
|
1393
|
+
"footprintPics": "gMonFootprint_Magmar",
|
|
1394
|
+
"width": "64",
|
|
1395
|
+
"height": "56",
|
|
1396
|
+
"iconPalIndex": "0",
|
|
1397
|
+
"Icon": "gMonIcon_Magmar"
|
|
1398
|
+
},
|
|
1399
|
+
"PINSIR": {
|
|
1400
|
+
"frontPics": "gMonFrontPic_Pinsir",
|
|
1401
|
+
"backPics": "gMonBackPic_Pinsir",
|
|
1402
|
+
"normPalette": "gMonPalette_Pinsir",
|
|
1403
|
+
"shinyPalette": "gMonShinyPalette_Pinsir",
|
|
1404
|
+
"footprintPics": "gMonFootprint_Pinsir",
|
|
1405
|
+
"width": "56",
|
|
1406
|
+
"height": "56",
|
|
1407
|
+
"iconPalIndex": "2",
|
|
1408
|
+
"Icon": "gMonIcon_Pinsir"
|
|
1409
|
+
},
|
|
1410
|
+
"TAUROS": {
|
|
1411
|
+
"frontPics": "gMonFrontPic_Tauros",
|
|
1412
|
+
"backPics": "gMonBackPic_Tauros",
|
|
1413
|
+
"normPalette": "gMonPalette_Tauros",
|
|
1414
|
+
"shinyPalette": "gMonShinyPalette_Tauros",
|
|
1415
|
+
"footprintPics": "gMonFootprint_Tauros",
|
|
1416
|
+
"width": "64",
|
|
1417
|
+
"height": "64",
|
|
1418
|
+
"iconPalIndex": "2",
|
|
1419
|
+
"Icon": "gMonIcon_Tauros"
|
|
1420
|
+
},
|
|
1421
|
+
"MAGIKARP": {
|
|
1422
|
+
"frontPics": "gMonFrontPic_Magikarp",
|
|
1423
|
+
"backPics": "gMonBackPic_Magikarp",
|
|
1424
|
+
"normPalette": "gMonPalette_Magikarp",
|
|
1425
|
+
"shinyPalette": "gMonShinyPalette_Magikarp",
|
|
1426
|
+
"footprintPics": "gMonFootprint_Magikarp",
|
|
1427
|
+
"width": "56",
|
|
1428
|
+
"height": "56",
|
|
1429
|
+
"iconPalIndex": "0",
|
|
1430
|
+
"Icon": "gMonIcon_Magikarp"
|
|
1431
|
+
},
|
|
1432
|
+
"GYARADOS": {
|
|
1433
|
+
"frontPics": "gMonFrontPic_Gyarados",
|
|
1434
|
+
"backPics": "gMonBackPic_Gyarados",
|
|
1435
|
+
"normPalette": "gMonPalette_Gyarados",
|
|
1436
|
+
"shinyPalette": "gMonShinyPalette_Gyarados",
|
|
1437
|
+
"footprintPics": "gMonFootprint_Gyarados",
|
|
1438
|
+
"width": "64",
|
|
1439
|
+
"height": "64",
|
|
1440
|
+
"iconPalIndex": "0",
|
|
1441
|
+
"Icon": "gMonIcon_Gyarados"
|
|
1442
|
+
},
|
|
1443
|
+
"LAPRAS": {
|
|
1444
|
+
"frontPics": "gMonFrontPic_Lapras",
|
|
1445
|
+
"backPics": "gMonBackPic_Lapras",
|
|
1446
|
+
"normPalette": "gMonPalette_Lapras",
|
|
1447
|
+
"shinyPalette": "gMonShinyPalette_Lapras",
|
|
1448
|
+
"footprintPics": "gMonFootprint_Lapras",
|
|
1449
|
+
"width": "64",
|
|
1450
|
+
"height": "56",
|
|
1451
|
+
"iconPalIndex": "2",
|
|
1452
|
+
"Icon": "gMonIcon_Lapras"
|
|
1453
|
+
},
|
|
1454
|
+
"DITTO": {
|
|
1455
|
+
"frontPics": "gMonFrontPic_Ditto",
|
|
1456
|
+
"backPics": "gMonBackPic_Ditto",
|
|
1457
|
+
"normPalette": "gMonPalette_Ditto",
|
|
1458
|
+
"shinyPalette": "gMonShinyPalette_Ditto",
|
|
1459
|
+
"footprintPics": "gMonFootprint_Ditto",
|
|
1460
|
+
"width": "40",
|
|
1461
|
+
"height": "32",
|
|
1462
|
+
"iconPalIndex": "2",
|
|
1463
|
+
"Icon": "gMonIcon_Ditto"
|
|
1464
|
+
},
|
|
1465
|
+
"EEVEE": {
|
|
1466
|
+
"frontPics": "gMonFrontPic_Eevee",
|
|
1467
|
+
"backPics": "gMonBackPic_Eevee",
|
|
1468
|
+
"normPalette": "gMonPalette_Eevee",
|
|
1469
|
+
"shinyPalette": "gMonShinyPalette_Eevee",
|
|
1470
|
+
"footprintPics": "gMonFootprint_Eevee",
|
|
1471
|
+
"width": "40",
|
|
1472
|
+
"height": "48",
|
|
1473
|
+
"iconPalIndex": "2",
|
|
1474
|
+
"Icon": "gMonIcon_Eevee"
|
|
1475
|
+
},
|
|
1476
|
+
"VAPOREON": {
|
|
1477
|
+
"frontPics": "gMonFrontPic_Vaporeon",
|
|
1478
|
+
"backPics": "gMonBackPic_Vaporeon",
|
|
1479
|
+
"normPalette": "gMonPalette_Vaporeon",
|
|
1480
|
+
"shinyPalette": "gMonShinyPalette_Vaporeon",
|
|
1481
|
+
"footprintPics": "gMonFootprint_Vaporeon",
|
|
1482
|
+
"width": "48",
|
|
1483
|
+
"height": "56",
|
|
1484
|
+
"iconPalIndex": "0",
|
|
1485
|
+
"Icon": "gMonIcon_Vaporeon"
|
|
1486
|
+
},
|
|
1487
|
+
"JOLTEON": {
|
|
1488
|
+
"frontPics": "gMonFrontPic_Jolteon",
|
|
1489
|
+
"backPics": "gMonBackPic_Jolteon",
|
|
1490
|
+
"normPalette": "gMonPalette_Jolteon",
|
|
1491
|
+
"shinyPalette": "gMonShinyPalette_Jolteon",
|
|
1492
|
+
"footprintPics": "gMonFootprint_Jolteon",
|
|
1493
|
+
"width": "48",
|
|
1494
|
+
"height": "48",
|
|
1495
|
+
"iconPalIndex": "0",
|
|
1496
|
+
"Icon": "gMonIcon_Jolteon"
|
|
1497
|
+
},
|
|
1498
|
+
"FLAREON": {
|
|
1499
|
+
"frontPics": "gMonFrontPic_Flareon",
|
|
1500
|
+
"backPics": "gMonBackPic_Flareon",
|
|
1501
|
+
"normPalette": "gMonPalette_Flareon",
|
|
1502
|
+
"shinyPalette": "gMonShinyPalette_Flareon",
|
|
1503
|
+
"footprintPics": "gMonFootprint_Flareon",
|
|
1504
|
+
"width": "56",
|
|
1505
|
+
"height": "48",
|
|
1506
|
+
"iconPalIndex": "0",
|
|
1507
|
+
"Icon": "gMonIcon_Flareon"
|
|
1508
|
+
},
|
|
1509
|
+
"PORYGON": {
|
|
1510
|
+
"frontPics": "gMonFrontPic_Porygon",
|
|
1511
|
+
"backPics": "gMonBackPic_Porygon",
|
|
1512
|
+
"normPalette": "gMonPalette_Porygon",
|
|
1513
|
+
"shinyPalette": "gMonShinyPalette_Porygon",
|
|
1514
|
+
"footprintPics": "gMonFootprint_Porygon",
|
|
1515
|
+
"width": "40",
|
|
1516
|
+
"height": "48",
|
|
1517
|
+
"iconPalIndex": "0",
|
|
1518
|
+
"Icon": "gMonIcon_Porygon"
|
|
1519
|
+
},
|
|
1520
|
+
"OMANYTE": {
|
|
1521
|
+
"frontPics": "gMonFrontPic_Omanyte",
|
|
1522
|
+
"backPics": "gMonBackPic_Omanyte",
|
|
1523
|
+
"normPalette": "gMonPalette_Omanyte",
|
|
1524
|
+
"shinyPalette": "gMonShinyPalette_Omanyte",
|
|
1525
|
+
"footprintPics": "gMonFootprint_Omanyte",
|
|
1526
|
+
"width": "32",
|
|
1527
|
+
"height": "40",
|
|
1528
|
+
"iconPalIndex": "0",
|
|
1529
|
+
"Icon": "gMonIcon_Omanyte"
|
|
1530
|
+
},
|
|
1531
|
+
"OMASTAR": {
|
|
1532
|
+
"frontPics": "gMonFrontPic_Omastar",
|
|
1533
|
+
"backPics": "gMonBackPic_Omastar",
|
|
1534
|
+
"normPalette": "gMonPalette_Omastar",
|
|
1535
|
+
"shinyPalette": "gMonShinyPalette_Omastar",
|
|
1536
|
+
"footprintPics": "gMonFootprint_Omastar",
|
|
1537
|
+
"width": "48",
|
|
1538
|
+
"height": "56",
|
|
1539
|
+
"iconPalIndex": "0",
|
|
1540
|
+
"Icon": "gMonIcon_Omastar"
|
|
1541
|
+
},
|
|
1542
|
+
"KABUTO": {
|
|
1543
|
+
"frontPics": "gMonFrontPic_Kabuto",
|
|
1544
|
+
"backPics": "gMonBackPic_Kabuto",
|
|
1545
|
+
"normPalette": "gMonPalette_Kabuto",
|
|
1546
|
+
"shinyPalette": "gMonShinyPalette_Kabuto",
|
|
1547
|
+
"footprintPics": "gMonFootprint_Kabuto",
|
|
1548
|
+
"width": "40",
|
|
1549
|
+
"height": "32",
|
|
1550
|
+
"iconPalIndex": "2",
|
|
1551
|
+
"Icon": "gMonIcon_Kabuto"
|
|
1552
|
+
},
|
|
1553
|
+
"KABUTOPS": {
|
|
1554
|
+
"frontPics": "gMonFrontPic_Kabutops",
|
|
1555
|
+
"backPics": "gMonBackPic_Kabutops",
|
|
1556
|
+
"normPalette": "gMonPalette_Kabutops",
|
|
1557
|
+
"shinyPalette": "gMonShinyPalette_Kabutops",
|
|
1558
|
+
"footprintPics": "gMonFootprint_Kabutops",
|
|
1559
|
+
"width": "64",
|
|
1560
|
+
"height": "64",
|
|
1561
|
+
"iconPalIndex": "2",
|
|
1562
|
+
"Icon": "gMonIcon_Kabutops"
|
|
1563
|
+
},
|
|
1564
|
+
"AERODACTYL": {
|
|
1565
|
+
"frontPics": "gMonFrontPic_Aerodactyl",
|
|
1566
|
+
"backPics": "gMonBackPic_Aerodactyl",
|
|
1567
|
+
"normPalette": "gMonPalette_Aerodactyl",
|
|
1568
|
+
"shinyPalette": "gMonShinyPalette_Aerodactyl",
|
|
1569
|
+
"footprintPics": "gMonFootprint_Aerodactyl",
|
|
1570
|
+
"width": "64",
|
|
1571
|
+
"height": "64",
|
|
1572
|
+
"iconPalIndex": "0",
|
|
1573
|
+
"Icon": "gMonIcon_Aerodactyl"
|
|
1574
|
+
},
|
|
1575
|
+
"SNORLAX": {
|
|
1576
|
+
"frontPics": "gMonFrontPic_Snorlax",
|
|
1577
|
+
"backPics": "gMonBackPic_Snorlax",
|
|
1578
|
+
"normPalette": "gMonPalette_Snorlax",
|
|
1579
|
+
"shinyPalette": "gMonShinyPalette_Snorlax",
|
|
1580
|
+
"footprintPics": "gMonFootprint_Snorlax",
|
|
1581
|
+
"width": "64",
|
|
1582
|
+
"height": "56",
|
|
1583
|
+
"iconPalIndex": "1",
|
|
1584
|
+
"Icon": "gMonIcon_Snorlax"
|
|
1585
|
+
},
|
|
1586
|
+
"ARTICUNO": {
|
|
1587
|
+
"frontPics": "gMonFrontPic_Articuno",
|
|
1588
|
+
"backPics": "gMonBackPic_Articuno",
|
|
1589
|
+
"normPalette": "gMonPalette_Articuno",
|
|
1590
|
+
"shinyPalette": "gMonShinyPalette_Articuno",
|
|
1591
|
+
"footprintPics": "gMonFootprint_Articuno",
|
|
1592
|
+
"width": "64",
|
|
1593
|
+
"height": "64",
|
|
1594
|
+
"iconPalIndex": "0",
|
|
1595
|
+
"Icon": "gMonIcon_Articuno"
|
|
1596
|
+
},
|
|
1597
|
+
"ZAPDOS": {
|
|
1598
|
+
"frontPics": "gMonFrontPic_Zapdos",
|
|
1599
|
+
"backPics": "gMonBackPic_Zapdos",
|
|
1600
|
+
"normPalette": "gMonPalette_Zapdos",
|
|
1601
|
+
"shinyPalette": "gMonShinyPalette_Zapdos",
|
|
1602
|
+
"footprintPics": "gMonFootprint_Zapdos",
|
|
1603
|
+
"width": "64",
|
|
1604
|
+
"height": "64",
|
|
1605
|
+
"iconPalIndex": "0",
|
|
1606
|
+
"Icon": "gMonIcon_Zapdos"
|
|
1607
|
+
},
|
|
1608
|
+
"MOLTRES": {
|
|
1609
|
+
"frontPics": "gMonFrontPic_Moltres",
|
|
1610
|
+
"backPics": "gMonBackPic_Moltres",
|
|
1611
|
+
"normPalette": "gMonPalette_Moltres",
|
|
1612
|
+
"shinyPalette": "gMonShinyPalette_Moltres",
|
|
1613
|
+
"footprintPics": "gMonFootprint_Moltres",
|
|
1614
|
+
"width": "64",
|
|
1615
|
+
"height": "64",
|
|
1616
|
+
"iconPalIndex": "0",
|
|
1617
|
+
"Icon": "gMonIcon_Moltres"
|
|
1618
|
+
},
|
|
1619
|
+
"DRATINI": {
|
|
1620
|
+
"frontPics": "gMonFrontPic_Dratini",
|
|
1621
|
+
"backPics": "gMonBackPic_Dratini",
|
|
1622
|
+
"normPalette": "gMonPalette_Dratini",
|
|
1623
|
+
"shinyPalette": "gMonShinyPalette_Dratini",
|
|
1624
|
+
"footprintPics": "gMonFootprint_Dratini",
|
|
1625
|
+
"width": "56",
|
|
1626
|
+
"height": "40",
|
|
1627
|
+
"iconPalIndex": "0",
|
|
1628
|
+
"Icon": "gMonIcon_Dratini"
|
|
1629
|
+
},
|
|
1630
|
+
"DRAGONAIR": {
|
|
1631
|
+
"frontPics": "gMonFrontPic_Dragonair",
|
|
1632
|
+
"backPics": "gMonBackPic_Dragonair",
|
|
1633
|
+
"normPalette": "gMonPalette_Dragonair",
|
|
1634
|
+
"shinyPalette": "gMonShinyPalette_Dragonair",
|
|
1635
|
+
"footprintPics": "gMonFootprint_Dragonair",
|
|
1636
|
+
"width": "64",
|
|
1637
|
+
"height": "56",
|
|
1638
|
+
"iconPalIndex": "0",
|
|
1639
|
+
"Icon": "gMonIcon_Dragonair"
|
|
1640
|
+
},
|
|
1641
|
+
"DRAGONITE": {
|
|
1642
|
+
"frontPics": "gMonFrontPic_Dragonite",
|
|
1643
|
+
"backPics": "gMonBackPic_Dragonite",
|
|
1644
|
+
"normPalette": "gMonPalette_Dragonite",
|
|
1645
|
+
"shinyPalette": "gMonShinyPalette_Dragonite",
|
|
1646
|
+
"footprintPics": "gMonFootprint_Dragonite",
|
|
1647
|
+
"width": "64",
|
|
1648
|
+
"height": "64",
|
|
1649
|
+
"iconPalIndex": "2",
|
|
1650
|
+
"Icon": "gMonIcon_Dragonite"
|
|
1651
|
+
},
|
|
1652
|
+
"MEWTWO": {
|
|
1653
|
+
"frontPics": "gMonFrontPic_Mewtwo",
|
|
1654
|
+
"backPics": "gMonBackPic_Mewtwo",
|
|
1655
|
+
"normPalette": "gMonPalette_Mewtwo",
|
|
1656
|
+
"shinyPalette": "gMonShinyPalette_Mewtwo",
|
|
1657
|
+
"footprintPics": "gMonFootprint_Mewtwo",
|
|
1658
|
+
"width": "64",
|
|
1659
|
+
"height": "64",
|
|
1660
|
+
"iconPalIndex": "2",
|
|
1661
|
+
"Icon": "gMonIcon_Mewtwo"
|
|
1662
|
+
},
|
|
1663
|
+
"MEW": {
|
|
1664
|
+
"frontPics": "gMonFrontPic_Mew",
|
|
1665
|
+
"backPics": "gMonBackPic_Mew",
|
|
1666
|
+
"normPalette": "gMonPalette_Mew",
|
|
1667
|
+
"shinyPalette": "gMonShinyPalette_Mew",
|
|
1668
|
+
"footprintPics": "gMonFootprint_Mew",
|
|
1669
|
+
"width": "56",
|
|
1670
|
+
"height": "56",
|
|
1671
|
+
"iconPalIndex": "0",
|
|
1672
|
+
"Icon": "gMonIcon_Mew"
|
|
1673
|
+
},
|
|
1674
|
+
"CHIKORITA": {
|
|
1675
|
+
"frontPics": "gMonFrontPic_Chikorita",
|
|
1676
|
+
"backPics": "gMonBackPic_Chikorita",
|
|
1677
|
+
"normPalette": "gMonPalette_Chikorita",
|
|
1678
|
+
"shinyPalette": "gMonShinyPalette_Chikorita",
|
|
1679
|
+
"footprintPics": "gMonFootprint_Chikorita",
|
|
1680
|
+
"width": "56",
|
|
1681
|
+
"height": "40",
|
|
1682
|
+
"iconPalIndex": "1",
|
|
1683
|
+
"Icon": "gMonIcon_Chikorita"
|
|
1684
|
+
},
|
|
1685
|
+
"BAYLEEF": {
|
|
1686
|
+
"frontPics": "gMonFrontPic_Bayleef",
|
|
1687
|
+
"backPics": "gMonBackPic_Bayleef",
|
|
1688
|
+
"normPalette": "gMonPalette_Bayleef",
|
|
1689
|
+
"shinyPalette": "gMonShinyPalette_Bayleef",
|
|
1690
|
+
"footprintPics": "gMonFootprint_Bayleef",
|
|
1691
|
+
"width": "56",
|
|
1692
|
+
"height": "56",
|
|
1693
|
+
"iconPalIndex": "1",
|
|
1694
|
+
"Icon": "gMonIcon_Bayleef"
|
|
1695
|
+
},
|
|
1696
|
+
"MEGANIUM": {
|
|
1697
|
+
"frontPics": "gMonFrontPic_Meganium",
|
|
1698
|
+
"backPics": "gMonBackPic_Meganium",
|
|
1699
|
+
"normPalette": "gMonPalette_Meganium",
|
|
1700
|
+
"shinyPalette": "gMonShinyPalette_Meganium",
|
|
1701
|
+
"footprintPics": "gMonFootprint_Meganium",
|
|
1702
|
+
"width": "64",
|
|
1703
|
+
"height": "64",
|
|
1704
|
+
"iconPalIndex": "1",
|
|
1705
|
+
"Icon": "gMonIcon_Meganium"
|
|
1706
|
+
},
|
|
1707
|
+
"CYNDAQUIL": {
|
|
1708
|
+
"frontPics": "gMonFrontPic_Cyndaquil",
|
|
1709
|
+
"backPics": "gMonBackPic_Cyndaquil",
|
|
1710
|
+
"normPalette": "gMonPalette_Cyndaquil",
|
|
1711
|
+
"shinyPalette": "gMonShinyPalette_Cyndaquil",
|
|
1712
|
+
"footprintPics": "gMonFootprint_Cyndaquil",
|
|
1713
|
+
"width": "40",
|
|
1714
|
+
"height": "40",
|
|
1715
|
+
"iconPalIndex": "1",
|
|
1716
|
+
"Icon": "gMonIcon_Cyndaquil"
|
|
1717
|
+
},
|
|
1718
|
+
"QUILAVA": {
|
|
1719
|
+
"frontPics": "gMonFrontPic_Quilava",
|
|
1720
|
+
"backPics": "gMonBackPic_Quilava",
|
|
1721
|
+
"normPalette": "gMonPalette_Quilava",
|
|
1722
|
+
"shinyPalette": "gMonShinyPalette_Quilava",
|
|
1723
|
+
"footprintPics": "gMonFootprint_Quilava",
|
|
1724
|
+
"width": "56",
|
|
1725
|
+
"height": "48",
|
|
1726
|
+
"iconPalIndex": "1",
|
|
1727
|
+
"Icon": "gMonIcon_Quilava"
|
|
1728
|
+
},
|
|
1729
|
+
"TYPHLOSION": {
|
|
1730
|
+
"frontPics": "gMonFrontPic_Typhlosion",
|
|
1731
|
+
"backPics": "gMonBackPic_Typhlosion",
|
|
1732
|
+
"normPalette": "gMonPalette_Typhlosion",
|
|
1733
|
+
"shinyPalette": "gMonShinyPalette_Typhlosion",
|
|
1734
|
+
"footprintPics": "gMonFootprint_Typhlosion",
|
|
1735
|
+
"width": "56",
|
|
1736
|
+
"height": "64",
|
|
1737
|
+
"iconPalIndex": "1",
|
|
1738
|
+
"Icon": "gMonIcon_Typhlosion"
|
|
1739
|
+
},
|
|
1740
|
+
"TOTODILE": {
|
|
1741
|
+
"frontPics": "gMonFrontPic_Totodile",
|
|
1742
|
+
"backPics": "gMonBackPic_Totodile",
|
|
1743
|
+
"normPalette": "gMonPalette_Totodile",
|
|
1744
|
+
"shinyPalette": "gMonShinyPalette_Totodile",
|
|
1745
|
+
"footprintPics": "gMonFootprint_Totodile",
|
|
1746
|
+
"width": "40",
|
|
1747
|
+
"height": "40",
|
|
1748
|
+
"iconPalIndex": "2",
|
|
1749
|
+
"Icon": "gMonIcon_Totodile"
|
|
1750
|
+
},
|
|
1751
|
+
"CROCONAW": {
|
|
1752
|
+
"frontPics": "gMonFrontPic_Croconaw",
|
|
1753
|
+
"backPics": "gMonBackPic_Croconaw",
|
|
1754
|
+
"normPalette": "gMonPalette_Croconaw",
|
|
1755
|
+
"shinyPalette": "gMonShinyPalette_Croconaw",
|
|
1756
|
+
"footprintPics": "gMonFootprint_Croconaw",
|
|
1757
|
+
"width": "48",
|
|
1758
|
+
"height": "56",
|
|
1759
|
+
"iconPalIndex": "2",
|
|
1760
|
+
"Icon": "gMonIcon_Croconaw"
|
|
1761
|
+
},
|
|
1762
|
+
"FERALIGATR": {
|
|
1763
|
+
"frontPics": "gMonFrontPic_Feraligatr",
|
|
1764
|
+
"backPics": "gMonBackPic_Feraligatr",
|
|
1765
|
+
"normPalette": "gMonPalette_Feraligatr",
|
|
1766
|
+
"shinyPalette": "gMonShinyPalette_Feraligatr",
|
|
1767
|
+
"footprintPics": "gMonFootprint_Feraligatr",
|
|
1768
|
+
"width": "64",
|
|
1769
|
+
"height": "64",
|
|
1770
|
+
"iconPalIndex": "2",
|
|
1771
|
+
"Icon": "gMonIcon_Feraligatr"
|
|
1772
|
+
},
|
|
1773
|
+
"SENTRET": {
|
|
1774
|
+
"frontPics": "gMonFrontPic_Sentret",
|
|
1775
|
+
"backPics": "gMonBackPic_Sentret",
|
|
1776
|
+
"normPalette": "gMonPalette_Sentret",
|
|
1777
|
+
"shinyPalette": "gMonShinyPalette_Sentret",
|
|
1778
|
+
"footprintPics": "gMonFootprint_Sentret",
|
|
1779
|
+
"width": "32",
|
|
1780
|
+
"height": "56",
|
|
1781
|
+
"iconPalIndex": "2",
|
|
1782
|
+
"Icon": "gMonIcon_Sentret"
|
|
1783
|
+
},
|
|
1784
|
+
"FURRET": {
|
|
1785
|
+
"frontPics": "gMonFrontPic_Furret",
|
|
1786
|
+
"backPics": "gMonBackPic_Furret",
|
|
1787
|
+
"normPalette": "gMonPalette_Furret",
|
|
1788
|
+
"shinyPalette": "gMonShinyPalette_Furret",
|
|
1789
|
+
"footprintPics": "gMonFootprint_Furret",
|
|
1790
|
+
"width": "48",
|
|
1791
|
+
"height": "56",
|
|
1792
|
+
"iconPalIndex": "2",
|
|
1793
|
+
"Icon": "gMonIcon_Furret"
|
|
1794
|
+
},
|
|
1795
|
+
"HOOTHOOT": {
|
|
1796
|
+
"frontPics": "gMonFrontPic_Hoothoot",
|
|
1797
|
+
"backPics": "gMonBackPic_Hoothoot",
|
|
1798
|
+
"normPalette": "gMonPalette_Hoothoot",
|
|
1799
|
+
"shinyPalette": "gMonShinyPalette_Hoothoot",
|
|
1800
|
+
"footprintPics": "gMonFootprint_Hoothoot",
|
|
1801
|
+
"width": "40",
|
|
1802
|
+
"height": "40",
|
|
1803
|
+
"iconPalIndex": "2",
|
|
1804
|
+
"Icon": "gMonIcon_Hoothoot"
|
|
1805
|
+
},
|
|
1806
|
+
"NOCTOWL": {
|
|
1807
|
+
"frontPics": "gMonFrontPic_Noctowl",
|
|
1808
|
+
"backPics": "gMonBackPic_Noctowl",
|
|
1809
|
+
"normPalette": "gMonPalette_Noctowl",
|
|
1810
|
+
"shinyPalette": "gMonShinyPalette_Noctowl",
|
|
1811
|
+
"footprintPics": "gMonFootprint_Noctowl",
|
|
1812
|
+
"width": "40",
|
|
1813
|
+
"height": "64",
|
|
1814
|
+
"iconPalIndex": "2",
|
|
1815
|
+
"Icon": "gMonIcon_Noctowl"
|
|
1816
|
+
},
|
|
1817
|
+
"LEDYBA": {
|
|
1818
|
+
"frontPics": "gMonFrontPic_Ledyba",
|
|
1819
|
+
"backPics": "gMonBackPic_Ledyba",
|
|
1820
|
+
"normPalette": "gMonPalette_Ledyba",
|
|
1821
|
+
"shinyPalette": "gMonShinyPalette_Ledyba",
|
|
1822
|
+
"footprintPics": "gMonFootprint_Ledyba",
|
|
1823
|
+
"width": "40",
|
|
1824
|
+
"height": "48",
|
|
1825
|
+
"iconPalIndex": "0",
|
|
1826
|
+
"Icon": "gMonIcon_Ledyba"
|
|
1827
|
+
},
|
|
1828
|
+
"LEDIAN": {
|
|
1829
|
+
"frontPics": "gMonFrontPic_Ledian",
|
|
1830
|
+
"backPics": "gMonBackPic_Ledian",
|
|
1831
|
+
"normPalette": "gMonPalette_Ledian",
|
|
1832
|
+
"shinyPalette": "gMonShinyPalette_Ledian",
|
|
1833
|
+
"footprintPics": "gMonFootprint_Ledian",
|
|
1834
|
+
"width": "48",
|
|
1835
|
+
"height": "56",
|
|
1836
|
+
"iconPalIndex": "0",
|
|
1837
|
+
"Icon": "gMonIcon_Ledian"
|
|
1838
|
+
},
|
|
1839
|
+
"SPINARAK": {
|
|
1840
|
+
"frontPics": "gMonFrontPic_Spinarak",
|
|
1841
|
+
"backPics": "gMonBackPic_Spinarak",
|
|
1842
|
+
"normPalette": "gMonPalette_Spinarak",
|
|
1843
|
+
"shinyPalette": "gMonShinyPalette_Spinarak",
|
|
1844
|
+
"footprintPics": "gMonFootprint_Spinarak",
|
|
1845
|
+
"width": "40",
|
|
1846
|
+
"height": "32",
|
|
1847
|
+
"iconPalIndex": "1",
|
|
1848
|
+
"Icon": "gMonIcon_Spinarak"
|
|
1849
|
+
},
|
|
1850
|
+
"ARIADOS": {
|
|
1851
|
+
"frontPics": "gMonFrontPic_Ariados",
|
|
1852
|
+
"backPics": "gMonBackPic_Ariados",
|
|
1853
|
+
"normPalette": "gMonPalette_Ariados",
|
|
1854
|
+
"shinyPalette": "gMonShinyPalette_Ariados",
|
|
1855
|
+
"footprintPics": "gMonFootprint_Ariados",
|
|
1856
|
+
"width": "64",
|
|
1857
|
+
"height": "56",
|
|
1858
|
+
"iconPalIndex": "0",
|
|
1859
|
+
"Icon": "gMonIcon_Ariados"
|
|
1860
|
+
},
|
|
1861
|
+
"CROBAT": {
|
|
1862
|
+
"frontPics": "gMonFrontPic_Crobat",
|
|
1863
|
+
"backPics": "gMonBackPic_Crobat",
|
|
1864
|
+
"normPalette": "gMonPalette_Crobat",
|
|
1865
|
+
"shinyPalette": "gMonShinyPalette_Crobat",
|
|
1866
|
+
"footprintPics": "gMonFootprint_Crobat",
|
|
1867
|
+
"width": "64",
|
|
1868
|
+
"height": "64",
|
|
1869
|
+
"iconPalIndex": "2",
|
|
1870
|
+
"Icon": "gMonIcon_Crobat"
|
|
1871
|
+
},
|
|
1872
|
+
"CHINCHOU": {
|
|
1873
|
+
"frontPics": "gMonFrontPic_Chinchou",
|
|
1874
|
+
"backPics": "gMonBackPic_Chinchou",
|
|
1875
|
+
"normPalette": "gMonPalette_Chinchou",
|
|
1876
|
+
"shinyPalette": "gMonShinyPalette_Chinchou",
|
|
1877
|
+
"footprintPics": "gMonFootprint_Chinchou",
|
|
1878
|
+
"width": "56",
|
|
1879
|
+
"height": "40",
|
|
1880
|
+
"iconPalIndex": "2",
|
|
1881
|
+
"Icon": "gMonIcon_Chinchou"
|
|
1882
|
+
},
|
|
1883
|
+
"LANTURN": {
|
|
1884
|
+
"frontPics": "gMonFrontPic_Lanturn",
|
|
1885
|
+
"backPics": "gMonBackPic_Lanturn",
|
|
1886
|
+
"normPalette": "gMonPalette_Lanturn",
|
|
1887
|
+
"shinyPalette": "gMonShinyPalette_Lanturn",
|
|
1888
|
+
"footprintPics": "gMonFootprint_Lanturn",
|
|
1889
|
+
"width": "64",
|
|
1890
|
+
"height": "56",
|
|
1891
|
+
"iconPalIndex": "0",
|
|
1892
|
+
"Icon": "gMonIcon_Lanturn"
|
|
1893
|
+
},
|
|
1894
|
+
"PICHU": {
|
|
1895
|
+
"frontPics": "gMonFrontPic_Pichu",
|
|
1896
|
+
"backPics": "gMonBackPic_Pichu",
|
|
1897
|
+
"normPalette": "gMonPalette_Pichu",
|
|
1898
|
+
"shinyPalette": "gMonShinyPalette_Pichu",
|
|
1899
|
+
"footprintPics": "gMonFootprint_Pichu",
|
|
1900
|
+
"width": "32",
|
|
1901
|
+
"height": "40",
|
|
1902
|
+
"iconPalIndex": "0",
|
|
1903
|
+
"Icon": "gMonIcon_Pichu"
|
|
1904
|
+
},
|
|
1905
|
+
"CLEFFA": {
|
|
1906
|
+
"frontPics": "gMonFrontPic_Cleffa",
|
|
1907
|
+
"backPics": "gMonBackPic_Cleffa",
|
|
1908
|
+
"normPalette": "gMonPalette_Cleffa",
|
|
1909
|
+
"shinyPalette": "gMonShinyPalette_Cleffa",
|
|
1910
|
+
"footprintPics": "gMonFootprint_Cleffa",
|
|
1911
|
+
"width": "32",
|
|
1912
|
+
"height": "32",
|
|
1913
|
+
"iconPalIndex": "0",
|
|
1914
|
+
"Icon": "gMonIcon_Cleffa"
|
|
1915
|
+
},
|
|
1916
|
+
"IGGLYBUFF": {
|
|
1917
|
+
"frontPics": "gMonFrontPic_Igglybuff",
|
|
1918
|
+
"backPics": "gMonBackPic_Igglybuff",
|
|
1919
|
+
"normPalette": "gMonPalette_Igglybuff",
|
|
1920
|
+
"shinyPalette": "gMonShinyPalette_Igglybuff",
|
|
1921
|
+
"footprintPics": "gMonFootprint_Igglybuff",
|
|
1922
|
+
"width": "32",
|
|
1923
|
+
"height": "32",
|
|
1924
|
+
"iconPalIndex": "1",
|
|
1925
|
+
"Icon": "gMonIcon_Igglybuff"
|
|
1926
|
+
},
|
|
1927
|
+
"TOGEPI": {
|
|
1928
|
+
"frontPics": "gMonFrontPic_Togepi",
|
|
1929
|
+
"backPics": "gMonBackPic_Togepi",
|
|
1930
|
+
"normPalette": "gMonPalette_Togepi",
|
|
1931
|
+
"shinyPalette": "gMonShinyPalette_Togepi",
|
|
1932
|
+
"footprintPics": "gMonFootprint_Togepi",
|
|
1933
|
+
"width": "24",
|
|
1934
|
+
"height": "32",
|
|
1935
|
+
"iconPalIndex": "2",
|
|
1936
|
+
"Icon": "gMonIcon_Togepi"
|
|
1937
|
+
},
|
|
1938
|
+
"TOGETIC": {
|
|
1939
|
+
"frontPics": "gMonFrontPic_Togetic",
|
|
1940
|
+
"backPics": "gMonBackPic_Togetic",
|
|
1941
|
+
"normPalette": "gMonPalette_Togetic",
|
|
1942
|
+
"shinyPalette": "gMonShinyPalette_Togetic",
|
|
1943
|
+
"footprintPics": "gMonFootprint_Togetic",
|
|
1944
|
+
"width": "32",
|
|
1945
|
+
"height": "48",
|
|
1946
|
+
"iconPalIndex": "2",
|
|
1947
|
+
"Icon": "gMonIcon_Togetic"
|
|
1948
|
+
},
|
|
1949
|
+
"NATU": {
|
|
1950
|
+
"frontPics": "gMonFrontPic_Natu",
|
|
1951
|
+
"backPics": "gMonBackPic_Natu",
|
|
1952
|
+
"normPalette": "gMonPalette_Natu",
|
|
1953
|
+
"shinyPalette": "gMonShinyPalette_Natu",
|
|
1954
|
+
"footprintPics": "gMonFootprint_Natu",
|
|
1955
|
+
"width": "32",
|
|
1956
|
+
"height": "32",
|
|
1957
|
+
"iconPalIndex": "0",
|
|
1958
|
+
"Icon": "gMonIcon_Natu"
|
|
1959
|
+
},
|
|
1960
|
+
"XATU": {
|
|
1961
|
+
"frontPics": "gMonFrontPic_Xatu",
|
|
1962
|
+
"backPics": "gMonBackPic_Xatu",
|
|
1963
|
+
"normPalette": "gMonPalette_Xatu",
|
|
1964
|
+
"shinyPalette": "gMonShinyPalette_Xatu",
|
|
1965
|
+
"footprintPics": "gMonFootprint_Xatu",
|
|
1966
|
+
"width": "32",
|
|
1967
|
+
"height": "56",
|
|
1968
|
+
"iconPalIndex": "0",
|
|
1969
|
+
"Icon": "gMonIcon_Xatu"
|
|
1970
|
+
},
|
|
1971
|
+
"MAREEP": {
|
|
1972
|
+
"frontPics": "gMonFrontPic_Mareep",
|
|
1973
|
+
"backPics": "gMonBackPic_Mareep",
|
|
1974
|
+
"normPalette": "gMonPalette_Mareep",
|
|
1975
|
+
"shinyPalette": "gMonShinyPalette_Mareep",
|
|
1976
|
+
"footprintPics": "gMonFootprint_Mareep",
|
|
1977
|
+
"width": "40",
|
|
1978
|
+
"height": "40",
|
|
1979
|
+
"iconPalIndex": "2",
|
|
1980
|
+
"Icon": "gMonIcon_Mareep"
|
|
1981
|
+
},
|
|
1982
|
+
"FLAAFFY": {
|
|
1983
|
+
"frontPics": "gMonFrontPic_Flaaffy",
|
|
1984
|
+
"backPics": "gMonBackPic_Flaaffy",
|
|
1985
|
+
"normPalette": "gMonPalette_Flaaffy",
|
|
1986
|
+
"shinyPalette": "gMonShinyPalette_Flaaffy",
|
|
1987
|
+
"footprintPics": "gMonFootprint_Flaaffy",
|
|
1988
|
+
"width": "40",
|
|
1989
|
+
"height": "48",
|
|
1990
|
+
"iconPalIndex": "0",
|
|
1991
|
+
"Icon": "gMonIcon_Flaaffy"
|
|
1992
|
+
},
|
|
1993
|
+
"AMPHAROS": {
|
|
1994
|
+
"frontPics": "gMonFrontPic_Ampharos",
|
|
1995
|
+
"backPics": "gMonBackPic_Ampharos",
|
|
1996
|
+
"normPalette": "gMonPalette_Ampharos",
|
|
1997
|
+
"shinyPalette": "gMonShinyPalette_Ampharos",
|
|
1998
|
+
"footprintPics": "gMonFootprint_Ampharos",
|
|
1999
|
+
"width": "56",
|
|
2000
|
+
"height": "56",
|
|
2001
|
+
"iconPalIndex": "0",
|
|
2002
|
+
"Icon": "gMonIcon_Ampharos"
|
|
2003
|
+
},
|
|
2004
|
+
"BELLOSSOM": {
|
|
2005
|
+
"frontPics": "gMonFrontPic_Bellossom",
|
|
2006
|
+
"backPics": "gMonBackPic_Bellossom",
|
|
2007
|
+
"normPalette": "gMonPalette_Bellossom",
|
|
2008
|
+
"shinyPalette": "gMonShinyPalette_Bellossom",
|
|
2009
|
+
"footprintPics": "gMonFootprint_Bellossom",
|
|
2010
|
+
"width": "32",
|
|
2011
|
+
"height": "40",
|
|
2012
|
+
"iconPalIndex": "1",
|
|
2013
|
+
"Icon": "gMonIcon_Bellossom"
|
|
2014
|
+
},
|
|
2015
|
+
"MARILL": {
|
|
2016
|
+
"frontPics": "gMonFrontPic_Marill",
|
|
2017
|
+
"backPics": "gMonBackPic_Marill",
|
|
2018
|
+
"normPalette": "gMonPalette_Marill",
|
|
2019
|
+
"shinyPalette": "gMonShinyPalette_Marill",
|
|
2020
|
+
"footprintPics": "gMonFootprint_Marill",
|
|
2021
|
+
"width": "48",
|
|
2022
|
+
"height": "40",
|
|
2023
|
+
"iconPalIndex": "2",
|
|
2024
|
+
"Icon": "gMonIcon_Marill"
|
|
2025
|
+
},
|
|
2026
|
+
"AZUMARILL": {
|
|
2027
|
+
"frontPics": "gMonFrontPic_Azumarill",
|
|
2028
|
+
"backPics": "gMonBackPic_Azumarill",
|
|
2029
|
+
"normPalette": "gMonPalette_Azumarill",
|
|
2030
|
+
"shinyPalette": "gMonShinyPalette_Azumarill",
|
|
2031
|
+
"footprintPics": "gMonFootprint_Azumarill",
|
|
2032
|
+
"width": "56",
|
|
2033
|
+
"height": "48",
|
|
2034
|
+
"iconPalIndex": "2",
|
|
2035
|
+
"Icon": "gMonIcon_Azumarill"
|
|
2036
|
+
},
|
|
2037
|
+
"SUDOWOODO": {
|
|
2038
|
+
"frontPics": "gMonFrontPic_Sudowoodo",
|
|
2039
|
+
"backPics": "gMonBackPic_Sudowoodo",
|
|
2040
|
+
"normPalette": "gMonPalette_Sudowoodo",
|
|
2041
|
+
"shinyPalette": "gMonShinyPalette_Sudowoodo",
|
|
2042
|
+
"footprintPics": "gMonFootprint_Sudowoodo",
|
|
2043
|
+
"width": "48",
|
|
2044
|
+
"height": "56",
|
|
2045
|
+
"iconPalIndex": "1",
|
|
2046
|
+
"Icon": "gMonIcon_Sudowoodo"
|
|
2047
|
+
},
|
|
2048
|
+
"POLITOED": {
|
|
2049
|
+
"frontPics": "gMonFrontPic_Politoed",
|
|
2050
|
+
"backPics": "gMonBackPic_Politoed",
|
|
2051
|
+
"normPalette": "gMonPalette_Politoed",
|
|
2052
|
+
"shinyPalette": "gMonShinyPalette_Politoed",
|
|
2053
|
+
"footprintPics": "gMonFootprint_Politoed",
|
|
2054
|
+
"width": "48",
|
|
2055
|
+
"height": "56",
|
|
2056
|
+
"iconPalIndex": "1",
|
|
2057
|
+
"Icon": "gMonIcon_Politoed"
|
|
2058
|
+
},
|
|
2059
|
+
"HOPPIP": {
|
|
2060
|
+
"frontPics": "gMonFrontPic_Hoppip",
|
|
2061
|
+
"backPics": "gMonBackPic_Hoppip",
|
|
2062
|
+
"normPalette": "gMonPalette_Hoppip",
|
|
2063
|
+
"shinyPalette": "gMonShinyPalette_Hoppip",
|
|
2064
|
+
"footprintPics": "gMonFootprint_Hoppip",
|
|
2065
|
+
"width": "48",
|
|
2066
|
+
"height": "48",
|
|
2067
|
+
"iconPalIndex": "1",
|
|
2068
|
+
"Icon": "gMonIcon_Hoppip"
|
|
2069
|
+
},
|
|
2070
|
+
"SKIPLOOM": {
|
|
2071
|
+
"frontPics": "gMonFrontPic_Skiploom",
|
|
2072
|
+
"backPics": "gMonBackPic_Skiploom",
|
|
2073
|
+
"normPalette": "gMonPalette_Skiploom",
|
|
2074
|
+
"shinyPalette": "gMonShinyPalette_Skiploom",
|
|
2075
|
+
"footprintPics": "gMonFootprint_Skiploom",
|
|
2076
|
+
"width": "40",
|
|
2077
|
+
"height": "40",
|
|
2078
|
+
"iconPalIndex": "1",
|
|
2079
|
+
"Icon": "gMonIcon_Skiploom"
|
|
2080
|
+
},
|
|
2081
|
+
"JUMPLUFF": {
|
|
2082
|
+
"frontPics": "gMonFrontPic_Jumpluff",
|
|
2083
|
+
"backPics": "gMonBackPic_Jumpluff",
|
|
2084
|
+
"normPalette": "gMonPalette_Jumpluff",
|
|
2085
|
+
"shinyPalette": "gMonShinyPalette_Jumpluff",
|
|
2086
|
+
"footprintPics": "gMonFootprint_Jumpluff",
|
|
2087
|
+
"width": "56",
|
|
2088
|
+
"height": "56",
|
|
2089
|
+
"iconPalIndex": "2",
|
|
2090
|
+
"Icon": "gMonIcon_Jumpluff"
|
|
2091
|
+
},
|
|
2092
|
+
"AIPOM": {
|
|
2093
|
+
"frontPics": "gMonFrontPic_Aipom",
|
|
2094
|
+
"backPics": "gMonBackPic_Aipom",
|
|
2095
|
+
"normPalette": "gMonPalette_Aipom",
|
|
2096
|
+
"shinyPalette": "gMonShinyPalette_Aipom",
|
|
2097
|
+
"footprintPics": "gMonFootprint_Aipom",
|
|
2098
|
+
"width": "40",
|
|
2099
|
+
"height": "64",
|
|
2100
|
+
"iconPalIndex": "2",
|
|
2101
|
+
"Icon": "gMonIcon_Aipom"
|
|
2102
|
+
},
|
|
2103
|
+
"SUNKERN": {
|
|
2104
|
+
"frontPics": "gMonFrontPic_Sunkern",
|
|
2105
|
+
"backPics": "gMonBackPic_Sunkern",
|
|
2106
|
+
"normPalette": "gMonPalette_Sunkern",
|
|
2107
|
+
"shinyPalette": "gMonShinyPalette_Sunkern",
|
|
2108
|
+
"footprintPics": "gMonFootprint_Sunkern",
|
|
2109
|
+
"width": "32",
|
|
2110
|
+
"height": "32",
|
|
2111
|
+
"iconPalIndex": "1",
|
|
2112
|
+
"Icon": "gMonIcon_Sunkern"
|
|
2113
|
+
},
|
|
2114
|
+
"SUNFLORA": {
|
|
2115
|
+
"frontPics": "gMonFrontPic_Sunflora",
|
|
2116
|
+
"backPics": "gMonBackPic_Sunflora",
|
|
2117
|
+
"normPalette": "gMonPalette_Sunflora",
|
|
2118
|
+
"shinyPalette": "gMonShinyPalette_Sunflora",
|
|
2119
|
+
"footprintPics": "gMonFootprint_Sunflora",
|
|
2120
|
+
"width": "40",
|
|
2121
|
+
"height": "48",
|
|
2122
|
+
"iconPalIndex": "1",
|
|
2123
|
+
"Icon": "gMonIcon_Sunflora"
|
|
2124
|
+
},
|
|
2125
|
+
"YANMA": {
|
|
2126
|
+
"frontPics": "gMonFrontPic_Yanma",
|
|
2127
|
+
"backPics": "gMonBackPic_Yanma",
|
|
2128
|
+
"normPalette": "gMonPalette_Yanma",
|
|
2129
|
+
"shinyPalette": "gMonShinyPalette_Yanma",
|
|
2130
|
+
"footprintPics": "gMonFootprint_Yanma",
|
|
2131
|
+
"width": "64",
|
|
2132
|
+
"height": "48",
|
|
2133
|
+
"iconPalIndex": "1",
|
|
2134
|
+
"Icon": "gMonIcon_Yanma"
|
|
2135
|
+
},
|
|
2136
|
+
"WOOPER": {
|
|
2137
|
+
"frontPics": "gMonFrontPic_Wooper",
|
|
2138
|
+
"backPics": "gMonBackPic_Wooper",
|
|
2139
|
+
"normPalette": "gMonPalette_Wooper",
|
|
2140
|
+
"shinyPalette": "gMonShinyPalette_Wooper",
|
|
2141
|
+
"footprintPics": "gMonFootprint_Wooper",
|
|
2142
|
+
"width": "40",
|
|
2143
|
+
"height": "32",
|
|
2144
|
+
"iconPalIndex": "0",
|
|
2145
|
+
"Icon": "gMonIcon_Wooper"
|
|
2146
|
+
},
|
|
2147
|
+
"QUAGSIRE": {
|
|
2148
|
+
"frontPics": "gMonFrontPic_Quagsire",
|
|
2149
|
+
"backPics": "gMonBackPic_Quagsire",
|
|
2150
|
+
"normPalette": "gMonPalette_Quagsire",
|
|
2151
|
+
"shinyPalette": "gMonShinyPalette_Quagsire",
|
|
2152
|
+
"footprintPics": "gMonFootprint_Quagsire",
|
|
2153
|
+
"width": "56",
|
|
2154
|
+
"height": "56",
|
|
2155
|
+
"iconPalIndex": "0",
|
|
2156
|
+
"Icon": "gMonIcon_Quagsire"
|
|
2157
|
+
},
|
|
2158
|
+
"ESPEON": {
|
|
2159
|
+
"frontPics": "gMonFrontPic_Espeon",
|
|
2160
|
+
"backPics": "gMonBackPic_Espeon",
|
|
2161
|
+
"normPalette": "gMonPalette_Espeon",
|
|
2162
|
+
"shinyPalette": "gMonShinyPalette_Espeon",
|
|
2163
|
+
"footprintPics": "gMonFootprint_Espeon",
|
|
2164
|
+
"width": "48",
|
|
2165
|
+
"height": "48",
|
|
2166
|
+
"iconPalIndex": "2",
|
|
2167
|
+
"Icon": "gMonIcon_Espeon"
|
|
2168
|
+
},
|
|
2169
|
+
"UMBREON": {
|
|
2170
|
+
"frontPics": "gMonFrontPic_Umbreon",
|
|
2171
|
+
"backPics": "gMonBackPic_Umbreon",
|
|
2172
|
+
"normPalette": "gMonPalette_Umbreon",
|
|
2173
|
+
"shinyPalette": "gMonShinyPalette_Umbreon",
|
|
2174
|
+
"footprintPics": "gMonFootprint_Umbreon",
|
|
2175
|
+
"width": "48",
|
|
2176
|
+
"height": "56",
|
|
2177
|
+
"iconPalIndex": "2",
|
|
2178
|
+
"Icon": "gMonIcon_Umbreon"
|
|
2179
|
+
},
|
|
2180
|
+
"MURKROW": {
|
|
2181
|
+
"frontPics": "gMonFrontPic_Murkrow",
|
|
2182
|
+
"backPics": "gMonBackPic_Murkrow",
|
|
2183
|
+
"normPalette": "gMonPalette_Murkrow",
|
|
2184
|
+
"shinyPalette": "gMonShinyPalette_Murkrow",
|
|
2185
|
+
"footprintPics": "gMonFootprint_Murkrow",
|
|
2186
|
+
"width": "48",
|
|
2187
|
+
"height": "48",
|
|
2188
|
+
"iconPalIndex": "2",
|
|
2189
|
+
"Icon": "gMonIcon_Murkrow"
|
|
2190
|
+
},
|
|
2191
|
+
"SLOWKING": {
|
|
2192
|
+
"frontPics": "gMonFrontPic_Slowking",
|
|
2193
|
+
"backPics": "gMonBackPic_Slowking",
|
|
2194
|
+
"normPalette": "gMonPalette_Slowking",
|
|
2195
|
+
"shinyPalette": "gMonShinyPalette_Slowking",
|
|
2196
|
+
"footprintPics": "gMonFootprint_Slowking",
|
|
2197
|
+
"width": "40",
|
|
2198
|
+
"height": "64",
|
|
2199
|
+
"iconPalIndex": "0",
|
|
2200
|
+
"Icon": "gMonIcon_Slowking"
|
|
2201
|
+
},
|
|
2202
|
+
"MISDREAVUS": {
|
|
2203
|
+
"frontPics": "gMonFrontPic_Misdreavus",
|
|
2204
|
+
"backPics": "gMonBackPic_Misdreavus",
|
|
2205
|
+
"normPalette": "gMonPalette_Misdreavus",
|
|
2206
|
+
"shinyPalette": "gMonShinyPalette_Misdreavus",
|
|
2207
|
+
"footprintPics": "gMonFootprint_Misdreavus",
|
|
2208
|
+
"width": "40",
|
|
2209
|
+
"height": "40",
|
|
2210
|
+
"iconPalIndex": "0",
|
|
2211
|
+
"Icon": "gMonIcon_Misdreavus"
|
|
2212
|
+
},
|
|
2213
|
+
"UNOWN": {
|
|
2214
|
+
"frontPics": "gMonFrontPic_UnownA",
|
|
2215
|
+
"backPics": "gMonBackPic_UnownA",
|
|
2216
|
+
"normPalette": "gMonPalette_Unown",
|
|
2217
|
+
"shinyPalette": "gMonShinyPalette_Unown",
|
|
2218
|
+
"footprintPics": "gMonFootprint_Unown",
|
|
2219
|
+
"width": "24",
|
|
2220
|
+
"height": "40",
|
|
2221
|
+
"iconPalIndex": "0",
|
|
2222
|
+
"Icon": "gMonIcon_UnownA"
|
|
2223
|
+
},
|
|
2224
|
+
"WOBBUFFET": {
|
|
2225
|
+
"frontPics": "gMonFrontPic_Wobbuffet",
|
|
2226
|
+
"backPics": "gMonBackPic_Wobbuffet",
|
|
2227
|
+
"normPalette": "gMonPalette_Wobbuffet",
|
|
2228
|
+
"shinyPalette": "gMonShinyPalette_Wobbuffet",
|
|
2229
|
+
"footprintPics": "gMonFootprint_Wobbuffet",
|
|
2230
|
+
"width": "56",
|
|
2231
|
+
"height": "56",
|
|
2232
|
+
"iconPalIndex": "0",
|
|
2233
|
+
"Icon": "gMonIcon_Wobbuffet"
|
|
2234
|
+
},
|
|
2235
|
+
"GIRAFARIG": {
|
|
2236
|
+
"frontPics": "gMonFrontPic_Girafarig",
|
|
2237
|
+
"backPics": "gMonBackPic_Girafarig",
|
|
2238
|
+
"normPalette": "gMonPalette_Girafarig",
|
|
2239
|
+
"shinyPalette": "gMonShinyPalette_Girafarig",
|
|
2240
|
+
"footprintPics": "gMonFootprint_Girafarig",
|
|
2241
|
+
"width": "64",
|
|
2242
|
+
"height": "64",
|
|
2243
|
+
"iconPalIndex": "1",
|
|
2244
|
+
"Icon": "gMonIcon_Girafarig"
|
|
2245
|
+
},
|
|
2246
|
+
"PINECO": {
|
|
2247
|
+
"frontPics": "gMonFrontPic_Pineco",
|
|
2248
|
+
"backPics": "gMonBackPic_Pineco",
|
|
2249
|
+
"normPalette": "gMonPalette_Pineco",
|
|
2250
|
+
"shinyPalette": "gMonShinyPalette_Pineco",
|
|
2251
|
+
"footprintPics": "gMonFootprint_Pineco",
|
|
2252
|
+
"width": "40",
|
|
2253
|
+
"height": "48",
|
|
2254
|
+
"iconPalIndex": "0",
|
|
2255
|
+
"Icon": "gMonIcon_Pineco"
|
|
2256
|
+
},
|
|
2257
|
+
"FORRETRESS": {
|
|
2258
|
+
"frontPics": "gMonFrontPic_Forretress",
|
|
2259
|
+
"backPics": "gMonBackPic_Forretress",
|
|
2260
|
+
"normPalette": "gMonPalette_Forretress",
|
|
2261
|
+
"shinyPalette": "gMonShinyPalette_Forretress",
|
|
2262
|
+
"footprintPics": "gMonFootprint_Forretress",
|
|
2263
|
+
"width": "56",
|
|
2264
|
+
"height": "48",
|
|
2265
|
+
"iconPalIndex": "2",
|
|
2266
|
+
"Icon": "gMonIcon_Forretress"
|
|
2267
|
+
},
|
|
2268
|
+
"DUNSPARCE": {
|
|
2269
|
+
"frontPics": "gMonFrontPic_Dunsparce",
|
|
2270
|
+
"backPics": "gMonBackPic_Dunsparce",
|
|
2271
|
+
"normPalette": "gMonPalette_Dunsparce",
|
|
2272
|
+
"shinyPalette": "gMonShinyPalette_Dunsparce",
|
|
2273
|
+
"footprintPics": "gMonFootprint_Dunsparce",
|
|
2274
|
+
"width": "56",
|
|
2275
|
+
"height": "32",
|
|
2276
|
+
"iconPalIndex": "2",
|
|
2277
|
+
"Icon": "gMonIcon_Dunsparce"
|
|
2278
|
+
},
|
|
2279
|
+
"GLIGAR": {
|
|
2280
|
+
"frontPics": "gMonFrontPic_Gligar",
|
|
2281
|
+
"backPics": "gMonBackPic_Gligar",
|
|
2282
|
+
"normPalette": "gMonPalette_Gligar",
|
|
2283
|
+
"shinyPalette": "gMonShinyPalette_Gligar",
|
|
2284
|
+
"footprintPics": "gMonFootprint_Gligar",
|
|
2285
|
+
"width": "56",
|
|
2286
|
+
"height": "64",
|
|
2287
|
+
"iconPalIndex": "2",
|
|
2288
|
+
"Icon": "gMonIcon_Gligar"
|
|
2289
|
+
},
|
|
2290
|
+
"STEELIX": {
|
|
2291
|
+
"frontPics": "gMonFrontPic_Steelix",
|
|
2292
|
+
"backPics": "gMonBackPic_Steelix",
|
|
2293
|
+
"normPalette": "gMonPalette_Steelix",
|
|
2294
|
+
"shinyPalette": "gMonShinyPalette_Steelix",
|
|
2295
|
+
"footprintPics": "gMonFootprint_Steelix",
|
|
2296
|
+
"width": "64",
|
|
2297
|
+
"height": "64",
|
|
2298
|
+
"iconPalIndex": "0",
|
|
2299
|
+
"Icon": "gMonIcon_Steelix"
|
|
2300
|
+
},
|
|
2301
|
+
"SNUBBULL": {
|
|
2302
|
+
"frontPics": "gMonFrontPic_Snubbull",
|
|
2303
|
+
"backPics": "gMonBackPic_Snubbull",
|
|
2304
|
+
"normPalette": "gMonPalette_Snubbull",
|
|
2305
|
+
"shinyPalette": "gMonShinyPalette_Snubbull",
|
|
2306
|
+
"footprintPics": "gMonFootprint_Snubbull",
|
|
2307
|
+
"width": "40",
|
|
2308
|
+
"height": "40",
|
|
2309
|
+
"iconPalIndex": "0",
|
|
2310
|
+
"Icon": "gMonIcon_Snubbull"
|
|
2311
|
+
},
|
|
2312
|
+
"GRANBULL": {
|
|
2313
|
+
"frontPics": "gMonFrontPic_Granbull",
|
|
2314
|
+
"backPics": "gMonBackPic_Granbull",
|
|
2315
|
+
"normPalette": "gMonPalette_Granbull",
|
|
2316
|
+
"shinyPalette": "gMonShinyPalette_Granbull",
|
|
2317
|
+
"footprintPics": "gMonFootprint_Granbull",
|
|
2318
|
+
"width": "40",
|
|
2319
|
+
"height": "56",
|
|
2320
|
+
"iconPalIndex": "2",
|
|
2321
|
+
"Icon": "gMonIcon_Granbull"
|
|
2322
|
+
},
|
|
2323
|
+
"QWILFISH": {
|
|
2324
|
+
"frontPics": "gMonFrontPic_Qwilfish",
|
|
2325
|
+
"backPics": "gMonBackPic_Qwilfish",
|
|
2326
|
+
"normPalette": "gMonPalette_Qwilfish",
|
|
2327
|
+
"shinyPalette": "gMonShinyPalette_Qwilfish",
|
|
2328
|
+
"footprintPics": "gMonFootprint_Qwilfish",
|
|
2329
|
+
"width": "40",
|
|
2330
|
+
"height": "48",
|
|
2331
|
+
"iconPalIndex": "0",
|
|
2332
|
+
"Icon": "gMonIcon_Qwilfish"
|
|
2333
|
+
},
|
|
2334
|
+
"SCIZOR": {
|
|
2335
|
+
"frontPics": "gMonFrontPic_Scizor",
|
|
2336
|
+
"backPics": "gMonBackPic_Scizor",
|
|
2337
|
+
"normPalette": "gMonPalette_Scizor",
|
|
2338
|
+
"shinyPalette": "gMonShinyPalette_Scizor",
|
|
2339
|
+
"footprintPics": "gMonFootprint_Scizor",
|
|
2340
|
+
"width": "64",
|
|
2341
|
+
"height": "64",
|
|
2342
|
+
"iconPalIndex": "0",
|
|
2343
|
+
"Icon": "gMonIcon_Scizor"
|
|
2344
|
+
},
|
|
2345
|
+
"SHUCKLE": {
|
|
2346
|
+
"frontPics": "gMonFrontPic_Shuckle",
|
|
2347
|
+
"backPics": "gMonBackPic_Shuckle",
|
|
2348
|
+
"normPalette": "gMonPalette_Shuckle",
|
|
2349
|
+
"shinyPalette": "gMonShinyPalette_Shuckle",
|
|
2350
|
+
"footprintPics": "gMonFootprint_Shuckle",
|
|
2351
|
+
"width": "48",
|
|
2352
|
+
"height": "48",
|
|
2353
|
+
"iconPalIndex": "1",
|
|
2354
|
+
"Icon": "gMonIcon_Shuckle"
|
|
2355
|
+
},
|
|
2356
|
+
"HERACROSS": {
|
|
2357
|
+
"frontPics": "gMonFrontPic_Heracross",
|
|
2358
|
+
"backPics": "gMonBackPic_Heracross",
|
|
2359
|
+
"normPalette": "gMonPalette_Heracross",
|
|
2360
|
+
"shinyPalette": "gMonShinyPalette_Heracross",
|
|
2361
|
+
"footprintPics": "gMonFootprint_Heracross",
|
|
2362
|
+
"width": "64",
|
|
2363
|
+
"height": "64",
|
|
2364
|
+
"iconPalIndex": "2",
|
|
2365
|
+
"Icon": "gMonIcon_Heracross"
|
|
2366
|
+
},
|
|
2367
|
+
"SNEASEL": {
|
|
2368
|
+
"frontPics": "gMonFrontPic_Sneasel",
|
|
2369
|
+
"backPics": "gMonBackPic_Sneasel",
|
|
2370
|
+
"normPalette": "gMonPalette_Sneasel",
|
|
2371
|
+
"shinyPalette": "gMonShinyPalette_Sneasel",
|
|
2372
|
+
"footprintPics": "gMonFootprint_Sneasel",
|
|
2373
|
+
"width": "48",
|
|
2374
|
+
"height": "56",
|
|
2375
|
+
"iconPalIndex": "0",
|
|
2376
|
+
"Icon": "gMonIcon_Sneasel"
|
|
2377
|
+
},
|
|
2378
|
+
"TEDDIURSA": {
|
|
2379
|
+
"frontPics": "gMonFrontPic_Teddiursa",
|
|
2380
|
+
"backPics": "gMonBackPic_Teddiursa",
|
|
2381
|
+
"normPalette": "gMonPalette_Teddiursa",
|
|
2382
|
+
"shinyPalette": "gMonShinyPalette_Teddiursa",
|
|
2383
|
+
"footprintPics": "gMonFootprint_Teddiursa",
|
|
2384
|
+
"width": "32",
|
|
2385
|
+
"height": "48",
|
|
2386
|
+
"iconPalIndex": "0",
|
|
2387
|
+
"Icon": "gMonIcon_Teddiursa"
|
|
2388
|
+
},
|
|
2389
|
+
"URSARING": {
|
|
2390
|
+
"frontPics": "gMonFrontPic_Ursaring",
|
|
2391
|
+
"backPics": "gMonBackPic_Ursaring",
|
|
2392
|
+
"normPalette": "gMonPalette_Ursaring",
|
|
2393
|
+
"shinyPalette": "gMonShinyPalette_Ursaring",
|
|
2394
|
+
"footprintPics": "gMonFootprint_Ursaring",
|
|
2395
|
+
"width": "56",
|
|
2396
|
+
"height": "64",
|
|
2397
|
+
"iconPalIndex": "2",
|
|
2398
|
+
"Icon": "gMonIcon_Ursaring"
|
|
2399
|
+
},
|
|
2400
|
+
"SLUGMA": {
|
|
2401
|
+
"frontPics": "gMonFrontPic_Slugma",
|
|
2402
|
+
"backPics": "gMonBackPic_Slugma",
|
|
2403
|
+
"normPalette": "gMonPalette_Slugma",
|
|
2404
|
+
"shinyPalette": "gMonShinyPalette_Slugma",
|
|
2405
|
+
"footprintPics": "gMonFootprint_Slugma",
|
|
2406
|
+
"width": "32",
|
|
2407
|
+
"height": "40",
|
|
2408
|
+
"iconPalIndex": "0",
|
|
2409
|
+
"Icon": "gMonIcon_Slugma"
|
|
2410
|
+
},
|
|
2411
|
+
"MAGCARGO": {
|
|
2412
|
+
"frontPics": "gMonFrontPic_Magcargo",
|
|
2413
|
+
"backPics": "gMonBackPic_Magcargo",
|
|
2414
|
+
"normPalette": "gMonPalette_Magcargo",
|
|
2415
|
+
"shinyPalette": "gMonShinyPalette_Magcargo",
|
|
2416
|
+
"footprintPics": "gMonFootprint_Magcargo",
|
|
2417
|
+
"width": "40",
|
|
2418
|
+
"height": "56",
|
|
2419
|
+
"iconPalIndex": "0",
|
|
2420
|
+
"Icon": "gMonIcon_Magcargo"
|
|
2421
|
+
},
|
|
2422
|
+
"SWINUB": {
|
|
2423
|
+
"frontPics": "gMonFrontPic_Swinub",
|
|
2424
|
+
"backPics": "gMonBackPic_Swinub",
|
|
2425
|
+
"normPalette": "gMonPalette_Swinub",
|
|
2426
|
+
"shinyPalette": "gMonShinyPalette_Swinub",
|
|
2427
|
+
"footprintPics": "gMonFootprint_Swinub",
|
|
2428
|
+
"width": "32",
|
|
2429
|
+
"height": "24",
|
|
2430
|
+
"iconPalIndex": "2",
|
|
2431
|
+
"Icon": "gMonIcon_Swinub"
|
|
2432
|
+
},
|
|
2433
|
+
"PILOSWINE": {
|
|
2434
|
+
"frontPics": "gMonFrontPic_Piloswine",
|
|
2435
|
+
"backPics": "gMonBackPic_Piloswine",
|
|
2436
|
+
"normPalette": "gMonPalette_Piloswine",
|
|
2437
|
+
"shinyPalette": "gMonShinyPalette_Piloswine",
|
|
2438
|
+
"footprintPics": "gMonFootprint_Piloswine",
|
|
2439
|
+
"width": "48",
|
|
2440
|
+
"height": "48",
|
|
2441
|
+
"iconPalIndex": "2",
|
|
2442
|
+
"Icon": "gMonIcon_Piloswine"
|
|
2443
|
+
},
|
|
2444
|
+
"CORSOLA": {
|
|
2445
|
+
"frontPics": "gMonFrontPic_Corsola",
|
|
2446
|
+
"backPics": "gMonBackPic_Corsola",
|
|
2447
|
+
"normPalette": "gMonPalette_Corsola",
|
|
2448
|
+
"shinyPalette": "gMonShinyPalette_Corsola",
|
|
2449
|
+
"footprintPics": "gMonFootprint_Corsola",
|
|
2450
|
+
"width": "48",
|
|
2451
|
+
"height": "40",
|
|
2452
|
+
"iconPalIndex": "0",
|
|
2453
|
+
"Icon": "gMonIcon_Corsola"
|
|
2454
|
+
},
|
|
2455
|
+
"REMORAID": {
|
|
2456
|
+
"frontPics": "gMonFrontPic_Remoraid",
|
|
2457
|
+
"backPics": "gMonBackPic_Remoraid",
|
|
2458
|
+
"normPalette": "gMonPalette_Remoraid",
|
|
2459
|
+
"shinyPalette": "gMonShinyPalette_Remoraid",
|
|
2460
|
+
"footprintPics": "gMonFootprint_Remoraid",
|
|
2461
|
+
"width": "40",
|
|
2462
|
+
"height": "40",
|
|
2463
|
+
"iconPalIndex": "0",
|
|
2464
|
+
"Icon": "gMonIcon_Remoraid"
|
|
2465
|
+
},
|
|
2466
|
+
"OCTILLERY": {
|
|
2467
|
+
"frontPics": "gMonFrontPic_Octillery",
|
|
2468
|
+
"backPics": "gMonBackPic_Octillery",
|
|
2469
|
+
"normPalette": "gMonPalette_Octillery",
|
|
2470
|
+
"shinyPalette": "gMonShinyPalette_Octillery",
|
|
2471
|
+
"footprintPics": "gMonFootprint_Octillery",
|
|
2472
|
+
"width": "48",
|
|
2473
|
+
"height": "48",
|
|
2474
|
+
"iconPalIndex": "0",
|
|
2475
|
+
"Icon": "gMonIcon_Octillery"
|
|
2476
|
+
},
|
|
2477
|
+
"DELIBIRD": {
|
|
2478
|
+
"frontPics": "gMonFrontPic_Delibird",
|
|
2479
|
+
"backPics": "gMonBackPic_Delibird",
|
|
2480
|
+
"normPalette": "gMonPalette_Delibird",
|
|
2481
|
+
"shinyPalette": "gMonShinyPalette_Delibird",
|
|
2482
|
+
"footprintPics": "gMonFootprint_Delibird",
|
|
2483
|
+
"width": "40",
|
|
2484
|
+
"height": "48",
|
|
2485
|
+
"iconPalIndex": "0",
|
|
2486
|
+
"Icon": "gMonIcon_Delibird"
|
|
2487
|
+
},
|
|
2488
|
+
"MANTINE": {
|
|
2489
|
+
"frontPics": "gMonFrontPic_Mantine",
|
|
2490
|
+
"backPics": "gMonBackPic_Mantine",
|
|
2491
|
+
"normPalette": "gMonPalette_Mantine",
|
|
2492
|
+
"shinyPalette": "gMonShinyPalette_Mantine",
|
|
2493
|
+
"footprintPics": "gMonFootprint_Mantine",
|
|
2494
|
+
"width": "64",
|
|
2495
|
+
"height": "64",
|
|
2496
|
+
"iconPalIndex": "2",
|
|
2497
|
+
"Icon": "gMonIcon_Mantine"
|
|
2498
|
+
},
|
|
2499
|
+
"SKARMORY": {
|
|
2500
|
+
"frontPics": "gMonFrontPic_Skarmory",
|
|
2501
|
+
"backPics": "gMonBackPic_Skarmory",
|
|
2502
|
+
"normPalette": "gMonPalette_Skarmory",
|
|
2503
|
+
"shinyPalette": "gMonShinyPalette_Skarmory",
|
|
2504
|
+
"footprintPics": "gMonFootprint_Skarmory",
|
|
2505
|
+
"width": "64",
|
|
2506
|
+
"height": "64",
|
|
2507
|
+
"iconPalIndex": "0",
|
|
2508
|
+
"Icon": "gMonIcon_Skarmory"
|
|
2509
|
+
},
|
|
2510
|
+
"HOUNDOUR": {
|
|
2511
|
+
"frontPics": "gMonFrontPic_Houndour",
|
|
2512
|
+
"backPics": "gMonBackPic_Houndour",
|
|
2513
|
+
"normPalette": "gMonPalette_Houndour",
|
|
2514
|
+
"shinyPalette": "gMonShinyPalette_Houndour",
|
|
2515
|
+
"footprintPics": "gMonFootprint_Houndour",
|
|
2516
|
+
"width": "40",
|
|
2517
|
+
"height": "48",
|
|
2518
|
+
"iconPalIndex": "0",
|
|
2519
|
+
"Icon": "gMonIcon_Houndour"
|
|
2520
|
+
},
|
|
2521
|
+
"HOUNDOOM": {
|
|
2522
|
+
"frontPics": "gMonFrontPic_Houndoom",
|
|
2523
|
+
"backPics": "gMonBackPic_Houndoom",
|
|
2524
|
+
"normPalette": "gMonPalette_Houndoom",
|
|
2525
|
+
"shinyPalette": "gMonShinyPalette_Houndoom",
|
|
2526
|
+
"footprintPics": "gMonFootprint_Houndoom",
|
|
2527
|
+
"width": "56",
|
|
2528
|
+
"height": "56",
|
|
2529
|
+
"iconPalIndex": "0",
|
|
2530
|
+
"Icon": "gMonIcon_Houndoom"
|
|
2531
|
+
},
|
|
2532
|
+
"KINGDRA": {
|
|
2533
|
+
"frontPics": "gMonFrontPic_Kingdra",
|
|
2534
|
+
"backPics": "gMonBackPic_Kingdra",
|
|
2535
|
+
"normPalette": "gMonPalette_Kingdra",
|
|
2536
|
+
"shinyPalette": "gMonShinyPalette_Kingdra",
|
|
2537
|
+
"footprintPics": "gMonFootprint_Kingdra",
|
|
2538
|
+
"width": "56",
|
|
2539
|
+
"height": "64",
|
|
2540
|
+
"iconPalIndex": "0",
|
|
2541
|
+
"Icon": "gMonIcon_Kingdra"
|
|
2542
|
+
},
|
|
2543
|
+
"PHANPY": {
|
|
2544
|
+
"frontPics": "gMonFrontPic_Phanpy",
|
|
2545
|
+
"backPics": "gMonBackPic_Phanpy",
|
|
2546
|
+
"normPalette": "gMonPalette_Phanpy",
|
|
2547
|
+
"shinyPalette": "gMonShinyPalette_Phanpy",
|
|
2548
|
+
"footprintPics": "gMonFootprint_Phanpy",
|
|
2549
|
+
"width": "40",
|
|
2550
|
+
"height": "32",
|
|
2551
|
+
"iconPalIndex": "0",
|
|
2552
|
+
"Icon": "gMonIcon_Phanpy"
|
|
2553
|
+
},
|
|
2554
|
+
"DONPHAN": {
|
|
2555
|
+
"frontPics": "gMonFrontPic_Donphan",
|
|
2556
|
+
"backPics": "gMonBackPic_Donphan",
|
|
2557
|
+
"normPalette": "gMonPalette_Donphan",
|
|
2558
|
+
"shinyPalette": "gMonShinyPalette_Donphan",
|
|
2559
|
+
"footprintPics": "gMonFootprint_Donphan",
|
|
2560
|
+
"width": "64",
|
|
2561
|
+
"height": "48",
|
|
2562
|
+
"iconPalIndex": "0",
|
|
2563
|
+
"Icon": "gMonIcon_Donphan"
|
|
2564
|
+
},
|
|
2565
|
+
"PORYGON2": {
|
|
2566
|
+
"frontPics": "gMonFrontPic_Porygon2",
|
|
2567
|
+
"backPics": "gMonBackPic_Porygon2",
|
|
2568
|
+
"normPalette": "gMonPalette_Porygon2",
|
|
2569
|
+
"shinyPalette": "gMonShinyPalette_Porygon2",
|
|
2570
|
+
"footprintPics": "gMonFootprint_Porygon2",
|
|
2571
|
+
"width": "40",
|
|
2572
|
+
"height": "40",
|
|
2573
|
+
"iconPalIndex": "0",
|
|
2574
|
+
"Icon": "gMonIcon_Porygon2"
|
|
2575
|
+
},
|
|
2576
|
+
"STANTLER": {
|
|
2577
|
+
"frontPics": "gMonFrontPic_Stantler",
|
|
2578
|
+
"backPics": "gMonBackPic_Stantler",
|
|
2579
|
+
"normPalette": "gMonPalette_Stantler",
|
|
2580
|
+
"shinyPalette": "gMonShinyPalette_Stantler",
|
|
2581
|
+
"footprintPics": "gMonFootprint_Stantler",
|
|
2582
|
+
"width": "64",
|
|
2583
|
+
"height": "64",
|
|
2584
|
+
"iconPalIndex": "2",
|
|
2585
|
+
"Icon": "gMonIcon_Stantler"
|
|
2586
|
+
},
|
|
2587
|
+
"SMEARGLE": {
|
|
2588
|
+
"frontPics": "gMonFrontPic_Smeargle",
|
|
2589
|
+
"backPics": "gMonBackPic_Smeargle",
|
|
2590
|
+
"normPalette": "gMonPalette_Smeargle",
|
|
2591
|
+
"shinyPalette": "gMonShinyPalette_Smeargle",
|
|
2592
|
+
"footprintPics": "gMonFootprint_Smeargle",
|
|
2593
|
+
"width": "56",
|
|
2594
|
+
"height": "56",
|
|
2595
|
+
"iconPalIndex": "1",
|
|
2596
|
+
"Icon": "gMonIcon_Smeargle"
|
|
2597
|
+
},
|
|
2598
|
+
"TYROGUE": {
|
|
2599
|
+
"frontPics": "gMonFrontPic_Tyrogue",
|
|
2600
|
+
"backPics": "gMonBackPic_Tyrogue",
|
|
2601
|
+
"normPalette": "gMonPalette_Tyrogue",
|
|
2602
|
+
"shinyPalette": "gMonShinyPalette_Tyrogue",
|
|
2603
|
+
"footprintPics": "gMonFootprint_Tyrogue",
|
|
2604
|
+
"width": "32",
|
|
2605
|
+
"height": "48",
|
|
2606
|
+
"iconPalIndex": "2",
|
|
2607
|
+
"Icon": "gMonIcon_Tyrogue"
|
|
2608
|
+
},
|
|
2609
|
+
"HITMONTOP": {
|
|
2610
|
+
"frontPics": "gMonFrontPic_Hitmontop",
|
|
2611
|
+
"backPics": "gMonBackPic_Hitmontop",
|
|
2612
|
+
"normPalette": "gMonPalette_Hitmontop",
|
|
2613
|
+
"shinyPalette": "gMonShinyPalette_Hitmontop",
|
|
2614
|
+
"footprintPics": "gMonFootprint_Hitmontop",
|
|
2615
|
+
"width": "48",
|
|
2616
|
+
"height": "56",
|
|
2617
|
+
"iconPalIndex": "2",
|
|
2618
|
+
"Icon": "gMonIcon_Hitmontop"
|
|
2619
|
+
},
|
|
2620
|
+
"SMOOCHUM": {
|
|
2621
|
+
"frontPics": "gMonFrontPic_Smoochum",
|
|
2622
|
+
"backPics": "gMonBackPic_Smoochum",
|
|
2623
|
+
"normPalette": "gMonPalette_Smoochum",
|
|
2624
|
+
"shinyPalette": "gMonShinyPalette_Smoochum",
|
|
2625
|
+
"footprintPics": "gMonFootprint_Smoochum",
|
|
2626
|
+
"width": "24",
|
|
2627
|
+
"height": "40",
|
|
2628
|
+
"iconPalIndex": "1",
|
|
2629
|
+
"Icon": "gMonIcon_Smoochum"
|
|
2630
|
+
},
|
|
2631
|
+
"ELEKID": {
|
|
2632
|
+
"frontPics": "gMonFrontPic_Elekid",
|
|
2633
|
+
"backPics": "gMonBackPic_Elekid",
|
|
2634
|
+
"normPalette": "gMonPalette_Elekid",
|
|
2635
|
+
"shinyPalette": "gMonShinyPalette_Elekid",
|
|
2636
|
+
"footprintPics": "gMonFootprint_Elekid",
|
|
2637
|
+
"width": "56",
|
|
2638
|
+
"height": "48",
|
|
2639
|
+
"iconPalIndex": "1",
|
|
2640
|
+
"Icon": "gMonIcon_Elekid"
|
|
2641
|
+
},
|
|
2642
|
+
"MAGBY": {
|
|
2643
|
+
"frontPics": "gMonFrontPic_Magby",
|
|
2644
|
+
"backPics": "gMonBackPic_Magby",
|
|
2645
|
+
"normPalette": "gMonPalette_Magby",
|
|
2646
|
+
"shinyPalette": "gMonShinyPalette_Magby",
|
|
2647
|
+
"footprintPics": "gMonFootprint_Magby",
|
|
2648
|
+
"width": "32",
|
|
2649
|
+
"height": "40",
|
|
2650
|
+
"iconPalIndex": "1",
|
|
2651
|
+
"Icon": "gMonIcon_Magby"
|
|
2652
|
+
},
|
|
2653
|
+
"MILTANK": {
|
|
2654
|
+
"frontPics": "gMonFrontPic_Miltank",
|
|
2655
|
+
"backPics": "gMonBackPic_Miltank",
|
|
2656
|
+
"normPalette": "gMonPalette_Miltank",
|
|
2657
|
+
"shinyPalette": "gMonShinyPalette_Miltank",
|
|
2658
|
+
"footprintPics": "gMonFootprint_Miltank",
|
|
2659
|
+
"width": "56",
|
|
2660
|
+
"height": "56",
|
|
2661
|
+
"iconPalIndex": "1",
|
|
2662
|
+
"Icon": "gMonIcon_Miltank"
|
|
2663
|
+
},
|
|
2664
|
+
"BLISSEY": {
|
|
2665
|
+
"frontPics": "gMonFrontPic_Blissey",
|
|
2666
|
+
"backPics": "gMonBackPic_Blissey",
|
|
2667
|
+
"normPalette": "gMonPalette_Blissey",
|
|
2668
|
+
"shinyPalette": "gMonShinyPalette_Blissey",
|
|
2669
|
+
"footprintPics": "gMonFootprint_Blissey",
|
|
2670
|
+
"width": "56",
|
|
2671
|
+
"height": "56",
|
|
2672
|
+
"iconPalIndex": "1",
|
|
2673
|
+
"Icon": "gMonIcon_Blissey"
|
|
2674
|
+
},
|
|
2675
|
+
"RAIKOU": {
|
|
2676
|
+
"frontPics": "gMonFrontPic_Raikou",
|
|
2677
|
+
"backPics": "gMonBackPic_Raikou",
|
|
2678
|
+
"normPalette": "gMonPalette_Raikou",
|
|
2679
|
+
"shinyPalette": "gMonShinyPalette_Raikou",
|
|
2680
|
+
"footprintPics": "gMonFootprint_Raikou",
|
|
2681
|
+
"width": "64",
|
|
2682
|
+
"height": "64",
|
|
2683
|
+
"iconPalIndex": "0",
|
|
2684
|
+
"Icon": "gMonIcon_Raikou"
|
|
2685
|
+
},
|
|
2686
|
+
"ENTEI": {
|
|
2687
|
+
"frontPics": "gMonFrontPic_Entei",
|
|
2688
|
+
"backPics": "gMonBackPic_Entei",
|
|
2689
|
+
"normPalette": "gMonPalette_Entei",
|
|
2690
|
+
"shinyPalette": "gMonShinyPalette_Entei",
|
|
2691
|
+
"footprintPics": "gMonFootprint_Entei",
|
|
2692
|
+
"width": "64",
|
|
2693
|
+
"height": "64",
|
|
2694
|
+
"iconPalIndex": "2",
|
|
2695
|
+
"Icon": "gMonIcon_Entei"
|
|
2696
|
+
},
|
|
2697
|
+
"SUICUNE": {
|
|
2698
|
+
"frontPics": "gMonFrontPic_Suicune",
|
|
2699
|
+
"backPics": "gMonBackPic_Suicune",
|
|
2700
|
+
"normPalette": "gMonPalette_Suicune",
|
|
2701
|
+
"shinyPalette": "gMonShinyPalette_Suicune",
|
|
2702
|
+
"footprintPics": "gMonFootprint_Suicune",
|
|
2703
|
+
"width": "64",
|
|
2704
|
+
"height": "64",
|
|
2705
|
+
"iconPalIndex": "0",
|
|
2706
|
+
"Icon": "gMonIcon_Suicune"
|
|
2707
|
+
},
|
|
2708
|
+
"LARVITAR": {
|
|
2709
|
+
"frontPics": "gMonFrontPic_Larvitar",
|
|
2710
|
+
"backPics": "gMonBackPic_Larvitar",
|
|
2711
|
+
"normPalette": "gMonPalette_Larvitar",
|
|
2712
|
+
"shinyPalette": "gMonShinyPalette_Larvitar",
|
|
2713
|
+
"footprintPics": "gMonFootprint_Larvitar",
|
|
2714
|
+
"width": "32",
|
|
2715
|
+
"height": "48",
|
|
2716
|
+
"iconPalIndex": "1",
|
|
2717
|
+
"Icon": "gMonIcon_Larvitar"
|
|
2718
|
+
},
|
|
2719
|
+
"PUPITAR": {
|
|
2720
|
+
"frontPics": "gMonFrontPic_Pupitar",
|
|
2721
|
+
"backPics": "gMonBackPic_Pupitar",
|
|
2722
|
+
"normPalette": "gMonPalette_Pupitar",
|
|
2723
|
+
"shinyPalette": "gMonShinyPalette_Pupitar",
|
|
2724
|
+
"footprintPics": "gMonFootprint_Pupitar",
|
|
2725
|
+
"width": "40",
|
|
2726
|
+
"height": "48",
|
|
2727
|
+
"iconPalIndex": "0",
|
|
2728
|
+
"Icon": "gMonIcon_Pupitar"
|
|
2729
|
+
},
|
|
2730
|
+
"TYRANITAR": {
|
|
2731
|
+
"frontPics": "gMonFrontPic_Tyranitar",
|
|
2732
|
+
"backPics": "gMonBackPic_Tyranitar",
|
|
2733
|
+
"normPalette": "gMonPalette_Tyranitar",
|
|
2734
|
+
"shinyPalette": "gMonShinyPalette_Tyranitar",
|
|
2735
|
+
"footprintPics": "gMonFootprint_Tyranitar",
|
|
2736
|
+
"width": "64",
|
|
2737
|
+
"height": "64",
|
|
2738
|
+
"iconPalIndex": "1",
|
|
2739
|
+
"Icon": "gMonIcon_Tyranitar"
|
|
2740
|
+
},
|
|
2741
|
+
"LUGIA": {
|
|
2742
|
+
"frontPics": "gMonFrontPic_Lugia",
|
|
2743
|
+
"backPics": "gMonBackPic_Lugia",
|
|
2744
|
+
"normPalette": "gMonPalette_Lugia",
|
|
2745
|
+
"shinyPalette": "gMonShinyPalette_Lugia",
|
|
2746
|
+
"footprintPics": "gMonFootprint_Lugia",
|
|
2747
|
+
"width": "64",
|
|
2748
|
+
"height": "64",
|
|
2749
|
+
"iconPalIndex": "0",
|
|
2750
|
+
"Icon": "gMonIcon_Lugia"
|
|
2751
|
+
},
|
|
2752
|
+
"HO_OH": {
|
|
2753
|
+
"frontPics": "gMonFrontPic_HoOh",
|
|
2754
|
+
"backPics": "gMonBackPic_HoOh",
|
|
2755
|
+
"normPalette": "gMonPalette_HoOh",
|
|
2756
|
+
"shinyPalette": "gMonShinyPalette_HoOh",
|
|
2757
|
+
"footprintPics": "gMonFootprint_HoOh",
|
|
2758
|
+
"width": "64",
|
|
2759
|
+
"height": "64",
|
|
2760
|
+
"iconPalIndex": "1",
|
|
2761
|
+
"Icon": "gMonIcon_HoOh"
|
|
2762
|
+
},
|
|
2763
|
+
"CELEBI": {
|
|
2764
|
+
"frontPics": "gMonFrontPic_Celebi",
|
|
2765
|
+
"backPics": "gMonBackPic_Celebi",
|
|
2766
|
+
"normPalette": "gMonPalette_Celebi",
|
|
2767
|
+
"shinyPalette": "gMonShinyPalette_Celebi",
|
|
2768
|
+
"footprintPics": "gMonFootprint_Celebi",
|
|
2769
|
+
"width": "40",
|
|
2770
|
+
"height": "40",
|
|
2771
|
+
"iconPalIndex": "1",
|
|
2772
|
+
"Icon": "gMonIcon_Celebi"
|
|
2773
|
+
},
|
|
2774
|
+
"OLD_UNOWN_B": {
|
|
2775
|
+
"frontPics": "gMonFrontPic_DoubleQuestionMark",
|
|
2776
|
+
"backPics": "gMonBackPic_DoubleQuestionMark",
|
|
2777
|
+
"normPalette": "gMonPalette_DoubleQuestionMark",
|
|
2778
|
+
"shinyPalette": "gMonShinyPalette_DoubleQuestionMark",
|
|
2779
|
+
"footprintPics": "gMonFootprint_QuestionMark",
|
|
2780
|
+
"width": "64",
|
|
2781
|
+
"height": "64",
|
|
2782
|
+
"iconPalIndex": "0",
|
|
2783
|
+
"Icon": "gMonIcon_QuestionMark"
|
|
2784
|
+
},
|
|
2785
|
+
"OLD_UNOWN_C": {
|
|
2786
|
+
"frontPics": "gMonFrontPic_DoubleQuestionMark",
|
|
2787
|
+
"backPics": "gMonBackPic_DoubleQuestionMark",
|
|
2788
|
+
"normPalette": "gMonPalette_DoubleQuestionMark",
|
|
2789
|
+
"shinyPalette": "gMonShinyPalette_DoubleQuestionMark",
|
|
2790
|
+
"footprintPics": "gMonFootprint_QuestionMark",
|
|
2791
|
+
"width": "64",
|
|
2792
|
+
"height": "64",
|
|
2793
|
+
"iconPalIndex": "0",
|
|
2794
|
+
"Icon": "gMonIcon_QuestionMark"
|
|
2795
|
+
},
|
|
2796
|
+
"OLD_UNOWN_D": {
|
|
2797
|
+
"frontPics": "gMonFrontPic_DoubleQuestionMark",
|
|
2798
|
+
"backPics": "gMonBackPic_DoubleQuestionMark",
|
|
2799
|
+
"normPalette": "gMonPalette_DoubleQuestionMark",
|
|
2800
|
+
"shinyPalette": "gMonShinyPalette_DoubleQuestionMark",
|
|
2801
|
+
"footprintPics": "gMonFootprint_QuestionMark",
|
|
2802
|
+
"width": "64",
|
|
2803
|
+
"height": "64",
|
|
2804
|
+
"iconPalIndex": "0",
|
|
2805
|
+
"Icon": "gMonIcon_QuestionMark"
|
|
2806
|
+
},
|
|
2807
|
+
"OLD_UNOWN_E": {
|
|
2808
|
+
"frontPics": "gMonFrontPic_DoubleQuestionMark",
|
|
2809
|
+
"backPics": "gMonBackPic_DoubleQuestionMark",
|
|
2810
|
+
"normPalette": "gMonPalette_DoubleQuestionMark",
|
|
2811
|
+
"shinyPalette": "gMonShinyPalette_DoubleQuestionMark",
|
|
2812
|
+
"footprintPics": "gMonFootprint_QuestionMark",
|
|
2813
|
+
"width": "64",
|
|
2814
|
+
"height": "64",
|
|
2815
|
+
"iconPalIndex": "0",
|
|
2816
|
+
"Icon": "gMonIcon_QuestionMark"
|
|
2817
|
+
},
|
|
2818
|
+
"OLD_UNOWN_F": {
|
|
2819
|
+
"frontPics": "gMonFrontPic_DoubleQuestionMark",
|
|
2820
|
+
"backPics": "gMonBackPic_DoubleQuestionMark",
|
|
2821
|
+
"normPalette": "gMonPalette_DoubleQuestionMark",
|
|
2822
|
+
"shinyPalette": "gMonShinyPalette_DoubleQuestionMark",
|
|
2823
|
+
"footprintPics": "gMonFootprint_QuestionMark",
|
|
2824
|
+
"width": "64",
|
|
2825
|
+
"height": "64",
|
|
2826
|
+
"iconPalIndex": "0",
|
|
2827
|
+
"Icon": "gMonIcon_QuestionMark"
|
|
2828
|
+
},
|
|
2829
|
+
"OLD_UNOWN_G": {
|
|
2830
|
+
"frontPics": "gMonFrontPic_DoubleQuestionMark",
|
|
2831
|
+
"backPics": "gMonBackPic_DoubleQuestionMark",
|
|
2832
|
+
"normPalette": "gMonPalette_DoubleQuestionMark",
|
|
2833
|
+
"shinyPalette": "gMonShinyPalette_DoubleQuestionMark",
|
|
2834
|
+
"footprintPics": "gMonFootprint_QuestionMark",
|
|
2835
|
+
"width": "64",
|
|
2836
|
+
"height": "64",
|
|
2837
|
+
"iconPalIndex": "0",
|
|
2838
|
+
"Icon": "gMonIcon_QuestionMark"
|
|
2839
|
+
},
|
|
2840
|
+
"OLD_UNOWN_H": {
|
|
2841
|
+
"frontPics": "gMonFrontPic_DoubleQuestionMark",
|
|
2842
|
+
"backPics": "gMonBackPic_DoubleQuestionMark",
|
|
2843
|
+
"normPalette": "gMonPalette_DoubleQuestionMark",
|
|
2844
|
+
"shinyPalette": "gMonShinyPalette_DoubleQuestionMark",
|
|
2845
|
+
"footprintPics": "gMonFootprint_QuestionMark",
|
|
2846
|
+
"width": "64",
|
|
2847
|
+
"height": "64",
|
|
2848
|
+
"iconPalIndex": "0",
|
|
2849
|
+
"Icon": "gMonIcon_QuestionMark"
|
|
2850
|
+
},
|
|
2851
|
+
"OLD_UNOWN_I": {
|
|
2852
|
+
"frontPics": "gMonFrontPic_DoubleQuestionMark",
|
|
2853
|
+
"backPics": "gMonBackPic_DoubleQuestionMark",
|
|
2854
|
+
"normPalette": "gMonPalette_DoubleQuestionMark",
|
|
2855
|
+
"shinyPalette": "gMonShinyPalette_DoubleQuestionMark",
|
|
2856
|
+
"footprintPics": "gMonFootprint_QuestionMark",
|
|
2857
|
+
"width": "64",
|
|
2858
|
+
"height": "64",
|
|
2859
|
+
"iconPalIndex": "0",
|
|
2860
|
+
"Icon": "gMonIcon_QuestionMark"
|
|
2861
|
+
},
|
|
2862
|
+
"OLD_UNOWN_J": {
|
|
2863
|
+
"frontPics": "gMonFrontPic_DoubleQuestionMark",
|
|
2864
|
+
"backPics": "gMonBackPic_DoubleQuestionMark",
|
|
2865
|
+
"normPalette": "gMonPalette_DoubleQuestionMark",
|
|
2866
|
+
"shinyPalette": "gMonShinyPalette_DoubleQuestionMark",
|
|
2867
|
+
"footprintPics": "gMonFootprint_QuestionMark",
|
|
2868
|
+
"width": "64",
|
|
2869
|
+
"height": "64",
|
|
2870
|
+
"iconPalIndex": "0",
|
|
2871
|
+
"Icon": "gMonIcon_QuestionMark"
|
|
2872
|
+
},
|
|
2873
|
+
"OLD_UNOWN_K": {
|
|
2874
|
+
"frontPics": "gMonFrontPic_DoubleQuestionMark",
|
|
2875
|
+
"backPics": "gMonBackPic_DoubleQuestionMark",
|
|
2876
|
+
"normPalette": "gMonPalette_DoubleQuestionMark",
|
|
2877
|
+
"shinyPalette": "gMonShinyPalette_DoubleQuestionMark",
|
|
2878
|
+
"footprintPics": "gMonFootprint_QuestionMark",
|
|
2879
|
+
"width": "64",
|
|
2880
|
+
"height": "64",
|
|
2881
|
+
"iconPalIndex": "0",
|
|
2882
|
+
"Icon": "gMonIcon_QuestionMark"
|
|
2883
|
+
},
|
|
2884
|
+
"OLD_UNOWN_L": {
|
|
2885
|
+
"frontPics": "gMonFrontPic_DoubleQuestionMark",
|
|
2886
|
+
"backPics": "gMonBackPic_DoubleQuestionMark",
|
|
2887
|
+
"normPalette": "gMonPalette_DoubleQuestionMark",
|
|
2888
|
+
"shinyPalette": "gMonShinyPalette_DoubleQuestionMark",
|
|
2889
|
+
"footprintPics": "gMonFootprint_QuestionMark",
|
|
2890
|
+
"width": "64",
|
|
2891
|
+
"height": "64",
|
|
2892
|
+
"iconPalIndex": "0",
|
|
2893
|
+
"Icon": "gMonIcon_QuestionMark"
|
|
2894
|
+
},
|
|
2895
|
+
"OLD_UNOWN_M": {
|
|
2896
|
+
"frontPics": "gMonFrontPic_DoubleQuestionMark",
|
|
2897
|
+
"backPics": "gMonBackPic_DoubleQuestionMark",
|
|
2898
|
+
"normPalette": "gMonPalette_DoubleQuestionMark",
|
|
2899
|
+
"shinyPalette": "gMonShinyPalette_DoubleQuestionMark",
|
|
2900
|
+
"footprintPics": "gMonFootprint_QuestionMark",
|
|
2901
|
+
"width": "64",
|
|
2902
|
+
"height": "64",
|
|
2903
|
+
"iconPalIndex": "0",
|
|
2904
|
+
"Icon": "gMonIcon_QuestionMark"
|
|
2905
|
+
},
|
|
2906
|
+
"OLD_UNOWN_N": {
|
|
2907
|
+
"frontPics": "gMonFrontPic_DoubleQuestionMark",
|
|
2908
|
+
"backPics": "gMonBackPic_DoubleQuestionMark",
|
|
2909
|
+
"normPalette": "gMonPalette_DoubleQuestionMark",
|
|
2910
|
+
"shinyPalette": "gMonShinyPalette_DoubleQuestionMark",
|
|
2911
|
+
"footprintPics": "gMonFootprint_QuestionMark",
|
|
2912
|
+
"width": "64",
|
|
2913
|
+
"height": "64",
|
|
2914
|
+
"iconPalIndex": "0",
|
|
2915
|
+
"Icon": "gMonIcon_QuestionMark"
|
|
2916
|
+
},
|
|
2917
|
+
"OLD_UNOWN_O": {
|
|
2918
|
+
"frontPics": "gMonFrontPic_DoubleQuestionMark",
|
|
2919
|
+
"backPics": "gMonBackPic_DoubleQuestionMark",
|
|
2920
|
+
"normPalette": "gMonPalette_DoubleQuestionMark",
|
|
2921
|
+
"shinyPalette": "gMonShinyPalette_DoubleQuestionMark",
|
|
2922
|
+
"footprintPics": "gMonFootprint_QuestionMark",
|
|
2923
|
+
"width": "64",
|
|
2924
|
+
"height": "64",
|
|
2925
|
+
"iconPalIndex": "0",
|
|
2926
|
+
"Icon": "gMonIcon_QuestionMark"
|
|
2927
|
+
},
|
|
2928
|
+
"OLD_UNOWN_P": {
|
|
2929
|
+
"frontPics": "gMonFrontPic_DoubleQuestionMark",
|
|
2930
|
+
"backPics": "gMonBackPic_DoubleQuestionMark",
|
|
2931
|
+
"normPalette": "gMonPalette_DoubleQuestionMark",
|
|
2932
|
+
"shinyPalette": "gMonShinyPalette_DoubleQuestionMark",
|
|
2933
|
+
"footprintPics": "gMonFootprint_QuestionMark",
|
|
2934
|
+
"width": "64",
|
|
2935
|
+
"height": "64",
|
|
2936
|
+
"iconPalIndex": "0",
|
|
2937
|
+
"Icon": "gMonIcon_QuestionMark"
|
|
2938
|
+
},
|
|
2939
|
+
"OLD_UNOWN_Q": {
|
|
2940
|
+
"frontPics": "gMonFrontPic_DoubleQuestionMark",
|
|
2941
|
+
"backPics": "gMonBackPic_DoubleQuestionMark",
|
|
2942
|
+
"normPalette": "gMonPalette_DoubleQuestionMark",
|
|
2943
|
+
"shinyPalette": "gMonShinyPalette_DoubleQuestionMark",
|
|
2944
|
+
"footprintPics": "gMonFootprint_QuestionMark",
|
|
2945
|
+
"width": "64",
|
|
2946
|
+
"height": "64",
|
|
2947
|
+
"iconPalIndex": "0",
|
|
2948
|
+
"Icon": "gMonIcon_QuestionMark"
|
|
2949
|
+
},
|
|
2950
|
+
"OLD_UNOWN_R": {
|
|
2951
|
+
"frontPics": "gMonFrontPic_DoubleQuestionMark",
|
|
2952
|
+
"backPics": "gMonBackPic_DoubleQuestionMark",
|
|
2953
|
+
"normPalette": "gMonPalette_DoubleQuestionMark",
|
|
2954
|
+
"shinyPalette": "gMonShinyPalette_DoubleQuestionMark",
|
|
2955
|
+
"footprintPics": "gMonFootprint_QuestionMark",
|
|
2956
|
+
"width": "64",
|
|
2957
|
+
"height": "64",
|
|
2958
|
+
"iconPalIndex": "0",
|
|
2959
|
+
"Icon": "gMonIcon_QuestionMark"
|
|
2960
|
+
},
|
|
2961
|
+
"OLD_UNOWN_S": {
|
|
2962
|
+
"frontPics": "gMonFrontPic_DoubleQuestionMark",
|
|
2963
|
+
"backPics": "gMonBackPic_DoubleQuestionMark",
|
|
2964
|
+
"normPalette": "gMonPalette_DoubleQuestionMark",
|
|
2965
|
+
"shinyPalette": "gMonShinyPalette_DoubleQuestionMark",
|
|
2966
|
+
"footprintPics": "gMonFootprint_QuestionMark",
|
|
2967
|
+
"width": "64",
|
|
2968
|
+
"height": "64",
|
|
2969
|
+
"iconPalIndex": "0",
|
|
2970
|
+
"Icon": "gMonIcon_QuestionMark"
|
|
2971
|
+
},
|
|
2972
|
+
"OLD_UNOWN_T": {
|
|
2973
|
+
"frontPics": "gMonFrontPic_DoubleQuestionMark",
|
|
2974
|
+
"backPics": "gMonBackPic_DoubleQuestionMark",
|
|
2975
|
+
"normPalette": "gMonPalette_DoubleQuestionMark",
|
|
2976
|
+
"shinyPalette": "gMonShinyPalette_DoubleQuestionMark",
|
|
2977
|
+
"footprintPics": "gMonFootprint_QuestionMark",
|
|
2978
|
+
"width": "64",
|
|
2979
|
+
"height": "64",
|
|
2980
|
+
"iconPalIndex": "0",
|
|
2981
|
+
"Icon": "gMonIcon_QuestionMark"
|
|
2982
|
+
},
|
|
2983
|
+
"OLD_UNOWN_U": {
|
|
2984
|
+
"frontPics": "gMonFrontPic_DoubleQuestionMark",
|
|
2985
|
+
"backPics": "gMonBackPic_DoubleQuestionMark",
|
|
2986
|
+
"normPalette": "gMonPalette_DoubleQuestionMark",
|
|
2987
|
+
"shinyPalette": "gMonShinyPalette_DoubleQuestionMark",
|
|
2988
|
+
"footprintPics": "gMonFootprint_QuestionMark",
|
|
2989
|
+
"width": "64",
|
|
2990
|
+
"height": "64",
|
|
2991
|
+
"iconPalIndex": "0",
|
|
2992
|
+
"Icon": "gMonIcon_QuestionMark"
|
|
2993
|
+
},
|
|
2994
|
+
"OLD_UNOWN_V": {
|
|
2995
|
+
"frontPics": "gMonFrontPic_DoubleQuestionMark",
|
|
2996
|
+
"backPics": "gMonBackPic_DoubleQuestionMark",
|
|
2997
|
+
"normPalette": "gMonPalette_DoubleQuestionMark",
|
|
2998
|
+
"shinyPalette": "gMonShinyPalette_DoubleQuestionMark",
|
|
2999
|
+
"footprintPics": "gMonFootprint_QuestionMark",
|
|
3000
|
+
"width": "64",
|
|
3001
|
+
"height": "64",
|
|
3002
|
+
"iconPalIndex": "0",
|
|
3003
|
+
"Icon": "gMonIcon_QuestionMark"
|
|
3004
|
+
},
|
|
3005
|
+
"OLD_UNOWN_W": {
|
|
3006
|
+
"frontPics": "gMonFrontPic_DoubleQuestionMark",
|
|
3007
|
+
"backPics": "gMonBackPic_DoubleQuestionMark",
|
|
3008
|
+
"normPalette": "gMonPalette_DoubleQuestionMark",
|
|
3009
|
+
"shinyPalette": "gMonShinyPalette_DoubleQuestionMark",
|
|
3010
|
+
"footprintPics": "gMonFootprint_QuestionMark",
|
|
3011
|
+
"width": "64",
|
|
3012
|
+
"height": "64",
|
|
3013
|
+
"iconPalIndex": "0",
|
|
3014
|
+
"Icon": "gMonIcon_QuestionMark"
|
|
3015
|
+
},
|
|
3016
|
+
"OLD_UNOWN_X": {
|
|
3017
|
+
"frontPics": "gMonFrontPic_DoubleQuestionMark",
|
|
3018
|
+
"backPics": "gMonBackPic_DoubleQuestionMark",
|
|
3019
|
+
"normPalette": "gMonPalette_DoubleQuestionMark",
|
|
3020
|
+
"shinyPalette": "gMonShinyPalette_DoubleQuestionMark",
|
|
3021
|
+
"footprintPics": "gMonFootprint_QuestionMark",
|
|
3022
|
+
"width": "64",
|
|
3023
|
+
"height": "64",
|
|
3024
|
+
"iconPalIndex": "0",
|
|
3025
|
+
"Icon": "gMonIcon_QuestionMark"
|
|
3026
|
+
},
|
|
3027
|
+
"OLD_UNOWN_Y": {
|
|
3028
|
+
"frontPics": "gMonFrontPic_DoubleQuestionMark",
|
|
3029
|
+
"backPics": "gMonBackPic_DoubleQuestionMark",
|
|
3030
|
+
"normPalette": "gMonPalette_DoubleQuestionMark",
|
|
3031
|
+
"shinyPalette": "gMonShinyPalette_DoubleQuestionMark",
|
|
3032
|
+
"footprintPics": "gMonFootprint_QuestionMark",
|
|
3033
|
+
"width": "64",
|
|
3034
|
+
"height": "64",
|
|
3035
|
+
"iconPalIndex": "0",
|
|
3036
|
+
"Icon": "gMonIcon_QuestionMark"
|
|
3037
|
+
},
|
|
3038
|
+
"OLD_UNOWN_Z": {
|
|
3039
|
+
"frontPics": "gMonFrontPic_DoubleQuestionMark",
|
|
3040
|
+
"backPics": "gMonBackPic_DoubleQuestionMark",
|
|
3041
|
+
"normPalette": "gMonPalette_DoubleQuestionMark",
|
|
3042
|
+
"shinyPalette": "gMonShinyPalette_DoubleQuestionMark",
|
|
3043
|
+
"footprintPics": "gMonFootprint_QuestionMark",
|
|
3044
|
+
"width": "64",
|
|
3045
|
+
"height": "64",
|
|
3046
|
+
"iconPalIndex": "0",
|
|
3047
|
+
"Icon": "gMonIcon_QuestionMark"
|
|
3048
|
+
},
|
|
3049
|
+
"TREECKO": {
|
|
3050
|
+
"frontPics": "gMonFrontPic_Treecko",
|
|
3051
|
+
"backPics": "gMonBackPic_Treecko",
|
|
3052
|
+
"normPalette": "gMonPalette_Treecko",
|
|
3053
|
+
"shinyPalette": "gMonShinyPalette_Treecko",
|
|
3054
|
+
"footprintPics": "gMonFootprint_Treecko",
|
|
3055
|
+
"width": "48",
|
|
3056
|
+
"height": "48",
|
|
3057
|
+
"iconPalIndex": "1",
|
|
3058
|
+
"Icon": "gMonIcon_Treecko"
|
|
3059
|
+
},
|
|
3060
|
+
"GROVYLE": {
|
|
3061
|
+
"frontPics": "gMonFrontPic_Grovyle",
|
|
3062
|
+
"backPics": "gMonBackPic_Grovyle",
|
|
3063
|
+
"normPalette": "gMonPalette_Grovyle",
|
|
3064
|
+
"shinyPalette": "gMonShinyPalette_Grovyle",
|
|
3065
|
+
"footprintPics": "gMonFootprint_Grovyle",
|
|
3066
|
+
"width": "64",
|
|
3067
|
+
"height": "56",
|
|
3068
|
+
"iconPalIndex": "0",
|
|
3069
|
+
"Icon": "gMonIcon_Grovyle"
|
|
3070
|
+
},
|
|
3071
|
+
"SCEPTILE": {
|
|
3072
|
+
"frontPics": "gMonFrontPic_Sceptile",
|
|
3073
|
+
"backPics": "gMonBackPic_Sceptile",
|
|
3074
|
+
"normPalette": "gMonPalette_Sceptile",
|
|
3075
|
+
"shinyPalette": "gMonShinyPalette_Sceptile",
|
|
3076
|
+
"footprintPics": "gMonFootprint_Sceptile",
|
|
3077
|
+
"width": "64",
|
|
3078
|
+
"height": "64",
|
|
3079
|
+
"iconPalIndex": "1",
|
|
3080
|
+
"Icon": "gMonIcon_Sceptile"
|
|
3081
|
+
},
|
|
3082
|
+
"TORCHIC": {
|
|
3083
|
+
"frontPics": "gMonFrontPic_Torchic",
|
|
3084
|
+
"backPics": "gMonBackPic_Torchic",
|
|
3085
|
+
"normPalette": "gMonPalette_Torchic",
|
|
3086
|
+
"shinyPalette": "gMonShinyPalette_Torchic",
|
|
3087
|
+
"footprintPics": "gMonFootprint_Torchic",
|
|
3088
|
+
"width": "40",
|
|
3089
|
+
"height": "48",
|
|
3090
|
+
"iconPalIndex": "0",
|
|
3091
|
+
"Icon": "gMonIcon_Torchic"
|
|
3092
|
+
},
|
|
3093
|
+
"COMBUSKEN": {
|
|
3094
|
+
"frontPics": "gMonFrontPic_Combusken",
|
|
3095
|
+
"backPics": "gMonBackPic_Combusken",
|
|
3096
|
+
"normPalette": "gMonPalette_Combusken",
|
|
3097
|
+
"shinyPalette": "gMonShinyPalette_Combusken",
|
|
3098
|
+
"footprintPics": "gMonFootprint_Combusken",
|
|
3099
|
+
"width": "64",
|
|
3100
|
+
"height": "64",
|
|
3101
|
+
"iconPalIndex": "0",
|
|
3102
|
+
"Icon": "gMonIcon_Combusken"
|
|
3103
|
+
},
|
|
3104
|
+
"BLAZIKEN": {
|
|
3105
|
+
"frontPics": "gMonFrontPic_Blaziken",
|
|
3106
|
+
"backPics": "gMonBackPic_Blaziken",
|
|
3107
|
+
"normPalette": "gMonPalette_Blaziken",
|
|
3108
|
+
"shinyPalette": "gMonShinyPalette_Blaziken",
|
|
3109
|
+
"footprintPics": "gMonFootprint_Blaziken",
|
|
3110
|
+
"width": "64",
|
|
3111
|
+
"height": "64",
|
|
3112
|
+
"iconPalIndex": "0",
|
|
3113
|
+
"Icon": "gMonIcon_Blaziken"
|
|
3114
|
+
},
|
|
3115
|
+
"MUDKIP": {
|
|
3116
|
+
"frontPics": "gMonFrontPic_Mudkip",
|
|
3117
|
+
"backPics": "gMonBackPic_Mudkip",
|
|
3118
|
+
"normPalette": "gMonPalette_Mudkip",
|
|
3119
|
+
"shinyPalette": "gMonShinyPalette_Mudkip",
|
|
3120
|
+
"footprintPics": "gMonFootprint_Mudkip",
|
|
3121
|
+
"width": "40",
|
|
3122
|
+
"height": "48",
|
|
3123
|
+
"iconPalIndex": "0",
|
|
3124
|
+
"Icon": "gMonIcon_Mudkip"
|
|
3125
|
+
},
|
|
3126
|
+
"MARSHTOMP": {
|
|
3127
|
+
"frontPics": "gMonFrontPic_Marshtomp",
|
|
3128
|
+
"backPics": "gMonBackPic_Marshtomp",
|
|
3129
|
+
"normPalette": "gMonPalette_Marshtomp",
|
|
3130
|
+
"shinyPalette": "gMonShinyPalette_Marshtomp",
|
|
3131
|
+
"footprintPics": "gMonFootprint_Marshtomp",
|
|
3132
|
+
"width": "48",
|
|
3133
|
+
"height": "56",
|
|
3134
|
+
"iconPalIndex": "0",
|
|
3135
|
+
"Icon": "gMonIcon_Marshtomp"
|
|
3136
|
+
},
|
|
3137
|
+
"SWAMPERT": {
|
|
3138
|
+
"frontPics": "gMonFrontPic_Swampert",
|
|
3139
|
+
"backPics": "gMonBackPic_Swampert",
|
|
3140
|
+
"normPalette": "gMonPalette_Swampert",
|
|
3141
|
+
"shinyPalette": "gMonShinyPalette_Swampert",
|
|
3142
|
+
"footprintPics": "gMonFootprint_Swampert",
|
|
3143
|
+
"width": "64",
|
|
3144
|
+
"height": "64",
|
|
3145
|
+
"iconPalIndex": "0",
|
|
3146
|
+
"Icon": "gMonIcon_Swampert"
|
|
3147
|
+
},
|
|
3148
|
+
"POOCHYENA": {
|
|
3149
|
+
"frontPics": "gMonFrontPic_Poochyena",
|
|
3150
|
+
"backPics": "gMonBackPic_Poochyena",
|
|
3151
|
+
"normPalette": "gMonPalette_Poochyena",
|
|
3152
|
+
"shinyPalette": "gMonShinyPalette_Poochyena",
|
|
3153
|
+
"footprintPics": "gMonFootprint_Poochyena",
|
|
3154
|
+
"width": "40",
|
|
3155
|
+
"height": "40",
|
|
3156
|
+
"iconPalIndex": "2",
|
|
3157
|
+
"Icon": "gMonIcon_Poochyena"
|
|
3158
|
+
},
|
|
3159
|
+
"MIGHTYENA": {
|
|
3160
|
+
"frontPics": "gMonFrontPic_Mightyena",
|
|
3161
|
+
"backPics": "gMonBackPic_Mightyena",
|
|
3162
|
+
"normPalette": "gMonPalette_Mightyena",
|
|
3163
|
+
"shinyPalette": "gMonShinyPalette_Mightyena",
|
|
3164
|
+
"footprintPics": "gMonFootprint_Mightyena",
|
|
3165
|
+
"width": "64",
|
|
3166
|
+
"height": "56",
|
|
3167
|
+
"iconPalIndex": "2",
|
|
3168
|
+
"Icon": "gMonIcon_Mightyena"
|
|
3169
|
+
},
|
|
3170
|
+
"ZIGZAGOON": {
|
|
3171
|
+
"frontPics": "gMonFrontPic_Zigzagoon",
|
|
3172
|
+
"backPics": "gMonBackPic_Zigzagoon",
|
|
3173
|
+
"normPalette": "gMonPalette_Zigzagoon",
|
|
3174
|
+
"shinyPalette": "gMonShinyPalette_Zigzagoon",
|
|
3175
|
+
"footprintPics": "gMonFootprint_Zigzagoon",
|
|
3176
|
+
"width": "64",
|
|
3177
|
+
"height": "40",
|
|
3178
|
+
"iconPalIndex": "2",
|
|
3179
|
+
"Icon": "gMonIcon_Zigzagoon"
|
|
3180
|
+
},
|
|
3181
|
+
"LINOONE": {
|
|
3182
|
+
"frontPics": "gMonFrontPic_Linoone",
|
|
3183
|
+
"backPics": "gMonBackPic_Linoone",
|
|
3184
|
+
"normPalette": "gMonPalette_Linoone",
|
|
3185
|
+
"shinyPalette": "gMonShinyPalette_Linoone",
|
|
3186
|
+
"footprintPics": "gMonFootprint_Linoone",
|
|
3187
|
+
"width": "56",
|
|
3188
|
+
"height": "64",
|
|
3189
|
+
"iconPalIndex": "2",
|
|
3190
|
+
"Icon": "gMonIcon_Linoone"
|
|
3191
|
+
},
|
|
3192
|
+
"WURMPLE": {
|
|
3193
|
+
"frontPics": "gMonFrontPic_Wurmple",
|
|
3194
|
+
"backPics": "gMonBackPic_Wurmple",
|
|
3195
|
+
"normPalette": "gMonPalette_Wurmple",
|
|
3196
|
+
"shinyPalette": "gMonShinyPalette_Wurmple",
|
|
3197
|
+
"footprintPics": "gMonFootprint_Wurmple",
|
|
3198
|
+
"width": "32",
|
|
3199
|
+
"height": "40",
|
|
3200
|
+
"iconPalIndex": "0",
|
|
3201
|
+
"Icon": "gMonIcon_Wurmple"
|
|
3202
|
+
},
|
|
3203
|
+
"SILCOON": {
|
|
3204
|
+
"frontPics": "gMonFrontPic_Silcoon",
|
|
3205
|
+
"backPics": "gMonBackPic_Silcoon",
|
|
3206
|
+
"normPalette": "gMonPalette_Silcoon",
|
|
3207
|
+
"shinyPalette": "gMonShinyPalette_Silcoon",
|
|
3208
|
+
"footprintPics": "gMonFootprint_Silcoon",
|
|
3209
|
+
"width": "56",
|
|
3210
|
+
"height": "40",
|
|
3211
|
+
"iconPalIndex": "2",
|
|
3212
|
+
"Icon": "gMonIcon_Silcoon"
|
|
3213
|
+
},
|
|
3214
|
+
"BEAUTIFLY": {
|
|
3215
|
+
"frontPics": "gMonFrontPic_Beautifly",
|
|
3216
|
+
"backPics": "gMonBackPic_Beautifly",
|
|
3217
|
+
"normPalette": "gMonPalette_Beautifly",
|
|
3218
|
+
"shinyPalette": "gMonShinyPalette_Beautifly",
|
|
3219
|
+
"footprintPics": "gMonFootprint_Beautifly",
|
|
3220
|
+
"width": "64",
|
|
3221
|
+
"height": "48",
|
|
3222
|
+
"iconPalIndex": "0",
|
|
3223
|
+
"Icon": "gMonIcon_Beautifly"
|
|
3224
|
+
},
|
|
3225
|
+
"CASCOON": {
|
|
3226
|
+
"frontPics": "gMonFrontPic_Cascoon",
|
|
3227
|
+
"backPics": "gMonBackPic_Cascoon",
|
|
3228
|
+
"normPalette": "gMonPalette_Cascoon",
|
|
3229
|
+
"shinyPalette": "gMonShinyPalette_Cascoon",
|
|
3230
|
+
"footprintPics": "gMonFootprint_Cascoon",
|
|
3231
|
+
"width": "56",
|
|
3232
|
+
"height": "32",
|
|
3233
|
+
"iconPalIndex": "2",
|
|
3234
|
+
"Icon": "gMonIcon_Cascoon"
|
|
3235
|
+
},
|
|
3236
|
+
"DUSTOX": {
|
|
3237
|
+
"frontPics": "gMonFrontPic_Dustox",
|
|
3238
|
+
"backPics": "gMonBackPic_Dustox",
|
|
3239
|
+
"normPalette": "gMonPalette_Dustox",
|
|
3240
|
+
"shinyPalette": "gMonShinyPalette_Dustox",
|
|
3241
|
+
"footprintPics": "gMonFootprint_Dustox",
|
|
3242
|
+
"width": "64",
|
|
3243
|
+
"height": "48",
|
|
3244
|
+
"iconPalIndex": "1",
|
|
3245
|
+
"Icon": "gMonIcon_Dustox"
|
|
3246
|
+
},
|
|
3247
|
+
"LOTAD": {
|
|
3248
|
+
"frontPics": "gMonFrontPic_Lotad",
|
|
3249
|
+
"backPics": "gMonBackPic_Lotad",
|
|
3250
|
+
"normPalette": "gMonPalette_Lotad",
|
|
3251
|
+
"shinyPalette": "gMonShinyPalette_Lotad",
|
|
3252
|
+
"footprintPics": "gMonFootprint_Lotad",
|
|
3253
|
+
"width": "48",
|
|
3254
|
+
"height": "40",
|
|
3255
|
+
"iconPalIndex": "1",
|
|
3256
|
+
"Icon": "gMonIcon_Lotad"
|
|
3257
|
+
},
|
|
3258
|
+
"LOMBRE": {
|
|
3259
|
+
"frontPics": "gMonFrontPic_Lombre",
|
|
3260
|
+
"backPics": "gMonBackPic_Lombre",
|
|
3261
|
+
"normPalette": "gMonPalette_Lombre",
|
|
3262
|
+
"shinyPalette": "gMonShinyPalette_Lombre",
|
|
3263
|
+
"footprintPics": "gMonFootprint_Lombre",
|
|
3264
|
+
"width": "48",
|
|
3265
|
+
"height": "48",
|
|
3266
|
+
"iconPalIndex": "1",
|
|
3267
|
+
"Icon": "gMonIcon_Lombre"
|
|
3268
|
+
},
|
|
3269
|
+
"LUDICOLO": {
|
|
3270
|
+
"frontPics": "gMonFrontPic_Ludicolo",
|
|
3271
|
+
"backPics": "gMonBackPic_Ludicolo",
|
|
3272
|
+
"normPalette": "gMonPalette_Ludicolo",
|
|
3273
|
+
"shinyPalette": "gMonShinyPalette_Ludicolo",
|
|
3274
|
+
"footprintPics": "gMonFootprint_Ludicolo",
|
|
3275
|
+
"width": "64",
|
|
3276
|
+
"height": "64",
|
|
3277
|
+
"iconPalIndex": "1",
|
|
3278
|
+
"Icon": "gMonIcon_Ludicolo"
|
|
3279
|
+
},
|
|
3280
|
+
"SEEDOT": {
|
|
3281
|
+
"frontPics": "gMonFrontPic_Seedot",
|
|
3282
|
+
"backPics": "gMonBackPic_Seedot",
|
|
3283
|
+
"normPalette": "gMonPalette_Seedot",
|
|
3284
|
+
"shinyPalette": "gMonShinyPalette_Seedot",
|
|
3285
|
+
"footprintPics": "gMonFootprint_Seedot",
|
|
3286
|
+
"width": "32",
|
|
3287
|
+
"height": "48",
|
|
3288
|
+
"iconPalIndex": "1",
|
|
3289
|
+
"Icon": "gMonIcon_Seedot"
|
|
3290
|
+
},
|
|
3291
|
+
"NUZLEAF": {
|
|
3292
|
+
"frontPics": "gMonFrontPic_Nuzleaf",
|
|
3293
|
+
"backPics": "gMonBackPic_Nuzleaf",
|
|
3294
|
+
"normPalette": "gMonPalette_Nuzleaf",
|
|
3295
|
+
"shinyPalette": "gMonShinyPalette_Nuzleaf",
|
|
3296
|
+
"footprintPics": "gMonFootprint_Nuzleaf",
|
|
3297
|
+
"width": "40",
|
|
3298
|
+
"height": "48",
|
|
3299
|
+
"iconPalIndex": "1",
|
|
3300
|
+
"Icon": "gMonIcon_Nuzleaf"
|
|
3301
|
+
},
|
|
3302
|
+
"SHIFTRY": {
|
|
3303
|
+
"frontPics": "gMonFrontPic_Shiftry",
|
|
3304
|
+
"backPics": "gMonBackPic_Shiftry",
|
|
3305
|
+
"normPalette": "gMonPalette_Shiftry",
|
|
3306
|
+
"shinyPalette": "gMonShinyPalette_Shiftry",
|
|
3307
|
+
"footprintPics": "gMonFootprint_Shiftry",
|
|
3308
|
+
"width": "64",
|
|
3309
|
+
"height": "64",
|
|
3310
|
+
"iconPalIndex": "0",
|
|
3311
|
+
"Icon": "gMonIcon_Shiftry"
|
|
3312
|
+
},
|
|
3313
|
+
"NINCADA": {
|
|
3314
|
+
"frontPics": "gMonFrontPic_Nincada",
|
|
3315
|
+
"backPics": "gMonBackPic_Nincada",
|
|
3316
|
+
"normPalette": "gMonPalette_Nincada",
|
|
3317
|
+
"shinyPalette": "gMonShinyPalette_Nincada",
|
|
3318
|
+
"footprintPics": "gMonFootprint_Nincada",
|
|
3319
|
+
"width": "56",
|
|
3320
|
+
"height": "32",
|
|
3321
|
+
"iconPalIndex": "1",
|
|
3322
|
+
"Icon": "gMonIcon_Nincada"
|
|
3323
|
+
},
|
|
3324
|
+
"NINJASK": {
|
|
3325
|
+
"frontPics": "gMonFrontPic_Ninjask",
|
|
3326
|
+
"backPics": "gMonBackPic_Ninjask",
|
|
3327
|
+
"normPalette": "gMonPalette_Ninjask",
|
|
3328
|
+
"shinyPalette": "gMonShinyPalette_Ninjask",
|
|
3329
|
+
"footprintPics": "gMonFootprint_Ninjask",
|
|
3330
|
+
"width": "64",
|
|
3331
|
+
"height": "48",
|
|
3332
|
+
"iconPalIndex": "1",
|
|
3333
|
+
"Icon": "gMonIcon_Ninjask"
|
|
3334
|
+
},
|
|
3335
|
+
"SHEDINJA": {
|
|
3336
|
+
"frontPics": "gMonFrontPic_Shedinja",
|
|
3337
|
+
"backPics": "gMonBackPic_Shedinja",
|
|
3338
|
+
"normPalette": "gMonPalette_Shedinja",
|
|
3339
|
+
"shinyPalette": "gMonShinyPalette_Shedinja",
|
|
3340
|
+
"footprintPics": "gMonFootprint_Shedinja",
|
|
3341
|
+
"width": "48",
|
|
3342
|
+
"height": "48",
|
|
3343
|
+
"iconPalIndex": "1",
|
|
3344
|
+
"Icon": "gMonIcon_Shedinja"
|
|
3345
|
+
},
|
|
3346
|
+
"TAILLOW": {
|
|
3347
|
+
"frontPics": "gMonFrontPic_Taillow",
|
|
3348
|
+
"backPics": "gMonBackPic_Taillow",
|
|
3349
|
+
"normPalette": "gMonPalette_Taillow",
|
|
3350
|
+
"shinyPalette": "gMonShinyPalette_Taillow",
|
|
3351
|
+
"footprintPics": "gMonFootprint_Taillow",
|
|
3352
|
+
"width": "48",
|
|
3353
|
+
"height": "32",
|
|
3354
|
+
"iconPalIndex": "2",
|
|
3355
|
+
"Icon": "gMonIcon_Taillow"
|
|
3356
|
+
},
|
|
3357
|
+
"SWELLOW": {
|
|
3358
|
+
"frontPics": "gMonFrontPic_Swellow",
|
|
3359
|
+
"backPics": "gMonBackPic_Swellow",
|
|
3360
|
+
"normPalette": "gMonPalette_Swellow",
|
|
3361
|
+
"shinyPalette": "gMonShinyPalette_Swellow",
|
|
3362
|
+
"footprintPics": "gMonFootprint_Swellow",
|
|
3363
|
+
"width": "64",
|
|
3364
|
+
"height": "56",
|
|
3365
|
+
"iconPalIndex": "2",
|
|
3366
|
+
"Icon": "gMonIcon_Swellow"
|
|
3367
|
+
},
|
|
3368
|
+
"SHROOMISH": {
|
|
3369
|
+
"frontPics": "gMonFrontPic_Shroomish",
|
|
3370
|
+
"backPics": "gMonBackPic_Shroomish",
|
|
3371
|
+
"normPalette": "gMonPalette_Shroomish",
|
|
3372
|
+
"shinyPalette": "gMonShinyPalette_Shroomish",
|
|
3373
|
+
"footprintPics": "gMonFootprint_Shroomish",
|
|
3374
|
+
"width": "40",
|
|
3375
|
+
"height": "32",
|
|
3376
|
+
"iconPalIndex": "1",
|
|
3377
|
+
"Icon": "gMonIcon_Shroomish"
|
|
3378
|
+
},
|
|
3379
|
+
"BRELOOM": {
|
|
3380
|
+
"frontPics": "gMonFrontPic_Breloom",
|
|
3381
|
+
"backPics": "gMonBackPic_Breloom",
|
|
3382
|
+
"normPalette": "gMonPalette_Breloom",
|
|
3383
|
+
"shinyPalette": "gMonShinyPalette_Breloom",
|
|
3384
|
+
"footprintPics": "gMonFootprint_Breloom",
|
|
3385
|
+
"width": "56",
|
|
3386
|
+
"height": "56",
|
|
3387
|
+
"iconPalIndex": "1",
|
|
3388
|
+
"Icon": "gMonIcon_Breloom"
|
|
3389
|
+
},
|
|
3390
|
+
"SPINDA": {
|
|
3391
|
+
"frontPics": "gMonFrontPic_Spinda",
|
|
3392
|
+
"backPics": "gMonBackPic_Spinda",
|
|
3393
|
+
"normPalette": "gMonPalette_Spinda",
|
|
3394
|
+
"shinyPalette": "gMonShinyPalette_Spinda",
|
|
3395
|
+
"footprintPics": "gMonFootprint_Spinda",
|
|
3396
|
+
"width": "48",
|
|
3397
|
+
"height": "56",
|
|
3398
|
+
"iconPalIndex": "1",
|
|
3399
|
+
"Icon": "gMonIcon_Spinda"
|
|
3400
|
+
},
|
|
3401
|
+
"WINGULL": {
|
|
3402
|
+
"frontPics": "gMonFrontPic_Wingull",
|
|
3403
|
+
"backPics": "gMonBackPic_Wingull",
|
|
3404
|
+
"normPalette": "gMonPalette_Wingull",
|
|
3405
|
+
"shinyPalette": "gMonShinyPalette_Wingull",
|
|
3406
|
+
"footprintPics": "gMonFootprint_Wingull",
|
|
3407
|
+
"width": "64",
|
|
3408
|
+
"height": "32",
|
|
3409
|
+
"iconPalIndex": "0",
|
|
3410
|
+
"Icon": "gMonIcon_Wingull"
|
|
3411
|
+
},
|
|
3412
|
+
"PELIPPER": {
|
|
3413
|
+
"frontPics": "gMonFrontPic_Pelipper",
|
|
3414
|
+
"backPics": "gMonBackPic_Pelipper",
|
|
3415
|
+
"normPalette": "gMonPalette_Pelipper",
|
|
3416
|
+
"shinyPalette": "gMonShinyPalette_Pelipper",
|
|
3417
|
+
"footprintPics": "gMonFootprint_Pelipper",
|
|
3418
|
+
"width": "56",
|
|
3419
|
+
"height": "56",
|
|
3420
|
+
"iconPalIndex": "0",
|
|
3421
|
+
"Icon": "gMonIcon_Pelipper"
|
|
3422
|
+
},
|
|
3423
|
+
"SURSKIT": {
|
|
3424
|
+
"frontPics": "gMonFrontPic_Surskit",
|
|
3425
|
+
"backPics": "gMonBackPic_Surskit",
|
|
3426
|
+
"normPalette": "gMonPalette_Surskit",
|
|
3427
|
+
"shinyPalette": "gMonShinyPalette_Surskit",
|
|
3428
|
+
"footprintPics": "gMonFootprint_Surskit",
|
|
3429
|
+
"width": "48",
|
|
3430
|
+
"height": "40",
|
|
3431
|
+
"iconPalIndex": "2",
|
|
3432
|
+
"Icon": "gMonIcon_Surskit"
|
|
3433
|
+
},
|
|
3434
|
+
"MASQUERAIN": {
|
|
3435
|
+
"frontPics": "gMonFrontPic_Masquerain",
|
|
3436
|
+
"backPics": "gMonBackPic_Masquerain",
|
|
3437
|
+
"normPalette": "gMonPalette_Masquerain",
|
|
3438
|
+
"shinyPalette": "gMonShinyPalette_Masquerain",
|
|
3439
|
+
"footprintPics": "gMonFootprint_Masquerain",
|
|
3440
|
+
"width": "64",
|
|
3441
|
+
"height": "64",
|
|
3442
|
+
"iconPalIndex": "0",
|
|
3443
|
+
"Icon": "gMonIcon_Masquerain"
|
|
3444
|
+
},
|
|
3445
|
+
"WAILMER": {
|
|
3446
|
+
"frontPics": "gMonFrontPic_Wailmer",
|
|
3447
|
+
"backPics": "gMonBackPic_Wailmer",
|
|
3448
|
+
"normPalette": "gMonPalette_Wailmer",
|
|
3449
|
+
"shinyPalette": "gMonShinyPalette_Wailmer",
|
|
3450
|
+
"footprintPics": "gMonFootprint_Wailmer",
|
|
3451
|
+
"width": "56",
|
|
3452
|
+
"height": "40",
|
|
3453
|
+
"iconPalIndex": "2",
|
|
3454
|
+
"Icon": "gMonIcon_Wailmer"
|
|
3455
|
+
},
|
|
3456
|
+
"WAILORD": {
|
|
3457
|
+
"frontPics": "gMonFrontPic_Wailord",
|
|
3458
|
+
"backPics": "gMonBackPic_Wailord",
|
|
3459
|
+
"normPalette": "gMonPalette_Wailord",
|
|
3460
|
+
"shinyPalette": "gMonShinyPalette_Wailord",
|
|
3461
|
+
"footprintPics": "gMonFootprint_Wailord",
|
|
3462
|
+
"width": "64",
|
|
3463
|
+
"height": "56",
|
|
3464
|
+
"iconPalIndex": "0",
|
|
3465
|
+
"Icon": "gMonIcon_Wailord"
|
|
3466
|
+
},
|
|
3467
|
+
"SKITTY": {
|
|
3468
|
+
"frontPics": "gMonFrontPic_Skitty",
|
|
3469
|
+
"backPics": "gMonBackPic_Skitty",
|
|
3470
|
+
"normPalette": "gMonPalette_Skitty",
|
|
3471
|
+
"shinyPalette": "gMonShinyPalette_Skitty",
|
|
3472
|
+
"footprintPics": "gMonFootprint_Skitty",
|
|
3473
|
+
"width": "48",
|
|
3474
|
+
"height": "48",
|
|
3475
|
+
"iconPalIndex": "0",
|
|
3476
|
+
"Icon": "gMonIcon_Skitty"
|
|
3477
|
+
},
|
|
3478
|
+
"DELCATTY": {
|
|
3479
|
+
"frontPics": "gMonFrontPic_Delcatty",
|
|
3480
|
+
"backPics": "gMonBackPic_Delcatty",
|
|
3481
|
+
"normPalette": "gMonPalette_Delcatty",
|
|
3482
|
+
"shinyPalette": "gMonShinyPalette_Delcatty",
|
|
3483
|
+
"footprintPics": "gMonFootprint_Delcatty",
|
|
3484
|
+
"width": "48",
|
|
3485
|
+
"height": "48",
|
|
3486
|
+
"iconPalIndex": "2",
|
|
3487
|
+
"Icon": "gMonIcon_Delcatty"
|
|
3488
|
+
},
|
|
3489
|
+
"KECLEON": {
|
|
3490
|
+
"frontPics": "gMonFrontPic_Kecleon",
|
|
3491
|
+
"backPics": "gMonBackPic_Kecleon",
|
|
3492
|
+
"normPalette": "gMonPalette_Kecleon",
|
|
3493
|
+
"shinyPalette": "gMonShinyPalette_Kecleon",
|
|
3494
|
+
"footprintPics": "gMonFootprint_Kecleon",
|
|
3495
|
+
"width": "48",
|
|
3496
|
+
"height": "56",
|
|
3497
|
+
"iconPalIndex": "1",
|
|
3498
|
+
"Icon": "gMonIcon_Kecleon"
|
|
3499
|
+
},
|
|
3500
|
+
"BALTOY": {
|
|
3501
|
+
"frontPics": "gMonFrontPic_Baltoy",
|
|
3502
|
+
"backPics": "gMonBackPic_Baltoy",
|
|
3503
|
+
"normPalette": "gMonPalette_Baltoy",
|
|
3504
|
+
"shinyPalette": "gMonShinyPalette_Baltoy",
|
|
3505
|
+
"footprintPics": "gMonFootprint_Baltoy",
|
|
3506
|
+
"width": "40",
|
|
3507
|
+
"height": "40",
|
|
3508
|
+
"iconPalIndex": "1",
|
|
3509
|
+
"Icon": "gMonIcon_Baltoy"
|
|
3510
|
+
},
|
|
3511
|
+
"CLAYDOL": {
|
|
3512
|
+
"frontPics": "gMonFrontPic_Claydol",
|
|
3513
|
+
"backPics": "gMonBackPic_Claydol",
|
|
3514
|
+
"normPalette": "gMonPalette_Claydol",
|
|
3515
|
+
"shinyPalette": "gMonShinyPalette_Claydol",
|
|
3516
|
+
"footprintPics": "gMonFootprint_Claydol",
|
|
3517
|
+
"width": "56",
|
|
3518
|
+
"height": "64",
|
|
3519
|
+
"iconPalIndex": "0",
|
|
3520
|
+
"Icon": "gMonIcon_Claydol"
|
|
3521
|
+
},
|
|
3522
|
+
"NOSEPASS": {
|
|
3523
|
+
"frontPics": "gMonFrontPic_Nosepass",
|
|
3524
|
+
"backPics": "gMonBackPic_Nosepass",
|
|
3525
|
+
"normPalette": "gMonPalette_Nosepass",
|
|
3526
|
+
"shinyPalette": "gMonShinyPalette_Nosepass",
|
|
3527
|
+
"footprintPics": "gMonFootprint_Nosepass",
|
|
3528
|
+
"width": "40",
|
|
3529
|
+
"height": "48",
|
|
3530
|
+
"iconPalIndex": "0",
|
|
3531
|
+
"Icon": "gMonIcon_Nosepass"
|
|
3532
|
+
},
|
|
3533
|
+
"TORKOAL": {
|
|
3534
|
+
"frontPics": "gMonFrontPic_Torkoal",
|
|
3535
|
+
"backPics": "gMonBackPic_Torkoal",
|
|
3536
|
+
"normPalette": "gMonPalette_Torkoal",
|
|
3537
|
+
"shinyPalette": "gMonShinyPalette_Torkoal",
|
|
3538
|
+
"footprintPics": "gMonFootprint_Torkoal",
|
|
3539
|
+
"width": "64",
|
|
3540
|
+
"height": "64",
|
|
3541
|
+
"iconPalIndex": "1",
|
|
3542
|
+
"Icon": "gMonIcon_Torkoal"
|
|
3543
|
+
},
|
|
3544
|
+
"SABLEYE": {
|
|
3545
|
+
"frontPics": "gMonFrontPic_Sableye",
|
|
3546
|
+
"backPics": "gMonBackPic_Sableye",
|
|
3547
|
+
"normPalette": "gMonPalette_Sableye",
|
|
3548
|
+
"shinyPalette": "gMonShinyPalette_Sableye",
|
|
3549
|
+
"footprintPics": "gMonFootprint_Sableye",
|
|
3550
|
+
"width": "48",
|
|
3551
|
+
"height": "48",
|
|
3552
|
+
"iconPalIndex": "2",
|
|
3553
|
+
"Icon": "gMonIcon_Sableye"
|
|
3554
|
+
},
|
|
3555
|
+
"BARBOACH": {
|
|
3556
|
+
"frontPics": "gMonFrontPic_Barboach",
|
|
3557
|
+
"backPics": "gMonBackPic_Barboach",
|
|
3558
|
+
"normPalette": "gMonPalette_Barboach",
|
|
3559
|
+
"shinyPalette": "gMonShinyPalette_Barboach",
|
|
3560
|
+
"footprintPics": "gMonFootprint_Barboach",
|
|
3561
|
+
"width": "32",
|
|
3562
|
+
"height": "48",
|
|
3563
|
+
"iconPalIndex": "0",
|
|
3564
|
+
"Icon": "gMonIcon_Barboach"
|
|
3565
|
+
},
|
|
3566
|
+
"WHISCASH": {
|
|
3567
|
+
"frontPics": "gMonFrontPic_Whiscash",
|
|
3568
|
+
"backPics": "gMonBackPic_Whiscash",
|
|
3569
|
+
"normPalette": "gMonPalette_Whiscash",
|
|
3570
|
+
"shinyPalette": "gMonShinyPalette_Whiscash",
|
|
3571
|
+
"footprintPics": "gMonFootprint_Whiscash",
|
|
3572
|
+
"width": "56",
|
|
3573
|
+
"height": "48",
|
|
3574
|
+
"iconPalIndex": "0",
|
|
3575
|
+
"Icon": "gMonIcon_Whiscash"
|
|
3576
|
+
},
|
|
3577
|
+
"LUVDISC": {
|
|
3578
|
+
"frontPics": "gMonFrontPic_Luvdisc",
|
|
3579
|
+
"backPics": "gMonBackPic_Luvdisc",
|
|
3580
|
+
"normPalette": "gMonPalette_Luvdisc",
|
|
3581
|
+
"shinyPalette": "gMonShinyPalette_Luvdisc",
|
|
3582
|
+
"footprintPics": "gMonFootprint_Luvdisc",
|
|
3583
|
+
"width": "32",
|
|
3584
|
+
"height": "48",
|
|
3585
|
+
"iconPalIndex": "0",
|
|
3586
|
+
"Icon": "gMonIcon_Luvdisc"
|
|
3587
|
+
},
|
|
3588
|
+
"CORPHISH": {
|
|
3589
|
+
"frontPics": "gMonFrontPic_Corphish",
|
|
3590
|
+
"backPics": "gMonBackPic_Corphish",
|
|
3591
|
+
"normPalette": "gMonPalette_Corphish",
|
|
3592
|
+
"shinyPalette": "gMonShinyPalette_Corphish",
|
|
3593
|
+
"footprintPics": "gMonFootprint_Corphish",
|
|
3594
|
+
"width": "48",
|
|
3595
|
+
"height": "48",
|
|
3596
|
+
"iconPalIndex": "0",
|
|
3597
|
+
"Icon": "gMonIcon_Corphish"
|
|
3598
|
+
},
|
|
3599
|
+
"CRAWDAUNT": {
|
|
3600
|
+
"frontPics": "gMonFrontPic_Crawdaunt",
|
|
3601
|
+
"backPics": "gMonBackPic_Crawdaunt",
|
|
3602
|
+
"normPalette": "gMonPalette_Crawdaunt",
|
|
3603
|
+
"shinyPalette": "gMonShinyPalette_Crawdaunt",
|
|
3604
|
+
"footprintPics": "gMonFootprint_Crawdaunt",
|
|
3605
|
+
"width": "64",
|
|
3606
|
+
"height": "64",
|
|
3607
|
+
"iconPalIndex": "0",
|
|
3608
|
+
"Icon": "gMonIcon_Crawdaunt"
|
|
3609
|
+
},
|
|
3610
|
+
"FEEBAS": {
|
|
3611
|
+
"frontPics": "gMonFrontPic_Feebas",
|
|
3612
|
+
"backPics": "gMonBackPic_Feebas",
|
|
3613
|
+
"normPalette": "gMonPalette_Feebas",
|
|
3614
|
+
"shinyPalette": "gMonShinyPalette_Feebas",
|
|
3615
|
+
"footprintPics": "gMonFootprint_Feebas",
|
|
3616
|
+
"width": "32",
|
|
3617
|
+
"height": "48",
|
|
3618
|
+
"iconPalIndex": "2",
|
|
3619
|
+
"Icon": "gMonIcon_Feebas"
|
|
3620
|
+
},
|
|
3621
|
+
"MILOTIC": {
|
|
3622
|
+
"frontPics": "gMonFrontPic_Milotic",
|
|
3623
|
+
"backPics": "gMonBackPic_Milotic",
|
|
3624
|
+
"normPalette": "gMonPalette_Milotic",
|
|
3625
|
+
"shinyPalette": "gMonShinyPalette_Milotic",
|
|
3626
|
+
"footprintPics": "gMonFootprint_Milotic",
|
|
3627
|
+
"width": "64",
|
|
3628
|
+
"height": "64",
|
|
3629
|
+
"iconPalIndex": "0",
|
|
3630
|
+
"Icon": "gMonIcon_Milotic"
|
|
3631
|
+
},
|
|
3632
|
+
"CARVANHA": {
|
|
3633
|
+
"frontPics": "gMonFrontPic_Carvanha",
|
|
3634
|
+
"backPics": "gMonBackPic_Carvanha",
|
|
3635
|
+
"normPalette": "gMonPalette_Carvanha",
|
|
3636
|
+
"shinyPalette": "gMonShinyPalette_Carvanha",
|
|
3637
|
+
"footprintPics": "gMonFootprint_Carvanha",
|
|
3638
|
+
"width": "48",
|
|
3639
|
+
"height": "56",
|
|
3640
|
+
"iconPalIndex": "0",
|
|
3641
|
+
"Icon": "gMonIcon_Carvanha"
|
|
3642
|
+
},
|
|
3643
|
+
"SHARPEDO": {
|
|
3644
|
+
"frontPics": "gMonFrontPic_Sharpedo",
|
|
3645
|
+
"backPics": "gMonBackPic_Sharpedo",
|
|
3646
|
+
"normPalette": "gMonPalette_Sharpedo",
|
|
3647
|
+
"shinyPalette": "gMonShinyPalette_Sharpedo",
|
|
3648
|
+
"footprintPics": "gMonFootprint_Sharpedo",
|
|
3649
|
+
"width": "56",
|
|
3650
|
+
"height": "64",
|
|
3651
|
+
"iconPalIndex": "0",
|
|
3652
|
+
"Icon": "gMonIcon_Sharpedo"
|
|
3653
|
+
},
|
|
3654
|
+
"TRAPINCH": {
|
|
3655
|
+
"frontPics": "gMonFrontPic_Trapinch",
|
|
3656
|
+
"backPics": "gMonBackPic_Trapinch",
|
|
3657
|
+
"normPalette": "gMonPalette_Trapinch",
|
|
3658
|
+
"shinyPalette": "gMonShinyPalette_Trapinch",
|
|
3659
|
+
"footprintPics": "gMonFootprint_Trapinch",
|
|
3660
|
+
"width": "40",
|
|
3661
|
+
"height": "32",
|
|
3662
|
+
"iconPalIndex": "1",
|
|
3663
|
+
"Icon": "gMonIcon_Trapinch"
|
|
3664
|
+
},
|
|
3665
|
+
"VIBRAVA": {
|
|
3666
|
+
"frontPics": "gMonFrontPic_Vibrava",
|
|
3667
|
+
"backPics": "gMonBackPic_Vibrava",
|
|
3668
|
+
"normPalette": "gMonPalette_Vibrava",
|
|
3669
|
+
"shinyPalette": "gMonShinyPalette_Vibrava",
|
|
3670
|
+
"footprintPics": "gMonFootprint_Vibrava",
|
|
3671
|
+
"width": "64",
|
|
3672
|
+
"height": "48",
|
|
3673
|
+
"iconPalIndex": "1",
|
|
3674
|
+
"Icon": "gMonIcon_Vibrava"
|
|
3675
|
+
},
|
|
3676
|
+
"FLYGON": {
|
|
3677
|
+
"frontPics": "gMonFrontPic_Flygon",
|
|
3678
|
+
"backPics": "gMonBackPic_Flygon",
|
|
3679
|
+
"normPalette": "gMonPalette_Flygon",
|
|
3680
|
+
"shinyPalette": "gMonShinyPalette_Flygon",
|
|
3681
|
+
"footprintPics": "gMonFootprint_Flygon",
|
|
3682
|
+
"width": "64",
|
|
3683
|
+
"height": "64",
|
|
3684
|
+
"iconPalIndex": "1",
|
|
3685
|
+
"Icon": "gMonIcon_Flygon"
|
|
3686
|
+
},
|
|
3687
|
+
"MAKUHITA": {
|
|
3688
|
+
"frontPics": "gMonFrontPic_Makuhita",
|
|
3689
|
+
"backPics": "gMonBackPic_Makuhita",
|
|
3690
|
+
"normPalette": "gMonPalette_Makuhita",
|
|
3691
|
+
"shinyPalette": "gMonShinyPalette_Makuhita",
|
|
3692
|
+
"footprintPics": "gMonFootprint_Makuhita",
|
|
3693
|
+
"width": "48",
|
|
3694
|
+
"height": "40",
|
|
3695
|
+
"iconPalIndex": "2",
|
|
3696
|
+
"Icon": "gMonIcon_Makuhita"
|
|
3697
|
+
},
|
|
3698
|
+
"HARIYAMA": {
|
|
3699
|
+
"frontPics": "gMonFrontPic_Hariyama",
|
|
3700
|
+
"backPics": "gMonBackPic_Hariyama",
|
|
3701
|
+
"normPalette": "gMonPalette_Hariyama",
|
|
3702
|
+
"shinyPalette": "gMonShinyPalette_Hariyama",
|
|
3703
|
+
"footprintPics": "gMonFootprint_Hariyama",
|
|
3704
|
+
"width": "64",
|
|
3705
|
+
"height": "64",
|
|
3706
|
+
"iconPalIndex": "1",
|
|
3707
|
+
"Icon": "gMonIcon_Hariyama"
|
|
3708
|
+
},
|
|
3709
|
+
"ELECTRIKE": {
|
|
3710
|
+
"frontPics": "gMonFrontPic_Electrike",
|
|
3711
|
+
"backPics": "gMonBackPic_Electrike",
|
|
3712
|
+
"normPalette": "gMonPalette_Electrike",
|
|
3713
|
+
"shinyPalette": "gMonShinyPalette_Electrike",
|
|
3714
|
+
"footprintPics": "gMonFootprint_Electrike",
|
|
3715
|
+
"width": "48",
|
|
3716
|
+
"height": "32",
|
|
3717
|
+
"iconPalIndex": "1",
|
|
3718
|
+
"Icon": "gMonIcon_Electrike"
|
|
3719
|
+
},
|
|
3720
|
+
"MANECTRIC": {
|
|
3721
|
+
"frontPics": "gMonFrontPic_Manectric",
|
|
3722
|
+
"backPics": "gMonBackPic_Manectric",
|
|
3723
|
+
"normPalette": "gMonPalette_Manectric",
|
|
3724
|
+
"shinyPalette": "gMonShinyPalette_Manectric",
|
|
3725
|
+
"footprintPics": "gMonFootprint_Manectric",
|
|
3726
|
+
"width": "48",
|
|
3727
|
+
"height": "56",
|
|
3728
|
+
"iconPalIndex": "0",
|
|
3729
|
+
"Icon": "gMonIcon_Manectric"
|
|
3730
|
+
},
|
|
3731
|
+
"NUMEL": {
|
|
3732
|
+
"frontPics": "gMonFrontPic_Numel",
|
|
3733
|
+
"backPics": "gMonBackPic_Numel",
|
|
3734
|
+
"normPalette": "gMonPalette_Numel",
|
|
3735
|
+
"shinyPalette": "gMonShinyPalette_Numel",
|
|
3736
|
+
"footprintPics": "gMonFootprint_Numel",
|
|
3737
|
+
"width": "48",
|
|
3738
|
+
"height": "40",
|
|
3739
|
+
"iconPalIndex": "1",
|
|
3740
|
+
"Icon": "gMonIcon_Numel"
|
|
3741
|
+
},
|
|
3742
|
+
"CAMERUPT": {
|
|
3743
|
+
"frontPics": "gMonFrontPic_Camerupt",
|
|
3744
|
+
"backPics": "gMonBackPic_Camerupt",
|
|
3745
|
+
"normPalette": "gMonPalette_Camerupt",
|
|
3746
|
+
"shinyPalette": "gMonShinyPalette_Camerupt",
|
|
3747
|
+
"footprintPics": "gMonFootprint_Camerupt",
|
|
3748
|
+
"width": "64",
|
|
3749
|
+
"height": "56",
|
|
3750
|
+
"iconPalIndex": "0",
|
|
3751
|
+
"Icon": "gMonIcon_Camerupt"
|
|
3752
|
+
},
|
|
3753
|
+
"SPHEAL": {
|
|
3754
|
+
"frontPics": "gMonFrontPic_Spheal",
|
|
3755
|
+
"backPics": "gMonBackPic_Spheal",
|
|
3756
|
+
"normPalette": "gMonPalette_Spheal",
|
|
3757
|
+
"shinyPalette": "gMonShinyPalette_Spheal",
|
|
3758
|
+
"footprintPics": "gMonFootprint_Spheal",
|
|
3759
|
+
"width": "48",
|
|
3760
|
+
"height": "40",
|
|
3761
|
+
"iconPalIndex": "2",
|
|
3762
|
+
"Icon": "gMonIcon_Spheal"
|
|
3763
|
+
},
|
|
3764
|
+
"SEALEO": {
|
|
3765
|
+
"frontPics": "gMonFrontPic_Sealeo",
|
|
3766
|
+
"backPics": "gMonBackPic_Sealeo",
|
|
3767
|
+
"normPalette": "gMonPalette_Sealeo",
|
|
3768
|
+
"shinyPalette": "gMonShinyPalette_Sealeo",
|
|
3769
|
+
"footprintPics": "gMonFootprint_Sealeo",
|
|
3770
|
+
"width": "64",
|
|
3771
|
+
"height": "48",
|
|
3772
|
+
"iconPalIndex": "2",
|
|
3773
|
+
"Icon": "gMonIcon_Sealeo"
|
|
3774
|
+
},
|
|
3775
|
+
"WALREIN": {
|
|
3776
|
+
"frontPics": "gMonFrontPic_Walrein",
|
|
3777
|
+
"backPics": "gMonBackPic_Walrein",
|
|
3778
|
+
"normPalette": "gMonPalette_Walrein",
|
|
3779
|
+
"shinyPalette": "gMonShinyPalette_Walrein",
|
|
3780
|
+
"footprintPics": "gMonFootprint_Walrein",
|
|
3781
|
+
"width": "64",
|
|
3782
|
+
"height": "64",
|
|
3783
|
+
"iconPalIndex": "0",
|
|
3784
|
+
"Icon": "gMonIcon_Walrein"
|
|
3785
|
+
},
|
|
3786
|
+
"CACNEA": {
|
|
3787
|
+
"frontPics": "gMonFrontPic_Cacnea",
|
|
3788
|
+
"backPics": "gMonBackPic_Cacnea",
|
|
3789
|
+
"normPalette": "gMonPalette_Cacnea",
|
|
3790
|
+
"shinyPalette": "gMonShinyPalette_Cacnea",
|
|
3791
|
+
"footprintPics": "gMonFootprint_Cacnea",
|
|
3792
|
+
"width": "56",
|
|
3793
|
+
"height": "32",
|
|
3794
|
+
"iconPalIndex": "1",
|
|
3795
|
+
"Icon": "gMonIcon_Cacnea"
|
|
3796
|
+
},
|
|
3797
|
+
"CACTURNE": {
|
|
3798
|
+
"frontPics": "gMonFrontPic_Cacturne",
|
|
3799
|
+
"backPics": "gMonBackPic_Cacturne",
|
|
3800
|
+
"normPalette": "gMonPalette_Cacturne",
|
|
3801
|
+
"shinyPalette": "gMonShinyPalette_Cacturne",
|
|
3802
|
+
"footprintPics": "gMonFootprint_Cacturne",
|
|
3803
|
+
"width": "64",
|
|
3804
|
+
"height": "64",
|
|
3805
|
+
"iconPalIndex": "1",
|
|
3806
|
+
"Icon": "gMonIcon_Cacturne"
|
|
3807
|
+
},
|
|
3808
|
+
"SNORUNT": {
|
|
3809
|
+
"frontPics": "gMonFrontPic_Snorunt",
|
|
3810
|
+
"backPics": "gMonBackPic_Snorunt",
|
|
3811
|
+
"normPalette": "gMonPalette_Snorunt",
|
|
3812
|
+
"shinyPalette": "gMonShinyPalette_Snorunt",
|
|
3813
|
+
"footprintPics": "gMonFootprint_Snorunt",
|
|
3814
|
+
"width": "40",
|
|
3815
|
+
"height": "48",
|
|
3816
|
+
"iconPalIndex": "2",
|
|
3817
|
+
"Icon": "gMonIcon_Snorunt"
|
|
3818
|
+
},
|
|
3819
|
+
"GLALIE": {
|
|
3820
|
+
"frontPics": "gMonFrontPic_Glalie",
|
|
3821
|
+
"backPics": "gMonBackPic_Glalie",
|
|
3822
|
+
"normPalette": "gMonPalette_Glalie",
|
|
3823
|
+
"shinyPalette": "gMonShinyPalette_Glalie",
|
|
3824
|
+
"footprintPics": "gMonFootprint_Glalie",
|
|
3825
|
+
"width": "56",
|
|
3826
|
+
"height": "48",
|
|
3827
|
+
"iconPalIndex": "0",
|
|
3828
|
+
"Icon": "gMonIcon_Glalie"
|
|
3829
|
+
},
|
|
3830
|
+
"LUNATONE": {
|
|
3831
|
+
"frontPics": "gMonFrontPic_Lunatone",
|
|
3832
|
+
"backPics": "gMonBackPic_Lunatone",
|
|
3833
|
+
"normPalette": "gMonPalette_Lunatone",
|
|
3834
|
+
"shinyPalette": "gMonShinyPalette_Lunatone",
|
|
3835
|
+
"footprintPics": "gMonFootprint_Lunatone",
|
|
3836
|
+
"width": "48",
|
|
3837
|
+
"height": "48",
|
|
3838
|
+
"iconPalIndex": "1",
|
|
3839
|
+
"Icon": "gMonIcon_Lunatone"
|
|
3840
|
+
},
|
|
3841
|
+
"SOLROCK": {
|
|
3842
|
+
"frontPics": "gMonFrontPic_Solrock",
|
|
3843
|
+
"backPics": "gMonBackPic_Solrock",
|
|
3844
|
+
"normPalette": "gMonPalette_Solrock",
|
|
3845
|
+
"shinyPalette": "gMonShinyPalette_Solrock",
|
|
3846
|
+
"footprintPics": "gMonFootprint_Solrock",
|
|
3847
|
+
"width": "64",
|
|
3848
|
+
"height": "64",
|
|
3849
|
+
"iconPalIndex": "0",
|
|
3850
|
+
"Icon": "gMonIcon_Solrock"
|
|
3851
|
+
},
|
|
3852
|
+
"AZURILL": {
|
|
3853
|
+
"frontPics": "gMonFrontPic_Azurill",
|
|
3854
|
+
"backPics": "gMonBackPic_Azurill",
|
|
3855
|
+
"normPalette": "gMonPalette_Azurill",
|
|
3856
|
+
"shinyPalette": "gMonShinyPalette_Azurill",
|
|
3857
|
+
"footprintPics": "gMonFootprint_Azurill",
|
|
3858
|
+
"width": "40",
|
|
3859
|
+
"height": "40",
|
|
3860
|
+
"iconPalIndex": "2",
|
|
3861
|
+
"Icon": "gMonIcon_Azurill"
|
|
3862
|
+
},
|
|
3863
|
+
"SPOINK": {
|
|
3864
|
+
"frontPics": "gMonFrontPic_Spoink",
|
|
3865
|
+
"backPics": "gMonBackPic_Spoink",
|
|
3866
|
+
"normPalette": "gMonPalette_Spoink",
|
|
3867
|
+
"shinyPalette": "gMonShinyPalette_Spoink",
|
|
3868
|
+
"footprintPics": "gMonFootprint_Spoink",
|
|
3869
|
+
"width": "32",
|
|
3870
|
+
"height": "48",
|
|
3871
|
+
"iconPalIndex": "0",
|
|
3872
|
+
"Icon": "gMonIcon_Spoink"
|
|
3873
|
+
},
|
|
3874
|
+
"GRUMPIG": {
|
|
3875
|
+
"frontPics": "gMonFrontPic_Grumpig",
|
|
3876
|
+
"backPics": "gMonBackPic_Grumpig",
|
|
3877
|
+
"normPalette": "gMonPalette_Grumpig",
|
|
3878
|
+
"shinyPalette": "gMonShinyPalette_Grumpig",
|
|
3879
|
+
"footprintPics": "gMonFootprint_Grumpig",
|
|
3880
|
+
"width": "56",
|
|
3881
|
+
"height": "56",
|
|
3882
|
+
"iconPalIndex": "2",
|
|
3883
|
+
"Icon": "gMonIcon_Grumpig"
|
|
3884
|
+
},
|
|
3885
|
+
"PLUSLE": {
|
|
3886
|
+
"frontPics": "gMonFrontPic_Plusle",
|
|
3887
|
+
"backPics": "gMonBackPic_Plusle",
|
|
3888
|
+
"normPalette": "gMonPalette_Plusle",
|
|
3889
|
+
"shinyPalette": "gMonShinyPalette_Plusle",
|
|
3890
|
+
"footprintPics": "gMonFootprint_Plusle",
|
|
3891
|
+
"width": "40",
|
|
3892
|
+
"height": "48",
|
|
3893
|
+
"iconPalIndex": "0",
|
|
3894
|
+
"Icon": "gMonIcon_Plusle"
|
|
3895
|
+
},
|
|
3896
|
+
"MINUN": {
|
|
3897
|
+
"frontPics": "gMonFrontPic_Minun",
|
|
3898
|
+
"backPics": "gMonBackPic_Minun",
|
|
3899
|
+
"normPalette": "gMonPalette_Minun",
|
|
3900
|
+
"shinyPalette": "gMonShinyPalette_Minun",
|
|
3901
|
+
"footprintPics": "gMonFootprint_Minun",
|
|
3902
|
+
"width": "48",
|
|
3903
|
+
"height": "48",
|
|
3904
|
+
"iconPalIndex": "0",
|
|
3905
|
+
"Icon": "gMonIcon_Minun"
|
|
3906
|
+
},
|
|
3907
|
+
"MAWILE": {
|
|
3908
|
+
"frontPics": "gMonFrontPic_Mawile",
|
|
3909
|
+
"backPics": "gMonBackPic_Mawile",
|
|
3910
|
+
"normPalette": "gMonPalette_Mawile",
|
|
3911
|
+
"shinyPalette": "gMonShinyPalette_Mawile",
|
|
3912
|
+
"footprintPics": "gMonFootprint_Mawile",
|
|
3913
|
+
"width": "56",
|
|
3914
|
+
"height": "48",
|
|
3915
|
+
"iconPalIndex": "2",
|
|
3916
|
+
"Icon": "gMonIcon_Mawile"
|
|
3917
|
+
},
|
|
3918
|
+
"MEDITITE": {
|
|
3919
|
+
"frontPics": "gMonFrontPic_Meditite",
|
|
3920
|
+
"backPics": "gMonBackPic_Meditite",
|
|
3921
|
+
"normPalette": "gMonPalette_Meditite",
|
|
3922
|
+
"shinyPalette": "gMonShinyPalette_Meditite",
|
|
3923
|
+
"footprintPics": "gMonFootprint_Meditite",
|
|
3924
|
+
"width": "48",
|
|
3925
|
+
"height": "40",
|
|
3926
|
+
"iconPalIndex": "0",
|
|
3927
|
+
"Icon": "gMonIcon_Meditite"
|
|
3928
|
+
},
|
|
3929
|
+
"MEDICHAM": {
|
|
3930
|
+
"frontPics": "gMonFrontPic_Medicham",
|
|
3931
|
+
"backPics": "gMonBackPic_Medicham",
|
|
3932
|
+
"normPalette": "gMonPalette_Medicham",
|
|
3933
|
+
"shinyPalette": "gMonShinyPalette_Medicham",
|
|
3934
|
+
"footprintPics": "gMonFootprint_Medicham",
|
|
3935
|
+
"width": "48",
|
|
3936
|
+
"height": "64",
|
|
3937
|
+
"iconPalIndex": "0",
|
|
3938
|
+
"Icon": "gMonIcon_Medicham"
|
|
3939
|
+
},
|
|
3940
|
+
"SWABLU": {
|
|
3941
|
+
"frontPics": "gMonFrontPic_Swablu",
|
|
3942
|
+
"backPics": "gMonBackPic_Swablu",
|
|
3943
|
+
"normPalette": "gMonPalette_Swablu",
|
|
3944
|
+
"shinyPalette": "gMonShinyPalette_Swablu",
|
|
3945
|
+
"footprintPics": "gMonFootprint_Swablu",
|
|
3946
|
+
"width": "56",
|
|
3947
|
+
"height": "48",
|
|
3948
|
+
"iconPalIndex": "0",
|
|
3949
|
+
"Icon": "gMonIcon_Swablu"
|
|
3950
|
+
},
|
|
3951
|
+
"ALTARIA": {
|
|
3952
|
+
"frontPics": "gMonFrontPic_Altaria",
|
|
3953
|
+
"backPics": "gMonBackPic_Altaria",
|
|
3954
|
+
"normPalette": "gMonPalette_Altaria",
|
|
3955
|
+
"shinyPalette": "gMonShinyPalette_Altaria",
|
|
3956
|
+
"footprintPics": "gMonFootprint_Altaria",
|
|
3957
|
+
"width": "64",
|
|
3958
|
+
"height": "64",
|
|
3959
|
+
"iconPalIndex": "0",
|
|
3960
|
+
"Icon": "gMonIcon_Altaria"
|
|
3961
|
+
},
|
|
3962
|
+
"WYNAUT": {
|
|
3963
|
+
"frontPics": "gMonFrontPic_Wynaut",
|
|
3964
|
+
"backPics": "gMonBackPic_Wynaut",
|
|
3965
|
+
"normPalette": "gMonPalette_Wynaut",
|
|
3966
|
+
"shinyPalette": "gMonShinyPalette_Wynaut",
|
|
3967
|
+
"footprintPics": "gMonFootprint_Wynaut",
|
|
3968
|
+
"width": "40",
|
|
3969
|
+
"height": "40",
|
|
3970
|
+
"iconPalIndex": "0",
|
|
3971
|
+
"Icon": "gMonIcon_Wynaut"
|
|
3972
|
+
},
|
|
3973
|
+
"DUSKULL": {
|
|
3974
|
+
"frontPics": "gMonFrontPic_Duskull",
|
|
3975
|
+
"backPics": "gMonBackPic_Duskull",
|
|
3976
|
+
"normPalette": "gMonPalette_Duskull",
|
|
3977
|
+
"shinyPalette": "gMonShinyPalette_Duskull",
|
|
3978
|
+
"footprintPics": "gMonFootprint_Duskull",
|
|
3979
|
+
"width": "48",
|
|
3980
|
+
"height": "48",
|
|
3981
|
+
"iconPalIndex": "0",
|
|
3982
|
+
"Icon": "gMonIcon_Duskull"
|
|
3983
|
+
},
|
|
3984
|
+
"DUSCLOPS": {
|
|
3985
|
+
"frontPics": "gMonFrontPic_Dusclops",
|
|
3986
|
+
"backPics": "gMonBackPic_Dusclops",
|
|
3987
|
+
"normPalette": "gMonPalette_Dusclops",
|
|
3988
|
+
"shinyPalette": "gMonShinyPalette_Dusclops",
|
|
3989
|
+
"footprintPics": "gMonFootprint_Dusclops",
|
|
3990
|
+
"width": "56",
|
|
3991
|
+
"height": "56",
|
|
3992
|
+
"iconPalIndex": "0",
|
|
3993
|
+
"Icon": "gMonIcon_Dusclops"
|
|
3994
|
+
},
|
|
3995
|
+
"ROSELIA": {
|
|
3996
|
+
"frontPics": "gMonFrontPic_Roselia",
|
|
3997
|
+
"backPics": "gMonBackPic_Roselia",
|
|
3998
|
+
"normPalette": "gMonPalette_Roselia",
|
|
3999
|
+
"shinyPalette": "gMonShinyPalette_Roselia",
|
|
4000
|
+
"footprintPics": "gMonFootprint_Roselia",
|
|
4001
|
+
"width": "56",
|
|
4002
|
+
"height": "48",
|
|
4003
|
+
"iconPalIndex": "0",
|
|
4004
|
+
"Icon": "gMonIcon_Roselia"
|
|
4005
|
+
},
|
|
4006
|
+
"SLAKOTH": {
|
|
4007
|
+
"frontPics": "gMonFrontPic_Slakoth",
|
|
4008
|
+
"backPics": "gMonBackPic_Slakoth",
|
|
4009
|
+
"normPalette": "gMonPalette_Slakoth",
|
|
4010
|
+
"shinyPalette": "gMonShinyPalette_Slakoth",
|
|
4011
|
+
"footprintPics": "gMonFootprint_Slakoth",
|
|
4012
|
+
"width": "56",
|
|
4013
|
+
"height": "32",
|
|
4014
|
+
"iconPalIndex": "2",
|
|
4015
|
+
"Icon": "gMonIcon_Slakoth"
|
|
4016
|
+
},
|
|
4017
|
+
"VIGOROTH": {
|
|
4018
|
+
"frontPics": "gMonFrontPic_Vigoroth",
|
|
4019
|
+
"backPics": "gMonBackPic_Vigoroth",
|
|
4020
|
+
"normPalette": "gMonPalette_Vigoroth",
|
|
4021
|
+
"shinyPalette": "gMonShinyPalette_Vigoroth",
|
|
4022
|
+
"footprintPics": "gMonFootprint_Vigoroth",
|
|
4023
|
+
"width": "56",
|
|
4024
|
+
"height": "64",
|
|
4025
|
+
"iconPalIndex": "2",
|
|
4026
|
+
"Icon": "gMonIcon_Vigoroth"
|
|
4027
|
+
},
|
|
4028
|
+
"SLAKING": {
|
|
4029
|
+
"frontPics": "gMonFrontPic_Slaking",
|
|
4030
|
+
"backPics": "gMonBackPic_Slaking",
|
|
4031
|
+
"normPalette": "gMonPalette_Slaking",
|
|
4032
|
+
"shinyPalette": "gMonShinyPalette_Slaking",
|
|
4033
|
+
"footprintPics": "gMonFootprint_Slaking",
|
|
4034
|
+
"width": "64",
|
|
4035
|
+
"height": "48",
|
|
4036
|
+
"iconPalIndex": "1",
|
|
4037
|
+
"Icon": "gMonIcon_Slaking"
|
|
4038
|
+
},
|
|
4039
|
+
"GULPIN": {
|
|
4040
|
+
"frontPics": "gMonFrontPic_Gulpin",
|
|
4041
|
+
"backPics": "gMonBackPic_Gulpin",
|
|
4042
|
+
"normPalette": "gMonPalette_Gulpin",
|
|
4043
|
+
"shinyPalette": "gMonShinyPalette_Gulpin",
|
|
4044
|
+
"footprintPics": "gMonFootprint_Gulpin",
|
|
4045
|
+
"width": "40",
|
|
4046
|
+
"height": "40",
|
|
4047
|
+
"iconPalIndex": "1",
|
|
4048
|
+
"Icon": "gMonIcon_Gulpin"
|
|
4049
|
+
},
|
|
4050
|
+
"SWALOT": {
|
|
4051
|
+
"frontPics": "gMonFrontPic_Swalot",
|
|
4052
|
+
"backPics": "gMonBackPic_Swalot",
|
|
4053
|
+
"normPalette": "gMonPalette_Swalot",
|
|
4054
|
+
"shinyPalette": "gMonShinyPalette_Swalot",
|
|
4055
|
+
"footprintPics": "gMonFootprint_Swalot",
|
|
4056
|
+
"width": "48",
|
|
4057
|
+
"height": "48",
|
|
4058
|
+
"iconPalIndex": "2",
|
|
4059
|
+
"Icon": "gMonIcon_Swalot"
|
|
4060
|
+
},
|
|
4061
|
+
"TROPIUS": {
|
|
4062
|
+
"frontPics": "gMonFrontPic_Tropius",
|
|
4063
|
+
"backPics": "gMonBackPic_Tropius",
|
|
4064
|
+
"normPalette": "gMonPalette_Tropius",
|
|
4065
|
+
"shinyPalette": "gMonShinyPalette_Tropius",
|
|
4066
|
+
"footprintPics": "gMonFootprint_Tropius",
|
|
4067
|
+
"width": "64",
|
|
4068
|
+
"height": "64",
|
|
4069
|
+
"iconPalIndex": "1",
|
|
4070
|
+
"Icon": "gMonIcon_Tropius"
|
|
4071
|
+
},
|
|
4072
|
+
"WHISMUR": {
|
|
4073
|
+
"frontPics": "gMonFrontPic_Whismur",
|
|
4074
|
+
"backPics": "gMonBackPic_Whismur",
|
|
4075
|
+
"normPalette": "gMonPalette_Whismur",
|
|
4076
|
+
"shinyPalette": "gMonShinyPalette_Whismur",
|
|
4077
|
+
"footprintPics": "gMonFootprint_Whismur",
|
|
4078
|
+
"width": "40",
|
|
4079
|
+
"height": "40",
|
|
4080
|
+
"iconPalIndex": "0",
|
|
4081
|
+
"Icon": "gMonIcon_Whismur"
|
|
4082
|
+
},
|
|
4083
|
+
"LOUDRED": {
|
|
4084
|
+
"frontPics": "gMonFrontPic_Loudred",
|
|
4085
|
+
"backPics": "gMonBackPic_Loudred",
|
|
4086
|
+
"normPalette": "gMonPalette_Loudred",
|
|
4087
|
+
"shinyPalette": "gMonShinyPalette_Loudred",
|
|
4088
|
+
"footprintPics": "gMonFootprint_Loudred",
|
|
4089
|
+
"width": "56",
|
|
4090
|
+
"height": "64",
|
|
4091
|
+
"iconPalIndex": "2",
|
|
4092
|
+
"Icon": "gMonIcon_Loudred"
|
|
4093
|
+
},
|
|
4094
|
+
"EXPLOUD": {
|
|
4095
|
+
"frontPics": "gMonFrontPic_Exploud",
|
|
4096
|
+
"backPics": "gMonBackPic_Exploud",
|
|
4097
|
+
"normPalette": "gMonPalette_Exploud",
|
|
4098
|
+
"shinyPalette": "gMonShinyPalette_Exploud",
|
|
4099
|
+
"footprintPics": "gMonFootprint_Exploud",
|
|
4100
|
+
"width": "64",
|
|
4101
|
+
"height": "64",
|
|
4102
|
+
"iconPalIndex": "2",
|
|
4103
|
+
"Icon": "gMonIcon_Exploud"
|
|
4104
|
+
},
|
|
4105
|
+
"CLAMPERL": {
|
|
4106
|
+
"frontPics": "gMonFrontPic_Clamperl",
|
|
4107
|
+
"backPics": "gMonBackPic_Clamperl",
|
|
4108
|
+
"normPalette": "gMonPalette_Clamperl",
|
|
4109
|
+
"shinyPalette": "gMonShinyPalette_Clamperl",
|
|
4110
|
+
"footprintPics": "gMonFootprint_Clamperl",
|
|
4111
|
+
"width": "40",
|
|
4112
|
+
"height": "40",
|
|
4113
|
+
"iconPalIndex": "0",
|
|
4114
|
+
"Icon": "gMonIcon_Clamperl"
|
|
4115
|
+
},
|
|
4116
|
+
"HUNTAIL": {
|
|
4117
|
+
"frontPics": "gMonFrontPic_Huntail",
|
|
4118
|
+
"backPics": "gMonBackPic_Huntail",
|
|
4119
|
+
"normPalette": "gMonPalette_Huntail",
|
|
4120
|
+
"shinyPalette": "gMonShinyPalette_Huntail",
|
|
4121
|
+
"footprintPics": "gMonFootprint_Huntail",
|
|
4122
|
+
"width": "56",
|
|
4123
|
+
"height": "64",
|
|
4124
|
+
"iconPalIndex": "0",
|
|
4125
|
+
"Icon": "gMonIcon_Huntail"
|
|
4126
|
+
},
|
|
4127
|
+
"GOREBYSS": {
|
|
4128
|
+
"frontPics": "gMonFrontPic_Gorebyss",
|
|
4129
|
+
"backPics": "gMonBackPic_Gorebyss",
|
|
4130
|
+
"normPalette": "gMonPalette_Gorebyss",
|
|
4131
|
+
"shinyPalette": "gMonShinyPalette_Gorebyss",
|
|
4132
|
+
"footprintPics": "gMonFootprint_Gorebyss",
|
|
4133
|
+
"width": "64",
|
|
4134
|
+
"height": "48",
|
|
4135
|
+
"iconPalIndex": "0",
|
|
4136
|
+
"Icon": "gMonIcon_Gorebyss"
|
|
4137
|
+
},
|
|
4138
|
+
"ABSOL": {
|
|
4139
|
+
"frontPics": "gMonFrontPic_Absol",
|
|
4140
|
+
"backPics": "gMonBackPic_Absol",
|
|
4141
|
+
"normPalette": "gMonPalette_Absol",
|
|
4142
|
+
"shinyPalette": "gMonShinyPalette_Absol",
|
|
4143
|
+
"footprintPics": "gMonFootprint_Absol",
|
|
4144
|
+
"width": "48",
|
|
4145
|
+
"height": "64",
|
|
4146
|
+
"iconPalIndex": "0",
|
|
4147
|
+
"Icon": "gMonIcon_Absol"
|
|
4148
|
+
},
|
|
4149
|
+
"SHUPPET": {
|
|
4150
|
+
"frontPics": "gMonFrontPic_Shuppet",
|
|
4151
|
+
"backPics": "gMonBackPic_Shuppet",
|
|
4152
|
+
"normPalette": "gMonPalette_Shuppet",
|
|
4153
|
+
"shinyPalette": "gMonShinyPalette_Shuppet",
|
|
4154
|
+
"footprintPics": "gMonFootprint_Shuppet",
|
|
4155
|
+
"width": "40",
|
|
4156
|
+
"height": "48",
|
|
4157
|
+
"iconPalIndex": "0",
|
|
4158
|
+
"Icon": "gMonIcon_Shuppet"
|
|
4159
|
+
},
|
|
4160
|
+
"BANETTE": {
|
|
4161
|
+
"frontPics": "gMonFrontPic_Banette",
|
|
4162
|
+
"backPics": "gMonBackPic_Banette",
|
|
4163
|
+
"normPalette": "gMonPalette_Banette",
|
|
4164
|
+
"shinyPalette": "gMonShinyPalette_Banette",
|
|
4165
|
+
"footprintPics": "gMonFootprint_Banette",
|
|
4166
|
+
"width": "40",
|
|
4167
|
+
"height": "40",
|
|
4168
|
+
"iconPalIndex": "0",
|
|
4169
|
+
"Icon": "gMonIcon_Banette"
|
|
4170
|
+
},
|
|
4171
|
+
"SEVIPER": {
|
|
4172
|
+
"frontPics": "gMonFrontPic_Seviper",
|
|
4173
|
+
"backPics": "gMonBackPic_Seviper",
|
|
4174
|
+
"normPalette": "gMonPalette_Seviper",
|
|
4175
|
+
"shinyPalette": "gMonShinyPalette_Seviper",
|
|
4176
|
+
"footprintPics": "gMonFootprint_Seviper",
|
|
4177
|
+
"width": "56",
|
|
4178
|
+
"height": "56",
|
|
4179
|
+
"iconPalIndex": "2",
|
|
4180
|
+
"Icon": "gMonIcon_Seviper"
|
|
4181
|
+
},
|
|
4182
|
+
"ZANGOOSE": {
|
|
4183
|
+
"frontPics": "gMonFrontPic_Zangoose",
|
|
4184
|
+
"backPics": "gMonBackPic_Zangoose",
|
|
4185
|
+
"normPalette": "gMonPalette_Zangoose",
|
|
4186
|
+
"shinyPalette": "gMonShinyPalette_Zangoose",
|
|
4187
|
+
"footprintPics": "gMonFootprint_Zangoose",
|
|
4188
|
+
"width": "64",
|
|
4189
|
+
"height": "56",
|
|
4190
|
+
"iconPalIndex": "0",
|
|
4191
|
+
"Icon": "gMonIcon_Zangoose"
|
|
4192
|
+
},
|
|
4193
|
+
"RELICANTH": {
|
|
4194
|
+
"frontPics": "gMonFrontPic_Relicanth",
|
|
4195
|
+
"backPics": "gMonBackPic_Relicanth",
|
|
4196
|
+
"normPalette": "gMonPalette_Relicanth",
|
|
4197
|
+
"shinyPalette": "gMonShinyPalette_Relicanth",
|
|
4198
|
+
"footprintPics": "gMonFootprint_Relicanth",
|
|
4199
|
+
"width": "56",
|
|
4200
|
+
"height": "56",
|
|
4201
|
+
"iconPalIndex": "1",
|
|
4202
|
+
"Icon": "gMonIcon_Relicanth"
|
|
4203
|
+
},
|
|
4204
|
+
"ARON": {
|
|
4205
|
+
"frontPics": "gMonFrontPic_Aron",
|
|
4206
|
+
"backPics": "gMonBackPic_Aron",
|
|
4207
|
+
"normPalette": "gMonPalette_Aron",
|
|
4208
|
+
"shinyPalette": "gMonShinyPalette_Aron",
|
|
4209
|
+
"footprintPics": "gMonFootprint_Aron",
|
|
4210
|
+
"width": "32",
|
|
4211
|
+
"height": "24",
|
|
4212
|
+
"iconPalIndex": "2",
|
|
4213
|
+
"Icon": "gMonIcon_Aron"
|
|
4214
|
+
},
|
|
4215
|
+
"LAIRON": {
|
|
4216
|
+
"frontPics": "gMonFrontPic_Lairon",
|
|
4217
|
+
"backPics": "gMonBackPic_Lairon",
|
|
4218
|
+
"normPalette": "gMonPalette_Lairon",
|
|
4219
|
+
"shinyPalette": "gMonShinyPalette_Lairon",
|
|
4220
|
+
"footprintPics": "gMonFootprint_Lairon",
|
|
4221
|
+
"width": "56",
|
|
4222
|
+
"height": "40",
|
|
4223
|
+
"iconPalIndex": "2",
|
|
4224
|
+
"Icon": "gMonIcon_Lairon"
|
|
4225
|
+
},
|
|
4226
|
+
"AGGRON": {
|
|
4227
|
+
"frontPics": "gMonFrontPic_Aggron",
|
|
4228
|
+
"backPics": "gMonBackPic_Aggron",
|
|
4229
|
+
"normPalette": "gMonPalette_Aggron",
|
|
4230
|
+
"shinyPalette": "gMonShinyPalette_Aggron",
|
|
4231
|
+
"footprintPics": "gMonFootprint_Aggron",
|
|
4232
|
+
"width": "64",
|
|
4233
|
+
"height": "64",
|
|
4234
|
+
"iconPalIndex": "2",
|
|
4235
|
+
"Icon": "gMonIcon_Aggron"
|
|
4236
|
+
},
|
|
4237
|
+
"CASTFORM": {
|
|
4238
|
+
"frontPics": "gMonFrontPic_Castform",
|
|
4239
|
+
"backPics": "gMonBackPic_Castform",
|
|
4240
|
+
"normPalette": "gMonPalette_Castform",
|
|
4241
|
+
"shinyPalette": "gMonShinyPalette_Castform",
|
|
4242
|
+
"footprintPics": "gMonFootprint_Castform",
|
|
4243
|
+
"width": "24",
|
|
4244
|
+
"height": "32",
|
|
4245
|
+
"iconPalIndex": "0",
|
|
4246
|
+
"Icon": "gMonIcon_Castform"
|
|
4247
|
+
},
|
|
4248
|
+
"VOLBEAT": {
|
|
4249
|
+
"frontPics": "gMonFrontPic_Volbeat",
|
|
4250
|
+
"backPics": "gMonBackPic_Volbeat",
|
|
4251
|
+
"normPalette": "gMonPalette_Volbeat",
|
|
4252
|
+
"shinyPalette": "gMonShinyPalette_Volbeat",
|
|
4253
|
+
"footprintPics": "gMonFootprint_Volbeat",
|
|
4254
|
+
"width": "48",
|
|
4255
|
+
"height": "48",
|
|
4256
|
+
"iconPalIndex": "0",
|
|
4257
|
+
"Icon": "gMonIcon_Volbeat"
|
|
4258
|
+
},
|
|
4259
|
+
"ILLUMISE": {
|
|
4260
|
+
"frontPics": "gMonFrontPic_Illumise",
|
|
4261
|
+
"backPics": "gMonBackPic_Illumise",
|
|
4262
|
+
"normPalette": "gMonPalette_Illumise",
|
|
4263
|
+
"shinyPalette": "gMonShinyPalette_Illumise",
|
|
4264
|
+
"footprintPics": "gMonFootprint_Illumise",
|
|
4265
|
+
"width": "40",
|
|
4266
|
+
"height": "48",
|
|
4267
|
+
"iconPalIndex": "2",
|
|
4268
|
+
"Icon": "gMonIcon_Illumise"
|
|
4269
|
+
},
|
|
4270
|
+
"LILEEP": {
|
|
4271
|
+
"frontPics": "gMonFrontPic_Lileep",
|
|
4272
|
+
"backPics": "gMonBackPic_Lileep",
|
|
4273
|
+
"normPalette": "gMonPalette_Lileep",
|
|
4274
|
+
"shinyPalette": "gMonShinyPalette_Lileep",
|
|
4275
|
+
"footprintPics": "gMonFootprint_Lileep",
|
|
4276
|
+
"width": "48",
|
|
4277
|
+
"height": "56",
|
|
4278
|
+
"iconPalIndex": "2",
|
|
4279
|
+
"Icon": "gMonIcon_Lileep"
|
|
4280
|
+
},
|
|
4281
|
+
"CRADILY": {
|
|
4282
|
+
"frontPics": "gMonFrontPic_Cradily",
|
|
4283
|
+
"backPics": "gMonBackPic_Cradily",
|
|
4284
|
+
"normPalette": "gMonPalette_Cradily",
|
|
4285
|
+
"shinyPalette": "gMonShinyPalette_Cradily",
|
|
4286
|
+
"footprintPics": "gMonFootprint_Cradily",
|
|
4287
|
+
"width": "56",
|
|
4288
|
+
"height": "64",
|
|
4289
|
+
"iconPalIndex": "0",
|
|
4290
|
+
"Icon": "gMonIcon_Cradily"
|
|
4291
|
+
},
|
|
4292
|
+
"ANORITH": {
|
|
4293
|
+
"frontPics": "gMonFrontPic_Anorith",
|
|
4294
|
+
"backPics": "gMonBackPic_Anorith",
|
|
4295
|
+
"normPalette": "gMonPalette_Anorith",
|
|
4296
|
+
"shinyPalette": "gMonShinyPalette_Anorith",
|
|
4297
|
+
"footprintPics": "gMonFootprint_Anorith",
|
|
4298
|
+
"width": "48",
|
|
4299
|
+
"height": "48",
|
|
4300
|
+
"iconPalIndex": "0",
|
|
4301
|
+
"Icon": "gMonIcon_Anorith"
|
|
4302
|
+
},
|
|
4303
|
+
"ARMALDO": {
|
|
4304
|
+
"frontPics": "gMonFrontPic_Armaldo",
|
|
4305
|
+
"backPics": "gMonBackPic_Armaldo",
|
|
4306
|
+
"normPalette": "gMonPalette_Armaldo",
|
|
4307
|
+
"shinyPalette": "gMonShinyPalette_Armaldo",
|
|
4308
|
+
"footprintPics": "gMonFootprint_Armaldo",
|
|
4309
|
+
"width": "64",
|
|
4310
|
+
"height": "64",
|
|
4311
|
+
"iconPalIndex": "0",
|
|
4312
|
+
"Icon": "gMonIcon_Armaldo"
|
|
4313
|
+
},
|
|
4314
|
+
"RALTS": {
|
|
4315
|
+
"frontPics": "gMonFrontPic_Ralts",
|
|
4316
|
+
"backPics": "gMonBackPic_Ralts",
|
|
4317
|
+
"normPalette": "gMonPalette_Ralts",
|
|
4318
|
+
"shinyPalette": "gMonShinyPalette_Ralts",
|
|
4319
|
+
"footprintPics": "gMonFootprint_Ralts",
|
|
4320
|
+
"width": "24",
|
|
4321
|
+
"height": "40",
|
|
4322
|
+
"iconPalIndex": "1",
|
|
4323
|
+
"Icon": "gMonIcon_Ralts"
|
|
4324
|
+
},
|
|
4325
|
+
"KIRLIA": {
|
|
4326
|
+
"frontPics": "gMonFrontPic_Kirlia",
|
|
4327
|
+
"backPics": "gMonBackPic_Kirlia",
|
|
4328
|
+
"normPalette": "gMonPalette_Kirlia",
|
|
4329
|
+
"shinyPalette": "gMonShinyPalette_Kirlia",
|
|
4330
|
+
"footprintPics": "gMonFootprint_Kirlia",
|
|
4331
|
+
"width": "32",
|
|
4332
|
+
"height": "56",
|
|
4333
|
+
"iconPalIndex": "1",
|
|
4334
|
+
"Icon": "gMonIcon_Kirlia"
|
|
4335
|
+
},
|
|
4336
|
+
"GARDEVOIR": {
|
|
4337
|
+
"frontPics": "gMonFrontPic_Gardevoir",
|
|
4338
|
+
"backPics": "gMonBackPic_Gardevoir",
|
|
4339
|
+
"normPalette": "gMonPalette_Gardevoir",
|
|
4340
|
+
"shinyPalette": "gMonShinyPalette_Gardevoir",
|
|
4341
|
+
"footprintPics": "gMonFootprint_Gardevoir",
|
|
4342
|
+
"width": "56",
|
|
4343
|
+
"height": "64",
|
|
4344
|
+
"iconPalIndex": "1",
|
|
4345
|
+
"Icon": "gMonIcon_Gardevoir"
|
|
4346
|
+
},
|
|
4347
|
+
"BAGON": {
|
|
4348
|
+
"frontPics": "gMonFrontPic_Bagon",
|
|
4349
|
+
"backPics": "gMonBackPic_Bagon",
|
|
4350
|
+
"normPalette": "gMonPalette_Bagon",
|
|
4351
|
+
"shinyPalette": "gMonShinyPalette_Bagon",
|
|
4352
|
+
"footprintPics": "gMonFootprint_Bagon",
|
|
4353
|
+
"width": "40",
|
|
4354
|
+
"height": "48",
|
|
4355
|
+
"iconPalIndex": "2",
|
|
4356
|
+
"Icon": "gMonIcon_Bagon"
|
|
4357
|
+
},
|
|
4358
|
+
"SHELGON": {
|
|
4359
|
+
"frontPics": "gMonFrontPic_Shelgon",
|
|
4360
|
+
"backPics": "gMonBackPic_Shelgon",
|
|
4361
|
+
"normPalette": "gMonPalette_Shelgon",
|
|
4362
|
+
"shinyPalette": "gMonShinyPalette_Shelgon",
|
|
4363
|
+
"footprintPics": "gMonFootprint_Shelgon",
|
|
4364
|
+
"width": "48",
|
|
4365
|
+
"height": "48",
|
|
4366
|
+
"iconPalIndex": "2",
|
|
4367
|
+
"Icon": "gMonIcon_Shelgon"
|
|
4368
|
+
},
|
|
4369
|
+
"SALAMENCE": {
|
|
4370
|
+
"frontPics": "gMonFrontPic_Salamence",
|
|
4371
|
+
"backPics": "gMonBackPic_Salamence",
|
|
4372
|
+
"normPalette": "gMonPalette_Salamence",
|
|
4373
|
+
"shinyPalette": "gMonShinyPalette_Salamence",
|
|
4374
|
+
"footprintPics": "gMonFootprint_Salamence",
|
|
4375
|
+
"width": "64",
|
|
4376
|
+
"height": "56",
|
|
4377
|
+
"iconPalIndex": "0",
|
|
4378
|
+
"Icon": "gMonIcon_Salamence"
|
|
4379
|
+
},
|
|
4380
|
+
"BELDUM": {
|
|
4381
|
+
"frontPics": "gMonFrontPic_Beldum",
|
|
4382
|
+
"backPics": "gMonBackPic_Beldum",
|
|
4383
|
+
"normPalette": "gMonPalette_Beldum",
|
|
4384
|
+
"shinyPalette": "gMonShinyPalette_Beldum",
|
|
4385
|
+
"footprintPics": "gMonFootprint_Beldum",
|
|
4386
|
+
"width": "40",
|
|
4387
|
+
"height": "40",
|
|
4388
|
+
"iconPalIndex": "0",
|
|
4389
|
+
"Icon": "gMonIcon_Beldum"
|
|
4390
|
+
},
|
|
4391
|
+
"METANG": {
|
|
4392
|
+
"frontPics": "gMonFrontPic_Metang",
|
|
4393
|
+
"backPics": "gMonBackPic_Metang",
|
|
4394
|
+
"normPalette": "gMonPalette_Metang",
|
|
4395
|
+
"shinyPalette": "gMonShinyPalette_Metang",
|
|
4396
|
+
"footprintPics": "gMonFootprint_Metang",
|
|
4397
|
+
"width": "64",
|
|
4398
|
+
"height": "56",
|
|
4399
|
+
"iconPalIndex": "0",
|
|
4400
|
+
"Icon": "gMonIcon_Metang"
|
|
4401
|
+
},
|
|
4402
|
+
"METAGROSS": {
|
|
4403
|
+
"frontPics": "gMonFrontPic_Metagross",
|
|
4404
|
+
"backPics": "gMonBackPic_Metagross",
|
|
4405
|
+
"normPalette": "gMonPalette_Metagross",
|
|
4406
|
+
"shinyPalette": "gMonShinyPalette_Metagross",
|
|
4407
|
+
"footprintPics": "gMonFootprint_Metagross",
|
|
4408
|
+
"width": "64",
|
|
4409
|
+
"height": "56",
|
|
4410
|
+
"iconPalIndex": "0",
|
|
4411
|
+
"Icon": "gMonIcon_Metagross"
|
|
4412
|
+
},
|
|
4413
|
+
"REGIROCK": {
|
|
4414
|
+
"frontPics": "gMonFrontPic_Regirock",
|
|
4415
|
+
"backPics": "gMonBackPic_Regirock",
|
|
4416
|
+
"normPalette": "gMonPalette_Regirock",
|
|
4417
|
+
"shinyPalette": "gMonShinyPalette_Regirock",
|
|
4418
|
+
"footprintPics": "gMonFootprint_Regirock",
|
|
4419
|
+
"width": "56",
|
|
4420
|
+
"height": "64",
|
|
4421
|
+
"iconPalIndex": "2",
|
|
4422
|
+
"Icon": "gMonIcon_Regirock"
|
|
4423
|
+
},
|
|
4424
|
+
"REGICE": {
|
|
4425
|
+
"frontPics": "gMonFrontPic_Regice",
|
|
4426
|
+
"backPics": "gMonBackPic_Regice",
|
|
4427
|
+
"normPalette": "gMonPalette_Regice",
|
|
4428
|
+
"shinyPalette": "gMonShinyPalette_Regice",
|
|
4429
|
+
"footprintPics": "gMonFootprint_Regice",
|
|
4430
|
+
"width": "64",
|
|
4431
|
+
"height": "64",
|
|
4432
|
+
"iconPalIndex": "2",
|
|
4433
|
+
"Icon": "gMonIcon_Regice"
|
|
4434
|
+
},
|
|
4435
|
+
"REGISTEEL": {
|
|
4436
|
+
"frontPics": "gMonFrontPic_Registeel",
|
|
4437
|
+
"backPics": "gMonBackPic_Registeel",
|
|
4438
|
+
"normPalette": "gMonPalette_Registeel",
|
|
4439
|
+
"shinyPalette": "gMonShinyPalette_Registeel",
|
|
4440
|
+
"footprintPics": "gMonFootprint_Registeel",
|
|
4441
|
+
"width": "64",
|
|
4442
|
+
"height": "64",
|
|
4443
|
+
"iconPalIndex": "2",
|
|
4444
|
+
"Icon": "gMonIcon_Registeel"
|
|
4445
|
+
},
|
|
4446
|
+
"KYOGRE": {
|
|
4447
|
+
"frontPics": "gMonFrontPic_Kyogre",
|
|
4448
|
+
"backPics": "gMonBackPic_Kyogre",
|
|
4449
|
+
"normPalette": "gMonPalette_Kyogre",
|
|
4450
|
+
"shinyPalette": "gMonShinyPalette_Kyogre",
|
|
4451
|
+
"footprintPics": "gMonFootprint_Kyogre",
|
|
4452
|
+
"width": "64",
|
|
4453
|
+
"height": "56",
|
|
4454
|
+
"iconPalIndex": "2",
|
|
4455
|
+
"Icon": "gMonIcon_Kyogre"
|
|
4456
|
+
},
|
|
4457
|
+
"GROUDON": {
|
|
4458
|
+
"frontPics": "gMonFrontPic_Groudon",
|
|
4459
|
+
"backPics": "gMonBackPic_Groudon",
|
|
4460
|
+
"normPalette": "gMonPalette_Groudon",
|
|
4461
|
+
"shinyPalette": "gMonShinyPalette_Groudon",
|
|
4462
|
+
"footprintPics": "gMonFootprint_Groudon",
|
|
4463
|
+
"width": "64",
|
|
4464
|
+
"height": "64",
|
|
4465
|
+
"iconPalIndex": "0",
|
|
4466
|
+
"Icon": "gMonIcon_Groudon"
|
|
4467
|
+
},
|
|
4468
|
+
"RAYQUAZA": {
|
|
4469
|
+
"frontPics": "gMonFrontPic_Rayquaza",
|
|
4470
|
+
"backPics": "gMonBackPic_Rayquaza",
|
|
4471
|
+
"normPalette": "gMonPalette_Rayquaza",
|
|
4472
|
+
"shinyPalette": "gMonShinyPalette_Rayquaza",
|
|
4473
|
+
"footprintPics": "gMonFootprint_Rayquaza",
|
|
4474
|
+
"width": "64",
|
|
4475
|
+
"height": "64",
|
|
4476
|
+
"iconPalIndex": "1",
|
|
4477
|
+
"Icon": "gMonIcon_Rayquaza"
|
|
4478
|
+
},
|
|
4479
|
+
"LATIAS": {
|
|
4480
|
+
"frontPics": "gMonFrontPic_Latias",
|
|
4481
|
+
"backPics": "gMonBackPic_Latias",
|
|
4482
|
+
"normPalette": "gMonPalette_Latias",
|
|
4483
|
+
"shinyPalette": "gMonShinyPalette_Latias",
|
|
4484
|
+
"footprintPics": "gMonFootprint_Latias",
|
|
4485
|
+
"width": "64",
|
|
4486
|
+
"height": "64",
|
|
4487
|
+
"iconPalIndex": "0",
|
|
4488
|
+
"Icon": "gMonIcon_Latias"
|
|
4489
|
+
},
|
|
4490
|
+
"LATIOS": {
|
|
4491
|
+
"frontPics": "gMonFrontPic_Latios",
|
|
4492
|
+
"backPics": "gMonBackPic_Latios",
|
|
4493
|
+
"normPalette": "gMonPalette_Latios",
|
|
4494
|
+
"shinyPalette": "gMonShinyPalette_Latios",
|
|
4495
|
+
"footprintPics": "gMonFootprint_Latios",
|
|
4496
|
+
"width": "64",
|
|
4497
|
+
"height": "64",
|
|
4498
|
+
"iconPalIndex": "2",
|
|
4499
|
+
"Icon": "gMonIcon_Latios"
|
|
4500
|
+
},
|
|
4501
|
+
"JIRACHI": {
|
|
4502
|
+
"frontPics": "gMonFrontPic_Jirachi",
|
|
4503
|
+
"backPics": "gMonBackPic_Jirachi",
|
|
4504
|
+
"normPalette": "gMonPalette_Jirachi",
|
|
4505
|
+
"shinyPalette": "gMonShinyPalette_Jirachi",
|
|
4506
|
+
"footprintPics": "gMonFootprint_Jirachi",
|
|
4507
|
+
"width": "48",
|
|
4508
|
+
"height": "48",
|
|
4509
|
+
"iconPalIndex": "0",
|
|
4510
|
+
"Icon": "gMonIcon_Jirachi"
|
|
4511
|
+
},
|
|
4512
|
+
"DEOXYS": {
|
|
4513
|
+
"frontPics": "gMonFrontPic_Deoxys",
|
|
4514
|
+
"backPics": "gMonBackPic_Deoxys",
|
|
4515
|
+
"normPalette": "gMonPalette_Deoxys",
|
|
4516
|
+
"shinyPalette": "gMonShinyPalette_Deoxys",
|
|
4517
|
+
"footprintPics": "gMonFootprint_Deoxys",
|
|
4518
|
+
"width": "64",
|
|
4519
|
+
"height": "64",
|
|
4520
|
+
"iconPalIndex": "0",
|
|
4521
|
+
"Icon": "gMonIcon_Deoxys"
|
|
4522
|
+
},
|
|
4523
|
+
"CHIMECHO": {
|
|
4524
|
+
"frontPics": "gMonFrontPic_Chimecho",
|
|
4525
|
+
"backPics": "gMonBackPic_Chimecho",
|
|
4526
|
+
"normPalette": "gMonPalette_Chimecho",
|
|
4527
|
+
"shinyPalette": "gMonShinyPalette_Chimecho",
|
|
4528
|
+
"footprintPics": "gMonFootprint_Chimecho",
|
|
4529
|
+
"width": "24",
|
|
4530
|
+
"height": "56",
|
|
4531
|
+
"iconPalIndex": "0",
|
|
4532
|
+
"Icon": "gMonIcon_Chimecho"
|
|
4533
|
+
},
|
|
4534
|
+
"EGG": {
|
|
4535
|
+
"frontPics": "gMonFrontPic_Egg",
|
|
4536
|
+
"backPics": "gMonFrontPic_Egg",
|
|
4537
|
+
"normPalette": "gMonPalette_Egg",
|
|
4538
|
+
"shinyPalette": "gMonPalette_Egg",
|
|
4539
|
+
"footprintPics": "gMonFootprint_Bulbasaur",
|
|
4540
|
+
"width": "24",
|
|
4541
|
+
"height": "24",
|
|
4542
|
+
"iconPalIndex": "1",
|
|
4543
|
+
"Icon": "gMonIcon_Egg"
|
|
4544
|
+
},
|
|
4545
|
+
"UNOWN_B": {
|
|
4546
|
+
"frontPics": "gMonFrontPic_UnownB",
|
|
4547
|
+
"backPics": "gMonBackPic_UnownB",
|
|
4548
|
+
"normPalette": "gMonPalette_Unown",
|
|
4549
|
+
"shinyPalette": "gMonShinyPalette_Unown",
|
|
4550
|
+
"width": "24",
|
|
4551
|
+
"height": "32",
|
|
4552
|
+
"iconPalIndex": "0",
|
|
4553
|
+
"Icon": "gMonIcon_UnownB"
|
|
4554
|
+
},
|
|
4555
|
+
"UNOWN_C": {
|
|
4556
|
+
"frontPics": "gMonFrontPic_UnownC",
|
|
4557
|
+
"backPics": "gMonBackPic_UnownC",
|
|
4558
|
+
"normPalette": "gMonPalette_Unown",
|
|
4559
|
+
"shinyPalette": "gMonShinyPalette_Unown",
|
|
4560
|
+
"width": "32",
|
|
4561
|
+
"height": "32",
|
|
4562
|
+
"iconPalIndex": "0",
|
|
4563
|
+
"Icon": "gMonIcon_UnownC"
|
|
4564
|
+
},
|
|
4565
|
+
"UNOWN_D": {
|
|
4566
|
+
"frontPics": "gMonFrontPic_UnownD",
|
|
4567
|
+
"backPics": "gMonBackPic_UnownD",
|
|
4568
|
+
"normPalette": "gMonPalette_Unown",
|
|
4569
|
+
"shinyPalette": "gMonShinyPalette_Unown",
|
|
4570
|
+
"width": "32",
|
|
4571
|
+
"height": "32",
|
|
4572
|
+
"iconPalIndex": "0",
|
|
4573
|
+
"Icon": "gMonIcon_UnownD"
|
|
4574
|
+
},
|
|
4575
|
+
"UNOWN_E": {
|
|
4576
|
+
"frontPics": "gMonFrontPic_UnownE",
|
|
4577
|
+
"backPics": "gMonBackPic_UnownE",
|
|
4578
|
+
"normPalette": "gMonPalette_Unown",
|
|
4579
|
+
"shinyPalette": "gMonShinyPalette_Unown",
|
|
4580
|
+
"width": "32",
|
|
4581
|
+
"height": "32",
|
|
4582
|
+
"iconPalIndex": "0",
|
|
4583
|
+
"Icon": "gMonIcon_UnownE"
|
|
4584
|
+
},
|
|
4585
|
+
"UNOWN_F": {
|
|
4586
|
+
"frontPics": "gMonFrontPic_UnownF",
|
|
4587
|
+
"backPics": "gMonBackPic_UnownF",
|
|
4588
|
+
"normPalette": "gMonPalette_Unown",
|
|
4589
|
+
"shinyPalette": "gMonShinyPalette_Unown",
|
|
4590
|
+
"width": "32",
|
|
4591
|
+
"height": "32",
|
|
4592
|
+
"iconPalIndex": "0",
|
|
4593
|
+
"Icon": "gMonIcon_UnownF"
|
|
4594
|
+
},
|
|
4595
|
+
"UNOWN_G": {
|
|
4596
|
+
"frontPics": "gMonFrontPic_UnownG",
|
|
4597
|
+
"backPics": "gMonBackPic_UnownG",
|
|
4598
|
+
"normPalette": "gMonPalette_Unown",
|
|
4599
|
+
"shinyPalette": "gMonShinyPalette_Unown",
|
|
4600
|
+
"width": "24",
|
|
4601
|
+
"height": "40",
|
|
4602
|
+
"iconPalIndex": "0",
|
|
4603
|
+
"Icon": "gMonIcon_UnownG"
|
|
4604
|
+
},
|
|
4605
|
+
"UNOWN_H": {
|
|
4606
|
+
"frontPics": "gMonFrontPic_UnownH",
|
|
4607
|
+
"backPics": "gMonBackPic_UnownH",
|
|
4608
|
+
"normPalette": "gMonPalette_Unown",
|
|
4609
|
+
"shinyPalette": "gMonShinyPalette_Unown",
|
|
4610
|
+
"width": "32",
|
|
4611
|
+
"height": "32",
|
|
4612
|
+
"iconPalIndex": "0",
|
|
4613
|
+
"Icon": "gMonIcon_UnownH"
|
|
4614
|
+
},
|
|
4615
|
+
"UNOWN_I": {
|
|
4616
|
+
"frontPics": "gMonFrontPic_UnownI",
|
|
4617
|
+
"backPics": "gMonBackPic_UnownI",
|
|
4618
|
+
"normPalette": "gMonPalette_Unown",
|
|
4619
|
+
"shinyPalette": "gMonShinyPalette_Unown",
|
|
4620
|
+
"width": "24",
|
|
4621
|
+
"height": "32",
|
|
4622
|
+
"iconPalIndex": "0",
|
|
4623
|
+
"Icon": "gMonIcon_UnownI"
|
|
4624
|
+
},
|
|
4625
|
+
"UNOWN_J": {
|
|
4626
|
+
"frontPics": "gMonFrontPic_UnownJ",
|
|
4627
|
+
"backPics": "gMonBackPic_UnownJ",
|
|
4628
|
+
"normPalette": "gMonPalette_Unown",
|
|
4629
|
+
"shinyPalette": "gMonShinyPalette_Unown",
|
|
4630
|
+
"width": "24",
|
|
4631
|
+
"height": "32",
|
|
4632
|
+
"iconPalIndex": "0",
|
|
4633
|
+
"Icon": "gMonIcon_UnownJ"
|
|
4634
|
+
},
|
|
4635
|
+
"UNOWN_K": {
|
|
4636
|
+
"frontPics": "gMonFrontPic_UnownK",
|
|
4637
|
+
"backPics": "gMonBackPic_UnownK",
|
|
4638
|
+
"normPalette": "gMonPalette_Unown",
|
|
4639
|
+
"shinyPalette": "gMonShinyPalette_Unown",
|
|
4640
|
+
"width": "32",
|
|
4641
|
+
"height": "32",
|
|
4642
|
+
"iconPalIndex": "0",
|
|
4643
|
+
"Icon": "gMonIcon_UnownK"
|
|
4644
|
+
},
|
|
4645
|
+
"UNOWN_L": {
|
|
4646
|
+
"frontPics": "gMonFrontPic_UnownL",
|
|
4647
|
+
"backPics": "gMonBackPic_UnownL",
|
|
4648
|
+
"normPalette": "gMonPalette_Unown",
|
|
4649
|
+
"shinyPalette": "gMonShinyPalette_Unown",
|
|
4650
|
+
"width": "24",
|
|
4651
|
+
"height": "32",
|
|
4652
|
+
"iconPalIndex": "0",
|
|
4653
|
+
"Icon": "gMonIcon_UnownL"
|
|
4654
|
+
},
|
|
4655
|
+
"UNOWN_M": {
|
|
4656
|
+
"frontPics": "gMonFrontPic_UnownM",
|
|
4657
|
+
"backPics": "gMonBackPic_UnownM",
|
|
4658
|
+
"normPalette": "gMonPalette_Unown",
|
|
4659
|
+
"shinyPalette": "gMonShinyPalette_Unown",
|
|
4660
|
+
"width": "32",
|
|
4661
|
+
"height": "32",
|
|
4662
|
+
"iconPalIndex": "0",
|
|
4663
|
+
"Icon": "gMonIcon_UnownM"
|
|
4664
|
+
},
|
|
4665
|
+
"UNOWN_N": {
|
|
4666
|
+
"frontPics": "gMonFrontPic_UnownN",
|
|
4667
|
+
"backPics": "gMonBackPic_UnownN",
|
|
4668
|
+
"normPalette": "gMonPalette_Unown",
|
|
4669
|
+
"shinyPalette": "gMonShinyPalette_Unown",
|
|
4670
|
+
"width": "32",
|
|
4671
|
+
"height": "24",
|
|
4672
|
+
"iconPalIndex": "0",
|
|
4673
|
+
"Icon": "gMonIcon_UnownN"
|
|
4674
|
+
},
|
|
4675
|
+
"UNOWN_O": {
|
|
4676
|
+
"frontPics": "gMonFrontPic_UnownO",
|
|
4677
|
+
"backPics": "gMonBackPic_UnownO",
|
|
4678
|
+
"normPalette": "gMonPalette_Unown",
|
|
4679
|
+
"shinyPalette": "gMonShinyPalette_Unown",
|
|
4680
|
+
"width": "32",
|
|
4681
|
+
"height": "32",
|
|
4682
|
+
"iconPalIndex": "0",
|
|
4683
|
+
"Icon": "gMonIcon_UnownO"
|
|
4684
|
+
},
|
|
4685
|
+
"UNOWN_P": {
|
|
4686
|
+
"frontPics": "gMonFrontPic_UnownP",
|
|
4687
|
+
"backPics": "gMonBackPic_UnownP",
|
|
4688
|
+
"normPalette": "gMonPalette_Unown",
|
|
4689
|
+
"shinyPalette": "gMonShinyPalette_Unown",
|
|
4690
|
+
"width": "24",
|
|
4691
|
+
"height": "32",
|
|
4692
|
+
"iconPalIndex": "0",
|
|
4693
|
+
"Icon": "gMonIcon_UnownP"
|
|
4694
|
+
},
|
|
4695
|
+
"UNOWN_Q": {
|
|
4696
|
+
"frontPics": "gMonFrontPic_UnownQ",
|
|
4697
|
+
"backPics": "gMonBackPic_UnownQ",
|
|
4698
|
+
"normPalette": "gMonPalette_Unown",
|
|
4699
|
+
"shinyPalette": "gMonShinyPalette_Unown",
|
|
4700
|
+
"width": "32",
|
|
4701
|
+
"height": "24",
|
|
4702
|
+
"iconPalIndex": "0",
|
|
4703
|
+
"Icon": "gMonIcon_UnownQ"
|
|
4704
|
+
},
|
|
4705
|
+
"UNOWN_R": {
|
|
4706
|
+
"frontPics": "gMonFrontPic_UnownR",
|
|
4707
|
+
"backPics": "gMonBackPic_UnownR",
|
|
4708
|
+
"normPalette": "gMonPalette_Unown",
|
|
4709
|
+
"shinyPalette": "gMonShinyPalette_Unown",
|
|
4710
|
+
"width": "24",
|
|
4711
|
+
"height": "32",
|
|
4712
|
+
"iconPalIndex": "0",
|
|
4713
|
+
"Icon": "gMonIcon_UnownR"
|
|
4714
|
+
},
|
|
4715
|
+
"UNOWN_S": {
|
|
4716
|
+
"frontPics": "gMonFrontPic_UnownS",
|
|
4717
|
+
"backPics": "gMonBackPic_UnownS",
|
|
4718
|
+
"normPalette": "gMonPalette_Unown",
|
|
4719
|
+
"shinyPalette": "gMonShinyPalette_Unown",
|
|
4720
|
+
"width": "32",
|
|
4721
|
+
"height": "40",
|
|
4722
|
+
"iconPalIndex": "0",
|
|
4723
|
+
"Icon": "gMonIcon_UnownS"
|
|
4724
|
+
},
|
|
4725
|
+
"UNOWN_T": {
|
|
4726
|
+
"frontPics": "gMonFrontPic_UnownT",
|
|
4727
|
+
"backPics": "gMonBackPic_UnownT",
|
|
4728
|
+
"normPalette": "gMonPalette_Unown",
|
|
4729
|
+
"shinyPalette": "gMonShinyPalette_Unown",
|
|
4730
|
+
"width": "24",
|
|
4731
|
+
"height": "32",
|
|
4732
|
+
"iconPalIndex": "0",
|
|
4733
|
+
"Icon": "gMonIcon_UnownT"
|
|
4734
|
+
},
|
|
4735
|
+
"UNOWN_U": {
|
|
4736
|
+
"frontPics": "gMonFrontPic_UnownU",
|
|
4737
|
+
"backPics": "gMonBackPic_UnownU",
|
|
4738
|
+
"normPalette": "gMonPalette_Unown",
|
|
4739
|
+
"shinyPalette": "gMonShinyPalette_Unown",
|
|
4740
|
+
"width": "32",
|
|
4741
|
+
"height": "32",
|
|
4742
|
+
"iconPalIndex": "0",
|
|
4743
|
+
"Icon": "gMonIcon_UnownU"
|
|
4744
|
+
},
|
|
4745
|
+
"UNOWN_V": {
|
|
4746
|
+
"frontPics": "gMonFrontPic_UnownV",
|
|
4747
|
+
"backPics": "gMonBackPic_UnownV",
|
|
4748
|
+
"normPalette": "gMonPalette_Unown",
|
|
4749
|
+
"shinyPalette": "gMonShinyPalette_Unown",
|
|
4750
|
+
"width": "32",
|
|
4751
|
+
"height": "32",
|
|
4752
|
+
"iconPalIndex": "0",
|
|
4753
|
+
"Icon": "gMonIcon_UnownV"
|
|
4754
|
+
},
|
|
4755
|
+
"UNOWN_W": {
|
|
4756
|
+
"frontPics": "gMonFrontPic_UnownW",
|
|
4757
|
+
"backPics": "gMonBackPic_UnownW",
|
|
4758
|
+
"normPalette": "gMonPalette_Unown",
|
|
4759
|
+
"shinyPalette": "gMonShinyPalette_Unown",
|
|
4760
|
+
"width": "32",
|
|
4761
|
+
"height": "32",
|
|
4762
|
+
"iconPalIndex": "0",
|
|
4763
|
+
"Icon": "gMonIcon_UnownW"
|
|
4764
|
+
},
|
|
4765
|
+
"UNOWN_X": {
|
|
4766
|
+
"frontPics": "gMonFrontPic_UnownX",
|
|
4767
|
+
"backPics": "gMonBackPic_UnownX",
|
|
4768
|
+
"normPalette": "gMonPalette_Unown",
|
|
4769
|
+
"shinyPalette": "gMonShinyPalette_Unown",
|
|
4770
|
+
"width": "24",
|
|
4771
|
+
"height": "24",
|
|
4772
|
+
"iconPalIndex": "0",
|
|
4773
|
+
"Icon": "gMonIcon_UnownX"
|
|
4774
|
+
},
|
|
4775
|
+
"UNOWN_Y": {
|
|
4776
|
+
"frontPics": "gMonFrontPic_UnownY",
|
|
4777
|
+
"backPics": "gMonBackPic_UnownY",
|
|
4778
|
+
"normPalette": "gMonPalette_Unown",
|
|
4779
|
+
"shinyPalette": "gMonShinyPalette_Unown",
|
|
4780
|
+
"width": "24",
|
|
4781
|
+
"height": "32",
|
|
4782
|
+
"iconPalIndex": "0",
|
|
4783
|
+
"Icon": "gMonIcon_UnownY"
|
|
4784
|
+
},
|
|
4785
|
+
"UNOWN_Z": {
|
|
4786
|
+
"frontPics": "gMonFrontPic_UnownZ",
|
|
4787
|
+
"backPics": "gMonBackPic_UnownZ",
|
|
4788
|
+
"normPalette": "gMonPalette_Unown",
|
|
4789
|
+
"shinyPalette": "gMonShinyPalette_Unown",
|
|
4790
|
+
"width": "24",
|
|
4791
|
+
"height": "32",
|
|
4792
|
+
"iconPalIndex": "0",
|
|
4793
|
+
"Icon": "gMonIcon_UnownZ"
|
|
4794
|
+
},
|
|
4795
|
+
"UNOWN_EMARK": {
|
|
4796
|
+
"frontPics": "gMonFrontPic_UnownExclamationMark",
|
|
4797
|
+
"backPics": "gMonBackPic_UnownExclamationMark",
|
|
4798
|
+
"normPalette": "gMonPalette_Unown",
|
|
4799
|
+
"shinyPalette": "gMonShinyPalette_Unown",
|
|
4800
|
+
"width": "24",
|
|
4801
|
+
"height": "40",
|
|
4802
|
+
"iconPalIndex": "0",
|
|
4803
|
+
"Icon": "gMonIcon_UnownExclamationMark"
|
|
4804
|
+
},
|
|
4805
|
+
"UNOWN_QMARK": {
|
|
4806
|
+
"frontPics": "gMonFrontPic_UnownQuestionMark",
|
|
4807
|
+
"backPics": "gMonBackPic_UnownQuestionMark",
|
|
4808
|
+
"normPalette": "gMonPalette_Unown",
|
|
4809
|
+
"shinyPalette": "gMonShinyPalette_Unown",
|
|
4810
|
+
"width": "24",
|
|
4811
|
+
"height": "40",
|
|
4812
|
+
"iconPalIndex": "0",
|
|
4813
|
+
"Icon": "gMonIcon_UnownQuestionMark"
|
|
4814
|
+
}
|
|
4815
|
+
}
|