pokemon-io-core 0.0.96 → 0.0.98
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/dist/api/battle.d.ts +3 -2
- package/dist/api/socketTypes.d.ts +1 -4
- package/dist/core/battleState.d.ts +16 -1
- package/dist/core/events.d.ts +16 -4
- package/dist/core/moves.d.ts +5 -0
- package/dist/engine/actions/move.js +82 -9
- package/dist/engine/combat/damage.js +12 -1
- package/dist/engine/combat/stages.d.ts +5 -0
- package/dist/engine/combat/stages.js +53 -0
- package/dist/engine/effects/applyEffects.js +73 -1
- package/dist/engine/fighters/fighter.js +30 -3
- package/dist/engine/status/endOfTurn.js +13 -3
- package/dist/engine/turn/resolveTurn.js +49 -7
- package/dist/skins/pokemon/items.js +62 -0
- package/dist/skins/pokemon/moves.js +212 -550
- package/dist/skins/pokemon/statuses.js +22 -53
- package/package.json +1 -1
|
@@ -1,623 +1,285 @@
|
|
|
1
|
+
// Balance Standards:
|
|
2
|
+
// Nuke: 45 Power, 85 Acc, 4 PP.
|
|
3
|
+
// Core: 25 Power, 95 Acc, 8 PP. (10% Status Chance)
|
|
4
|
+
// Utility/Heal: 100 Acc, 12 PP.
|
|
1
5
|
export const POKEMON_MOVES = [
|
|
6
|
+
// --- TYPELESS (Special Mechanics) ---
|
|
2
7
|
{
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
"
|
|
10
|
-
|
|
11
|
-
"kind": "force_switch",
|
|
12
|
-
"reason": "Roar"
|
|
13
|
-
},
|
|
14
|
-
]
|
|
8
|
+
id: "phantom_step",
|
|
9
|
+
name: "Paso Fantasma",
|
|
10
|
+
typeId: "typeless",
|
|
11
|
+
accuracy: 95,
|
|
12
|
+
maxPP: 4,
|
|
13
|
+
priority: 0,
|
|
14
|
+
charge: { invulnerability: "vanish" },
|
|
15
|
+
effects: [{ kind: "damage", basePower: 40 }]
|
|
15
16
|
},
|
|
16
17
|
{
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
"kind": "damage",
|
|
26
|
-
"basePower": 40
|
|
27
|
-
},
|
|
28
|
-
{
|
|
29
|
-
"kind": "damage",
|
|
30
|
-
"flatAmount": 10,
|
|
31
|
-
"target": "self"
|
|
32
|
-
}
|
|
33
|
-
]
|
|
18
|
+
id: "true_sight",
|
|
19
|
+
name: "Visión Verdadera",
|
|
20
|
+
typeId: "typeless",
|
|
21
|
+
accuracy: 100,
|
|
22
|
+
maxPP: 8,
|
|
23
|
+
priority: 0,
|
|
24
|
+
bypassInvulnerability: ["vanish"],
|
|
25
|
+
effects: [{ kind: "damage", basePower: 40 }]
|
|
34
26
|
},
|
|
35
27
|
{
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
28
|
+
id: "hypnosis",
|
|
29
|
+
name: "Hipnosis",
|
|
30
|
+
typeId: "typeless",
|
|
31
|
+
accuracy: 70, // Low accuracy for Hard CC
|
|
32
|
+
maxPP: 4,
|
|
33
|
+
priority: 0,
|
|
34
|
+
effects: [
|
|
43
35
|
{
|
|
44
|
-
|
|
45
|
-
"
|
|
36
|
+
kind: "apply_status",
|
|
37
|
+
statusId: "sleep",
|
|
38
|
+
chance: 1 // 100% chance if hits
|
|
46
39
|
}
|
|
47
40
|
]
|
|
48
41
|
},
|
|
42
|
+
// --- FIRE ---
|
|
49
43
|
{
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
{
|
|
58
|
-
"kind": "damage",
|
|
59
|
-
"basePower": 20
|
|
60
|
-
},
|
|
61
|
-
{
|
|
62
|
-
"kind": "apply_status",
|
|
63
|
-
"statusId": "burn"
|
|
64
|
-
}
|
|
44
|
+
id: "inferno",
|
|
45
|
+
name: "Infierno",
|
|
46
|
+
typeId: "fire",
|
|
47
|
+
accuracy: 85,
|
|
48
|
+
maxPP: 4,
|
|
49
|
+
effects: [
|
|
50
|
+
{ kind: "damage", basePower: 45 },
|
|
51
|
+
{ kind: "modify_stats", target: "self", offenseDelta: -2 }
|
|
65
52
|
]
|
|
66
53
|
},
|
|
67
54
|
{
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
{
|
|
76
|
-
"kind": "heal",
|
|
77
|
-
"target": "self",
|
|
78
|
-
"amount": 22
|
|
79
|
-
},
|
|
80
|
-
{
|
|
81
|
-
"kind": "clear_status",
|
|
82
|
-
"target": "self",
|
|
83
|
-
"kinds": [
|
|
84
|
-
"soft"
|
|
85
|
-
]
|
|
86
|
-
}
|
|
55
|
+
id: "ember",
|
|
56
|
+
name: "Ascuas",
|
|
57
|
+
typeId: "fire",
|
|
58
|
+
accuracy: 95,
|
|
59
|
+
maxPP: 8,
|
|
60
|
+
effects: [
|
|
61
|
+
{ kind: "damage", basePower: 25 },
|
|
62
|
+
{ kind: "apply_status", statusId: "burn", chance: 0.1 }
|
|
87
63
|
]
|
|
88
64
|
},
|
|
89
65
|
{
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
"
|
|
96
|
-
"effects": [
|
|
97
|
-
{
|
|
98
|
-
"kind": "damage",
|
|
99
|
-
"basePower": 15
|
|
100
|
-
}
|
|
101
|
-
]
|
|
66
|
+
id: "heat_wave",
|
|
67
|
+
name: "Onda de Calor",
|
|
68
|
+
typeId: "fire",
|
|
69
|
+
accuracy: 100,
|
|
70
|
+
maxPP: 12,
|
|
71
|
+
effects: [{ kind: "heal", target: "self", amount: 50 }]
|
|
102
72
|
},
|
|
103
73
|
{
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
{
|
|
112
|
-
"kind": "heal",
|
|
113
|
-
"target": "self",
|
|
114
|
-
"amount": 18
|
|
115
|
-
}
|
|
74
|
+
id: "cauterize",
|
|
75
|
+
name: "Cauterizar",
|
|
76
|
+
typeId: "fire",
|
|
77
|
+
accuracy: 100,
|
|
78
|
+
maxPP: 12,
|
|
79
|
+
effects: [
|
|
80
|
+
{ kind: "heal", target: "self", amount: 25 },
|
|
81
|
+
{ kind: "clear_status", target: "self", kinds: ["soft"] }
|
|
116
82
|
]
|
|
117
83
|
},
|
|
84
|
+
// --- WATER ---
|
|
118
85
|
{
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
{
|
|
127
|
-
"kind": "damage",
|
|
128
|
-
"basePower": 40
|
|
129
|
-
},
|
|
130
|
-
{
|
|
131
|
-
"kind": "modify_stats",
|
|
132
|
-
"offenseDelta": -15
|
|
133
|
-
}
|
|
86
|
+
id: "tsunami",
|
|
87
|
+
name: "Tsunami",
|
|
88
|
+
typeId: "water",
|
|
89
|
+
accuracy: 85,
|
|
90
|
+
maxPP: 4,
|
|
91
|
+
effects: [
|
|
92
|
+
{ kind: "damage", basePower: 45 },
|
|
93
|
+
{ kind: "damage", target: "self", flatAmount: 15 }
|
|
134
94
|
]
|
|
135
95
|
},
|
|
136
96
|
{
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
"
|
|
143
|
-
"effects": [
|
|
144
|
-
{
|
|
145
|
-
"kind": "damage",
|
|
146
|
-
"basePower": 30
|
|
147
|
-
}
|
|
148
|
-
]
|
|
97
|
+
id: "stream",
|
|
98
|
+
name: "Corriente",
|
|
99
|
+
typeId: "water",
|
|
100
|
+
accuracy: 95,
|
|
101
|
+
maxPP: 8,
|
|
102
|
+
effects: [{ kind: "damage", basePower: 25 }]
|
|
149
103
|
},
|
|
150
104
|
{
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
"
|
|
157
|
-
"effects": [
|
|
158
|
-
{
|
|
159
|
-
"kind": "damage",
|
|
160
|
-
"basePower": 20
|
|
161
|
-
},
|
|
162
|
-
{
|
|
163
|
-
"kind": "apply_status",
|
|
164
|
-
"statusId": "scalded"
|
|
165
|
-
}
|
|
166
|
-
]
|
|
105
|
+
id: "refresh",
|
|
106
|
+
name: "Refrescar",
|
|
107
|
+
typeId: "water",
|
|
108
|
+
accuracy: 100,
|
|
109
|
+
maxPP: 12,
|
|
110
|
+
effects: [{ kind: "heal", target: "self", amount: 50 }]
|
|
167
111
|
},
|
|
168
112
|
{
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
{
|
|
177
|
-
"kind": "heal",
|
|
178
|
-
"target": "self",
|
|
179
|
-
"amount": 22
|
|
180
|
-
},
|
|
181
|
-
{
|
|
182
|
-
"kind": "clear_status",
|
|
183
|
-
"target": "self",
|
|
184
|
-
"kinds": [
|
|
185
|
-
"soft"
|
|
186
|
-
]
|
|
187
|
-
}
|
|
113
|
+
id: "purify",
|
|
114
|
+
name: "Purificar",
|
|
115
|
+
typeId: "water",
|
|
116
|
+
accuracy: 100,
|
|
117
|
+
maxPP: 12,
|
|
118
|
+
effects: [
|
|
119
|
+
{ kind: "heal", target: "self", amount: 25 },
|
|
120
|
+
{ kind: "clear_status", target: "self", kinds: ["soft"] }
|
|
188
121
|
]
|
|
189
122
|
},
|
|
123
|
+
// --- GRASS ---
|
|
190
124
|
{
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
{
|
|
199
|
-
"kind": "damage",
|
|
200
|
-
"basePower": 15
|
|
201
|
-
}
|
|
125
|
+
id: "solar_beam",
|
|
126
|
+
name: "Rayo Solar",
|
|
127
|
+
typeId: "grass",
|
|
128
|
+
accuracy: 85,
|
|
129
|
+
maxPP: 4,
|
|
130
|
+
effects: [
|
|
131
|
+
{ kind: "damage", basePower: 45 },
|
|
132
|
+
{ kind: "modify_stats", target: "self", speedDelta: -2 }
|
|
202
133
|
]
|
|
203
134
|
},
|
|
204
135
|
{
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
{
|
|
213
|
-
"kind": "heal",
|
|
214
|
-
"target": "self",
|
|
215
|
-
"amount": 18
|
|
216
|
-
}
|
|
136
|
+
id: "vine",
|
|
137
|
+
name: "Látigo Cepa",
|
|
138
|
+
typeId: "grass",
|
|
139
|
+
accuracy: 95,
|
|
140
|
+
maxPP: 8,
|
|
141
|
+
effects: [
|
|
142
|
+
{ kind: "damage", basePower: 25 },
|
|
143
|
+
{ kind: "apply_status", statusId: "poison", chance: 0.1 }
|
|
217
144
|
]
|
|
218
145
|
},
|
|
219
146
|
{
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
"
|
|
226
|
-
"effects": [
|
|
227
|
-
{
|
|
228
|
-
"kind": "damage",
|
|
229
|
-
"basePower": 40
|
|
230
|
-
},
|
|
231
|
-
{
|
|
232
|
-
"kind": "modify_stats",
|
|
233
|
-
"offenseDelta": -20
|
|
234
|
-
}
|
|
235
|
-
]
|
|
147
|
+
id: "synthesis",
|
|
148
|
+
name: "Síntesis",
|
|
149
|
+
typeId: "grass",
|
|
150
|
+
accuracy: 100,
|
|
151
|
+
maxPP: 12,
|
|
152
|
+
effects: [{ kind: "heal", target: "self", amount: 50 }]
|
|
236
153
|
},
|
|
237
154
|
{
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
{
|
|
246
|
-
"kind": "damage",
|
|
247
|
-
"basePower": 30
|
|
248
|
-
}
|
|
155
|
+
id: "bloom",
|
|
156
|
+
name: "Floración",
|
|
157
|
+
typeId: "grass",
|
|
158
|
+
accuracy: 100,
|
|
159
|
+
maxPP: 12,
|
|
160
|
+
effects: [
|
|
161
|
+
{ kind: "heal", target: "self", amount: 25 },
|
|
162
|
+
{ kind: "clear_status", target: "self", kinds: ["soft"] }
|
|
249
163
|
]
|
|
250
164
|
},
|
|
165
|
+
// --- ELECTRIC ---
|
|
251
166
|
{
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
{
|
|
260
|
-
"kind": "damage",
|
|
261
|
-
"basePower": 20
|
|
262
|
-
},
|
|
263
|
-
{
|
|
264
|
-
"kind": "apply_status",
|
|
265
|
-
"statusId": "entangled"
|
|
266
|
-
}
|
|
167
|
+
id: "thunder_strike",
|
|
168
|
+
name: "Golpe Trueno",
|
|
169
|
+
typeId: "electric",
|
|
170
|
+
accuracy: 85,
|
|
171
|
+
maxPP: 4,
|
|
172
|
+
effects: [
|
|
173
|
+
{ kind: "damage", basePower: 45 },
|
|
174
|
+
{ kind: "damage", target: "self", flatAmount: 15 }
|
|
267
175
|
]
|
|
268
176
|
},
|
|
269
177
|
{
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
{
|
|
278
|
-
"kind": "heal",
|
|
279
|
-
"target": "self",
|
|
280
|
-
"amount": 22
|
|
281
|
-
},
|
|
282
|
-
{
|
|
283
|
-
"kind": "clear_status",
|
|
284
|
-
"target": "self",
|
|
285
|
-
"kinds": [
|
|
286
|
-
"soft"
|
|
287
|
-
]
|
|
288
|
-
}
|
|
178
|
+
id: "spark",
|
|
179
|
+
name: "Chispa",
|
|
180
|
+
typeId: "electric",
|
|
181
|
+
accuracy: 95,
|
|
182
|
+
maxPP: 8,
|
|
183
|
+
effects: [
|
|
184
|
+
{ kind: "damage", basePower: 25 },
|
|
185
|
+
{ kind: "apply_status", statusId: "paralysis", chance: 0.1 }
|
|
289
186
|
]
|
|
290
187
|
},
|
|
291
188
|
{
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
"
|
|
298
|
-
"effects": [
|
|
299
|
-
{
|
|
300
|
-
"kind": "damage",
|
|
301
|
-
"basePower": 15
|
|
302
|
-
}
|
|
303
|
-
]
|
|
189
|
+
id: "recharge",
|
|
190
|
+
name: "Recarga",
|
|
191
|
+
typeId: "electric",
|
|
192
|
+
accuracy: 100,
|
|
193
|
+
maxPP: 12,
|
|
194
|
+
effects: [{ kind: "heal", target: "self", amount: 50 }]
|
|
304
195
|
},
|
|
305
196
|
{
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
{
|
|
314
|
-
"kind": "heal",
|
|
315
|
-
"target": "self",
|
|
316
|
-
"amount": 18
|
|
317
|
-
}
|
|
197
|
+
id: "grounding",
|
|
198
|
+
name: "Toma de Tierra",
|
|
199
|
+
typeId: "electric",
|
|
200
|
+
accuracy: 100,
|
|
201
|
+
maxPP: 12,
|
|
202
|
+
effects: [
|
|
203
|
+
{ kind: "heal", target: "self", amount: 25 },
|
|
204
|
+
{ kind: "clear_status", target: "self", kinds: ["soft"] }
|
|
318
205
|
]
|
|
319
206
|
},
|
|
207
|
+
// --- PSYCHIC ---
|
|
320
208
|
{
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
{
|
|
329
|
-
"kind": "damage",
|
|
330
|
-
"basePower": 40
|
|
331
|
-
},
|
|
332
|
-
{
|
|
333
|
-
"kind": "modify_stats",
|
|
334
|
-
"offenseDelta": -20
|
|
335
|
-
}
|
|
209
|
+
id: "psystrike",
|
|
210
|
+
name: "Onda Mental",
|
|
211
|
+
typeId: "psychic",
|
|
212
|
+
accuracy: 85,
|
|
213
|
+
maxPP: 4,
|
|
214
|
+
effects: [
|
|
215
|
+
{ kind: "damage", basePower: 45 },
|
|
216
|
+
{ kind: "modify_stats", target: "self", defenseDelta: -2 }
|
|
336
217
|
]
|
|
337
218
|
},
|
|
338
219
|
{
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
"
|
|
345
|
-
"effects": [
|
|
346
|
-
{
|
|
347
|
-
"kind": "damage",
|
|
348
|
-
"basePower": 30
|
|
349
|
-
}
|
|
350
|
-
]
|
|
220
|
+
id: "pulse",
|
|
221
|
+
name: "Pulso",
|
|
222
|
+
typeId: "psychic",
|
|
223
|
+
accuracy: 95,
|
|
224
|
+
maxPP: 8,
|
|
225
|
+
effects: [{ kind: "damage", basePower: 25 }]
|
|
351
226
|
},
|
|
352
227
|
{
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
"
|
|
359
|
-
"effects": [
|
|
360
|
-
{
|
|
361
|
-
"kind": "damage",
|
|
362
|
-
"basePower": 20
|
|
363
|
-
},
|
|
364
|
-
{
|
|
365
|
-
"kind": "apply_status",
|
|
366
|
-
"statusId": "mind_break"
|
|
367
|
-
}
|
|
368
|
-
]
|
|
228
|
+
id: "meditate",
|
|
229
|
+
name: "Meditar",
|
|
230
|
+
typeId: "psychic",
|
|
231
|
+
accuracy: 100,
|
|
232
|
+
maxPP: 12,
|
|
233
|
+
effects: [{ kind: "heal", target: "self", amount: 50 }]
|
|
369
234
|
},
|
|
370
235
|
{
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
{
|
|
379
|
-
"kind": "heal",
|
|
380
|
-
"target": "self",
|
|
381
|
-
"amount": 22
|
|
382
|
-
},
|
|
383
|
-
{
|
|
384
|
-
"kind": "clear_status",
|
|
385
|
-
"target": "self",
|
|
386
|
-
"kinds": [
|
|
387
|
-
"soft"
|
|
388
|
-
]
|
|
389
|
-
}
|
|
236
|
+
id: "clarity",
|
|
237
|
+
name: "Claridad",
|
|
238
|
+
typeId: "psychic",
|
|
239
|
+
accuracy: 100,
|
|
240
|
+
maxPP: 12,
|
|
241
|
+
effects: [
|
|
242
|
+
{ kind: "heal", target: "self", amount: 25 },
|
|
243
|
+
{ kind: "clear_status", target: "self", kinds: ["soft"] }
|
|
390
244
|
]
|
|
391
245
|
},
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
"
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
{
|
|
401
|
-
|
|
402
|
-
"basePower": 15
|
|
403
|
-
}
|
|
246
|
+
// --- ROCK ---
|
|
247
|
+
{
|
|
248
|
+
id: "landslide",
|
|
249
|
+
name: "Avalancha",
|
|
250
|
+
typeId: "rock",
|
|
251
|
+
accuracy: 85,
|
|
252
|
+
maxPP: 4,
|
|
253
|
+
effects: [
|
|
254
|
+
{ kind: "damage", basePower: 45 },
|
|
255
|
+
{ kind: "damage", target: "self", flatAmount: 15 }
|
|
404
256
|
]
|
|
405
257
|
},
|
|
406
258
|
{
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
"
|
|
413
|
-
"effects": [
|
|
414
|
-
{
|
|
415
|
-
"kind": "heal",
|
|
416
|
-
"target": "self",
|
|
417
|
-
"amount": 18
|
|
418
|
-
}
|
|
419
|
-
]
|
|
259
|
+
id: "throw",
|
|
260
|
+
name: "Lanzar Rocas",
|
|
261
|
+
typeId: "rock",
|
|
262
|
+
accuracy: 95,
|
|
263
|
+
maxPP: 8,
|
|
264
|
+
effects: [{ kind: "damage", basePower: 25 }]
|
|
420
265
|
},
|
|
421
266
|
{
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
"
|
|
428
|
-
"effects": [
|
|
429
|
-
{
|
|
430
|
-
"kind": "damage",
|
|
431
|
-
"basePower": 40
|
|
432
|
-
},
|
|
433
|
-
{
|
|
434
|
-
"kind": "modify_stats",
|
|
435
|
-
"offenseDelta": -20
|
|
436
|
-
}
|
|
437
|
-
]
|
|
267
|
+
id: "mend",
|
|
268
|
+
name: "Reconstruir",
|
|
269
|
+
typeId: "rock",
|
|
270
|
+
accuracy: 100,
|
|
271
|
+
maxPP: 12,
|
|
272
|
+
effects: [{ kind: "heal", target: "self", amount: 50 }]
|
|
438
273
|
},
|
|
439
274
|
{
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
{
|
|
448
|
-
"kind": "damage",
|
|
449
|
-
"basePower": 30
|
|
450
|
-
}
|
|
451
|
-
]
|
|
452
|
-
},
|
|
453
|
-
{
|
|
454
|
-
"id": "rock_slide",
|
|
455
|
-
"name": "Avalancha",
|
|
456
|
-
"typeId": "rock",
|
|
457
|
-
"accuracy": 100,
|
|
458
|
-
"maxPP": 8,
|
|
459
|
-
"priority": 0,
|
|
460
|
-
"effects": [
|
|
461
|
-
{
|
|
462
|
-
"kind": "damage",
|
|
463
|
-
"basePower": 15
|
|
464
|
-
},
|
|
465
|
-
{
|
|
466
|
-
"kind": "apply_status",
|
|
467
|
-
"statusId": "petrified"
|
|
468
|
-
}
|
|
469
|
-
]
|
|
470
|
-
},
|
|
471
|
-
{
|
|
472
|
-
"id": "sand_cleanse",
|
|
473
|
-
"name": "Purga de Arena",
|
|
474
|
-
"typeId": "rock",
|
|
475
|
-
"accuracy": 100,
|
|
476
|
-
"maxPP": 5,
|
|
477
|
-
"priority": 0,
|
|
478
|
-
"effects": [
|
|
479
|
-
{
|
|
480
|
-
"kind": "heal",
|
|
481
|
-
"target": "self",
|
|
482
|
-
"amount": 22
|
|
483
|
-
},
|
|
484
|
-
{
|
|
485
|
-
"kind": "clear_status",
|
|
486
|
-
"target": "self",
|
|
487
|
-
"kinds": [
|
|
488
|
-
"soft"
|
|
489
|
-
]
|
|
490
|
-
}
|
|
491
|
-
]
|
|
492
|
-
},
|
|
493
|
-
{
|
|
494
|
-
"id": "power_gem",
|
|
495
|
-
"name": "Joya de Luz",
|
|
496
|
-
"typeId": "rock",
|
|
497
|
-
"accuracy": 100,
|
|
498
|
-
"maxPP": 10,
|
|
499
|
-
"priority": 0,
|
|
500
|
-
"effects": [
|
|
501
|
-
{
|
|
502
|
-
"kind": "damage",
|
|
503
|
-
"basePower": 15
|
|
504
|
-
}
|
|
505
|
-
]
|
|
506
|
-
},
|
|
507
|
-
{
|
|
508
|
-
"id": "healing_mineral",
|
|
509
|
-
"name": "Mineral Curativo",
|
|
510
|
-
"typeId": "rock",
|
|
511
|
-
"accuracy": 100,
|
|
512
|
-
"maxPP": 8,
|
|
513
|
-
"priority": 0,
|
|
514
|
-
"effects": [
|
|
515
|
-
{
|
|
516
|
-
"kind": "heal",
|
|
517
|
-
"target": "self",
|
|
518
|
-
"amount": 18
|
|
519
|
-
}
|
|
520
|
-
]
|
|
521
|
-
},
|
|
522
|
-
{
|
|
523
|
-
"id": "bolt_strike",
|
|
524
|
-
"name": "Impacto Voltio",
|
|
525
|
-
"typeId": "electric",
|
|
526
|
-
"accuracy": 85,
|
|
527
|
-
"maxPP": 3,
|
|
528
|
-
"priority": 0,
|
|
529
|
-
"effects": [
|
|
530
|
-
{
|
|
531
|
-
"kind": "damage",
|
|
532
|
-
"basePower": 40
|
|
533
|
-
},
|
|
534
|
-
{
|
|
535
|
-
"kind": "modify_stats",
|
|
536
|
-
"offenseDelta": -15
|
|
537
|
-
}
|
|
538
|
-
]
|
|
539
|
-
},
|
|
540
|
-
{
|
|
541
|
-
"id": "thunderbolt",
|
|
542
|
-
"name": "Rayo",
|
|
543
|
-
"typeId": "electric",
|
|
544
|
-
"accuracy": 100,
|
|
545
|
-
"maxPP": 8,
|
|
546
|
-
"priority": 0,
|
|
547
|
-
"effects": [
|
|
548
|
-
{
|
|
549
|
-
"kind": "damage",
|
|
550
|
-
"basePower": 30
|
|
551
|
-
}
|
|
552
|
-
]
|
|
553
|
-
},
|
|
554
|
-
{
|
|
555
|
-
"id": "thunder_wave",
|
|
556
|
-
"name": "Onda Trueno",
|
|
557
|
-
"typeId": "electric",
|
|
558
|
-
"accuracy": 100,
|
|
559
|
-
"maxPP": 10,
|
|
560
|
-
"priority": 0,
|
|
561
|
-
"effects": [
|
|
562
|
-
{
|
|
563
|
-
"kind": "damage",
|
|
564
|
-
"basePower": 20
|
|
565
|
-
},
|
|
566
|
-
{
|
|
567
|
-
"kind": "apply_status",
|
|
568
|
-
"statusId": "shocked"
|
|
569
|
-
}
|
|
570
|
-
]
|
|
571
|
-
},
|
|
572
|
-
{
|
|
573
|
-
"id": "static_field",
|
|
574
|
-
"name": "Campo Estático",
|
|
575
|
-
"typeId": "electric",
|
|
576
|
-
"accuracy": 100,
|
|
577
|
-
"maxPP": 5,
|
|
578
|
-
"priority": 0,
|
|
579
|
-
"effects": [
|
|
580
|
-
{
|
|
581
|
-
"kind": "heal",
|
|
582
|
-
"target": "self",
|
|
583
|
-
"amount": 22
|
|
584
|
-
},
|
|
585
|
-
{
|
|
586
|
-
"kind": "clear_status",
|
|
587
|
-
"target": "self",
|
|
588
|
-
"kinds": [
|
|
589
|
-
"soft"
|
|
590
|
-
]
|
|
591
|
-
}
|
|
592
|
-
]
|
|
593
|
-
},
|
|
594
|
-
{
|
|
595
|
-
"id": "wild_charge",
|
|
596
|
-
"name": "Carga Salvaje",
|
|
597
|
-
"typeId": "electric",
|
|
598
|
-
"accuracy": 100,
|
|
599
|
-
"maxPP": 10,
|
|
600
|
-
"priority": 0,
|
|
601
|
-
"effects": [
|
|
602
|
-
{
|
|
603
|
-
"kind": "damage",
|
|
604
|
-
"basePower": 15
|
|
605
|
-
}
|
|
606
|
-
]
|
|
607
|
-
},
|
|
608
|
-
{
|
|
609
|
-
"id": "healing_spark",
|
|
610
|
-
"name": "Chispa Sanadora",
|
|
611
|
-
"typeId": "electric",
|
|
612
|
-
"accuracy": 100,
|
|
613
|
-
"maxPP": 8,
|
|
614
|
-
"priority": 0,
|
|
615
|
-
"effects": [
|
|
616
|
-
{
|
|
617
|
-
"kind": "heal",
|
|
618
|
-
"target": "self",
|
|
619
|
-
"amount": 18
|
|
620
|
-
}
|
|
275
|
+
id: "polish",
|
|
276
|
+
name: "Pulir",
|
|
277
|
+
typeId: "rock",
|
|
278
|
+
accuracy: 100,
|
|
279
|
+
maxPP: 12,
|
|
280
|
+
effects: [
|
|
281
|
+
{ kind: "heal", target: "self", amount: 25 },
|
|
282
|
+
{ kind: "clear_status", target: "self", kinds: ["soft"] }
|
|
621
283
|
]
|
|
622
284
|
}
|
|
623
285
|
];
|