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
package/item-data/itemData.json
CHANGED
|
@@ -1,1882 +1,1130 @@
|
|
|
1
1
|
{
|
|
2
2
|
"NONE": {
|
|
3
|
-
"index": 0
|
|
4
|
-
"icon": "gItemIcon_QuestionMark",
|
|
5
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
3
|
+
"index": 0
|
|
6
4
|
},
|
|
7
5
|
"MASTER_BALL": {
|
|
8
|
-
"index": 1
|
|
9
|
-
"icon": "gItemIcon_MasterBall",
|
|
10
|
-
"palette": "gItemIconPalette_MasterBall"
|
|
6
|
+
"index": 1
|
|
11
7
|
},
|
|
12
8
|
"ULTRA_BALL": {
|
|
13
|
-
"index": 2
|
|
14
|
-
"icon": "gItemIcon_UltraBall",
|
|
15
|
-
"palette": "gItemIconPalette_UltraBall"
|
|
9
|
+
"index": 2
|
|
16
10
|
},
|
|
17
11
|
"GREAT_BALL": {
|
|
18
|
-
"index": 3
|
|
19
|
-
"icon": "gItemIcon_GreatBall",
|
|
20
|
-
"palette": "gItemIconPalette_GreatBall"
|
|
12
|
+
"index": 3
|
|
21
13
|
},
|
|
22
14
|
"POKE_BALL": {
|
|
23
|
-
"index": 4
|
|
24
|
-
"icon": "gItemIcon_PokeBall",
|
|
25
|
-
"palette": "gItemIconPalette_PokeBall"
|
|
15
|
+
"index": 4
|
|
26
16
|
},
|
|
27
17
|
"SAFARI_BALL": {
|
|
28
|
-
"index": 5
|
|
29
|
-
"icon": "gItemIcon_SafariBall",
|
|
30
|
-
"palette": "gItemIconPalette_SafariBall"
|
|
18
|
+
"index": 5
|
|
31
19
|
},
|
|
32
20
|
"NET_BALL": {
|
|
33
|
-
"index": 6
|
|
34
|
-
"icon": "gItemIcon_NetBall",
|
|
35
|
-
"palette": "gItemIconPalette_NetBall"
|
|
21
|
+
"index": 6
|
|
36
22
|
},
|
|
37
23
|
"DIVE_BALL": {
|
|
38
|
-
"index": 7
|
|
39
|
-
"icon": "gItemIcon_DiveBall",
|
|
40
|
-
"palette": "gItemIconPalette_DiveBall"
|
|
24
|
+
"index": 7
|
|
41
25
|
},
|
|
42
26
|
"NEST_BALL": {
|
|
43
|
-
"index": 8
|
|
44
|
-
"icon": "gItemIcon_NestBall",
|
|
45
|
-
"palette": "gItemIconPalette_NestBall"
|
|
27
|
+
"index": 8
|
|
46
28
|
},
|
|
47
29
|
"REPEAT_BALL": {
|
|
48
|
-
"index": 9
|
|
49
|
-
"icon": "gItemIcon_RepeatBall",
|
|
50
|
-
"palette": "gItemIconPalette_RepeatBall"
|
|
30
|
+
"index": 9
|
|
51
31
|
},
|
|
52
32
|
"TIMER_BALL": {
|
|
53
|
-
"index": 10
|
|
54
|
-
"icon": "gItemIcon_TimerBall",
|
|
55
|
-
"palette": "gItemIconPalette_RepeatBall"
|
|
33
|
+
"index": 10
|
|
56
34
|
},
|
|
57
35
|
"LUXURY_BALL": {
|
|
58
|
-
"index": 11
|
|
59
|
-
"icon": "gItemIcon_LuxuryBall",
|
|
60
|
-
"palette": "gItemIconPalette_LuxuryBall"
|
|
36
|
+
"index": 11
|
|
61
37
|
},
|
|
62
38
|
"PREMIER_BALL": {
|
|
63
|
-
"index": 12
|
|
64
|
-
"icon": "gItemIcon_PremierBall",
|
|
65
|
-
"palette": "gItemIconPalette_LuxuryBall"
|
|
39
|
+
"index": 12
|
|
66
40
|
},
|
|
67
41
|
"POTION": {
|
|
68
|
-
"index": 13
|
|
69
|
-
"icon": "gItemIcon_Potion",
|
|
70
|
-
"palette": "gItemIconPalette_Potion"
|
|
42
|
+
"index": 13
|
|
71
43
|
},
|
|
72
44
|
"ANTIDOTE": {
|
|
73
|
-
"index": 14
|
|
74
|
-
"icon": "gItemIcon_Antidote",
|
|
75
|
-
"palette": "gItemIconPalette_Antidote"
|
|
45
|
+
"index": 14
|
|
76
46
|
},
|
|
77
47
|
"BURN_HEAL": {
|
|
78
|
-
"index": 15
|
|
79
|
-
"icon": "gItemIcon_StatusHeal",
|
|
80
|
-
"palette": "gItemIconPalette_BurnHeal"
|
|
48
|
+
"index": 15
|
|
81
49
|
},
|
|
82
50
|
"ICE_HEAL": {
|
|
83
|
-
"index": 16
|
|
84
|
-
"icon": "gItemIcon_StatusHeal",
|
|
85
|
-
"palette": "gItemIconPalette_IceHeal"
|
|
51
|
+
"index": 16
|
|
86
52
|
},
|
|
87
53
|
"AWAKENING": {
|
|
88
|
-
"index": 17
|
|
89
|
-
"icon": "gItemIcon_StatusHeal",
|
|
90
|
-
"palette": "gItemIconPalette_Awakening"
|
|
54
|
+
"index": 17
|
|
91
55
|
},
|
|
92
56
|
"PARALYZE_HEAL": {
|
|
93
|
-
"index": 18
|
|
94
|
-
"icon": "gItemIcon_StatusHeal",
|
|
95
|
-
"palette": "gItemIconPalette_ParalyzeHeal"
|
|
57
|
+
"index": 18
|
|
96
58
|
},
|
|
97
59
|
"FULL_RESTORE": {
|
|
98
|
-
"index": 19
|
|
99
|
-
"icon": "gItemIcon_LargePotion",
|
|
100
|
-
"palette": "gItemIconPalette_FullRestore"
|
|
60
|
+
"index": 19
|
|
101
61
|
},
|
|
102
62
|
"MAX_POTION": {
|
|
103
|
-
"index": 20
|
|
104
|
-
"icon": "gItemIcon_LargePotion",
|
|
105
|
-
"palette": "gItemIconPalette_MaxPotion"
|
|
63
|
+
"index": 20
|
|
106
64
|
},
|
|
107
65
|
"HYPER_POTION": {
|
|
108
|
-
"index": 21
|
|
109
|
-
"icon": "gItemIcon_Potion",
|
|
110
|
-
"palette": "gItemIconPalette_HyperPotion"
|
|
66
|
+
"index": 21
|
|
111
67
|
},
|
|
112
68
|
"SUPER_POTION": {
|
|
113
|
-
"index": 22
|
|
114
|
-
"icon": "gItemIcon_Potion",
|
|
115
|
-
"palette": "gItemIconPalette_SuperPotion"
|
|
69
|
+
"index": 22
|
|
116
70
|
},
|
|
117
71
|
"FULL_HEAL": {
|
|
118
|
-
"index": 23
|
|
119
|
-
"icon": "gItemIcon_FullHeal",
|
|
120
|
-
"palette": "gItemIconPalette_FullHeal"
|
|
72
|
+
"index": 23
|
|
121
73
|
},
|
|
122
74
|
"REVIVE": {
|
|
123
|
-
"index": 24
|
|
124
|
-
"icon": "gItemIcon_Revive",
|
|
125
|
-
"palette": "gItemIconPalette_Revive"
|
|
75
|
+
"index": 24
|
|
126
76
|
},
|
|
127
77
|
"MAX_REVIVE": {
|
|
128
|
-
"index": 25
|
|
129
|
-
"icon": "gItemIcon_MaxRevive",
|
|
130
|
-
"palette": "gItemIconPalette_Revive"
|
|
78
|
+
"index": 25
|
|
131
79
|
},
|
|
132
80
|
"FRESH_WATER": {
|
|
133
|
-
"index": 26
|
|
134
|
-
"icon": "gItemIcon_FreshWater",
|
|
135
|
-
"palette": "gItemIconPalette_FreshWater"
|
|
81
|
+
"index": 26
|
|
136
82
|
},
|
|
137
83
|
"SODA_POP": {
|
|
138
|
-
"index": 27
|
|
139
|
-
"icon": "gItemIcon_SodaPop",
|
|
140
|
-
"palette": "gItemIconPalette_SodaPop"
|
|
84
|
+
"index": 27
|
|
141
85
|
},
|
|
142
86
|
"LEMONADE": {
|
|
143
|
-
"index": 28
|
|
144
|
-
"icon": "gItemIcon_Lemonade",
|
|
145
|
-
"palette": "gItemIconPalette_Lemonade"
|
|
87
|
+
"index": 28
|
|
146
88
|
},
|
|
147
89
|
"MOOMOO_MILK": {
|
|
148
|
-
"index": 29
|
|
149
|
-
"icon": "gItemIcon_MoomooMilk",
|
|
150
|
-
"palette": "gItemIconPalette_MoomooMilk"
|
|
90
|
+
"index": 29
|
|
151
91
|
},
|
|
152
92
|
"ENERGY_POWDER": {
|
|
153
|
-
"index": 30
|
|
154
|
-
"icon": "gItemIcon_Powder",
|
|
155
|
-
"palette": "gItemIconPalette_EnergyPowder"
|
|
93
|
+
"index": 30
|
|
156
94
|
},
|
|
157
95
|
"ENERGY_ROOT": {
|
|
158
|
-
"index": 31
|
|
159
|
-
"icon": "gItemIcon_EnergyRoot",
|
|
160
|
-
"palette": "gItemIconPalette_EnergyRoot"
|
|
96
|
+
"index": 31
|
|
161
97
|
},
|
|
162
98
|
"HEAL_POWDER": {
|
|
163
|
-
"index": 32
|
|
164
|
-
"icon": "gItemIcon_Powder",
|
|
165
|
-
"palette": "gItemIconPalette_HealPowder"
|
|
99
|
+
"index": 32
|
|
166
100
|
},
|
|
167
101
|
"REVIVAL_HERB": {
|
|
168
|
-
"index": 33
|
|
169
|
-
"icon": "gItemIcon_RevivalHerb",
|
|
170
|
-
"palette": "gItemIconPalette_RevivalHerb"
|
|
102
|
+
"index": 33
|
|
171
103
|
},
|
|
172
104
|
"ETHER": {
|
|
173
|
-
"index": 34
|
|
174
|
-
"icon": "gItemIcon_Ether",
|
|
175
|
-
"palette": "gItemIconPalette_Ether"
|
|
105
|
+
"index": 34
|
|
176
106
|
},
|
|
177
107
|
"MAX_ETHER": {
|
|
178
|
-
"index": 35
|
|
179
|
-
"icon": "gItemIcon_Ether",
|
|
180
|
-
"palette": "gItemIconPalette_MaxEther"
|
|
108
|
+
"index": 35
|
|
181
109
|
},
|
|
182
110
|
"ELIXIR": {
|
|
183
|
-
"index": 36
|
|
184
|
-
"icon": "gItemIcon_Ether",
|
|
185
|
-
"palette": "gItemIconPalette_Elixir"
|
|
111
|
+
"index": 36
|
|
186
112
|
},
|
|
187
113
|
"MAX_ELIXIR": {
|
|
188
|
-
"index": 37
|
|
189
|
-
"icon": "gItemIcon_Ether",
|
|
190
|
-
"palette": "gItemIconPalette_MaxElixir"
|
|
114
|
+
"index": 37
|
|
191
115
|
},
|
|
192
116
|
"LAVA_COOKIE": {
|
|
193
|
-
"index": 38
|
|
194
|
-
"icon": "gItemIcon_LavaCookie",
|
|
195
|
-
"palette": "gItemIconPalette_LavaCookieAndLetter"
|
|
117
|
+
"index": 38
|
|
196
118
|
},
|
|
197
119
|
"BLUE_FLUTE": {
|
|
198
|
-
"index": 39
|
|
199
|
-
"icon": "gItemIcon_Flute",
|
|
200
|
-
"palette": "gItemIconPalette_BlueFlute"
|
|
120
|
+
"index": 39
|
|
201
121
|
},
|
|
202
122
|
"YELLOW_FLUTE": {
|
|
203
|
-
"index": 40
|
|
204
|
-
"icon": "gItemIcon_Flute",
|
|
205
|
-
"palette": "gItemIconPalette_YellowFlute"
|
|
123
|
+
"index": 40
|
|
206
124
|
},
|
|
207
125
|
"RED_FLUTE": {
|
|
208
|
-
"index": 41
|
|
209
|
-
"icon": "gItemIcon_Flute",
|
|
210
|
-
"palette": "gItemIconPalette_RedFlute"
|
|
126
|
+
"index": 41
|
|
211
127
|
},
|
|
212
128
|
"BLACK_FLUTE": {
|
|
213
|
-
"index": 42
|
|
214
|
-
"icon": "gItemIcon_Flute",
|
|
215
|
-
"palette": "gItemIconPalette_BlackFlute"
|
|
129
|
+
"index": 42
|
|
216
130
|
},
|
|
217
131
|
"WHITE_FLUTE": {
|
|
218
|
-
"index": 43
|
|
219
|
-
"icon": "gItemIcon_Flute",
|
|
220
|
-
"palette": "gItemIconPalette_WhiteFlute"
|
|
132
|
+
"index": 43
|
|
221
133
|
},
|
|
222
134
|
"BERRY_JUICE": {
|
|
223
|
-
"index": 44
|
|
224
|
-
"icon": "gItemIcon_BerryJuice",
|
|
225
|
-
"palette": "gItemIconPalette_BerryJuice"
|
|
135
|
+
"index": 44
|
|
226
136
|
},
|
|
227
137
|
"SACRED_ASH": {
|
|
228
|
-
"index": 45
|
|
229
|
-
"icon": "gItemIcon_SacredAsh",
|
|
230
|
-
"palette": "gItemIconPalette_SacredAsh"
|
|
138
|
+
"index": 45
|
|
231
139
|
},
|
|
232
140
|
"SHOAL_SALT": {
|
|
233
|
-
"index": 46
|
|
234
|
-
"icon": "gItemIcon_Powder",
|
|
235
|
-
"palette": "gItemIconPalette_ShoalSalt"
|
|
141
|
+
"index": 46
|
|
236
142
|
},
|
|
237
143
|
"SHOAL_SHELL": {
|
|
238
|
-
"index": 47
|
|
239
|
-
"icon": "gItemIcon_ShoalShell",
|
|
240
|
-
"palette": "gItemIconPalette_Shell"
|
|
144
|
+
"index": 47
|
|
241
145
|
},
|
|
242
146
|
"RED_SHARD": {
|
|
243
|
-
"index": 48
|
|
244
|
-
"icon": "gItemIcon_Shard",
|
|
245
|
-
"palette": "gItemIconPalette_RedShard"
|
|
147
|
+
"index": 48
|
|
246
148
|
},
|
|
247
149
|
"BLUE_SHARD": {
|
|
248
|
-
"index": 49
|
|
249
|
-
"icon": "gItemIcon_Shard",
|
|
250
|
-
"palette": "gItemIconPalette_BlueShard"
|
|
150
|
+
"index": 49
|
|
251
151
|
},
|
|
252
152
|
"YELLOW_SHARD": {
|
|
253
|
-
"index": 50
|
|
254
|
-
"icon": "gItemIcon_Shard",
|
|
255
|
-
"palette": "gItemIconPalette_YellowShard"
|
|
153
|
+
"index": 50
|
|
256
154
|
},
|
|
257
155
|
"GREEN_SHARD": {
|
|
258
|
-
"index": 51
|
|
259
|
-
"icon": "gItemIcon_Shard",
|
|
260
|
-
"palette": "gItemIconPalette_GreenShard"
|
|
156
|
+
"index": 51
|
|
261
157
|
},
|
|
262
158
|
"034": {
|
|
263
|
-
"index": 52
|
|
264
|
-
"icon": "gItemIcon_QuestionMark",
|
|
265
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
159
|
+
"index": 52
|
|
266
160
|
},
|
|
267
161
|
"035": {
|
|
268
|
-
"index": 53
|
|
269
|
-
"icon": "gItemIcon_QuestionMark",
|
|
270
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
162
|
+
"index": 53
|
|
271
163
|
},
|
|
272
164
|
"036": {
|
|
273
|
-
"index": 54
|
|
274
|
-
"icon": "gItemIcon_QuestionMark",
|
|
275
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
165
|
+
"index": 54
|
|
276
166
|
},
|
|
277
167
|
"037": {
|
|
278
|
-
"index": 55
|
|
279
|
-
"icon": "gItemIcon_QuestionMark",
|
|
280
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
168
|
+
"index": 55
|
|
281
169
|
},
|
|
282
170
|
"038": {
|
|
283
|
-
"index": 56
|
|
284
|
-
"icon": "gItemIcon_QuestionMark",
|
|
285
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
171
|
+
"index": 56
|
|
286
172
|
},
|
|
287
173
|
"039": {
|
|
288
|
-
"index": 57
|
|
289
|
-
"icon": "gItemIcon_QuestionMark",
|
|
290
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
174
|
+
"index": 57
|
|
291
175
|
},
|
|
292
176
|
"03A": {
|
|
293
|
-
"index": 58
|
|
294
|
-
"icon": "gItemIcon_QuestionMark",
|
|
295
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
177
|
+
"index": 58
|
|
296
178
|
},
|
|
297
179
|
"03B": {
|
|
298
|
-
"index": 59
|
|
299
|
-
"icon": "gItemIcon_QuestionMark",
|
|
300
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
180
|
+
"index": 59
|
|
301
181
|
},
|
|
302
182
|
"03C": {
|
|
303
|
-
"index": 60
|
|
304
|
-
"icon": "gItemIcon_QuestionMark",
|
|
305
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
183
|
+
"index": 60
|
|
306
184
|
},
|
|
307
185
|
"03D": {
|
|
308
|
-
"index": 61
|
|
309
|
-
"icon": "gItemIcon_QuestionMark",
|
|
310
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
186
|
+
"index": 61
|
|
311
187
|
},
|
|
312
188
|
"03E": {
|
|
313
|
-
"index": 62
|
|
314
|
-
"icon": "gItemIcon_QuestionMark",
|
|
315
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
189
|
+
"index": 62
|
|
316
190
|
},
|
|
317
191
|
"HP_UP": {
|
|
318
|
-
"index": 63
|
|
319
|
-
"icon": "gItemIcon_HPUp",
|
|
320
|
-
"palette": "gItemIconPalette_HPUp"
|
|
192
|
+
"index": 63
|
|
321
193
|
},
|
|
322
194
|
"PROTEIN": {
|
|
323
|
-
"index": 64
|
|
324
|
-
"icon": "gItemIcon_Vitamin",
|
|
325
|
-
"palette": "gItemIconPalette_Protein"
|
|
195
|
+
"index": 64
|
|
326
196
|
},
|
|
327
197
|
"IRON": {
|
|
328
|
-
"index": 65
|
|
329
|
-
"icon": "gItemIcon_Vitamin",
|
|
330
|
-
"palette": "gItemIconPalette_Iron"
|
|
198
|
+
"index": 65
|
|
331
199
|
},
|
|
332
200
|
"CARBOS": {
|
|
333
|
-
"index": 66
|
|
334
|
-
"icon": "gItemIcon_Vitamin",
|
|
335
|
-
"palette": "gItemIconPalette_Carbos"
|
|
201
|
+
"index": 66
|
|
336
202
|
},
|
|
337
203
|
"CALCIUM": {
|
|
338
|
-
"index": 67
|
|
339
|
-
"icon": "gItemIcon_Vitamin",
|
|
340
|
-
"palette": "gItemIconPalette_Calcium"
|
|
204
|
+
"index": 67
|
|
341
205
|
},
|
|
342
206
|
"RARE_CANDY": {
|
|
343
|
-
"index": 68
|
|
344
|
-
"icon": "gItemIcon_RareCandy",
|
|
345
|
-
"palette": "gItemIconPalette_RareCandy"
|
|
207
|
+
"index": 68
|
|
346
208
|
},
|
|
347
209
|
"PP_UP": {
|
|
348
|
-
"index": 69
|
|
349
|
-
"icon": "gItemIcon_PPUp",
|
|
350
|
-
"palette": "gItemIconPalette_PPUp"
|
|
210
|
+
"index": 69
|
|
351
211
|
},
|
|
352
212
|
"ZINC": {
|
|
353
|
-
"index": 70
|
|
354
|
-
"icon": "gItemIcon_Vitamin",
|
|
355
|
-
"palette": "gItemIconPalette_Zinc"
|
|
213
|
+
"index": 70
|
|
356
214
|
},
|
|
357
215
|
"PP_MAX": {
|
|
358
|
-
"index": 71
|
|
359
|
-
"icon": "gItemIcon_PPMax",
|
|
360
|
-
"palette": "gItemIconPalette_PPMax"
|
|
216
|
+
"index": 71
|
|
361
217
|
},
|
|
362
218
|
"048": {
|
|
363
|
-
"index": 72
|
|
364
|
-
"icon": "gItemIcon_QuestionMark",
|
|
365
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
219
|
+
"index": 72
|
|
366
220
|
},
|
|
367
221
|
"GUARD_SPEC": {
|
|
368
|
-
"index": 73
|
|
369
|
-
"icon": "gItemIcon_BattleStatItem",
|
|
370
|
-
"palette": "gItemIconPalette_GuardSpec"
|
|
222
|
+
"index": 73
|
|
371
223
|
},
|
|
372
224
|
"DIRE_HIT": {
|
|
373
|
-
"index": 74
|
|
374
|
-
"icon": "gItemIcon_BattleStatItem",
|
|
375
|
-
"palette": "gItemIconPalette_DireHit"
|
|
225
|
+
"index": 74
|
|
376
226
|
},
|
|
377
227
|
"X_ATTACK": {
|
|
378
|
-
"index": 75
|
|
379
|
-
"icon": "gItemIcon_BattleStatItem",
|
|
380
|
-
"palette": "gItemIconPalette_XAttack"
|
|
228
|
+
"index": 75
|
|
381
229
|
},
|
|
382
230
|
"X_DEFEND": {
|
|
383
|
-
"index": 76
|
|
384
|
-
"icon": "gItemIcon_BattleStatItem",
|
|
385
|
-
"palette": "gItemIconPalette_XDefend"
|
|
231
|
+
"index": 76
|
|
386
232
|
},
|
|
387
233
|
"X_SPEED": {
|
|
388
|
-
"index": 77
|
|
389
|
-
"icon": "gItemIcon_BattleStatItem",
|
|
390
|
-
"palette": "gItemIconPalette_XSpeed"
|
|
234
|
+
"index": 77
|
|
391
235
|
},
|
|
392
236
|
"X_ACCURACY": {
|
|
393
|
-
"index": 78
|
|
394
|
-
"icon": "gItemIcon_BattleStatItem",
|
|
395
|
-
"palette": "gItemIconPalette_XAccuracy"
|
|
237
|
+
"index": 78
|
|
396
238
|
},
|
|
397
239
|
"X_SPECIAL": {
|
|
398
|
-
"index": 79
|
|
399
|
-
"icon": "gItemIcon_BattleStatItem",
|
|
400
|
-
"palette": "gItemIconPalette_XSpecial"
|
|
240
|
+
"index": 79
|
|
401
241
|
},
|
|
402
242
|
"POKE_DOLL": {
|
|
403
|
-
"index": 80
|
|
404
|
-
"icon": "gItemIcon_PokeDoll",
|
|
405
|
-
"palette": "gItemIconPalette_PokeDoll"
|
|
243
|
+
"index": 80
|
|
406
244
|
},
|
|
407
245
|
"FLUFFY_TAIL": {
|
|
408
|
-
"index": 81
|
|
409
|
-
"icon": "gItemIcon_FluffyTail",
|
|
410
|
-
"palette": "gItemIconPalette_FluffyTail"
|
|
246
|
+
"index": 81
|
|
411
247
|
},
|
|
412
248
|
"052": {
|
|
413
|
-
"index": 82
|
|
414
|
-
"icon": "gItemIcon_QuestionMark",
|
|
415
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
249
|
+
"index": 82
|
|
416
250
|
},
|
|
417
251
|
"SUPER_REPEL": {
|
|
418
|
-
"index": 83
|
|
419
|
-
"icon": "gItemIcon_Repel",
|
|
420
|
-
"palette": "gItemIconPalette_SuperRepel"
|
|
252
|
+
"index": 83
|
|
421
253
|
},
|
|
422
254
|
"MAX_REPEL": {
|
|
423
|
-
"index": 84
|
|
424
|
-
"icon": "gItemIcon_Repel",
|
|
425
|
-
"palette": "gItemIconPalette_MaxRepel"
|
|
255
|
+
"index": 84
|
|
426
256
|
},
|
|
427
257
|
"ESCAPE_ROPE": {
|
|
428
|
-
"index": 85
|
|
429
|
-
"icon": "gItemIcon_EscapeRope",
|
|
430
|
-
"palette": "gItemIconPalette_EscapeRope"
|
|
258
|
+
"index": 85
|
|
431
259
|
},
|
|
432
260
|
"REPEL": {
|
|
433
|
-
"index": 86
|
|
434
|
-
"icon": "gItemIcon_Repel",
|
|
435
|
-
"palette": "gItemIconPalette_Repel"
|
|
261
|
+
"index": 86
|
|
436
262
|
},
|
|
437
263
|
"057": {
|
|
438
|
-
"index": 87
|
|
439
|
-
"icon": "gItemIcon_QuestionMark",
|
|
440
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
264
|
+
"index": 87
|
|
441
265
|
},
|
|
442
266
|
"058": {
|
|
443
|
-
"index": 88
|
|
444
|
-
"icon": "gItemIcon_QuestionMark",
|
|
445
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
267
|
+
"index": 88
|
|
446
268
|
},
|
|
447
269
|
"059": {
|
|
448
|
-
"index": 89
|
|
449
|
-
"icon": "gItemIcon_QuestionMark",
|
|
450
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
270
|
+
"index": 89
|
|
451
271
|
},
|
|
452
272
|
"05A": {
|
|
453
|
-
"index": 90
|
|
454
|
-
"icon": "gItemIcon_QuestionMark",
|
|
455
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
273
|
+
"index": 90
|
|
456
274
|
},
|
|
457
275
|
"05B": {
|
|
458
|
-
"index": 91
|
|
459
|
-
"icon": "gItemIcon_QuestionMark",
|
|
460
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
276
|
+
"index": 91
|
|
461
277
|
},
|
|
462
278
|
"05C": {
|
|
463
|
-
"index": 92
|
|
464
|
-
"icon": "gItemIcon_QuestionMark",
|
|
465
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
279
|
+
"index": 92
|
|
466
280
|
},
|
|
467
281
|
"SUN_STONE": {
|
|
468
|
-
"index": 93
|
|
469
|
-
"icon": "gItemIcon_SunStone",
|
|
470
|
-
"palette": "gItemIconPalette_SunStone"
|
|
282
|
+
"index": 93
|
|
471
283
|
},
|
|
472
284
|
"MOON_STONE": {
|
|
473
|
-
"index": 94
|
|
474
|
-
"icon": "gItemIcon_MoonStone",
|
|
475
|
-
"palette": "gItemIconPalette_MoonStone"
|
|
285
|
+
"index": 94
|
|
476
286
|
},
|
|
477
287
|
"FIRE_STONE": {
|
|
478
|
-
"index": 95
|
|
479
|
-
"icon": "gItemIcon_FireStone",
|
|
480
|
-
"palette": "gItemIconPalette_FireStone"
|
|
288
|
+
"index": 95
|
|
481
289
|
},
|
|
482
290
|
"THUNDER_STONE": {
|
|
483
|
-
"index": 96
|
|
484
|
-
"icon": "gItemIcon_ThunderStone",
|
|
485
|
-
"palette": "gItemIconPalette_ThunderStone"
|
|
291
|
+
"index": 96
|
|
486
292
|
},
|
|
487
293
|
"WATER_STONE": {
|
|
488
|
-
"index": 97
|
|
489
|
-
"icon": "gItemIcon_WaterStone",
|
|
490
|
-
"palette": "gItemIconPalette_WaterStone"
|
|
294
|
+
"index": 97
|
|
491
295
|
},
|
|
492
296
|
"LEAF_STONE": {
|
|
493
|
-
"index": 98
|
|
494
|
-
"icon": "gItemIcon_LeafStone",
|
|
495
|
-
"palette": "gItemIconPalette_LeafStone"
|
|
297
|
+
"index": 98
|
|
496
298
|
},
|
|
497
299
|
"063": {
|
|
498
|
-
"index": 99
|
|
499
|
-
"icon": "gItemIcon_QuestionMark",
|
|
500
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
300
|
+
"index": 99
|
|
501
301
|
},
|
|
502
302
|
"064": {
|
|
503
|
-
"index": 100
|
|
504
|
-
"icon": "gItemIcon_QuestionMark",
|
|
505
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
303
|
+
"index": 100
|
|
506
304
|
},
|
|
507
305
|
"065": {
|
|
508
|
-
"index": 101
|
|
509
|
-
"icon": "gItemIcon_QuestionMark",
|
|
510
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
306
|
+
"index": 101
|
|
511
307
|
},
|
|
512
308
|
"066": {
|
|
513
|
-
"index": 102
|
|
514
|
-
"icon": "gItemIcon_QuestionMark",
|
|
515
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
309
|
+
"index": 102
|
|
516
310
|
},
|
|
517
311
|
"TINY_MUSHROOM": {
|
|
518
|
-
"index": 103
|
|
519
|
-
"icon": "gItemIcon_TinyMushroom",
|
|
520
|
-
"palette": "gItemIconPalette_Mushroom"
|
|
312
|
+
"index": 103
|
|
521
313
|
},
|
|
522
314
|
"BIG_MUSHROOM": {
|
|
523
|
-
"index": 104
|
|
524
|
-
"icon": "gItemIcon_BigMushroom",
|
|
525
|
-
"palette": "gItemIconPalette_Mushroom"
|
|
315
|
+
"index": 104
|
|
526
316
|
},
|
|
527
317
|
"069": {
|
|
528
|
-
"index": 105
|
|
529
|
-
"icon": "gItemIcon_QuestionMark",
|
|
530
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
318
|
+
"index": 105
|
|
531
319
|
},
|
|
532
320
|
"PEARL": {
|
|
533
|
-
"index": 106
|
|
534
|
-
"icon": "gItemIcon_Pearl",
|
|
535
|
-
"palette": "gItemIconPalette_Pearl"
|
|
321
|
+
"index": 106
|
|
536
322
|
},
|
|
537
323
|
"BIG_PEARL": {
|
|
538
|
-
"index": 107
|
|
539
|
-
"icon": "gItemIcon_BigPearl",
|
|
540
|
-
"palette": "gItemIconPalette_Pearl"
|
|
324
|
+
"index": 107
|
|
541
325
|
},
|
|
542
326
|
"STARDUST": {
|
|
543
|
-
"index": 108
|
|
544
|
-
"icon": "gItemIcon_Stardust",
|
|
545
|
-
"palette": "gItemIconPalette_Star"
|
|
327
|
+
"index": 108
|
|
546
328
|
},
|
|
547
329
|
"STAR_PIECE": {
|
|
548
|
-
"index": 109
|
|
549
|
-
"icon": "gItemIcon_StarPiece",
|
|
550
|
-
"palette": "gItemIconPalette_Star"
|
|
330
|
+
"index": 109
|
|
551
331
|
},
|
|
552
332
|
"NUGGET": {
|
|
553
|
-
"index": 110
|
|
554
|
-
"icon": "gItemIcon_Nugget",
|
|
555
|
-
"palette": "gItemIconPalette_Nugget"
|
|
333
|
+
"index": 110
|
|
556
334
|
},
|
|
557
335
|
"HEART_SCALE": {
|
|
558
|
-
"index": 111
|
|
559
|
-
"icon": "gItemIcon_HeartScale",
|
|
560
|
-
"palette": "gItemIconPalette_HeartScale"
|
|
336
|
+
"index": 111
|
|
561
337
|
},
|
|
562
338
|
"070": {
|
|
563
|
-
"index": 112
|
|
564
|
-
"icon": "gItemIcon_QuestionMark",
|
|
565
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
339
|
+
"index": 112
|
|
566
340
|
},
|
|
567
341
|
"071": {
|
|
568
|
-
"index": 113
|
|
569
|
-
"icon": "gItemIcon_QuestionMark",
|
|
570
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
342
|
+
"index": 113
|
|
571
343
|
},
|
|
572
344
|
"072": {
|
|
573
|
-
"index": 114
|
|
574
|
-
"icon": "gItemIcon_QuestionMark",
|
|
575
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
345
|
+
"index": 114
|
|
576
346
|
},
|
|
577
347
|
"073": {
|
|
578
|
-
"index": 115
|
|
579
|
-
"icon": "gItemIcon_QuestionMark",
|
|
580
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
348
|
+
"index": 115
|
|
581
349
|
},
|
|
582
350
|
"074": {
|
|
583
|
-
"index": 116
|
|
584
|
-
"icon": "gItemIcon_QuestionMark",
|
|
585
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
351
|
+
"index": 116
|
|
586
352
|
},
|
|
587
353
|
"075": {
|
|
588
|
-
"index": 117
|
|
589
|
-
"icon": "gItemIcon_QuestionMark",
|
|
590
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
354
|
+
"index": 117
|
|
591
355
|
},
|
|
592
356
|
"076": {
|
|
593
|
-
"index": 118
|
|
594
|
-
"icon": "gItemIcon_QuestionMark",
|
|
595
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
357
|
+
"index": 118
|
|
596
358
|
},
|
|
597
359
|
"077": {
|
|
598
|
-
"index": 119
|
|
599
|
-
"icon": "gItemIcon_QuestionMark",
|
|
600
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
360
|
+
"index": 119
|
|
601
361
|
},
|
|
602
362
|
"078": {
|
|
603
|
-
"index": 120
|
|
604
|
-
"icon": "gItemIcon_QuestionMark",
|
|
605
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
363
|
+
"index": 120
|
|
606
364
|
},
|
|
607
365
|
"ORANGE_MAIL": {
|
|
608
|
-
"index": 121
|
|
609
|
-
"icon": "gItemIcon_OrangeMail",
|
|
610
|
-
"palette": "gItemIconPalette_OrangeMail"
|
|
366
|
+
"index": 121
|
|
611
367
|
},
|
|
612
368
|
"HARBOR_MAIL": {
|
|
613
|
-
"index": 122
|
|
614
|
-
"icon": "gItemIcon_HarborMail",
|
|
615
|
-
"palette": "gItemIconPalette_HarborMail"
|
|
369
|
+
"index": 122
|
|
616
370
|
},
|
|
617
371
|
"GLITTER_MAIL": {
|
|
618
|
-
"index": 123
|
|
619
|
-
"icon": "gItemIcon_GlitterMail",
|
|
620
|
-
"palette": "gItemIconPalette_GlitterMail"
|
|
372
|
+
"index": 123
|
|
621
373
|
},
|
|
622
374
|
"MECH_MAIL": {
|
|
623
|
-
"index": 124
|
|
624
|
-
"icon": "gItemIcon_MechMail",
|
|
625
|
-
"palette": "gItemIconPalette_MechMail"
|
|
375
|
+
"index": 124
|
|
626
376
|
},
|
|
627
377
|
"WOOD_MAIL": {
|
|
628
|
-
"index": 125
|
|
629
|
-
"icon": "gItemIcon_WoodMail",
|
|
630
|
-
"palette": "gItemIconPalette_WoodMail"
|
|
378
|
+
"index": 125
|
|
631
379
|
},
|
|
632
380
|
"WAVE_MAIL": {
|
|
633
|
-
"index": 126
|
|
634
|
-
"icon": "gItemIcon_WaveMail",
|
|
635
|
-
"palette": "gItemIconPalette_WaveMail"
|
|
381
|
+
"index": 126
|
|
636
382
|
},
|
|
637
383
|
"BEAD_MAIL": {
|
|
638
|
-
"index": 127
|
|
639
|
-
"icon": "gItemIcon_BeadMail",
|
|
640
|
-
"palette": "gItemIconPalette_BeadMail"
|
|
384
|
+
"index": 127
|
|
641
385
|
},
|
|
642
386
|
"SHADOW_MAIL": {
|
|
643
|
-
"index": 128
|
|
644
|
-
"icon": "gItemIcon_ShadowMail",
|
|
645
|
-
"palette": "gItemIconPalette_ShadowMail"
|
|
387
|
+
"index": 128
|
|
646
388
|
},
|
|
647
389
|
"TROPIC_MAIL": {
|
|
648
|
-
"index": 129
|
|
649
|
-
"icon": "gItemIcon_TropicMail",
|
|
650
|
-
"palette": "gItemIconPalette_TropicMail"
|
|
390
|
+
"index": 129
|
|
651
391
|
},
|
|
652
392
|
"DREAM_MAIL": {
|
|
653
|
-
"index": 130
|
|
654
|
-
"icon": "gItemIcon_DreamMail",
|
|
655
|
-
"palette": "gItemIconPalette_DreamMail"
|
|
393
|
+
"index": 130
|
|
656
394
|
},
|
|
657
395
|
"FAB_MAIL": {
|
|
658
|
-
"index": 131
|
|
659
|
-
"icon": "gItemIcon_FabMail",
|
|
660
|
-
"palette": "gItemIconPalette_FabMail"
|
|
396
|
+
"index": 131
|
|
661
397
|
},
|
|
662
398
|
"RETRO_MAIL": {
|
|
663
|
-
"index": 132
|
|
664
|
-
"icon": "gItemIcon_RetroMail",
|
|
665
|
-
"palette": "gItemIconPalette_RetroMail"
|
|
399
|
+
"index": 132
|
|
666
400
|
},
|
|
667
401
|
"CHERI_BERRY": {
|
|
668
|
-
"index": 133
|
|
669
|
-
"icon": "gItemIcon_CheriBerry",
|
|
670
|
-
"palette": "gItemIconPalette_CheriBerry"
|
|
402
|
+
"index": 133
|
|
671
403
|
},
|
|
672
404
|
"CHESTO_BERRY": {
|
|
673
|
-
"index": 134
|
|
674
|
-
"icon": "gItemIcon_ChestoBerry",
|
|
675
|
-
"palette": "gItemIconPalette_ChestoBerry"
|
|
405
|
+
"index": 134
|
|
676
406
|
},
|
|
677
407
|
"PECHA_BERRY": {
|
|
678
|
-
"index": 135
|
|
679
|
-
"icon": "gItemIcon_PechaBerry",
|
|
680
|
-
"palette": "gItemIconPalette_PechaBerry"
|
|
408
|
+
"index": 135
|
|
681
409
|
},
|
|
682
410
|
"RAWST_BERRY": {
|
|
683
|
-
"index": 136
|
|
684
|
-
"icon": "gItemIcon_RawstBerry",
|
|
685
|
-
"palette": "gItemIconPalette_RawstBerry"
|
|
411
|
+
"index": 136
|
|
686
412
|
},
|
|
687
413
|
"ASPEAR_BERRY": {
|
|
688
|
-
"index": 137
|
|
689
|
-
"icon": "gItemIcon_AspearBerry",
|
|
690
|
-
"palette": "gItemIconPalette_AspearBerry"
|
|
414
|
+
"index": 137
|
|
691
415
|
},
|
|
692
416
|
"LEPPA_BERRY": {
|
|
693
|
-
"index": 138
|
|
694
|
-
"icon": "gItemIcon_LeppaBerry",
|
|
695
|
-
"palette": "gItemIconPalette_LeppaBerry"
|
|
417
|
+
"index": 138
|
|
696
418
|
},
|
|
697
419
|
"ORAN_BERRY": {
|
|
698
|
-
"index": 139
|
|
699
|
-
"icon": "gItemIcon_OranBerry",
|
|
700
|
-
"palette": "gItemIconPalette_OranBerry"
|
|
420
|
+
"index": 139
|
|
701
421
|
},
|
|
702
422
|
"PERSIM_BERRY": {
|
|
703
|
-
"index": 140
|
|
704
|
-
"icon": "gItemIcon_PersimBerry",
|
|
705
|
-
"palette": "gItemIconPalette_PersimBerry"
|
|
423
|
+
"index": 140
|
|
706
424
|
},
|
|
707
425
|
"LUM_BERRY": {
|
|
708
|
-
"index": 141
|
|
709
|
-
"icon": "gItemIcon_LumBerry",
|
|
710
|
-
"palette": "gItemIconPalette_LumBerry"
|
|
426
|
+
"index": 141
|
|
711
427
|
},
|
|
712
428
|
"SITRUS_BERRY": {
|
|
713
|
-
"index": 142
|
|
714
|
-
"icon": "gItemIcon_SitrusBerry",
|
|
715
|
-
"palette": "gItemIconPalette_SitrusBerry"
|
|
429
|
+
"index": 142
|
|
716
430
|
},
|
|
717
431
|
"FIGY_BERRY": {
|
|
718
|
-
"index": 143
|
|
719
|
-
"icon": "gItemIcon_FigyBerry",
|
|
720
|
-
"palette": "gItemIconPalette_FigyBerry"
|
|
432
|
+
"index": 143
|
|
721
433
|
},
|
|
722
434
|
"WIKI_BERRY": {
|
|
723
|
-
"index": 144
|
|
724
|
-
"icon": "gItemIcon_WikiBerry",
|
|
725
|
-
"palette": "gItemIconPalette_WikiBerry"
|
|
435
|
+
"index": 144
|
|
726
436
|
},
|
|
727
437
|
"MAGO_BERRY": {
|
|
728
|
-
"index": 145
|
|
729
|
-
"icon": "gItemIcon_MagoBerry",
|
|
730
|
-
"palette": "gItemIconPalette_MagoBerry"
|
|
438
|
+
"index": 145
|
|
731
439
|
},
|
|
732
440
|
"AGUAV_BERRY": {
|
|
733
|
-
"index": 146
|
|
734
|
-
"icon": "gItemIcon_AguavBerry",
|
|
735
|
-
"palette": "gItemIconPalette_AguavBerry"
|
|
441
|
+
"index": 146
|
|
736
442
|
},
|
|
737
443
|
"IAPAPA_BERRY": {
|
|
738
|
-
"index": 147
|
|
739
|
-
"icon": "gItemIcon_IapapaBerry",
|
|
740
|
-
"palette": "gItemIconPalette_IapapaBerry"
|
|
444
|
+
"index": 147
|
|
741
445
|
},
|
|
742
446
|
"RAZZ_BERRY": {
|
|
743
|
-
"index": 148
|
|
744
|
-
"icon": "gItemIcon_RazzBerry",
|
|
745
|
-
"palette": "gItemIconPalette_RazzBerry"
|
|
447
|
+
"index": 148
|
|
746
448
|
},
|
|
747
449
|
"BLUK_BERRY": {
|
|
748
|
-
"index": 149
|
|
749
|
-
"icon": "gItemIcon_BlukBerry",
|
|
750
|
-
"palette": "gItemIconPalette_BlukBerry"
|
|
450
|
+
"index": 149
|
|
751
451
|
},
|
|
752
452
|
"NANAB_BERRY": {
|
|
753
|
-
"index": 150
|
|
754
|
-
"icon": "gItemIcon_NanabBerry",
|
|
755
|
-
"palette": "gItemIconPalette_NanabBerry"
|
|
453
|
+
"index": 150
|
|
756
454
|
},
|
|
757
455
|
"WEPEAR_BERRY": {
|
|
758
|
-
"index": 151
|
|
759
|
-
"icon": "gItemIcon_WepearBerry",
|
|
760
|
-
"palette": "gItemIconPalette_WepearBerry"
|
|
456
|
+
"index": 151
|
|
761
457
|
},
|
|
762
458
|
"PINAP_BERRY": {
|
|
763
|
-
"index": 152
|
|
764
|
-
"icon": "gItemIcon_PinapBerry",
|
|
765
|
-
"palette": "gItemIconPalette_PinapBerry"
|
|
459
|
+
"index": 152
|
|
766
460
|
},
|
|
767
461
|
"POMEG_BERRY": {
|
|
768
|
-
"index": 153
|
|
769
|
-
"icon": "gItemIcon_PomegBerry",
|
|
770
|
-
"palette": "gItemIconPalette_PomegBerry"
|
|
462
|
+
"index": 153
|
|
771
463
|
},
|
|
772
464
|
"KELPSY_BERRY": {
|
|
773
|
-
"index": 154
|
|
774
|
-
"icon": "gItemIcon_KelpsyBerry",
|
|
775
|
-
"palette": "gItemIconPalette_KelpsyBerry"
|
|
465
|
+
"index": 154
|
|
776
466
|
},
|
|
777
467
|
"QUALOT_BERRY": {
|
|
778
|
-
"index": 155
|
|
779
|
-
"icon": "gItemIcon_QualotBerry",
|
|
780
|
-
"palette": "gItemIconPalette_QualotBerry"
|
|
468
|
+
"index": 155
|
|
781
469
|
},
|
|
782
470
|
"HONDEW_BERRY": {
|
|
783
|
-
"index": 156
|
|
784
|
-
"icon": "gItemIcon_HondewBerry",
|
|
785
|
-
"palette": "gItemIconPalette_HondewBerry"
|
|
471
|
+
"index": 156
|
|
786
472
|
},
|
|
787
473
|
"GREPA_BERRY": {
|
|
788
|
-
"index": 157
|
|
789
|
-
"icon": "gItemIcon_GrepaBerry",
|
|
790
|
-
"palette": "gItemIconPalette_GrepaBerry"
|
|
474
|
+
"index": 157
|
|
791
475
|
},
|
|
792
476
|
"TAMATO_BERRY": {
|
|
793
|
-
"index": 158
|
|
794
|
-
"icon": "gItemIcon_TamatoBerry",
|
|
795
|
-
"palette": "gItemIconPalette_TamatoBerry"
|
|
477
|
+
"index": 158
|
|
796
478
|
},
|
|
797
479
|
"CORNN_BERRY": {
|
|
798
|
-
"index": 159
|
|
799
|
-
"icon": "gItemIcon_CornnBerry",
|
|
800
|
-
"palette": "gItemIconPalette_CornnBerry"
|
|
480
|
+
"index": 159
|
|
801
481
|
},
|
|
802
482
|
"MAGOST_BERRY": {
|
|
803
|
-
"index": 160
|
|
804
|
-
"icon": "gItemIcon_MagostBerry",
|
|
805
|
-
"palette": "gItemIconPalette_MagostBerry"
|
|
483
|
+
"index": 160
|
|
806
484
|
},
|
|
807
485
|
"RABUTA_BERRY": {
|
|
808
|
-
"index": 161
|
|
809
|
-
"icon": "gItemIcon_RabutaBerry",
|
|
810
|
-
"palette": "gItemIconPalette_RabutaBerry"
|
|
486
|
+
"index": 161
|
|
811
487
|
},
|
|
812
488
|
"NOMEL_BERRY": {
|
|
813
|
-
"index": 162
|
|
814
|
-
"icon": "gItemIcon_NomelBerry",
|
|
815
|
-
"palette": "gItemIconPalette_NomelBerry"
|
|
489
|
+
"index": 162
|
|
816
490
|
},
|
|
817
491
|
"SPELON_BERRY": {
|
|
818
|
-
"index": 163
|
|
819
|
-
"icon": "gItemIcon_SpelonBerry",
|
|
820
|
-
"palette": "gItemIconPalette_SpelonBerry"
|
|
492
|
+
"index": 163
|
|
821
493
|
},
|
|
822
494
|
"PAMTRE_BERRY": {
|
|
823
|
-
"index": 164
|
|
824
|
-
"icon": "gItemIcon_PamtreBerry",
|
|
825
|
-
"palette": "gItemIconPalette_PamtreBerry"
|
|
495
|
+
"index": 164
|
|
826
496
|
},
|
|
827
497
|
"WATMEL_BERRY": {
|
|
828
|
-
"index": 165
|
|
829
|
-
"icon": "gItemIcon_WatmelBerry",
|
|
830
|
-
"palette": "gItemIconPalette_WatmelBerry"
|
|
498
|
+
"index": 165
|
|
831
499
|
},
|
|
832
500
|
"DURIN_BERRY": {
|
|
833
|
-
"index": 166
|
|
834
|
-
"icon": "gItemIcon_DurinBerry",
|
|
835
|
-
"palette": "gItemIconPalette_DurinBerry"
|
|
501
|
+
"index": 166
|
|
836
502
|
},
|
|
837
503
|
"BELUE_BERRY": {
|
|
838
|
-
"index": 167
|
|
839
|
-
"icon": "gItemIcon_BelueBerry",
|
|
840
|
-
"palette": "gItemIconPalette_BelueBerry"
|
|
504
|
+
"index": 167
|
|
841
505
|
},
|
|
842
506
|
"LIECHI_BERRY": {
|
|
843
|
-
"index": 168
|
|
844
|
-
"icon": "gItemIcon_LiechiBerry",
|
|
845
|
-
"palette": "gItemIconPalette_LiechiBerry"
|
|
507
|
+
"index": 168
|
|
846
508
|
},
|
|
847
509
|
"GANLON_BERRY": {
|
|
848
|
-
"index": 169
|
|
849
|
-
"icon": "gItemIcon_GanlonBerry",
|
|
850
|
-
"palette": "gItemIconPalette_GanlonBerry"
|
|
510
|
+
"index": 169
|
|
851
511
|
},
|
|
852
512
|
"SALAC_BERRY": {
|
|
853
|
-
"index": 170
|
|
854
|
-
"icon": "gItemIcon_SalacBerry",
|
|
855
|
-
"palette": "gItemIconPalette_SalacBerry"
|
|
513
|
+
"index": 170
|
|
856
514
|
},
|
|
857
515
|
"PETAYA_BERRY": {
|
|
858
|
-
"index": 171
|
|
859
|
-
"icon": "gItemIcon_PetayaBerry",
|
|
860
|
-
"palette": "gItemIconPalette_PetayaBerry"
|
|
516
|
+
"index": 171
|
|
861
517
|
},
|
|
862
518
|
"APICOT_BERRY": {
|
|
863
|
-
"index": 172
|
|
864
|
-
"icon": "gItemIcon_ApicotBerry",
|
|
865
|
-
"palette": "gItemIconPalette_ApicotBerry"
|
|
519
|
+
"index": 172
|
|
866
520
|
},
|
|
867
521
|
"LANSAT_BERRY": {
|
|
868
|
-
"index": 173
|
|
869
|
-
"icon": "gItemIcon_LansatBerry",
|
|
870
|
-
"palette": "gItemIconPalette_LansatBerry"
|
|
522
|
+
"index": 173
|
|
871
523
|
},
|
|
872
524
|
"STARF_BERRY": {
|
|
873
|
-
"index": 174
|
|
874
|
-
"icon": "gItemIcon_StarfBerry",
|
|
875
|
-
"palette": "gItemIconPalette_StarfBerry"
|
|
525
|
+
"index": 174
|
|
876
526
|
},
|
|
877
527
|
"ENIGMA_BERRY": {
|
|
878
|
-
"index": 175
|
|
879
|
-
"icon": "gItemIcon_EnigmaBerry",
|
|
880
|
-
"palette": "gItemIconPalette_EnigmaBerry"
|
|
528
|
+
"index": 175
|
|
881
529
|
},
|
|
882
530
|
"UNUSED_BERRY_1": {
|
|
883
|
-
"index": 176
|
|
884
|
-
"icon": "gItemIcon_QuestionMark",
|
|
885
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
531
|
+
"index": 176
|
|
886
532
|
},
|
|
887
533
|
"UNUSED_BERRY_2": {
|
|
888
|
-
"index": 177
|
|
889
|
-
"icon": "gItemIcon_QuestionMark",
|
|
890
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
534
|
+
"index": 177
|
|
891
535
|
},
|
|
892
536
|
"UNUSED_BERRY_3": {
|
|
893
|
-
"index": 178
|
|
894
|
-
"icon": "gItemIcon_QuestionMark",
|
|
895
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
537
|
+
"index": 178
|
|
896
538
|
},
|
|
897
539
|
"BRIGHT_POWDER": {
|
|
898
|
-
"index": 179
|
|
899
|
-
"icon": "gItemIcon_BrightPowder",
|
|
900
|
-
"palette": "gItemIconPalette_BrightPowder"
|
|
540
|
+
"index": 179
|
|
901
541
|
},
|
|
902
542
|
"WHITE_HERB": {
|
|
903
|
-
"index": 180
|
|
904
|
-
"icon": "gItemIcon_InBattleHerb",
|
|
905
|
-
"palette": "gItemIconPalette_WhiteHerb"
|
|
543
|
+
"index": 180
|
|
906
544
|
},
|
|
907
545
|
"MACHO_BRACE": {
|
|
908
|
-
"index": 181
|
|
909
|
-
"icon": "gItemIcon_MachoBrace",
|
|
910
|
-
"palette": "gItemIconPalette_MachoBrace"
|
|
546
|
+
"index": 181
|
|
911
547
|
},
|
|
912
548
|
"EXP_SHARE": {
|
|
913
|
-
"index": 182
|
|
914
|
-
"icon": "gItemIcon_ExpShare",
|
|
915
|
-
"palette": "gItemIconPalette_ExpShare"
|
|
549
|
+
"index": 182
|
|
916
550
|
},
|
|
917
551
|
"QUICK_CLAW": {
|
|
918
|
-
"index": 183
|
|
919
|
-
"icon": "gItemIcon_QuickClaw",
|
|
920
|
-
"palette": "gItemIconPalette_QuickClaw"
|
|
552
|
+
"index": 183
|
|
921
553
|
},
|
|
922
554
|
"SOOTHE_BELL": {
|
|
923
|
-
"index": 184
|
|
924
|
-
"icon": "gItemIcon_SootheBell",
|
|
925
|
-
"palette": "gItemIconPalette_SootheBell"
|
|
555
|
+
"index": 184
|
|
926
556
|
},
|
|
927
557
|
"MENTAL_HERB": {
|
|
928
|
-
"index": 185
|
|
929
|
-
"icon": "gItemIcon_InBattleHerb",
|
|
930
|
-
"palette": "gItemIconPalette_MentalHerb"
|
|
558
|
+
"index": 185
|
|
931
559
|
},
|
|
932
560
|
"CHOICE_BAND": {
|
|
933
|
-
"index": 186
|
|
934
|
-
"icon": "gItemIcon_ChoiceBand",
|
|
935
|
-
"palette": "gItemIconPalette_ChoiceBand"
|
|
561
|
+
"index": 186
|
|
936
562
|
},
|
|
937
563
|
"KINGS_ROCK": {
|
|
938
|
-
"index": 187
|
|
939
|
-
"icon": "gItemIcon_KingsRock",
|
|
940
|
-
"palette": "gItemIconPalette_KingsRock"
|
|
564
|
+
"index": 187
|
|
941
565
|
},
|
|
942
566
|
"SILVER_POWDER": {
|
|
943
|
-
"index": 188
|
|
944
|
-
"icon": "gItemIcon_SilverPowder",
|
|
945
|
-
"palette": "gItemIconPalette_SilverPowder"
|
|
567
|
+
"index": 188
|
|
946
568
|
},
|
|
947
569
|
"AMULET_COIN": {
|
|
948
|
-
"index": 189
|
|
949
|
-
"icon": "gItemIcon_AmuletCoin",
|
|
950
|
-
"palette": "gItemIconPalette_AmuletCoin"
|
|
570
|
+
"index": 189
|
|
951
571
|
},
|
|
952
572
|
"CLEANSE_TAG": {
|
|
953
|
-
"index": 190
|
|
954
|
-
"icon": "gItemIcon_CleanseTag",
|
|
955
|
-
"palette": "gItemIconPalette_CleanseTag"
|
|
573
|
+
"index": 190
|
|
956
574
|
},
|
|
957
575
|
"SOUL_DEW": {
|
|
958
|
-
"index": 191
|
|
959
|
-
"icon": "gItemIcon_SoulDew",
|
|
960
|
-
"palette": "gItemIconPalette_SoulDew"
|
|
576
|
+
"index": 191
|
|
961
577
|
},
|
|
962
578
|
"DEEP_SEA_TOOTH": {
|
|
963
|
-
"index": 192
|
|
964
|
-
"icon": "gItemIcon_DeepSeaTooth",
|
|
965
|
-
"palette": "gItemIconPalette_DeepSeaTooth"
|
|
579
|
+
"index": 192
|
|
966
580
|
},
|
|
967
581
|
"DEEP_SEA_SCALE": {
|
|
968
|
-
"index": 193
|
|
969
|
-
"icon": "gItemIcon_DeepSeaScale",
|
|
970
|
-
"palette": "gItemIconPalette_DeepSeaScale"
|
|
582
|
+
"index": 193
|
|
971
583
|
},
|
|
972
584
|
"SMOKE_BALL": {
|
|
973
|
-
"index": 194
|
|
974
|
-
"icon": "gItemIcon_SmokeBall",
|
|
975
|
-
"palette": "gItemIconPalette_SmokeBall"
|
|
585
|
+
"index": 194
|
|
976
586
|
},
|
|
977
587
|
"EVERSTONE": {
|
|
978
|
-
"index": 195
|
|
979
|
-
"icon": "gItemIcon_Everstone",
|
|
980
|
-
"palette": "gItemIconPalette_Everstone"
|
|
588
|
+
"index": 195
|
|
981
589
|
},
|
|
982
590
|
"FOCUS_BAND": {
|
|
983
|
-
"index": 196
|
|
984
|
-
"icon": "gItemIcon_FocusBand",
|
|
985
|
-
"palette": "gItemIconPalette_FocusBand"
|
|
591
|
+
"index": 196
|
|
986
592
|
},
|
|
987
593
|
"LUCKY_EGG": {
|
|
988
|
-
"index": 197
|
|
989
|
-
"icon": "gItemIcon_LuckyEgg",
|
|
990
|
-
"palette": "gItemIconPalette_LuckyEgg"
|
|
594
|
+
"index": 197
|
|
991
595
|
},
|
|
992
596
|
"SCOPE_LENS": {
|
|
993
|
-
"index": 198
|
|
994
|
-
"icon": "gItemIcon_ScopeLens",
|
|
995
|
-
"palette": "gItemIconPalette_ScopeLens"
|
|
597
|
+
"index": 198
|
|
996
598
|
},
|
|
997
599
|
"METAL_COAT": {
|
|
998
|
-
"index": 199
|
|
999
|
-
"icon": "gItemIcon_MetalCoat",
|
|
1000
|
-
"palette": "gItemIconPalette_MetalCoat"
|
|
600
|
+
"index": 199
|
|
1001
601
|
},
|
|
1002
602
|
"LEFTOVERS": {
|
|
1003
|
-
"index": 200
|
|
1004
|
-
"icon": "gItemIcon_Leftovers",
|
|
1005
|
-
"palette": "gItemIconPalette_Leftovers"
|
|
603
|
+
"index": 200
|
|
1006
604
|
},
|
|
1007
605
|
"DRAGON_SCALE": {
|
|
1008
|
-
"index": 201
|
|
1009
|
-
"icon": "gItemIcon_DragonScale",
|
|
1010
|
-
"palette": "gItemIconPalette_DragonScale"
|
|
606
|
+
"index": 201
|
|
1011
607
|
},
|
|
1012
608
|
"LIGHT_BALL": {
|
|
1013
|
-
"index": 202
|
|
1014
|
-
"icon": "gItemIcon_LightBall",
|
|
1015
|
-
"palette": "gItemIconPalette_LightBall"
|
|
609
|
+
"index": 202
|
|
1016
610
|
},
|
|
1017
611
|
"SOFT_SAND": {
|
|
1018
|
-
"index": 203
|
|
1019
|
-
"icon": "gItemIcon_SoftSand",
|
|
1020
|
-
"palette": "gItemIconPalette_SoftSand"
|
|
612
|
+
"index": 203
|
|
1021
613
|
},
|
|
1022
614
|
"HARD_STONE": {
|
|
1023
|
-
"index": 204
|
|
1024
|
-
"icon": "gItemIcon_HardStone",
|
|
1025
|
-
"palette": "gItemIconPalette_HardStone"
|
|
615
|
+
"index": 204
|
|
1026
616
|
},
|
|
1027
617
|
"MIRACLE_SEED": {
|
|
1028
|
-
"index": 205
|
|
1029
|
-
"icon": "gItemIcon_MiracleSeed",
|
|
1030
|
-
"palette": "gItemIconPalette_MiracleSeed"
|
|
618
|
+
"index": 205
|
|
1031
619
|
},
|
|
1032
620
|
"BLACK_GLASSES": {
|
|
1033
|
-
"index": 206
|
|
1034
|
-
"icon": "gItemIcon_BlackGlasses",
|
|
1035
|
-
"palette": "gItemIconPalette_BlackTypeEnhancingItem"
|
|
621
|
+
"index": 206
|
|
1036
622
|
},
|
|
1037
623
|
"BLACK_BELT": {
|
|
1038
|
-
"index": 207
|
|
1039
|
-
"icon": "gItemIcon_BlackBelt",
|
|
1040
|
-
"palette": "gItemIconPalette_BlackTypeEnhancingItem"
|
|
624
|
+
"index": 207
|
|
1041
625
|
},
|
|
1042
626
|
"MAGNET": {
|
|
1043
|
-
"index": 208
|
|
1044
|
-
"icon": "gItemIcon_Magnet",
|
|
1045
|
-
"palette": "gItemIconPalette_Magnet"
|
|
627
|
+
"index": 208
|
|
1046
628
|
},
|
|
1047
629
|
"MYSTIC_WATER": {
|
|
1048
|
-
"index": 209
|
|
1049
|
-
"icon": "gItemIcon_MysticWater",
|
|
1050
|
-
"palette": "gItemIconPalette_MysticWater"
|
|
630
|
+
"index": 209
|
|
1051
631
|
},
|
|
1052
632
|
"SHARP_BEAK": {
|
|
1053
|
-
"index": 210
|
|
1054
|
-
"icon": "gItemIcon_SharpBeak",
|
|
1055
|
-
"palette": "gItemIconPalette_SharpBeak"
|
|
633
|
+
"index": 210
|
|
1056
634
|
},
|
|
1057
635
|
"POISON_BARB": {
|
|
1058
|
-
"index": 211
|
|
1059
|
-
"icon": "gItemIcon_PoisonBarb",
|
|
1060
|
-
"palette": "gItemIconPalette_PoisonBarb"
|
|
636
|
+
"index": 211
|
|
1061
637
|
},
|
|
1062
638
|
"NEVER_MELT_ICE": {
|
|
1063
|
-
"index": 212
|
|
1064
|
-
"icon": "gItemIcon_NeverMeltIce",
|
|
1065
|
-
"palette": "gItemIconPalette_NeverMeltIce"
|
|
639
|
+
"index": 212
|
|
1066
640
|
},
|
|
1067
641
|
"SPELL_TAG": {
|
|
1068
|
-
"index": 213
|
|
1069
|
-
"icon": "gItemIcon_SpellTag",
|
|
1070
|
-
"palette": "gItemIconPalette_SpellTag"
|
|
642
|
+
"index": 213
|
|
1071
643
|
},
|
|
1072
644
|
"TWISTED_SPOON": {
|
|
1073
|
-
"index": 214
|
|
1074
|
-
"icon": "gItemIcon_TwistedSpoon",
|
|
1075
|
-
"palette": "gItemIconPalette_TwistedSpoon"
|
|
645
|
+
"index": 214
|
|
1076
646
|
},
|
|
1077
647
|
"CHARCOAL": {
|
|
1078
|
-
"index": 215
|
|
1079
|
-
"icon": "gItemIcon_Charcoal",
|
|
1080
|
-
"palette": "gItemIconPalette_Charcoal"
|
|
648
|
+
"index": 215
|
|
1081
649
|
},
|
|
1082
650
|
"DRAGON_FANG": {
|
|
1083
|
-
"index": 216
|
|
1084
|
-
"icon": "gItemIcon_DragonFang",
|
|
1085
|
-
"palette": "gItemIconPalette_DragonFang"
|
|
651
|
+
"index": 216
|
|
1086
652
|
},
|
|
1087
653
|
"SILK_SCARF": {
|
|
1088
|
-
"index": 217
|
|
1089
|
-
"icon": "gItemIcon_SilkScarf",
|
|
1090
|
-
"palette": "gItemIconPalette_SilkScarf"
|
|
654
|
+
"index": 217
|
|
1091
655
|
},
|
|
1092
656
|
"UP_GRADE": {
|
|
1093
|
-
"index": 218
|
|
1094
|
-
"icon": "gItemIcon_UpGrade",
|
|
1095
|
-
"palette": "gItemIconPalette_UpGrade"
|
|
657
|
+
"index": 218
|
|
1096
658
|
},
|
|
1097
659
|
"SHELL_BELL": {
|
|
1098
|
-
"index": 219
|
|
1099
|
-
"icon": "gItemIcon_ShellBell",
|
|
1100
|
-
"palette": "gItemIconPalette_Shell"
|
|
660
|
+
"index": 219
|
|
1101
661
|
},
|
|
1102
662
|
"SEA_INCENSE": {
|
|
1103
|
-
"index": 220
|
|
1104
|
-
"icon": "gItemIcon_SeaIncense",
|
|
1105
|
-
"palette": "gItemIconPalette_SeaIncense"
|
|
663
|
+
"index": 220
|
|
1106
664
|
},
|
|
1107
665
|
"LAX_INCENSE": {
|
|
1108
|
-
"index": 221
|
|
1109
|
-
"icon": "gItemIcon_LaxIncense",
|
|
1110
|
-
"palette": "gItemIconPalette_LaxIncense"
|
|
666
|
+
"index": 221
|
|
1111
667
|
},
|
|
1112
668
|
"LUCKY_PUNCH": {
|
|
1113
|
-
"index": 222
|
|
1114
|
-
"icon": "gItemIcon_LuckyPunch",
|
|
1115
|
-
"palette": "gItemIconPalette_LuckyPunch"
|
|
669
|
+
"index": 222
|
|
1116
670
|
},
|
|
1117
671
|
"METAL_POWDER": {
|
|
1118
|
-
"index": 223
|
|
1119
|
-
"icon": "gItemIcon_MetalPowder",
|
|
1120
|
-
"palette": "gItemIconPalette_MetalPowder"
|
|
672
|
+
"index": 223
|
|
1121
673
|
},
|
|
1122
674
|
"THICK_CLUB": {
|
|
1123
|
-
"index": 224
|
|
1124
|
-
"icon": "gItemIcon_ThickClub",
|
|
1125
|
-
"palette": "gItemIconPalette_ThickClub"
|
|
675
|
+
"index": 224
|
|
1126
676
|
},
|
|
1127
677
|
"STICK": {
|
|
1128
|
-
"index": 225
|
|
1129
|
-
"icon": "gItemIcon_Stick",
|
|
1130
|
-
"palette": "gItemIconPalette_Stick"
|
|
678
|
+
"index": 225
|
|
1131
679
|
},
|
|
1132
680
|
"0E2": {
|
|
1133
|
-
"index": 226
|
|
1134
|
-
"icon": "gItemIcon_QuestionMark",
|
|
1135
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
681
|
+
"index": 226
|
|
1136
682
|
},
|
|
1137
683
|
"0E3": {
|
|
1138
|
-
"index": 227
|
|
1139
|
-
"icon": "gItemIcon_QuestionMark",
|
|
1140
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
684
|
+
"index": 227
|
|
1141
685
|
},
|
|
1142
686
|
"0E4": {
|
|
1143
|
-
"index": 228
|
|
1144
|
-
"icon": "gItemIcon_QuestionMark",
|
|
1145
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
687
|
+
"index": 228
|
|
1146
688
|
},
|
|
1147
689
|
"0E5": {
|
|
1148
|
-
"index": 229
|
|
1149
|
-
"icon": "gItemIcon_QuestionMark",
|
|
1150
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
690
|
+
"index": 229
|
|
1151
691
|
},
|
|
1152
692
|
"0E6": {
|
|
1153
|
-
"index": 230
|
|
1154
|
-
"icon": "gItemIcon_QuestionMark",
|
|
1155
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
693
|
+
"index": 230
|
|
1156
694
|
},
|
|
1157
695
|
"0E7": {
|
|
1158
|
-
"index": 231
|
|
1159
|
-
"icon": "gItemIcon_QuestionMark",
|
|
1160
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
696
|
+
"index": 231
|
|
1161
697
|
},
|
|
1162
698
|
"0E8": {
|
|
1163
|
-
"index": 232
|
|
1164
|
-
"icon": "gItemIcon_QuestionMark",
|
|
1165
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
699
|
+
"index": 232
|
|
1166
700
|
},
|
|
1167
701
|
"0E9": {
|
|
1168
|
-
"index": 233
|
|
1169
|
-
"icon": "gItemIcon_QuestionMark",
|
|
1170
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
702
|
+
"index": 233
|
|
1171
703
|
},
|
|
1172
704
|
"0EA": {
|
|
1173
|
-
"index": 234
|
|
1174
|
-
"icon": "gItemIcon_QuestionMark",
|
|
1175
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
705
|
+
"index": 234
|
|
1176
706
|
},
|
|
1177
707
|
"0EB": {
|
|
1178
|
-
"index": 235
|
|
1179
|
-
"icon": "gItemIcon_QuestionMark",
|
|
1180
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
708
|
+
"index": 235
|
|
1181
709
|
},
|
|
1182
710
|
"0EC": {
|
|
1183
|
-
"index": 236
|
|
1184
|
-
"icon": "gItemIcon_QuestionMark",
|
|
1185
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
711
|
+
"index": 236
|
|
1186
712
|
},
|
|
1187
713
|
"0ED": {
|
|
1188
|
-
"index": 237
|
|
1189
|
-
"icon": "gItemIcon_QuestionMark",
|
|
1190
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
714
|
+
"index": 237
|
|
1191
715
|
},
|
|
1192
716
|
"0EE": {
|
|
1193
|
-
"index": 238
|
|
1194
|
-
"icon": "gItemIcon_QuestionMark",
|
|
1195
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
717
|
+
"index": 238
|
|
1196
718
|
},
|
|
1197
719
|
"0EF": {
|
|
1198
|
-
"index": 239
|
|
1199
|
-
"icon": "gItemIcon_QuestionMark",
|
|
1200
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
720
|
+
"index": 239
|
|
1201
721
|
},
|
|
1202
722
|
"0F0": {
|
|
1203
|
-
"index": 240
|
|
1204
|
-
"icon": "gItemIcon_QuestionMark",
|
|
1205
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
723
|
+
"index": 240
|
|
1206
724
|
},
|
|
1207
725
|
"0F1": {
|
|
1208
|
-
"index": 241
|
|
1209
|
-
"icon": "gItemIcon_QuestionMark",
|
|
1210
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
726
|
+
"index": 241
|
|
1211
727
|
},
|
|
1212
728
|
"0F2": {
|
|
1213
|
-
"index": 242
|
|
1214
|
-
"icon": "gItemIcon_QuestionMark",
|
|
1215
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
729
|
+
"index": 242
|
|
1216
730
|
},
|
|
1217
731
|
"0F3": {
|
|
1218
|
-
"index": 243
|
|
1219
|
-
"icon": "gItemIcon_QuestionMark",
|
|
1220
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
732
|
+
"index": 243
|
|
1221
733
|
},
|
|
1222
734
|
"0F4": {
|
|
1223
|
-
"index": 244
|
|
1224
|
-
"icon": "gItemIcon_QuestionMark",
|
|
1225
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
735
|
+
"index": 244
|
|
1226
736
|
},
|
|
1227
737
|
"0F5": {
|
|
1228
|
-
"index": 245
|
|
1229
|
-
"icon": "gItemIcon_QuestionMark",
|
|
1230
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
738
|
+
"index": 245
|
|
1231
739
|
},
|
|
1232
740
|
"0F6": {
|
|
1233
|
-
"index": 246
|
|
1234
|
-
"icon": "gItemIcon_QuestionMark",
|
|
1235
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
741
|
+
"index": 246
|
|
1236
742
|
},
|
|
1237
743
|
"0F7": {
|
|
1238
|
-
"index": 247
|
|
1239
|
-
"icon": "gItemIcon_QuestionMark",
|
|
1240
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
744
|
+
"index": 247
|
|
1241
745
|
},
|
|
1242
746
|
"0F8": {
|
|
1243
|
-
"index": 248
|
|
1244
|
-
"icon": "gItemIcon_QuestionMark",
|
|
1245
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
747
|
+
"index": 248
|
|
1246
748
|
},
|
|
1247
749
|
"0F9": {
|
|
1248
|
-
"index": 249
|
|
1249
|
-
"icon": "gItemIcon_QuestionMark",
|
|
1250
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
750
|
+
"index": 249
|
|
1251
751
|
},
|
|
1252
752
|
"0FA": {
|
|
1253
|
-
"index": 250
|
|
1254
|
-
"icon": "gItemIcon_QuestionMark",
|
|
1255
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
753
|
+
"index": 250
|
|
1256
754
|
},
|
|
1257
755
|
"0FB": {
|
|
1258
|
-
"index": 251
|
|
1259
|
-
"icon": "gItemIcon_QuestionMark",
|
|
1260
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
756
|
+
"index": 251
|
|
1261
757
|
},
|
|
1262
758
|
"0FC": {
|
|
1263
|
-
"index": 252
|
|
1264
|
-
"icon": "gItemIcon_QuestionMark",
|
|
1265
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
759
|
+
"index": 252
|
|
1266
760
|
},
|
|
1267
761
|
"0FD": {
|
|
1268
|
-
"index": 253
|
|
1269
|
-
"icon": "gItemIcon_QuestionMark",
|
|
1270
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
762
|
+
"index": 253
|
|
1271
763
|
},
|
|
1272
764
|
"RED_SCARF": {
|
|
1273
|
-
"index": 254
|
|
1274
|
-
"icon": "gItemIcon_Scarf",
|
|
1275
|
-
"palette": "gItemIconPalette_RedScarf"
|
|
765
|
+
"index": 254
|
|
1276
766
|
},
|
|
1277
767
|
"BLUE_SCARF": {
|
|
1278
|
-
"index": 255
|
|
1279
|
-
"icon": "gItemIcon_Scarf",
|
|
1280
|
-
"palette": "gItemIconPalette_BlueScarf"
|
|
768
|
+
"index": 255
|
|
1281
769
|
},
|
|
1282
770
|
"PINK_SCARF": {
|
|
1283
|
-
"index": 256
|
|
1284
|
-
"icon": "gItemIcon_Scarf",
|
|
1285
|
-
"palette": "gItemIconPalette_PinkScarf"
|
|
771
|
+
"index": 256
|
|
1286
772
|
},
|
|
1287
773
|
"GREEN_SCARF": {
|
|
1288
|
-
"index": 257
|
|
1289
|
-
"icon": "gItemIcon_Scarf",
|
|
1290
|
-
"palette": "gItemIconPalette_GreenScarf"
|
|
774
|
+
"index": 257
|
|
1291
775
|
},
|
|
1292
776
|
"YELLOW_SCARF": {
|
|
1293
|
-
"index": 258
|
|
1294
|
-
"icon": "gItemIcon_Scarf",
|
|
1295
|
-
"palette": "gItemIconPalette_YellowScarf"
|
|
777
|
+
"index": 258
|
|
1296
778
|
},
|
|
1297
779
|
"MACH_BIKE": {
|
|
1298
|
-
"index": 259
|
|
1299
|
-
"icon": "gItemIcon_MachBike",
|
|
1300
|
-
"palette": "gItemIconPalette_MachBike"
|
|
780
|
+
"index": 259
|
|
1301
781
|
},
|
|
1302
782
|
"COIN_CASE": {
|
|
1303
|
-
"index": 260
|
|
1304
|
-
"icon": "gItemIcon_CoinCase",
|
|
1305
|
-
"palette": "gItemIconPalette_CoinCase"
|
|
783
|
+
"index": 260
|
|
1306
784
|
},
|
|
1307
785
|
"ITEMFINDER": {
|
|
1308
|
-
"index": 261
|
|
1309
|
-
"icon": "gItemIcon_Itemfinder",
|
|
1310
|
-
"palette": "gItemIconPalette_Itemfinder"
|
|
786
|
+
"index": 261
|
|
1311
787
|
},
|
|
1312
788
|
"OLD_ROD": {
|
|
1313
|
-
"index": 262
|
|
1314
|
-
"icon": "gItemIcon_OldRod",
|
|
1315
|
-
"palette": "gItemIconPalette_OldRod"
|
|
789
|
+
"index": 262
|
|
1316
790
|
},
|
|
1317
791
|
"GOOD_ROD": {
|
|
1318
|
-
"index": 263
|
|
1319
|
-
"icon": "gItemIcon_GoodRod",
|
|
1320
|
-
"palette": "gItemIconPalette_GoodRod"
|
|
792
|
+
"index": 263
|
|
1321
793
|
},
|
|
1322
794
|
"SUPER_ROD": {
|
|
1323
|
-
"index": 264
|
|
1324
|
-
"icon": "gItemIcon_SuperRod",
|
|
1325
|
-
"palette": "gItemIconPalette_SuperRod"
|
|
795
|
+
"index": 264
|
|
1326
796
|
},
|
|
1327
797
|
"SS_TICKET": {
|
|
1328
|
-
"index": 265
|
|
1329
|
-
"icon": "gItemIcon_SSTicket",
|
|
1330
|
-
"palette": "gItemIconPalette_SSTicket"
|
|
798
|
+
"index": 265
|
|
1331
799
|
},
|
|
1332
800
|
"CONTEST_PASS": {
|
|
1333
|
-
"index": 266
|
|
1334
|
-
"icon": "gItemIcon_ContestPass",
|
|
1335
|
-
"palette": "gItemIconPalette_ContestPass"
|
|
801
|
+
"index": 266
|
|
1336
802
|
},
|
|
1337
803
|
"10B": {
|
|
1338
|
-
"index": 267
|
|
1339
|
-
"icon": "gItemIcon_QuestionMark",
|
|
1340
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
804
|
+
"index": 267
|
|
1341
805
|
},
|
|
1342
806
|
"WAILMER_PAIL": {
|
|
1343
|
-
"index": 268
|
|
1344
|
-
"icon": "gItemIcon_WailmerPail",
|
|
1345
|
-
"palette": "gItemIconPalette_WailmerPail"
|
|
807
|
+
"index": 268
|
|
1346
808
|
},
|
|
1347
809
|
"DEVON_GOODS": {
|
|
1348
|
-
"index": 269
|
|
1349
|
-
"icon": "gItemIcon_DevonGoods",
|
|
1350
|
-
"palette": "gItemIconPalette_DevonGoods"
|
|
810
|
+
"index": 269
|
|
1351
811
|
},
|
|
1352
812
|
"SOOT_SACK": {
|
|
1353
|
-
"index": 270
|
|
1354
|
-
"icon": "gItemIcon_SootSack",
|
|
1355
|
-
"palette": "gItemIconPalette_SootSack"
|
|
813
|
+
"index": 270
|
|
1356
814
|
},
|
|
1357
815
|
"BASEMENT_KEY": {
|
|
1358
|
-
"index": 271
|
|
1359
|
-
"icon": "gItemIcon_BasementKey",
|
|
1360
|
-
"palette": "gItemIconPalette_OldKey"
|
|
816
|
+
"index": 271
|
|
1361
817
|
},
|
|
1362
818
|
"ACRO_BIKE": {
|
|
1363
|
-
"index": 272
|
|
1364
|
-
"icon": "gItemIcon_AcroBike",
|
|
1365
|
-
"palette": "gItemIconPalette_AcroBike"
|
|
819
|
+
"index": 272
|
|
1366
820
|
},
|
|
1367
821
|
"POKEBLOCK_CASE": {
|
|
1368
|
-
"index": 273
|
|
1369
|
-
"icon": "gItemIcon_PokeblockCase",
|
|
1370
|
-
"palette": "gItemIconPalette_PokeblockCase"
|
|
822
|
+
"index": 273
|
|
1371
823
|
},
|
|
1372
824
|
"LETTER": {
|
|
1373
|
-
"index": 274
|
|
1374
|
-
"icon": "gItemIcon_Letter",
|
|
1375
|
-
"palette": "gItemIconPalette_LavaCookieAndLetter"
|
|
825
|
+
"index": 274
|
|
1376
826
|
},
|
|
1377
827
|
"EON_TICKET": {
|
|
1378
|
-
"index": 275
|
|
1379
|
-
"icon": "gItemIcon_EonTicket",
|
|
1380
|
-
"palette": "gItemIconPalette_EonTicket"
|
|
828
|
+
"index": 275
|
|
1381
829
|
},
|
|
1382
830
|
"RED_ORB": {
|
|
1383
|
-
"index": 276
|
|
1384
|
-
"icon": "gItemIcon_Orb",
|
|
1385
|
-
"palette": "gItemIconPalette_RedOrb"
|
|
831
|
+
"index": 276
|
|
1386
832
|
},
|
|
1387
833
|
"BLUE_ORB": {
|
|
1388
|
-
"index": 277
|
|
1389
|
-
"icon": "gItemIcon_Orb",
|
|
1390
|
-
"palette": "gItemIconPalette_BlueOrb"
|
|
834
|
+
"index": 277
|
|
1391
835
|
},
|
|
1392
836
|
"SCANNER": {
|
|
1393
|
-
"index": 278
|
|
1394
|
-
"icon": "gItemIcon_Scanner",
|
|
1395
|
-
"palette": "gItemIconPalette_Scanner"
|
|
837
|
+
"index": 278
|
|
1396
838
|
},
|
|
1397
839
|
"GO_GOGGLES": {
|
|
1398
|
-
"index": 279
|
|
1399
|
-
"icon": "gItemIcon_GoGoggles",
|
|
1400
|
-
"palette": "gItemIconPalette_GoGoggles"
|
|
840
|
+
"index": 279
|
|
1401
841
|
},
|
|
1402
842
|
"METEORITE": {
|
|
1403
|
-
"index": 280
|
|
1404
|
-
"icon": "gItemIcon_Meteorite",
|
|
1405
|
-
"palette": "gItemIconPalette_Meteorite"
|
|
843
|
+
"index": 280
|
|
1406
844
|
},
|
|
1407
845
|
"ROOM_1_KEY": {
|
|
1408
|
-
"index": 281
|
|
1409
|
-
"icon": "gItemIcon_Room1Key",
|
|
1410
|
-
"palette": "gItemIconPalette_Key"
|
|
846
|
+
"index": 281
|
|
1411
847
|
},
|
|
1412
848
|
"ROOM_2_KEY": {
|
|
1413
|
-
"index": 282
|
|
1414
|
-
"icon": "gItemIcon_Room2Key",
|
|
1415
|
-
"palette": "gItemIconPalette_Key"
|
|
849
|
+
"index": 282
|
|
1416
850
|
},
|
|
1417
851
|
"ROOM_4_KEY": {
|
|
1418
|
-
"index": 283
|
|
1419
|
-
"icon": "gItemIcon_Room4Key",
|
|
1420
|
-
"palette": "gItemIconPalette_Key"
|
|
852
|
+
"index": 283
|
|
1421
853
|
},
|
|
1422
854
|
"ROOM_6_KEY": {
|
|
1423
|
-
"index": 284
|
|
1424
|
-
"icon": "gItemIcon_Room6Key",
|
|
1425
|
-
"palette": "gItemIconPalette_Key"
|
|
855
|
+
"index": 284
|
|
1426
856
|
},
|
|
1427
857
|
"STORAGE_KEY": {
|
|
1428
|
-
"index": 285
|
|
1429
|
-
"icon": "gItemIcon_StorageKey",
|
|
1430
|
-
"palette": "gItemIconPalette_OldKey"
|
|
858
|
+
"index": 285
|
|
1431
859
|
},
|
|
1432
860
|
"ROOT_FOSSIL": {
|
|
1433
|
-
"index": 286
|
|
1434
|
-
"icon": "gItemIcon_RootFossil",
|
|
1435
|
-
"palette": "gItemIconPalette_HoennFossil"
|
|
861
|
+
"index": 286
|
|
1436
862
|
},
|
|
1437
863
|
"CLAW_FOSSIL": {
|
|
1438
|
-
"index": 287
|
|
1439
|
-
"icon": "gItemIcon_ClawFossil",
|
|
1440
|
-
"palette": "gItemIconPalette_HoennFossil"
|
|
864
|
+
"index": 287
|
|
1441
865
|
},
|
|
1442
866
|
"DEVON_SCOPE": {
|
|
1443
|
-
"index": 288
|
|
1444
|
-
"icon": "gItemIcon_DevonScope",
|
|
1445
|
-
"palette": "gItemIconPalette_DevonScope"
|
|
867
|
+
"index": 288
|
|
1446
868
|
},
|
|
1447
869
|
"TM01": {
|
|
1448
|
-
"index": 289
|
|
1449
|
-
"icon": "gItemIcon_TMHM",
|
|
1450
|
-
"palette": "gItemIconPalette_FightingTMHM"
|
|
870
|
+
"index": 289
|
|
1451
871
|
},
|
|
1452
872
|
"TM02": {
|
|
1453
|
-
"index": 290
|
|
1454
|
-
"icon": "gItemIcon_TMHM",
|
|
1455
|
-
"palette": "gItemIconPalette_DragonTMHM"
|
|
873
|
+
"index": 290
|
|
1456
874
|
},
|
|
1457
875
|
"TM03": {
|
|
1458
|
-
"index": 291
|
|
1459
|
-
"icon": "gItemIcon_TMHM",
|
|
1460
|
-
"palette": "gItemIconPalette_WaterTMHM"
|
|
876
|
+
"index": 291
|
|
1461
877
|
},
|
|
1462
878
|
"TM04": {
|
|
1463
|
-
"index": 292
|
|
1464
|
-
"icon": "gItemIcon_TMHM",
|
|
1465
|
-
"palette": "gItemIconPalette_PsychicTMHM"
|
|
879
|
+
"index": 292
|
|
1466
880
|
},
|
|
1467
881
|
"TM05": {
|
|
1468
|
-
"index": 293
|
|
1469
|
-
"icon": "gItemIcon_TMHM",
|
|
1470
|
-
"palette": "gItemIconPalette_NormalTMHM"
|
|
882
|
+
"index": 293
|
|
1471
883
|
},
|
|
1472
884
|
"TM06": {
|
|
1473
|
-
"index": 294
|
|
1474
|
-
"icon": "gItemIcon_TMHM",
|
|
1475
|
-
"palette": "gItemIconPalette_PoisonTMHM"
|
|
885
|
+
"index": 294
|
|
1476
886
|
},
|
|
1477
887
|
"TM07": {
|
|
1478
|
-
"index": 295
|
|
1479
|
-
"icon": "gItemIcon_TMHM",
|
|
1480
|
-
"palette": "gItemIconPalette_IceTMHM"
|
|
888
|
+
"index": 295
|
|
1481
889
|
},
|
|
1482
890
|
"TM08": {
|
|
1483
|
-
"index": 296
|
|
1484
|
-
"icon": "gItemIcon_TMHM",
|
|
1485
|
-
"palette": "gItemIconPalette_FightingTMHM"
|
|
891
|
+
"index": 296
|
|
1486
892
|
},
|
|
1487
893
|
"TM09": {
|
|
1488
|
-
"index": 297
|
|
1489
|
-
"icon": "gItemIcon_TMHM",
|
|
1490
|
-
"palette": "gItemIconPalette_GrassTMHM"
|
|
894
|
+
"index": 297
|
|
1491
895
|
},
|
|
1492
896
|
"TM10": {
|
|
1493
|
-
"index": 298
|
|
1494
|
-
"icon": "gItemIcon_TMHM",
|
|
1495
|
-
"palette": "gItemIconPalette_NormalTMHM"
|
|
897
|
+
"index": 298
|
|
1496
898
|
},
|
|
1497
899
|
"TM11": {
|
|
1498
|
-
"index": 299
|
|
1499
|
-
"icon": "gItemIcon_TMHM",
|
|
1500
|
-
"palette": "gItemIconPalette_FireTMHM"
|
|
900
|
+
"index": 299
|
|
1501
901
|
},
|
|
1502
902
|
"TM12": {
|
|
1503
|
-
"index": 300
|
|
1504
|
-
"icon": "gItemIcon_TMHM",
|
|
1505
|
-
"palette": "gItemIconPalette_DarkTMHM"
|
|
903
|
+
"index": 300
|
|
1506
904
|
},
|
|
1507
905
|
"TM13": {
|
|
1508
|
-
"index": 301
|
|
1509
|
-
"icon": "gItemIcon_TMHM",
|
|
1510
|
-
"palette": "gItemIconPalette_IceTMHM"
|
|
906
|
+
"index": 301
|
|
1511
907
|
},
|
|
1512
908
|
"TM14": {
|
|
1513
|
-
"index": 302
|
|
1514
|
-
"icon": "gItemIcon_TMHM",
|
|
1515
|
-
"palette": "gItemIconPalette_IceTMHM"
|
|
909
|
+
"index": 302
|
|
1516
910
|
},
|
|
1517
911
|
"TM15": {
|
|
1518
|
-
"index": 303
|
|
1519
|
-
"icon": "gItemIcon_TMHM",
|
|
1520
|
-
"palette": "gItemIconPalette_NormalTMHM"
|
|
912
|
+
"index": 303
|
|
1521
913
|
},
|
|
1522
914
|
"TM16": {
|
|
1523
|
-
"index": 304
|
|
1524
|
-
"icon": "gItemIcon_TMHM",
|
|
1525
|
-
"palette": "gItemIconPalette_PsychicTMHM"
|
|
915
|
+
"index": 304
|
|
1526
916
|
},
|
|
1527
917
|
"TM17": {
|
|
1528
|
-
"index": 305
|
|
1529
|
-
"icon": "gItemIcon_TMHM",
|
|
1530
|
-
"palette": "gItemIconPalette_NormalTMHM"
|
|
918
|
+
"index": 305
|
|
1531
919
|
},
|
|
1532
920
|
"TM18": {
|
|
1533
|
-
"index": 306
|
|
1534
|
-
"icon": "gItemIcon_TMHM",
|
|
1535
|
-
"palette": "gItemIconPalette_WaterTMHM"
|
|
921
|
+
"index": 306
|
|
1536
922
|
},
|
|
1537
923
|
"TM19": {
|
|
1538
|
-
"index": 307
|
|
1539
|
-
"icon": "gItemIcon_TMHM",
|
|
1540
|
-
"palette": "gItemIconPalette_GrassTMHM"
|
|
924
|
+
"index": 307
|
|
1541
925
|
},
|
|
1542
926
|
"TM20": {
|
|
1543
|
-
"index": 308
|
|
1544
|
-
"icon": "gItemIcon_TMHM",
|
|
1545
|
-
"palette": "gItemIconPalette_NormalTMHM"
|
|
927
|
+
"index": 308
|
|
1546
928
|
},
|
|
1547
929
|
"TM21": {
|
|
1548
|
-
"index": 309
|
|
1549
|
-
"icon": "gItemIcon_TMHM",
|
|
1550
|
-
"palette": "gItemIconPalette_NormalTMHM"
|
|
930
|
+
"index": 309
|
|
1551
931
|
},
|
|
1552
932
|
"TM22": {
|
|
1553
|
-
"index": 310
|
|
1554
|
-
"icon": "gItemIcon_TMHM",
|
|
1555
|
-
"palette": "gItemIconPalette_GrassTMHM"
|
|
933
|
+
"index": 310
|
|
1556
934
|
},
|
|
1557
935
|
"TM23": {
|
|
1558
|
-
"index": 311
|
|
1559
|
-
"icon": "gItemIcon_TMHM",
|
|
1560
|
-
"palette": "gItemIconPalette_SteelTMHM"
|
|
936
|
+
"index": 311
|
|
1561
937
|
},
|
|
1562
938
|
"TM24": {
|
|
1563
|
-
"index": 312
|
|
1564
|
-
"icon": "gItemIcon_TMHM",
|
|
1565
|
-
"palette": "gItemIconPalette_ElectricTMHM"
|
|
939
|
+
"index": 312
|
|
1566
940
|
},
|
|
1567
941
|
"TM25": {
|
|
1568
|
-
"index": 313
|
|
1569
|
-
"icon": "gItemIcon_TMHM",
|
|
1570
|
-
"palette": "gItemIconPalette_ElectricTMHM"
|
|
942
|
+
"index": 313
|
|
1571
943
|
},
|
|
1572
944
|
"TM26": {
|
|
1573
|
-
"index": 314
|
|
1574
|
-
"icon": "gItemIcon_TMHM",
|
|
1575
|
-
"palette": "gItemIconPalette_GroundTMHM"
|
|
945
|
+
"index": 314
|
|
1576
946
|
},
|
|
1577
947
|
"TM27": {
|
|
1578
|
-
"index": 315
|
|
1579
|
-
"icon": "gItemIcon_TMHM",
|
|
1580
|
-
"palette": "gItemIconPalette_NormalTMHM"
|
|
948
|
+
"index": 315
|
|
1581
949
|
},
|
|
1582
950
|
"TM28": {
|
|
1583
|
-
"index": 316
|
|
1584
|
-
"icon": "gItemIcon_TMHM",
|
|
1585
|
-
"palette": "gItemIconPalette_GroundTMHM"
|
|
951
|
+
"index": 316
|
|
1586
952
|
},
|
|
1587
953
|
"TM29": {
|
|
1588
|
-
"index": 317
|
|
1589
|
-
"icon": "gItemIcon_TMHM",
|
|
1590
|
-
"palette": "gItemIconPalette_PsychicTMHM"
|
|
954
|
+
"index": 317
|
|
1591
955
|
},
|
|
1592
956
|
"TM30": {
|
|
1593
|
-
"index": 318
|
|
1594
|
-
"icon": "gItemIcon_TMHM",
|
|
1595
|
-
"palette": "gItemIconPalette_GhostTMHM"
|
|
957
|
+
"index": 318
|
|
1596
958
|
},
|
|
1597
959
|
"TM31": {
|
|
1598
|
-
"index": 319
|
|
1599
|
-
"icon": "gItemIcon_TMHM",
|
|
1600
|
-
"palette": "gItemIconPalette_FightingTMHM"
|
|
960
|
+
"index": 319
|
|
1601
961
|
},
|
|
1602
962
|
"TM32": {
|
|
1603
|
-
"index": 320
|
|
1604
|
-
"icon": "gItemIcon_TMHM",
|
|
1605
|
-
"palette": "gItemIconPalette_NormalTMHM"
|
|
963
|
+
"index": 320
|
|
1606
964
|
},
|
|
1607
965
|
"TM33": {
|
|
1608
|
-
"index": 321
|
|
1609
|
-
"icon": "gItemIcon_TMHM",
|
|
1610
|
-
"palette": "gItemIconPalette_PsychicTMHM"
|
|
966
|
+
"index": 321
|
|
1611
967
|
},
|
|
1612
968
|
"TM34": {
|
|
1613
|
-
"index": 322
|
|
1614
|
-
"icon": "gItemIcon_TMHM",
|
|
1615
|
-
"palette": "gItemIconPalette_ElectricTMHM"
|
|
969
|
+
"index": 322
|
|
1616
970
|
},
|
|
1617
971
|
"TM35": {
|
|
1618
|
-
"index": 323
|
|
1619
|
-
"icon": "gItemIcon_TMHM",
|
|
1620
|
-
"palette": "gItemIconPalette_FireTMHM"
|
|
972
|
+
"index": 323
|
|
1621
973
|
},
|
|
1622
974
|
"TM36": {
|
|
1623
|
-
"index": 324
|
|
1624
|
-
"icon": "gItemIcon_TMHM",
|
|
1625
|
-
"palette": "gItemIconPalette_PoisonTMHM"
|
|
975
|
+
"index": 324
|
|
1626
976
|
},
|
|
1627
977
|
"TM37": {
|
|
1628
|
-
"index": 325
|
|
1629
|
-
"icon": "gItemIcon_TMHM",
|
|
1630
|
-
"palette": "gItemIconPalette_RockTMHM"
|
|
978
|
+
"index": 325
|
|
1631
979
|
},
|
|
1632
980
|
"TM38": {
|
|
1633
|
-
"index": 326
|
|
1634
|
-
"icon": "gItemIcon_TMHM",
|
|
1635
|
-
"palette": "gItemIconPalette_FireTMHM"
|
|
981
|
+
"index": 326
|
|
1636
982
|
},
|
|
1637
983
|
"TM39": {
|
|
1638
|
-
"index": 327
|
|
1639
|
-
"icon": "gItemIcon_TMHM",
|
|
1640
|
-
"palette": "gItemIconPalette_RockTMHM"
|
|
984
|
+
"index": 327
|
|
1641
985
|
},
|
|
1642
986
|
"TM40": {
|
|
1643
|
-
"index": 328
|
|
1644
|
-
"icon": "gItemIcon_TMHM",
|
|
1645
|
-
"palette": "gItemIconPalette_FlyingTMHM"
|
|
987
|
+
"index": 328
|
|
1646
988
|
},
|
|
1647
989
|
"TM41": {
|
|
1648
|
-
"index": 329
|
|
1649
|
-
"icon": "gItemIcon_TMHM",
|
|
1650
|
-
"palette": "gItemIconPalette_DarkTMHM"
|
|
990
|
+
"index": 329
|
|
1651
991
|
},
|
|
1652
992
|
"TM42": {
|
|
1653
|
-
"index": 330
|
|
1654
|
-
"icon": "gItemIcon_TMHM",
|
|
1655
|
-
"palette": "gItemIconPalette_NormalTMHM"
|
|
993
|
+
"index": 330
|
|
1656
994
|
},
|
|
1657
995
|
"TM43": {
|
|
1658
|
-
"index": 331
|
|
1659
|
-
"icon": "gItemIcon_TMHM",
|
|
1660
|
-
"palette": "gItemIconPalette_NormalTMHM"
|
|
996
|
+
"index": 331
|
|
1661
997
|
},
|
|
1662
998
|
"TM44": {
|
|
1663
|
-
"index": 332
|
|
1664
|
-
"icon": "gItemIcon_TMHM",
|
|
1665
|
-
"palette": "gItemIconPalette_PsychicTMHM"
|
|
999
|
+
"index": 332
|
|
1666
1000
|
},
|
|
1667
1001
|
"TM45": {
|
|
1668
|
-
"index": 333
|
|
1669
|
-
"icon": "gItemIcon_TMHM",
|
|
1670
|
-
"palette": "gItemIconPalette_NormalTMHM"
|
|
1002
|
+
"index": 333
|
|
1671
1003
|
},
|
|
1672
1004
|
"TM46": {
|
|
1673
|
-
"index": 334
|
|
1674
|
-
"icon": "gItemIcon_TMHM",
|
|
1675
|
-
"palette": "gItemIconPalette_DarkTMHM"
|
|
1005
|
+
"index": 334
|
|
1676
1006
|
},
|
|
1677
1007
|
"TM47": {
|
|
1678
|
-
"index": 335
|
|
1679
|
-
"icon": "gItemIcon_TMHM",
|
|
1680
|
-
"palette": "gItemIconPalette_SteelTMHM"
|
|
1008
|
+
"index": 335
|
|
1681
1009
|
},
|
|
1682
1010
|
"TM48": {
|
|
1683
|
-
"index": 336
|
|
1684
|
-
"icon": "gItemIcon_TMHM",
|
|
1685
|
-
"palette": "gItemIconPalette_PsychicTMHM"
|
|
1011
|
+
"index": 336
|
|
1686
1012
|
},
|
|
1687
1013
|
"TM49": {
|
|
1688
|
-
"index": 337
|
|
1689
|
-
"icon": "gItemIcon_TMHM",
|
|
1690
|
-
"palette": "gItemIconPalette_DarkTMHM"
|
|
1014
|
+
"index": 337
|
|
1691
1015
|
},
|
|
1692
1016
|
"TM50": {
|
|
1693
|
-
"index": 338
|
|
1694
|
-
"icon": "gItemIcon_TMHM",
|
|
1695
|
-
"palette": "gItemIconPalette_FireTMHM"
|
|
1017
|
+
"index": 338
|
|
1696
1018
|
},
|
|
1697
1019
|
"HM01": {
|
|
1698
|
-
"index": 339
|
|
1699
|
-
"icon": "gItemIcon_TMHM",
|
|
1700
|
-
"palette": "gItemIconPalette_NormalTMHM"
|
|
1020
|
+
"index": 339
|
|
1701
1021
|
},
|
|
1702
1022
|
"HM02": {
|
|
1703
|
-
"index": 340
|
|
1704
|
-
"icon": "gItemIcon_TMHM",
|
|
1705
|
-
"palette": "gItemIconPalette_FlyingTMHM"
|
|
1023
|
+
"index": 340
|
|
1706
1024
|
},
|
|
1707
1025
|
"HM03": {
|
|
1708
|
-
"index": 341
|
|
1709
|
-
"icon": "gItemIcon_TMHM",
|
|
1710
|
-
"palette": "gItemIconPalette_WaterTMHM"
|
|
1026
|
+
"index": 341
|
|
1711
1027
|
},
|
|
1712
1028
|
"HM04": {
|
|
1713
|
-
"index": 342
|
|
1714
|
-
"icon": "gItemIcon_TMHM",
|
|
1715
|
-
"palette": "gItemIconPalette_NormalTMHM"
|
|
1029
|
+
"index": 342
|
|
1716
1030
|
},
|
|
1717
1031
|
"HM05": {
|
|
1718
|
-
"index": 343
|
|
1719
|
-
"icon": "gItemIcon_TMHM",
|
|
1720
|
-
"palette": "gItemIconPalette_NormalTMHM"
|
|
1032
|
+
"index": 343
|
|
1721
1033
|
},
|
|
1722
1034
|
"HM06": {
|
|
1723
|
-
"index": 344
|
|
1724
|
-
"icon": "gItemIcon_TMHM",
|
|
1725
|
-
"palette": "gItemIconPalette_FightingTMHM"
|
|
1035
|
+
"index": 344
|
|
1726
1036
|
},
|
|
1727
1037
|
"HM07": {
|
|
1728
|
-
"index": 345
|
|
1729
|
-
"icon": "gItemIcon_TMHM",
|
|
1730
|
-
"palette": "gItemIconPalette_WaterTMHM"
|
|
1038
|
+
"index": 345
|
|
1731
1039
|
},
|
|
1732
1040
|
"HM08": {
|
|
1733
|
-
"index": 346
|
|
1734
|
-
"icon": "gItemIcon_TMHM",
|
|
1735
|
-
"palette": "gItemIconPalette_WaterTMHM"
|
|
1041
|
+
"index": 346
|
|
1736
1042
|
},
|
|
1737
1043
|
"15B": {
|
|
1738
|
-
"index": 347
|
|
1739
|
-
"icon": "gItemIcon_QuestionMark",
|
|
1740
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
1044
|
+
"index": 347
|
|
1741
1045
|
},
|
|
1742
1046
|
"15C": {
|
|
1743
|
-
"index": 348
|
|
1744
|
-
"icon": "gItemIcon_QuestionMark",
|
|
1745
|
-
"palette": "gItemIconPalette_QuestionMark"
|
|
1047
|
+
"index": 348
|
|
1746
1048
|
},
|
|
1747
1049
|
"OAKS_PARCEL": {
|
|
1748
|
-
"index": 349
|
|
1749
|
-
"icon": "gItemIcon_OaksParcel",
|
|
1750
|
-
"palette": "gItemIconPalette_OaksParcel"
|
|
1050
|
+
"index": 349
|
|
1751
1051
|
},
|
|
1752
1052
|
"POKE_FLUTE": {
|
|
1753
|
-
"index": 350
|
|
1754
|
-
"icon": "gItemIcon_PokeFlute",
|
|
1755
|
-
"palette": "gItemIconPalette_PokeFlute"
|
|
1053
|
+
"index": 350
|
|
1756
1054
|
},
|
|
1757
1055
|
"SECRET_KEY": {
|
|
1758
|
-
"index": 351
|
|
1759
|
-
"icon": "gItemIcon_SecretKey",
|
|
1760
|
-
"palette": "gItemIconPalette_SecretKey"
|
|
1056
|
+
"index": 351
|
|
1761
1057
|
},
|
|
1762
1058
|
"BIKE_VOUCHER": {
|
|
1763
|
-
"index": 352
|
|
1764
|
-
"icon": "gItemIcon_BikeVoucher",
|
|
1765
|
-
"palette": "gItemIconPalette_BikeVoucher"
|
|
1059
|
+
"index": 352
|
|
1766
1060
|
},
|
|
1767
1061
|
"GOLD_TEETH": {
|
|
1768
|
-
"index": 353
|
|
1769
|
-
"icon": "gItemIcon_GoldTeeth",
|
|
1770
|
-
"palette": "gItemIconPalette_GoldTeeth"
|
|
1062
|
+
"index": 353
|
|
1771
1063
|
},
|
|
1772
1064
|
"OLD_AMBER": {
|
|
1773
|
-
"index": 354
|
|
1774
|
-
"icon": "gItemIcon_OldAmber",
|
|
1775
|
-
"palette": "gItemIconPalette_OldAmber"
|
|
1065
|
+
"index": 354
|
|
1776
1066
|
},
|
|
1777
1067
|
"CARD_KEY": {
|
|
1778
|
-
"index": 355
|
|
1779
|
-
"icon": "gItemIcon_CardKey",
|
|
1780
|
-
"palette": "gItemIconPalette_CardKey"
|
|
1068
|
+
"index": 355
|
|
1781
1069
|
},
|
|
1782
1070
|
"LIFT_KEY": {
|
|
1783
|
-
"index": 356
|
|
1784
|
-
"icon": "gItemIcon_LiftKey",
|
|
1785
|
-
"palette": "gItemIconPalette_Key"
|
|
1071
|
+
"index": 356
|
|
1786
1072
|
},
|
|
1787
1073
|
"HELIX_FOSSIL": {
|
|
1788
|
-
"index": 357
|
|
1789
|
-
"icon": "gItemIcon_HelixFossil",
|
|
1790
|
-
"palette": "gItemIconPalette_KantoFossil"
|
|
1074
|
+
"index": 357
|
|
1791
1075
|
},
|
|
1792
1076
|
"DOME_FOSSIL": {
|
|
1793
|
-
"index": 358
|
|
1794
|
-
"icon": "gItemIcon_DomeFossil",
|
|
1795
|
-
"palette": "gItemIconPalette_KantoFossil"
|
|
1077
|
+
"index": 358
|
|
1796
1078
|
},
|
|
1797
1079
|
"SILPH_SCOPE": {
|
|
1798
|
-
"index": 359
|
|
1799
|
-
"icon": "gItemIcon_SilphScope",
|
|
1800
|
-
"palette": "gItemIconPalette_SilphScope"
|
|
1080
|
+
"index": 359
|
|
1801
1081
|
},
|
|
1802
1082
|
"BICYCLE": {
|
|
1803
|
-
"index": 360
|
|
1804
|
-
"icon": "gItemIcon_Bicycle",
|
|
1805
|
-
"palette": "gItemIconPalette_Bicycle"
|
|
1083
|
+
"index": 360
|
|
1806
1084
|
},
|
|
1807
1085
|
"TOWN_MAP": {
|
|
1808
|
-
"index": 361
|
|
1809
|
-
"icon": "gItemIcon_TownMap",
|
|
1810
|
-
"palette": "gItemIconPalette_TownMap"
|
|
1086
|
+
"index": 361
|
|
1811
1087
|
},
|
|
1812
1088
|
"VS_SEEKER": {
|
|
1813
|
-
"index": 362
|
|
1814
|
-
"icon": "gItemIcon_VSSeeker",
|
|
1815
|
-
"palette": "gItemIconPalette_VSSeeker"
|
|
1089
|
+
"index": 362
|
|
1816
1090
|
},
|
|
1817
1091
|
"FAME_CHECKER": {
|
|
1818
|
-
"index": 363
|
|
1819
|
-
"icon": "gItemIcon_FameChecker",
|
|
1820
|
-
"palette": "gItemIconPalette_FameChecker"
|
|
1092
|
+
"index": 363
|
|
1821
1093
|
},
|
|
1822
1094
|
"TM_CASE": {
|
|
1823
|
-
"index": 364
|
|
1824
|
-
"icon": "gItemIcon_TMCase",
|
|
1825
|
-
"palette": "gItemIconPalette_TMCase"
|
|
1095
|
+
"index": 364
|
|
1826
1096
|
},
|
|
1827
1097
|
"BERRY_POUCH": {
|
|
1828
|
-
"index": 365
|
|
1829
|
-
"icon": "gItemIcon_BerryPouch",
|
|
1830
|
-
"palette": "gItemIconPalette_BerryPouch"
|
|
1098
|
+
"index": 365
|
|
1831
1099
|
},
|
|
1832
1100
|
"TEACHY_TV": {
|
|
1833
|
-
"index": 366
|
|
1834
|
-
"icon": "gItemIcon_TeachyTV",
|
|
1835
|
-
"palette": "gItemIconPalette_TeachyTV"
|
|
1101
|
+
"index": 366
|
|
1836
1102
|
},
|
|
1837
1103
|
"TRI_PASS": {
|
|
1838
|
-
"index": 367
|
|
1839
|
-
"icon": "gItemIcon_TriPass",
|
|
1840
|
-
"palette": "gItemIconPalette_TriPass"
|
|
1104
|
+
"index": 367
|
|
1841
1105
|
},
|
|
1842
1106
|
"RAINBOW_PASS": {
|
|
1843
|
-
"index": 368
|
|
1844
|
-
"icon": "gItemIcon_RainbowPass",
|
|
1845
|
-
"palette": "gItemIconPalette_RainbowPass"
|
|
1107
|
+
"index": 368
|
|
1846
1108
|
},
|
|
1847
1109
|
"TEA": {
|
|
1848
|
-
"index": 369
|
|
1849
|
-
"icon": "gItemIcon_Tea",
|
|
1850
|
-
"palette": "gItemIconPalette_Tea"
|
|
1110
|
+
"index": 369
|
|
1851
1111
|
},
|
|
1852
1112
|
"MYSTIC_TICKET": {
|
|
1853
|
-
"index": 370
|
|
1854
|
-
"icon": "gItemIcon_MysticTicket",
|
|
1855
|
-
"palette": "gItemIconPalette_MysticTicket"
|
|
1113
|
+
"index": 370
|
|
1856
1114
|
},
|
|
1857
1115
|
"AURORA_TICKET": {
|
|
1858
|
-
"index": 371
|
|
1859
|
-
"icon": "gItemIcon_AuroraTicket",
|
|
1860
|
-
"palette": "gItemIconPalette_AuroraTicket"
|
|
1116
|
+
"index": 371
|
|
1861
1117
|
},
|
|
1862
1118
|
"POWDER_JAR": {
|
|
1863
|
-
"index": 372
|
|
1864
|
-
"icon": "gItemIcon_PowderJar",
|
|
1865
|
-
"palette": "gItemIconPalette_PowderJar"
|
|
1119
|
+
"index": 372
|
|
1866
1120
|
},
|
|
1867
1121
|
"RUBY": {
|
|
1868
|
-
"index": 373
|
|
1869
|
-
"icon": "gItemIcon_Gem",
|
|
1870
|
-
"palette": "gItemIconPalette_Ruby"
|
|
1122
|
+
"index": 373
|
|
1871
1123
|
},
|
|
1872
1124
|
"SAPPHIRE": {
|
|
1873
|
-
"index": 374
|
|
1874
|
-
"icon": "gItemIcon_Gem",
|
|
1875
|
-
"palette": "gItemIconPalette_Sapphire"
|
|
1125
|
+
"index": 374
|
|
1876
1126
|
},
|
|
1877
1127
|
"COUNT": {
|
|
1878
|
-
"index": 375
|
|
1879
|
-
"icon": "gItemIcon_ReturnToFieldArrow",
|
|
1880
|
-
"palette": "gItemIconPalette_ReturnToFieldArrow"
|
|
1128
|
+
"index": 375
|
|
1881
1129
|
}
|
|
1882
1130
|
}
|