silphscope 1.4.22 → 1.4.23
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/README.md +185 -83
- package/docs/node/renderAllBalls.md +0 -0
- package/docs/node/renderAllGraphics.md +0 -0
- package/docs/node/renderAllIcons.md +0 -0
- package/docs/node/renderAllMons.md +0 -0
- package/docs/node/renderAllMoves.md +0 -0
- package/docs/node/renderAllTrainers.md +0 -0
- package/docs/node/renderAllX-options.md +0 -0
- package/item-data/itemData.json +376 -1128
- package/main.js +149 -5
- package/mon-data/monData.json +440 -4373
- package/move-data/moveData.json +0 -609
- package/package.json +3 -2
- package/silphscope.d.ts +579 -502
- package/src/graphics/balls/render-ball-particle.js +48 -26
- package/src/graphics/balls/render-balls.js +45 -22
- package/src/graphics/graphics-extractor-main.js +155 -294
- package/src/graphics/icons/render-icons.js +14 -4
- package/src/graphics/mons/render-mon-foot.js +17 -5
- package/src/graphics/mons/render-mon-icon.js +27 -6
- package/src/graphics/mons/render-mons.js +15 -6
- package/src/graphics/moves/render-moves.js +44 -29
- package/src/graphics/trainers/render-trainer-back-pics.js +52 -10
- package/src/graphics/trainers/render-trainers.js +16 -19
- package/src/is-valid-filter-type.js +15 -0
- package/src/run-with-concurrency.js +12 -0
- package/src/validate-render-options.js +28 -0
- package/trainer-data/trainerData.json +148 -444
|
@@ -1,742 +1,446 @@
|
|
|
1
1
|
{
|
|
2
2
|
"AQUA_LEADER_ARCHIE": {
|
|
3
|
-
"
|
|
4
|
-
"index": 0,
|
|
5
|
-
"Palette": "gTrainerPalette_AquaLeaderArchie"
|
|
3
|
+
"index": 0
|
|
6
4
|
},
|
|
7
5
|
"AQUA_GRUNT_M": {
|
|
8
|
-
"
|
|
9
|
-
"index": 1,
|
|
10
|
-
"Palette": "gTrainerPalette_AquaGruntM"
|
|
6
|
+
"index": 1
|
|
11
7
|
},
|
|
12
8
|
"AQUA_GRUNT_F": {
|
|
13
|
-
"
|
|
14
|
-
"index": 2,
|
|
15
|
-
"Palette": "gTrainerPalette_AquaGruntF"
|
|
9
|
+
"index": 2
|
|
16
10
|
},
|
|
17
11
|
"RS_AROMA_LADY": {
|
|
18
|
-
"
|
|
19
|
-
"index": 3,
|
|
20
|
-
"Palette": "gTrainerPalette_RSAromaLady"
|
|
12
|
+
"index": 3
|
|
21
13
|
},
|
|
22
14
|
"RS_RUIN_MANIAC": {
|
|
23
|
-
"
|
|
24
|
-
"index": 4,
|
|
25
|
-
"Palette": "gTrainerPalette_RSRuinManiac"
|
|
15
|
+
"index": 4
|
|
26
16
|
},
|
|
27
17
|
"INTERVIEWER": {
|
|
28
|
-
"
|
|
29
|
-
"index": 5,
|
|
30
|
-
"Palette": "gTrainerPalette_Interviewer"
|
|
18
|
+
"index": 5
|
|
31
19
|
},
|
|
32
20
|
"RS_TUBER_F": {
|
|
33
|
-
"
|
|
34
|
-
"index": 6,
|
|
35
|
-
"Palette": "gTrainerPalette_RSTuberF"
|
|
21
|
+
"index": 6
|
|
36
22
|
},
|
|
37
23
|
"RS_TUBER_M": {
|
|
38
|
-
"
|
|
39
|
-
"index": 7,
|
|
40
|
-
"Palette": "gTrainerPalette_TuberM"
|
|
24
|
+
"index": 7
|
|
41
25
|
},
|
|
42
26
|
"RS_COOLTRAINER_M": {
|
|
43
|
-
"
|
|
44
|
-
"index": 8,
|
|
45
|
-
"Palette": "gTrainerPalette_RSCooltrainerM"
|
|
27
|
+
"index": 8
|
|
46
28
|
},
|
|
47
29
|
"RS_COOLTRAINER_F": {
|
|
48
|
-
"
|
|
49
|
-
"index": 9,
|
|
50
|
-
"Palette": "gTrainerPalette_RSCooltrainerF"
|
|
30
|
+
"index": 9
|
|
51
31
|
},
|
|
52
32
|
"HEX_MANIAC": {
|
|
53
|
-
"
|
|
54
|
-
"index": 10,
|
|
55
|
-
"Palette": "gTrainerPalette_HexManiac"
|
|
33
|
+
"index": 10
|
|
56
34
|
},
|
|
57
35
|
"RS_LADY": {
|
|
58
|
-
"
|
|
59
|
-
"index": 11,
|
|
60
|
-
"Palette": "gTrainerPalette_RSLady"
|
|
36
|
+
"index": 11
|
|
61
37
|
},
|
|
62
38
|
"RS_BEAUTY": {
|
|
63
|
-
"
|
|
64
|
-
"index": 12,
|
|
65
|
-
"Palette": "gTrainerPalette_RSBeauty"
|
|
39
|
+
"index": 12
|
|
66
40
|
},
|
|
67
41
|
"RICH_BOY": {
|
|
68
|
-
"
|
|
69
|
-
"index": 13,
|
|
70
|
-
"Palette": "gTrainerPalette_RichBoy"
|
|
42
|
+
"index": 13
|
|
71
43
|
},
|
|
72
44
|
"RS_POKEMANIAC": {
|
|
73
|
-
"
|
|
74
|
-
"index": 14,
|
|
75
|
-
"Palette": "gTrainerPalette_RSPokeManiac"
|
|
45
|
+
"index": 14
|
|
76
46
|
},
|
|
77
47
|
"RS_SWIMMER_M": {
|
|
78
|
-
"
|
|
79
|
-
"index": 15,
|
|
80
|
-
"Palette": "gTrainerPalette_RSSwimmerM"
|
|
48
|
+
"index": 15
|
|
81
49
|
},
|
|
82
50
|
"RS_BLACK_BELT": {
|
|
83
|
-
"
|
|
84
|
-
"index": 16,
|
|
85
|
-
"Palette": "gTrainerPalette_RSBlackBelt"
|
|
51
|
+
"index": 16
|
|
86
52
|
},
|
|
87
53
|
"GUITARIST": {
|
|
88
|
-
"
|
|
89
|
-
"index": 17,
|
|
90
|
-
"Palette": "gTrainerPalette_Guitarist"
|
|
54
|
+
"index": 17
|
|
91
55
|
},
|
|
92
56
|
"KINDLER": {
|
|
93
|
-
"
|
|
94
|
-
"index": 18,
|
|
95
|
-
"Palette": "gTrainerPalette_Kindler"
|
|
57
|
+
"index": 18
|
|
96
58
|
},
|
|
97
59
|
"RS_CAMPER": {
|
|
98
|
-
"
|
|
99
|
-
"index": 19,
|
|
100
|
-
"Palette": "gTrainerPalette_RSCamper"
|
|
60
|
+
"index": 19
|
|
101
61
|
},
|
|
102
62
|
"BUG_MANIAC": {
|
|
103
|
-
"
|
|
104
|
-
"index": 20,
|
|
105
|
-
"Palette": "gTrainerPalette_BugManiac"
|
|
63
|
+
"index": 20
|
|
106
64
|
},
|
|
107
65
|
"RS_PSYCHIC_M": {
|
|
108
|
-
"
|
|
109
|
-
"index": 21,
|
|
110
|
-
"Palette": "gTrainerPalette_RSPsychicM"
|
|
66
|
+
"index": 21
|
|
111
67
|
},
|
|
112
68
|
"RS_PSYCHIC_F": {
|
|
113
|
-
"
|
|
114
|
-
"index": 22,
|
|
115
|
-
"Palette": "gTrainerPalette_RSPsychicF"
|
|
69
|
+
"index": 22
|
|
116
70
|
},
|
|
117
71
|
"RS_GENTLEMAN": {
|
|
118
|
-
"
|
|
119
|
-
"index": 23,
|
|
120
|
-
"Palette": "gTrainerPalette_RSGentleman"
|
|
72
|
+
"index": 23
|
|
121
73
|
},
|
|
122
74
|
"ELITE_FOUR_SIDNEY": {
|
|
123
|
-
"
|
|
124
|
-
"index": 24,
|
|
125
|
-
"Palette": "gTrainerPalette_EliteFourSidney"
|
|
75
|
+
"index": 24
|
|
126
76
|
},
|
|
127
77
|
"ELITE_FOUR_PHOEBE": {
|
|
128
|
-
"
|
|
129
|
-
"index": 25,
|
|
130
|
-
"Palette": "gTrainerPalette_EliteFourPhoebe"
|
|
78
|
+
"index": 25
|
|
131
79
|
},
|
|
132
80
|
"LEADER_ROXANNE": {
|
|
133
|
-
"
|
|
134
|
-
"index": 26,
|
|
135
|
-
"Palette": "gTrainerPalette_LeaderRoxanne"
|
|
81
|
+
"index": 26
|
|
136
82
|
},
|
|
137
83
|
"LEADER_BRAWLY": {
|
|
138
|
-
"
|
|
139
|
-
"index": 27,
|
|
140
|
-
"Palette": "gTrainerPalette_LeaderBrawly"
|
|
84
|
+
"index": 27
|
|
141
85
|
},
|
|
142
86
|
"LEADER_TATE_AND_LIZA": {
|
|
143
|
-
"
|
|
144
|
-
"index": 28,
|
|
145
|
-
"Palette": "gTrainerPalette_LeaderTateAndLiza"
|
|
87
|
+
"index": 28
|
|
146
88
|
},
|
|
147
89
|
"SCHOOL_KID_M": {
|
|
148
|
-
"
|
|
149
|
-
"index": 29,
|
|
150
|
-
"Palette": "gTrainerPalette_SchoolKidM"
|
|
90
|
+
"index": 29
|
|
151
91
|
},
|
|
152
92
|
"SCHOOL_KID_F": {
|
|
153
|
-
"
|
|
154
|
-
"index": 30,
|
|
155
|
-
"Palette": "gTrainerPalette_SchoolKidF"
|
|
93
|
+
"index": 30
|
|
156
94
|
},
|
|
157
95
|
"SR_AND_JR": {
|
|
158
|
-
"
|
|
159
|
-
"index": 31,
|
|
160
|
-
"Palette": "gTrainerPalette_SrAndJr"
|
|
96
|
+
"index": 31
|
|
161
97
|
},
|
|
162
98
|
"POKEFAN_M": {
|
|
163
|
-
"
|
|
164
|
-
"index": 32,
|
|
165
|
-
"Palette": "gTrainerPalette_PokefanM"
|
|
99
|
+
"index": 32
|
|
166
100
|
},
|
|
167
101
|
"POKEFAN_F": {
|
|
168
|
-
"
|
|
169
|
-
"index": 33,
|
|
170
|
-
"Palette": "gTrainerPalette_PokefanF"
|
|
102
|
+
"index": 33
|
|
171
103
|
},
|
|
172
104
|
"EXPERT_M": {
|
|
173
|
-
"
|
|
174
|
-
"index": 34,
|
|
175
|
-
"Palette": "gTrainerPalette_ExpertM"
|
|
105
|
+
"index": 34
|
|
176
106
|
},
|
|
177
107
|
"EXPERT_F": {
|
|
178
|
-
"
|
|
179
|
-
"index": 35,
|
|
180
|
-
"Palette": "gTrainerPalette_ExpertF"
|
|
108
|
+
"index": 35
|
|
181
109
|
},
|
|
182
110
|
"RS_YOUNGSTER": {
|
|
183
|
-
"
|
|
184
|
-
"index": 36,
|
|
185
|
-
"Palette": "gTrainerPalette_RSYoungster"
|
|
111
|
+
"index": 36
|
|
186
112
|
},
|
|
187
113
|
"CHAMPION_STEVEN": {
|
|
188
|
-
"
|
|
189
|
-
"index": 37,
|
|
190
|
-
"Palette": "gTrainerPalette_ChampionSteven"
|
|
114
|
+
"index": 37
|
|
191
115
|
},
|
|
192
116
|
"RS_FISHERMAN": {
|
|
193
|
-
"
|
|
194
|
-
"index": 38,
|
|
195
|
-
"Palette": "gTrainerPalette_RSFisherman"
|
|
117
|
+
"index": 38
|
|
196
118
|
},
|
|
197
119
|
"CYCLING_TRIATHLETE_M": {
|
|
198
|
-
"
|
|
199
|
-
"index": 39,
|
|
200
|
-
"Palette": "gTrainerPalette_CyclingTriathleteM"
|
|
120
|
+
"index": 39
|
|
201
121
|
},
|
|
202
122
|
"CYCLING_TRIATHLETE_F": {
|
|
203
|
-
"
|
|
204
|
-
"index": 40,
|
|
205
|
-
"Palette": "gTrainerPalette_CyclingTriathleteF"
|
|
123
|
+
"index": 40
|
|
206
124
|
},
|
|
207
125
|
"RUNNING_TRIATHLETE_M": {
|
|
208
|
-
"
|
|
209
|
-
"index": 41,
|
|
210
|
-
"Palette": "gTrainerPalette_RunningTriathleteM"
|
|
126
|
+
"index": 41
|
|
211
127
|
},
|
|
212
128
|
"RUNNING_TRIATHLETE_F": {
|
|
213
|
-
"
|
|
214
|
-
"index": 42,
|
|
215
|
-
"Palette": "gTrainerPalette_RunningTriathleteF"
|
|
129
|
+
"index": 42
|
|
216
130
|
},
|
|
217
131
|
"SWIMMING_TRIATHLETE_M": {
|
|
218
|
-
"
|
|
219
|
-
"index": 43,
|
|
220
|
-
"Palette": "gTrainerPalette_SwimmingTriathleteM"
|
|
132
|
+
"index": 43
|
|
221
133
|
},
|
|
222
134
|
"SWIMMING_TRIATHLETE_F": {
|
|
223
|
-
"
|
|
224
|
-
"index": 44,
|
|
225
|
-
"Palette": "gTrainerPalette_SwimmingTriathleteF"
|
|
135
|
+
"index": 44
|
|
226
136
|
},
|
|
227
137
|
"DRAGON_TAMER": {
|
|
228
|
-
"
|
|
229
|
-
"index": 45,
|
|
230
|
-
"Palette": "gTrainerPalette_DragonTamer"
|
|
138
|
+
"index": 45
|
|
231
139
|
},
|
|
232
140
|
"RS_BIRD_KEEPER": {
|
|
233
|
-
"
|
|
234
|
-
"index": 46,
|
|
235
|
-
"Palette": "gTrainerPalette_RSBirdKeeper"
|
|
141
|
+
"index": 46
|
|
236
142
|
},
|
|
237
143
|
"NINJA_BOY": {
|
|
238
|
-
"
|
|
239
|
-
"index": 47,
|
|
240
|
-
"Palette": "gTrainerPalette_NinjaBoy"
|
|
144
|
+
"index": 47
|
|
241
145
|
},
|
|
242
146
|
"BATTLE_GIRL": {
|
|
243
|
-
"
|
|
244
|
-
"index": 48,
|
|
245
|
-
"Palette": "gTrainerPalette_BattleGirl"
|
|
147
|
+
"index": 48
|
|
246
148
|
},
|
|
247
149
|
"PARASOL_LADY": {
|
|
248
|
-
"
|
|
249
|
-
"index": 49,
|
|
250
|
-
"Palette": "gTrainerPalette_ParasolLady"
|
|
150
|
+
"index": 49
|
|
251
151
|
},
|
|
252
152
|
"RS_SWIMMER_F": {
|
|
253
|
-
"
|
|
254
|
-
"index": 50,
|
|
255
|
-
"Palette": "gTrainerPalette_RSSwimmerF"
|
|
153
|
+
"index": 50
|
|
256
154
|
},
|
|
257
155
|
"RS_PICNICKER": {
|
|
258
|
-
"
|
|
259
|
-
"index": 51,
|
|
260
|
-
"Palette": "gTrainerPalette_RSPicnicker"
|
|
156
|
+
"index": 51
|
|
261
157
|
},
|
|
262
158
|
"RS_TWINS": {
|
|
263
|
-
"
|
|
264
|
-
"index": 52,
|
|
265
|
-
"Palette": "gTrainerPalette_RSTwins"
|
|
159
|
+
"index": 52
|
|
266
160
|
},
|
|
267
161
|
"RS_SAILOR": {
|
|
268
|
-
"
|
|
269
|
-
"index": 53,
|
|
270
|
-
"Palette": "gTrainerPalette_RSSailor"
|
|
162
|
+
"index": 53
|
|
271
163
|
},
|
|
272
164
|
"COLLECTOR": {
|
|
273
|
-
"
|
|
274
|
-
"index": 54,
|
|
275
|
-
"Palette": "gTrainerPalette_Collector"
|
|
165
|
+
"index": 54
|
|
276
166
|
},
|
|
277
167
|
"WALLY": {
|
|
278
|
-
"
|
|
279
|
-
"index": 55,
|
|
280
|
-
"Palette": "gTrainerPalette_Wally"
|
|
168
|
+
"index": 55
|
|
281
169
|
},
|
|
282
170
|
"RS_BRENDAN_1": {
|
|
283
|
-
"
|
|
284
|
-
"index": 56,
|
|
285
|
-
"Palette": "gTrainerPalette_RSBrendan1"
|
|
171
|
+
"index": 56
|
|
286
172
|
},
|
|
287
173
|
"RS_MAY_1": {
|
|
288
|
-
"
|
|
289
|
-
"index": 57,
|
|
290
|
-
"Palette": "gTrainerPalette_RSMay1"
|
|
174
|
+
"index": 57
|
|
291
175
|
},
|
|
292
176
|
"RS_POKEMON_BREEDER_M": {
|
|
293
|
-
"
|
|
294
|
-
"index": 58,
|
|
295
|
-
"Palette": "gTrainerPalette_RSPokemonBreederM"
|
|
177
|
+
"index": 58
|
|
296
178
|
},
|
|
297
179
|
"RS_POKEMON_BREEDER_F": {
|
|
298
|
-
"
|
|
299
|
-
"index": 59,
|
|
300
|
-
"Palette": "gTrainerPalette_RSPokemonBreederF"
|
|
180
|
+
"index": 59
|
|
301
181
|
},
|
|
302
182
|
"RS_POKEMON_RANGER_M": {
|
|
303
|
-
"
|
|
304
|
-
"index": 60,
|
|
305
|
-
"Palette": "gTrainerPalette_RSPokemonRangerM"
|
|
183
|
+
"index": 60
|
|
306
184
|
},
|
|
307
185
|
"RS_POKEMON_RANGER_F": {
|
|
308
|
-
"
|
|
309
|
-
"index": 61,
|
|
310
|
-
"Palette": "gTrainerPalette_RSPokemonRangerF"
|
|
186
|
+
"index": 61
|
|
311
187
|
},
|
|
312
188
|
"MAGMA_LEADER_MAXIE": {
|
|
313
|
-
"
|
|
314
|
-
"index": 62,
|
|
315
|
-
"Palette": "gTrainerPalette_MagmaLeaderMaxie"
|
|
189
|
+
"index": 62
|
|
316
190
|
},
|
|
317
191
|
"MAGMA_GRUNT_M": {
|
|
318
|
-
"
|
|
319
|
-
"index": 63,
|
|
320
|
-
"Palette": "gTrainerPalette_MagmaGruntM"
|
|
192
|
+
"index": 63
|
|
321
193
|
},
|
|
322
194
|
"MAGMA_GRUNT_F": {
|
|
323
|
-
"
|
|
324
|
-
"index": 64,
|
|
325
|
-
"Palette": "gTrainerPalette_MagmaGruntF"
|
|
195
|
+
"index": 64
|
|
326
196
|
},
|
|
327
197
|
"RS_LASS": {
|
|
328
|
-
"
|
|
329
|
-
"index": 65,
|
|
330
|
-
"Palette": "gTrainerPalette_RSLass"
|
|
198
|
+
"index": 65
|
|
331
199
|
},
|
|
332
200
|
"RS_BUG_CATCHER": {
|
|
333
|
-
"
|
|
334
|
-
"index": 66,
|
|
335
|
-
"Palette": "gTrainerPalette_RSBugCatcher"
|
|
201
|
+
"index": 66
|
|
336
202
|
},
|
|
337
203
|
"RS_HIKER": {
|
|
338
|
-
"
|
|
339
|
-
"index": 67,
|
|
340
|
-
"Palette": "gTrainerPalette_RSHiker"
|
|
204
|
+
"index": 67
|
|
341
205
|
},
|
|
342
206
|
"RS_YOUNG_COUPLE": {
|
|
343
|
-
"
|
|
344
|
-
"index": 68,
|
|
345
|
-
"Palette": "gTrainerPalette_RSYoungCouple"
|
|
207
|
+
"index": 68
|
|
346
208
|
},
|
|
347
209
|
"OLD_COUPLE": {
|
|
348
|
-
"
|
|
349
|
-
"index": 69,
|
|
350
|
-
"Palette": "gTrainerPalette_OldCouple"
|
|
210
|
+
"index": 69
|
|
351
211
|
},
|
|
352
212
|
"RS_SIS_AND_BRO": {
|
|
353
|
-
"
|
|
354
|
-
"index": 70,
|
|
355
|
-
"Palette": "gTrainerPalette_RSSisAndBro"
|
|
213
|
+
"index": 70
|
|
356
214
|
},
|
|
357
215
|
"AQUA_ADMIN_M": {
|
|
358
|
-
"
|
|
359
|
-
"index": 71,
|
|
360
|
-
"Palette": "gTrainerPalette_AquaAdminM"
|
|
216
|
+
"index": 71
|
|
361
217
|
},
|
|
362
218
|
"AQUA_ADMIN_F": {
|
|
363
|
-
"
|
|
364
|
-
"index": 72,
|
|
365
|
-
"Palette": "gTrainerPalette_AquaAdminF"
|
|
219
|
+
"index": 72
|
|
366
220
|
},
|
|
367
221
|
"MAGMA_ADMIN_M": {
|
|
368
|
-
"
|
|
369
|
-
"index": 73,
|
|
370
|
-
"Palette": "gTrainerPalette_MagmaAdminM"
|
|
222
|
+
"index": 73
|
|
371
223
|
},
|
|
372
224
|
"MAGMA_ADMIN_F": {
|
|
373
|
-
"
|
|
374
|
-
"index": 74,
|
|
375
|
-
"Palette": "gTrainerPalette_MagmaAdminF"
|
|
225
|
+
"index": 74
|
|
376
226
|
},
|
|
377
227
|
"LEADER_WATTSON": {
|
|
378
|
-
"
|
|
379
|
-
"index": 75,
|
|
380
|
-
"Palette": "gTrainerPalette_LeaderWattson"
|
|
228
|
+
"index": 75
|
|
381
229
|
},
|
|
382
230
|
"LEADER_FLANNERY": {
|
|
383
|
-
"
|
|
384
|
-
"index": 76,
|
|
385
|
-
"Palette": "gTrainerPalette_LeaderFlannery"
|
|
231
|
+
"index": 76
|
|
386
232
|
},
|
|
387
233
|
"LEADER_NORMAN": {
|
|
388
|
-
"
|
|
389
|
-
"index": 77,
|
|
390
|
-
"Palette": "gTrainerPalette_LeaderNorman"
|
|
234
|
+
"index": 77
|
|
391
235
|
},
|
|
392
236
|
"LEADER_WINONA": {
|
|
393
|
-
"
|
|
394
|
-
"index": 78,
|
|
395
|
-
"Palette": "gTrainerPalette_LeaderWinona"
|
|
237
|
+
"index": 78
|
|
396
238
|
},
|
|
397
239
|
"LEADER_WALLACE": {
|
|
398
|
-
"
|
|
399
|
-
"index": 79,
|
|
400
|
-
"Palette": "gTrainerPalette_LeaderWallace"
|
|
240
|
+
"index": 79
|
|
401
241
|
},
|
|
402
242
|
"ELITE_FOUR_GLACIA": {
|
|
403
|
-
"
|
|
404
|
-
"index": 80,
|
|
405
|
-
"Palette": "gTrainerPalette_EliteFourGlacia"
|
|
243
|
+
"index": 80
|
|
406
244
|
},
|
|
407
245
|
"ELITE_FOUR_DRAKE": {
|
|
408
|
-
"
|
|
409
|
-
"index": 81,
|
|
410
|
-
"Palette": "gTrainerPalette_EliteFourDrake"
|
|
246
|
+
"index": 81
|
|
411
247
|
},
|
|
412
248
|
"YOUNGSTER": {
|
|
413
|
-
"
|
|
414
|
-
"index": 82,
|
|
415
|
-
"Palette": "gTrainerPalette_Youngster"
|
|
249
|
+
"index": 82
|
|
416
250
|
},
|
|
417
251
|
"BUG_CATCHER": {
|
|
418
|
-
"
|
|
419
|
-
"index": 83,
|
|
420
|
-
"Palette": "gTrainerPalette_BugCatcher"
|
|
252
|
+
"index": 83
|
|
421
253
|
},
|
|
422
254
|
"LASS": {
|
|
423
|
-
"
|
|
424
|
-
"index": 84,
|
|
425
|
-
"Palette": "gTrainerPalette_Lass"
|
|
255
|
+
"index": 84
|
|
426
256
|
},
|
|
427
257
|
"SAILOR": {
|
|
428
|
-
"
|
|
429
|
-
"index": 85,
|
|
430
|
-
"Palette": "gTrainerPalette_Sailor"
|
|
258
|
+
"index": 85
|
|
431
259
|
},
|
|
432
260
|
"CAMPER": {
|
|
433
|
-
"
|
|
434
|
-
"index": 86,
|
|
435
|
-
"Palette": "gTrainerPalette_Camper"
|
|
261
|
+
"index": 86
|
|
436
262
|
},
|
|
437
263
|
"PICNICKER": {
|
|
438
|
-
"
|
|
439
|
-
"index": 87,
|
|
440
|
-
"Palette": "gTrainerPalette_Picnicker"
|
|
264
|
+
"index": 87
|
|
441
265
|
},
|
|
442
266
|
"POKEMANIAC": {
|
|
443
|
-
"
|
|
444
|
-
"index": 88,
|
|
445
|
-
"Palette": "gTrainerPalette_PokeManiac"
|
|
267
|
+
"index": 88
|
|
446
268
|
},
|
|
447
269
|
"SUPER_NERD": {
|
|
448
|
-
"
|
|
449
|
-
"index": 89,
|
|
450
|
-
"Palette": "gTrainerPalette_SuperNerd"
|
|
270
|
+
"index": 89
|
|
451
271
|
},
|
|
452
272
|
"HIKER": {
|
|
453
|
-
"
|
|
454
|
-
"index": 90,
|
|
455
|
-
"Palette": "gTrainerPalette_Hiker"
|
|
273
|
+
"index": 90
|
|
456
274
|
},
|
|
457
275
|
"BIKER": {
|
|
458
|
-
"
|
|
459
|
-
"index": 91,
|
|
460
|
-
"Palette": "gTrainerPalette_Biker"
|
|
276
|
+
"index": 91
|
|
461
277
|
},
|
|
462
278
|
"BURGLAR": {
|
|
463
|
-
"
|
|
464
|
-
"index": 92,
|
|
465
|
-
"Palette": "gTrainerPalette_Burglar"
|
|
279
|
+
"index": 92
|
|
466
280
|
},
|
|
467
281
|
"ENGINEER": {
|
|
468
|
-
"
|
|
469
|
-
"index": 93,
|
|
470
|
-
"Palette": "gTrainerPalette_Engineer"
|
|
282
|
+
"index": 93
|
|
471
283
|
},
|
|
472
284
|
"FISHERMAN": {
|
|
473
|
-
"
|
|
474
|
-
"index": 94,
|
|
475
|
-
"Palette": "gTrainerPalette_Fisherman"
|
|
285
|
+
"index": 94
|
|
476
286
|
},
|
|
477
287
|
"SWIMMER_M": {
|
|
478
|
-
"
|
|
479
|
-
"index": 95,
|
|
480
|
-
"Palette": "gTrainerPalette_SwimmerM"
|
|
288
|
+
"index": 95
|
|
481
289
|
},
|
|
482
290
|
"CUE_BALL": {
|
|
483
|
-
"
|
|
484
|
-
"index": 96,
|
|
485
|
-
"Palette": "gTrainerPalette_CueBall"
|
|
291
|
+
"index": 96
|
|
486
292
|
},
|
|
487
293
|
"GAMER": {
|
|
488
|
-
"
|
|
489
|
-
"index": 97,
|
|
490
|
-
"Palette": "gTrainerPalette_Gamer"
|
|
294
|
+
"index": 97
|
|
491
295
|
},
|
|
492
296
|
"BEAUTY": {
|
|
493
|
-
"
|
|
494
|
-
"index": 98,
|
|
495
|
-
"Palette": "gTrainerPalette_Beauty"
|
|
297
|
+
"index": 98
|
|
496
298
|
},
|
|
497
299
|
"SWIMMER_F": {
|
|
498
|
-
"
|
|
499
|
-
"index": 99,
|
|
500
|
-
"Palette": "gTrainerPalette_SwimmerF"
|
|
300
|
+
"index": 99
|
|
501
301
|
},
|
|
502
302
|
"PSYCHIC_M": {
|
|
503
|
-
"
|
|
504
|
-
"index": 100,
|
|
505
|
-
"Palette": "gTrainerPalette_PsychicM"
|
|
303
|
+
"index": 100
|
|
506
304
|
},
|
|
507
305
|
"ROCKER": {
|
|
508
|
-
"
|
|
509
|
-
"index": 101,
|
|
510
|
-
"Palette": "gTrainerPalette_Rocker"
|
|
306
|
+
"index": 101
|
|
511
307
|
},
|
|
512
308
|
"JUGGLER": {
|
|
513
|
-
"
|
|
514
|
-
"index": 102,
|
|
515
|
-
"Palette": "gTrainerPalette_Juggler"
|
|
309
|
+
"index": 102
|
|
516
310
|
},
|
|
517
311
|
"TAMER": {
|
|
518
|
-
"
|
|
519
|
-
"index": 103,
|
|
520
|
-
"Palette": "gTrainerPalette_Tamer"
|
|
312
|
+
"index": 103
|
|
521
313
|
},
|
|
522
314
|
"BIRD_KEEPER": {
|
|
523
|
-
"
|
|
524
|
-
"index": 104,
|
|
525
|
-
"Palette": "gTrainerPalette_BirdKeeper"
|
|
315
|
+
"index": 104
|
|
526
316
|
},
|
|
527
317
|
"BLACK_BELT": {
|
|
528
|
-
"
|
|
529
|
-
"index": 105,
|
|
530
|
-
"Palette": "gTrainerPalette_BlackBelt"
|
|
318
|
+
"index": 105
|
|
531
319
|
},
|
|
532
320
|
"RIVAL_EARLY": {
|
|
533
|
-
"
|
|
534
|
-
"index": 106,
|
|
535
|
-
"Palette": "gTrainerPalette_RivalEarly"
|
|
321
|
+
"index": 106
|
|
536
322
|
},
|
|
537
323
|
"SCIENTIST": {
|
|
538
|
-
"
|
|
539
|
-
"index": 107,
|
|
540
|
-
"Palette": "gTrainerPalette_Scientist"
|
|
324
|
+
"index": 107
|
|
541
325
|
},
|
|
542
326
|
"LEADER_GIOVANNI": {
|
|
543
|
-
"
|
|
544
|
-
"index": 108,
|
|
545
|
-
"Palette": "gTrainerPalette_LeaderGiovanni"
|
|
327
|
+
"index": 108
|
|
546
328
|
},
|
|
547
329
|
"ROCKET_GRUNT_M": {
|
|
548
|
-
"
|
|
549
|
-
"index": 109,
|
|
550
|
-
"Palette": "gTrainerPalette_RocketGruntM"
|
|
330
|
+
"index": 109
|
|
551
331
|
},
|
|
552
332
|
"COOLTRAINER_M": {
|
|
553
|
-
"
|
|
554
|
-
"index": 110,
|
|
555
|
-
"Palette": "gTrainerPalette_CooltrainerM"
|
|
333
|
+
"index": 110
|
|
556
334
|
},
|
|
557
335
|
"COOLTRAINER_F": {
|
|
558
|
-
"
|
|
559
|
-
"index": 111,
|
|
560
|
-
"Palette": "gTrainerPalette_CooltrainerF"
|
|
336
|
+
"index": 111
|
|
561
337
|
},
|
|
562
338
|
"ELITE_FOUR_LORELEI": {
|
|
563
|
-
"
|
|
564
|
-
"index": 112,
|
|
565
|
-
"Palette": "gTrainerPalette_EliteFourLorelei"
|
|
339
|
+
"index": 112
|
|
566
340
|
},
|
|
567
341
|
"ELITE_FOUR_BRUNO": {
|
|
568
|
-
"
|
|
569
|
-
"index": 113,
|
|
570
|
-
"Palette": "gTrainerPalette_EliteFourBruno"
|
|
342
|
+
"index": 113
|
|
571
343
|
},
|
|
572
344
|
"ELITE_FOUR_AGATHA": {
|
|
573
|
-
"
|
|
574
|
-
"index": 114,
|
|
575
|
-
"Palette": "gTrainerPalette_EliteFourAgatha"
|
|
345
|
+
"index": 114
|
|
576
346
|
},
|
|
577
347
|
"ELITE_FOUR_LANCE": {
|
|
578
|
-
"
|
|
579
|
-
"index": 115,
|
|
580
|
-
"Palette": "gTrainerPalette_EliteFourLance"
|
|
348
|
+
"index": 115
|
|
581
349
|
},
|
|
582
350
|
"LEADER_BROCK": {
|
|
583
|
-
"
|
|
584
|
-
"index": 116,
|
|
585
|
-
"Palette": "gTrainerPalette_LeaderBrock"
|
|
351
|
+
"index": 116
|
|
586
352
|
},
|
|
587
353
|
"LEADER_MISTY": {
|
|
588
|
-
"
|
|
589
|
-
"index": 117,
|
|
590
|
-
"Palette": "gTrainerPalette_LeaderMisty"
|
|
354
|
+
"index": 117
|
|
591
355
|
},
|
|
592
356
|
"LEADER_LT_SURGE": {
|
|
593
|
-
"
|
|
594
|
-
"index": 118,
|
|
595
|
-
"Palette": "gTrainerPalette_LeaderLtSurge"
|
|
357
|
+
"index": 118
|
|
596
358
|
},
|
|
597
359
|
"LEADER_ERIKA": {
|
|
598
|
-
"
|
|
599
|
-
"index": 119,
|
|
600
|
-
"Palette": "gTrainerPalette_LeaderErika"
|
|
360
|
+
"index": 119
|
|
601
361
|
},
|
|
602
362
|
"LEADER_KOGA": {
|
|
603
|
-
"
|
|
604
|
-
"index": 120,
|
|
605
|
-
"Palette": "gTrainerPalette_LeaderKoga"
|
|
363
|
+
"index": 120
|
|
606
364
|
},
|
|
607
365
|
"LEADER_BLAINE": {
|
|
608
|
-
"
|
|
609
|
-
"index": 121,
|
|
610
|
-
"Palette": "gTrainerPalette_LeaderBlaine"
|
|
366
|
+
"index": 121
|
|
611
367
|
},
|
|
612
368
|
"LEADER_SABRINA": {
|
|
613
|
-
"
|
|
614
|
-
"index": 122,
|
|
615
|
-
"Palette": "gTrainerPalette_LeaderSabrina"
|
|
369
|
+
"index": 122
|
|
616
370
|
},
|
|
617
371
|
"GENTLEMAN": {
|
|
618
|
-
"
|
|
619
|
-
"index": 123,
|
|
620
|
-
"Palette": "gTrainerPalette_Gentleman"
|
|
372
|
+
"index": 123
|
|
621
373
|
},
|
|
622
374
|
"RIVAL_LATE": {
|
|
623
|
-
"
|
|
624
|
-
"index": 124,
|
|
625
|
-
"Palette": "gTrainerPalette_RivalLate"
|
|
375
|
+
"index": 124
|
|
626
376
|
},
|
|
627
377
|
"CHAMPION_RIVAL": {
|
|
628
|
-
"
|
|
629
|
-
"index": 125,
|
|
630
|
-
"Palette": "gTrainerPalette_ChampionRival"
|
|
378
|
+
"index": 125
|
|
631
379
|
},
|
|
632
380
|
"CHANNELER": {
|
|
633
|
-
"
|
|
634
|
-
"index": 126,
|
|
635
|
-
"Palette": "gTrainerPalette_Channeler"
|
|
381
|
+
"index": 126
|
|
636
382
|
},
|
|
637
383
|
"TWINS": {
|
|
638
|
-
"
|
|
639
|
-
"index": 127,
|
|
640
|
-
"Palette": "gTrainerPalette_Twins"
|
|
384
|
+
"index": 127
|
|
641
385
|
},
|
|
642
386
|
"COOL_COUPLE": {
|
|
643
|
-
"
|
|
644
|
-
"index": 128,
|
|
645
|
-
"Palette": "gTrainerPalette_CoolCouple"
|
|
387
|
+
"index": 128
|
|
646
388
|
},
|
|
647
389
|
"YOUNG_COUPLE": {
|
|
648
|
-
"
|
|
649
|
-
"index": 129,
|
|
650
|
-
"Palette": "gTrainerPalette_YoungCouple"
|
|
390
|
+
"index": 129
|
|
651
391
|
},
|
|
652
392
|
"CRUSH_KIN": {
|
|
653
|
-
"
|
|
654
|
-
"index": 130,
|
|
655
|
-
"Palette": "gTrainerPalette_CrushKin"
|
|
393
|
+
"index": 130
|
|
656
394
|
},
|
|
657
395
|
"SIS_AND_BRO": {
|
|
658
|
-
"
|
|
659
|
-
"index": 131,
|
|
660
|
-
"Palette": "gTrainerPalette_SisAndBro"
|
|
396
|
+
"index": 131
|
|
661
397
|
},
|
|
662
398
|
"PROFESSOR_OAK": {
|
|
663
|
-
"
|
|
664
|
-
"index": 132,
|
|
665
|
-
"Palette": "gTrainerPalette_ProfessorOak"
|
|
399
|
+
"index": 132
|
|
666
400
|
},
|
|
667
401
|
"RS_BRENDAN_2": {
|
|
668
|
-
"
|
|
669
|
-
"index": 133,
|
|
670
|
-
"Palette": "gTrainerPalette_RSBrendan2"
|
|
402
|
+
"index": 133
|
|
671
403
|
},
|
|
672
404
|
"RS_MAY_2": {
|
|
673
|
-
"
|
|
674
|
-
"index": 134,
|
|
675
|
-
"Palette": "gTrainerPalette_RSMay2"
|
|
405
|
+
"index": 134
|
|
676
406
|
},
|
|
677
407
|
"RED": {
|
|
678
|
-
"
|
|
679
|
-
"index": 135,
|
|
680
|
-
"Palette": "gTrainerPalette_Red"
|
|
408
|
+
"index": 135
|
|
681
409
|
},
|
|
682
410
|
"LEAF": {
|
|
683
|
-
"
|
|
684
|
-
"index": 136,
|
|
685
|
-
"Palette": "gTrainerPalette_Leaf"
|
|
411
|
+
"index": 136
|
|
686
412
|
},
|
|
687
413
|
"ROCKET_GRUNT_F": {
|
|
688
|
-
"
|
|
689
|
-
"index": 137,
|
|
690
|
-
"Palette": "gTrainerPalette_RocketGruntF"
|
|
414
|
+
"index": 137
|
|
691
415
|
},
|
|
692
416
|
"PSYCHIC_F": {
|
|
693
|
-
"
|
|
694
|
-
"index": 138,
|
|
695
|
-
"Palette": "gTrainerPalette_PsychicF"
|
|
417
|
+
"index": 138
|
|
696
418
|
},
|
|
697
419
|
"CRUSH_GIRL": {
|
|
698
|
-
"
|
|
699
|
-
"index": 139,
|
|
700
|
-
"Palette": "gTrainerPalette_CrushGirl"
|
|
420
|
+
"index": 139
|
|
701
421
|
},
|
|
702
422
|
"TUBER_F": {
|
|
703
|
-
"
|
|
704
|
-
"index": 140,
|
|
705
|
-
"Palette": "gTrainerPalette_TuberF"
|
|
423
|
+
"index": 140
|
|
706
424
|
},
|
|
707
425
|
"POKEMON_BREEDER": {
|
|
708
|
-
"
|
|
709
|
-
"index": 141,
|
|
710
|
-
"Palette": "gTrainerPalette_PokemonBreeder"
|
|
426
|
+
"index": 141
|
|
711
427
|
},
|
|
712
428
|
"POKEMON_RANGER_M": {
|
|
713
|
-
"
|
|
714
|
-
"index": 142,
|
|
715
|
-
"Palette": "gTrainerPalette_PokemonRangerM"
|
|
429
|
+
"index": 142
|
|
716
430
|
},
|
|
717
431
|
"POKEMON_RANGER_F": {
|
|
718
|
-
"
|
|
719
|
-
"index": 143,
|
|
720
|
-
"Palette": "gTrainerPalette_PokemonRangerF"
|
|
432
|
+
"index": 143
|
|
721
433
|
},
|
|
722
434
|
"AROMA_LADY": {
|
|
723
|
-
"
|
|
724
|
-
"index": 144,
|
|
725
|
-
"Palette": "gTrainerPalette_AromaLady"
|
|
435
|
+
"index": 144
|
|
726
436
|
},
|
|
727
437
|
"RUIN_MANIAC": {
|
|
728
|
-
"
|
|
729
|
-
"index": 145,
|
|
730
|
-
"Palette": "gTrainerPalette_RuinManiac"
|
|
438
|
+
"index": 145
|
|
731
439
|
},
|
|
732
440
|
"LADY": {
|
|
733
|
-
"
|
|
734
|
-
"index": 146,
|
|
735
|
-
"Palette": "gTrainerPalette_Lady"
|
|
441
|
+
"index": 146
|
|
736
442
|
},
|
|
737
443
|
"PAINTER": {
|
|
738
|
-
"
|
|
739
|
-
"index": 147,
|
|
740
|
-
"Palette": "gTrainerPalette_Painter"
|
|
444
|
+
"index": 147
|
|
741
445
|
}
|
|
742
446
|
}
|