pokemon-io-core 0.0.60 → 0.0.63

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.
@@ -1,459 +1,609 @@
1
- import { POKEMON_TYPE_IDS } from "./types";
2
1
  export const POKEMON_MOVES = [
3
- // =====================================================
4
- // FUEGO
5
- // =====================================================
6
- // 1) Nuke fuego
7
- {
8
- id: "overheat",
9
- name: "Sofoco Ígneo",
10
- typeId: POKEMON_TYPE_IDS.fire,
11
- accuracy: 85,
12
- maxPP: 5,
13
- priority: 0,
14
- effects: [
15
- { kind: "damage", basePower: 40 },
16
- { kind: "damage", flatAmount: 10, target: "self" }, // coste: se hace daño
17
- ],
18
- },
19
- // 2) Golpe estable fuerte fuego
20
- {
21
- id: "flamethrower",
22
- name: "Lanzallamas",
23
- typeId: POKEMON_TYPE_IDS.fire,
24
- accuracy: 100,
25
- maxPP: 15,
26
- priority: 0,
27
- effects: [{ kind: "damage", basePower: 30 }],
28
- },
29
- // 3) Daño bajo + quemar
30
- {
31
- id: "ember",
32
- name: "Ascuas",
33
- typeId: POKEMON_TYPE_IDS.fire,
34
- accuracy: 100,
35
- maxPP: 25,
36
- priority: 0,
37
- effects: [
38
- { kind: "damage", basePower: 20 },
39
- { kind: "apply_status", statusId: "burn" },
40
- ],
41
- },
42
- // 4) Cura + limpia estados blandos
43
- {
44
- id: "purifying_flame",
45
- name: "Llama Purificadora",
46
- typeId: POKEMON_TYPE_IDS.fire,
47
- accuracy: 100,
48
- maxPP: 10,
49
- priority: 0,
50
- effects: [
51
- { kind: "heal", target: "self", amount: 22 },
52
- {
53
- kind: "clear_status",
54
- target: "self",
55
- kinds: ["soft"],
2
+ {
3
+ "id": "overheat",
4
+ "name": "Sofoco Ígneo",
5
+ "typeId": "fire",
6
+ "accuracy": 66,
7
+ "maxPP": 3,
8
+ "priority": 0,
9
+ "effects": [
10
+ {
11
+ "kind": "damage",
12
+ "basePower": 40
56
13
  },
57
- ],
58
- },
59
- // 5) Golpe medio estable
60
- {
61
- id: "fire_claw",
62
- name: "Garra Ígnea",
63
- typeId: POKEMON_TYPE_IDS.fire,
64
- accuracy: 100,
65
- maxPP: 20,
66
- priority: 0,
67
- effects: [{ kind: "damage", basePower: 15 }],
68
- },
69
- // 6) Cura simple
70
- {
71
- id: "healing_warmth",
72
- name: "Calor Reconfortante",
73
- typeId: POKEMON_TYPE_IDS.fire,
74
- accuracy: 100,
75
- maxPP: 15,
76
- priority: 0,
77
- effects: [{ kind: "heal", target: "self", amount: 18 }],
78
- },
79
- // =====================================================
80
- // AGUA
81
- // =====================================================
82
- // 1) Nuke agua
83
- {
84
- id: "hydro_cannon",
85
- name: "Cañón Hidro",
86
- typeId: POKEMON_TYPE_IDS.water,
87
- accuracy: 85,
88
- maxPP: 5,
89
- priority: 0,
90
- effects: [
91
- { kind: "damage", basePower: 40 },
92
- { kind: "modify_stats", offenseDelta: -15 },
93
- ],
94
- },
95
- // 2) Golpe estable fuerte agua
96
- {
97
- id: "surf",
98
- name: "Surf",
99
- typeId: POKEMON_TYPE_IDS.water,
100
- accuracy: 100,
101
- maxPP: 15,
102
- priority: 0,
103
- effects: [{ kind: "damage", basePower: 30 }],
104
- },
105
- // 3) Daño bajo + escaldado
106
- {
107
- id: "scald",
108
- name: "Escaldar",
109
- typeId: POKEMON_TYPE_IDS.water,
110
- accuracy: 100,
111
- maxPP: 20,
112
- priority: 0,
113
- effects: [
114
- { kind: "damage", basePower: 20 },
115
- { kind: "apply_status", statusId: "scalded" },
116
- ],
117
- },
118
- // 4) Curación + limpiar estados
119
- {
120
- id: "aqua_purify",
121
- name: "Aguas Purificadoras",
122
- typeId: POKEMON_TYPE_IDS.water,
123
- accuracy: 100,
124
- maxPP: 10,
125
- priority: 0,
126
- effects: [
127
- { kind: "heal", target: "self", amount: 22 },
128
- {
129
- kind: "clear_status",
130
- target: "self",
131
- kinds: ["soft"],
14
+ {
15
+ "kind": "damage",
16
+ "flatAmount": 10,
17
+ "target": "self"
18
+ }
19
+ ]
20
+ },
21
+ {
22
+ "id": "flamethrower",
23
+ "name": "Lanzallamas",
24
+ "typeId": "fire",
25
+ "accuracy": 65,
26
+ "maxPP": 8,
27
+ "priority": 0,
28
+ "effects": [
29
+ {
30
+ "kind": "damage",
31
+ "basePower": 30
32
+ }
33
+ ]
34
+ },
35
+ {
36
+ "id": "ember",
37
+ "name": "Ascuas",
38
+ "typeId": "fire",
39
+ "accuracy": 65,
40
+ "maxPP": 15,
41
+ "priority": 0,
42
+ "effects": [
43
+ {
44
+ "kind": "damage",
45
+ "basePower": 20
132
46
  },
133
- ],
134
- },
135
- // 5) Golpe medio estable
136
- {
137
- id: "wave_crash",
138
- name: "Oleada Feroz",
139
- typeId: POKEMON_TYPE_IDS.water,
140
- accuracy: 100,
141
- maxPP: 20,
142
- priority: 0,
143
- effects: [{ kind: "damage", basePower: 15 }],
144
- },
145
- // 6) Curación simple
146
- {
147
- id: "healing_rain",
148
- name: "Lluvia Curativa",
149
- typeId: POKEMON_TYPE_IDS.water,
150
- accuracy: 100,
151
- maxPP: 15,
152
- priority: 0,
153
- effects: [{ kind: "heal", target: "self", amount: 18 }],
154
- },
155
- // =====================================================
156
- // PLANTA
157
- // =====================================================
158
- // 1) Nuke planta
159
- {
160
- id: "leaf_storm",
161
- name: "Tormenta de Hojas",
162
- typeId: POKEMON_TYPE_IDS.grass,
163
- accuracy: 90,
164
- maxPP: 5,
165
- priority: 0,
166
- effects: [
167
- { kind: "damage", basePower: 40 },
168
- { kind: "modify_stats", offenseDelta: -20 },
169
- ],
170
- },
171
- // 2) Golpe estable fuerte planta
172
- {
173
- id: "energy_ball",
174
- name: "Energibola",
175
- typeId: POKEMON_TYPE_IDS.grass,
176
- accuracy: 100,
177
- maxPP: 15,
178
- priority: 0,
179
- effects: [{ kind: "damage", basePower: 30 }],
180
- },
181
- // 3) Daño bajo + enredado
182
- {
183
- id: "leech_seed",
184
- name: "Drenadoras",
185
- typeId: POKEMON_TYPE_IDS.grass,
186
- accuracy: 100,
187
- maxPP: 20,
188
- priority: 0,
189
- effects: [
190
- { kind: "damage", basePower: 20 },
191
- { kind: "apply_status", statusId: "entangled" },
192
- ],
193
- },
194
- // 4) Curación + limpiar estados
195
- {
196
- id: "nature_purify",
197
- name: "Purificación Natural",
198
- typeId: POKEMON_TYPE_IDS.grass,
199
- accuracy: 100,
200
- maxPP: 10,
201
- priority: 0,
202
- effects: [
203
- { kind: "heal", target: "self", amount: 22 },
204
- {
205
- kind: "clear_status",
206
- target: "self",
207
- kinds: ["soft"],
47
+ {
48
+ "kind": "apply_status",
49
+ "statusId": "burn"
50
+ }
51
+ ]
52
+ },
53
+ {
54
+ "id": "purifying_flame",
55
+ "name": "Llama Purificadora",
56
+ "typeId": "fire",
57
+ "accuracy": 100,
58
+ "maxPP": 5,
59
+ "priority": 0,
60
+ "effects": [
61
+ {
62
+ "kind": "heal",
63
+ "target": "self",
64
+ "amount": 22
208
65
  },
209
- ],
210
- },
211
- // 5) Golpe medio estable
212
- {
213
- id: "power_whip",
214
- name: "Látigo Poderoso",
215
- typeId: POKEMON_TYPE_IDS.grass,
216
- accuracy: 100,
217
- maxPP: 20,
218
- priority: 0,
219
- effects: [{ kind: "damage", basePower: 15 }],
220
- },
221
- // 6) Curación simple
222
- {
223
- id: "regrowth",
224
- name: "Rebrote",
225
- typeId: POKEMON_TYPE_IDS.grass,
226
- accuracy: 100,
227
- maxPP: 15,
228
- priority: 0,
229
- effects: [{ kind: "heal", target: "self", amount: 18 }],
230
- },
231
- // =====================================================
232
- // PSÍQUICO
233
- // =====================================================
234
- // 1) Nuke psíquico
235
- {
236
- id: "psycho_boost",
237
- name: "Psicoimpulso",
238
- typeId: POKEMON_TYPE_IDS.psychic,
239
- accuracy: 90,
240
- maxPP: 5,
241
- priority: 0,
242
- effects: [
243
- { kind: "damage", basePower: 40 },
244
- { kind: "modify_stats", offenseDelta: -20 },
245
- ],
246
- },
247
- // 2) Golpe estable fuerte psíquico
248
- {
249
- id: "psychic",
250
- name: "Psíquico",
251
- typeId: POKEMON_TYPE_IDS.psychic,
252
- accuracy: 100,
253
- maxPP: 15,
254
- priority: 0,
255
- effects: [{ kind: "damage", basePower: 30 }],
256
- },
257
- // 3) Daño bajo + hard CC
258
- {
259
- id: "mind_spike",
260
- name: "Puñal Mental",
261
- typeId: POKEMON_TYPE_IDS.psychic,
262
- accuracy: 100,
263
- maxPP: 15,
264
- priority: 0,
265
- effects: [
266
- { kind: "damage", basePower: 20 },
267
- { kind: "apply_status", statusId: "mind_break" },
268
- ],
269
- },
270
- // 4) Curación + limpiar estados
271
- {
272
- id: "aura_cleanse",
273
- name: "Limpieza Áurica",
274
- typeId: POKEMON_TYPE_IDS.psychic,
275
- accuracy: 100,
276
- maxPP: 10,
277
- priority: 0,
278
- effects: [
279
- { kind: "heal", target: "self", amount: 22 },
280
- {
281
- kind: "clear_status",
282
- target: "self",
283
- kinds: ["soft"],
66
+ {
67
+ "kind": "clear_status",
68
+ "target": "self",
69
+ "kinds": [
70
+ "soft"
71
+ ]
72
+ }
73
+ ]
74
+ },
75
+ {
76
+ "id": "fire_claw",
77
+ "name": "Garra Ígnea",
78
+ "typeId": "fire",
79
+ "accuracy": 100,
80
+ "maxPP": 10,
81
+ "priority": 0,
82
+ "effects": [
83
+ {
84
+ "kind": "damage",
85
+ "basePower": 15
86
+ }
87
+ ]
88
+ },
89
+ {
90
+ "id": "healing_warmth",
91
+ "name": "Calor Reconfortante",
92
+ "typeId": "fire",
93
+ "accuracy": 100,
94
+ "maxPP": 8,
95
+ "priority": 0,
96
+ "effects": [
97
+ {
98
+ "kind": "heal",
99
+ "target": "self",
100
+ "amount": 18
101
+ }
102
+ ]
103
+ },
104
+ {
105
+ "id": "hydro_cannon",
106
+ "name": "Cañón Hidro",
107
+ "typeId": "water",
108
+ "accuracy": 85,
109
+ "maxPP": 3,
110
+ "priority": 0,
111
+ "effects": [
112
+ {
113
+ "kind": "damage",
114
+ "basePower": 40
284
115
  },
285
- ],
286
- },
287
- // 5) Golpe medio estable
288
- {
289
- id: "psyshock",
290
- name: "Psicocarga",
291
- typeId: POKEMON_TYPE_IDS.psychic,
292
- accuracy: 100,
293
- maxPP: 20,
294
- priority: 0,
295
- effects: [{ kind: "damage", basePower: 15 }],
296
- },
297
- // 6) Curación simple
298
- {
299
- id: "healing_mind",
300
- name: "Mente Serena",
301
- typeId: POKEMON_TYPE_IDS.psychic,
302
- accuracy: 100,
303
- maxPP: 15,
304
- priority: 0,
305
- effects: [{ kind: "heal", target: "self", amount: 18 }],
306
- },
307
- // =====================================================
308
- // ROCA
309
- // =====================================================
310
- // 1) Nuke roca
311
- {
312
- id: "rock_wrecker",
313
- name: "Destroza Rocas",
314
- typeId: POKEMON_TYPE_IDS.rock,
315
- accuracy: 85,
316
- maxPP: 5,
317
- priority: 0,
318
- effects: [
319
- { kind: "damage", basePower: 40 },
320
- { kind: "modify_stats", offenseDelta: -20 },
321
- ],
322
- },
323
- // 2) Golpe estable fuerte roca
324
- {
325
- id: "stone_edge",
326
- name: "Roca Afilada",
327
- typeId: POKEMON_TYPE_IDS.rock,
328
- accuracy: 90,
329
- maxPP: 10,
330
- priority: 0,
331
- effects: [{ kind: "damage", basePower: 30 }],
332
- },
333
- // 3) Daño medio + petrificado
334
- {
335
- id: "rock_slide",
336
- name: "Avalancha",
337
- typeId: POKEMON_TYPE_IDS.rock,
338
- accuracy: 100,
339
- maxPP: 15,
340
- priority: 0,
341
- effects: [
342
- { kind: "damage", basePower: 15 },
343
- { kind: "apply_status", statusId: "petrified" },
344
- ],
345
- },
346
- // 4) Curación + limpiar estados
347
- {
348
- id: "sand_cleanse",
349
- name: "Purga de Arena",
350
- typeId: POKEMON_TYPE_IDS.rock,
351
- accuracy: 100,
352
- maxPP: 10,
353
- priority: 0,
354
- effects: [
355
- { kind: "heal", target: "self", amount: 22 },
356
- {
357
- kind: "clear_status",
358
- target: "self",
359
- kinds: ["soft"],
116
+ {
117
+ "kind": "modify_stats",
118
+ "offenseDelta": -15
119
+ }
120
+ ]
121
+ },
122
+ {
123
+ "id": "surf",
124
+ "name": "Surf",
125
+ "typeId": "water",
126
+ "accuracy": 100,
127
+ "maxPP": 8,
128
+ "priority": 0,
129
+ "effects": [
130
+ {
131
+ "kind": "damage",
132
+ "basePower": 30
133
+ }
134
+ ]
135
+ },
136
+ {
137
+ "id": "scald",
138
+ "name": "Escaldar",
139
+ "typeId": "water",
140
+ "accuracy": 100,
141
+ "maxPP": 10,
142
+ "priority": 0,
143
+ "effects": [
144
+ {
145
+ "kind": "damage",
146
+ "basePower": 20
360
147
  },
361
- ],
362
- },
363
- // 5) Golpe medio estable
364
- {
365
- id: "power_gem",
366
- name: "Joya de Luz",
367
- typeId: POKEMON_TYPE_IDS.rock,
368
- accuracy: 100,
369
- maxPP: 20,
370
- priority: 0,
371
- effects: [{ kind: "damage", basePower: 15 }],
372
- },
373
- // 6) Curación simple
374
- {
375
- id: "healing_mineral",
376
- name: "Mineral Curativo",
377
- typeId: POKEMON_TYPE_IDS.rock,
378
- accuracy: 100,
379
- maxPP: 15,
380
- priority: 0,
381
- effects: [{ kind: "heal", target: "self", amount: 18 }],
382
- },
383
- // =====================================================
384
- // ELÉCTRICO
385
- // =====================================================
386
- // 1) Nuke eléctrico
387
- {
388
- id: "bolt_strike",
389
- name: "Impacto Voltio",
390
- typeId: POKEMON_TYPE_IDS.electric,
391
- accuracy: 85,
392
- maxPP: 5,
393
- priority: 0,
394
- effects: [
395
- { kind: "damage", basePower: 40 },
396
- { kind: "modify_stats", offenseDelta: -15 },
397
- ],
398
- },
399
- // 2) Golpe estable fuerte eléctrico
400
- {
401
- id: "thunderbolt",
402
- name: "Rayo",
403
- typeId: POKEMON_TYPE_IDS.electric,
404
- accuracy: 100,
405
- maxPP: 15,
406
- priority: 0,
407
- effects: [{ kind: "damage", basePower: 30 }],
408
- },
409
- // 3) Daño bajo + shocked
410
- {
411
- id: "thunder_wave",
412
- name: "Onda Trueno",
413
- typeId: POKEMON_TYPE_IDS.electric,
414
- accuracy: 100,
415
- maxPP: 20,
416
- priority: 0,
417
- effects: [
418
- { kind: "damage", basePower: 20 },
419
- { kind: "apply_status", statusId: "shocked" },
420
- ],
421
- },
422
- // 4) Curación + limpiar estados
423
- {
424
- id: "static_field",
425
- name: "Campo Estático",
426
- typeId: POKEMON_TYPE_IDS.electric,
427
- accuracy: 100,
428
- maxPP: 10,
429
- priority: 0,
430
- effects: [
431
- { kind: "heal", target: "self", amount: 22 },
432
- {
433
- kind: "clear_status",
434
- target: "self",
435
- kinds: ["soft"],
148
+ {
149
+ "kind": "apply_status",
150
+ "statusId": "scalded"
151
+ }
152
+ ]
153
+ },
154
+ {
155
+ "id": "aqua_purify",
156
+ "name": "Aguas Purificadoras",
157
+ "typeId": "water",
158
+ "accuracy": 100,
159
+ "maxPP": 5,
160
+ "priority": 0,
161
+ "effects": [
162
+ {
163
+ "kind": "heal",
164
+ "target": "self",
165
+ "amount": 22
436
166
  },
437
- ],
438
- },
439
- // 5) Golpe medio estable
440
- {
441
- id: "wild_charge",
442
- name: "Carga Salvaje",
443
- typeId: POKEMON_TYPE_IDS.electric,
444
- accuracy: 100,
445
- maxPP: 20,
446
- priority: 0,
447
- effects: [{ kind: "damage", basePower: 15 }],
448
- },
449
- // 6) Curación simple
450
- {
451
- id: "healing_spark",
452
- name: "Chispa Sanadora",
453
- typeId: POKEMON_TYPE_IDS.electric,
454
- accuracy: 100,
455
- maxPP: 15,
456
- priority: 0,
457
- effects: [{ kind: "heal", target: "self", amount: 18 }],
458
- },
167
+ {
168
+ "kind": "clear_status",
169
+ "target": "self",
170
+ "kinds": [
171
+ "soft"
172
+ ]
173
+ }
174
+ ]
175
+ },
176
+ {
177
+ "id": "wave_crash",
178
+ "name": "Oleada Feroz",
179
+ "typeId": "water",
180
+ "accuracy": 100,
181
+ "maxPP": 10,
182
+ "priority": 0,
183
+ "effects": [
184
+ {
185
+ "kind": "damage",
186
+ "basePower": 15
187
+ }
188
+ ]
189
+ },
190
+ {
191
+ "id": "healing_rain",
192
+ "name": "Lluvia Curativa",
193
+ "typeId": "water",
194
+ "accuracy": 100,
195
+ "maxPP": 8,
196
+ "priority": 0,
197
+ "effects": [
198
+ {
199
+ "kind": "heal",
200
+ "target": "self",
201
+ "amount": 18
202
+ }
203
+ ]
204
+ },
205
+ {
206
+ "id": "leaf_storm",
207
+ "name": "Tormenta de Hojas",
208
+ "typeId": "grass",
209
+ "accuracy": 90,
210
+ "maxPP": 3,
211
+ "priority": 0,
212
+ "effects": [
213
+ {
214
+ "kind": "damage",
215
+ "basePower": 40
216
+ },
217
+ {
218
+ "kind": "modify_stats",
219
+ "offenseDelta": -20
220
+ }
221
+ ]
222
+ },
223
+ {
224
+ "id": "energy_ball",
225
+ "name": "Energibola",
226
+ "typeId": "grass",
227
+ "accuracy": 100,
228
+ "maxPP": 8,
229
+ "priority": 0,
230
+ "effects": [
231
+ {
232
+ "kind": "damage",
233
+ "basePower": 30
234
+ }
235
+ ]
236
+ },
237
+ {
238
+ "id": "leech_seed",
239
+ "name": "Drenadoras",
240
+ "typeId": "grass",
241
+ "accuracy": 100,
242
+ "maxPP": 10,
243
+ "priority": 0,
244
+ "effects": [
245
+ {
246
+ "kind": "damage",
247
+ "basePower": 20
248
+ },
249
+ {
250
+ "kind": "apply_status",
251
+ "statusId": "entangled"
252
+ }
253
+ ]
254
+ },
255
+ {
256
+ "id": "nature_purify",
257
+ "name": "Purificación Natural",
258
+ "typeId": "grass",
259
+ "accuracy": 100,
260
+ "maxPP": 5,
261
+ "priority": 0,
262
+ "effects": [
263
+ {
264
+ "kind": "heal",
265
+ "target": "self",
266
+ "amount": 22
267
+ },
268
+ {
269
+ "kind": "clear_status",
270
+ "target": "self",
271
+ "kinds": [
272
+ "soft"
273
+ ]
274
+ }
275
+ ]
276
+ },
277
+ {
278
+ "id": "power_whip",
279
+ "name": "Látigo Poderoso",
280
+ "typeId": "grass",
281
+ "accuracy": 100,
282
+ "maxPP": 10,
283
+ "priority": 0,
284
+ "effects": [
285
+ {
286
+ "kind": "damage",
287
+ "basePower": 15
288
+ }
289
+ ]
290
+ },
291
+ {
292
+ "id": "regrowth",
293
+ "name": "Rebrote",
294
+ "typeId": "grass",
295
+ "accuracy": 100,
296
+ "maxPP": 8,
297
+ "priority": 0,
298
+ "effects": [
299
+ {
300
+ "kind": "heal",
301
+ "target": "self",
302
+ "amount": 18
303
+ }
304
+ ]
305
+ },
306
+ {
307
+ "id": "psycho_boost",
308
+ "name": "Psicoimpulso",
309
+ "typeId": "psychic",
310
+ "accuracy": 90,
311
+ "maxPP": 3,
312
+ "priority": 0,
313
+ "effects": [
314
+ {
315
+ "kind": "damage",
316
+ "basePower": 40
317
+ },
318
+ {
319
+ "kind": "modify_stats",
320
+ "offenseDelta": -20
321
+ }
322
+ ]
323
+ },
324
+ {
325
+ "id": "psychic",
326
+ "name": "Psíquico",
327
+ "typeId": "psychic",
328
+ "accuracy": 100,
329
+ "maxPP": 8,
330
+ "priority": 0,
331
+ "effects": [
332
+ {
333
+ "kind": "damage",
334
+ "basePower": 30
335
+ }
336
+ ]
337
+ },
338
+ {
339
+ "id": "mind_spike",
340
+ "name": "Puñal Mental",
341
+ "typeId": "psychic",
342
+ "accuracy": 100,
343
+ "maxPP": 8,
344
+ "priority": 0,
345
+ "effects": [
346
+ {
347
+ "kind": "damage",
348
+ "basePower": 20
349
+ },
350
+ {
351
+ "kind": "apply_status",
352
+ "statusId": "mind_break"
353
+ }
354
+ ]
355
+ },
356
+ {
357
+ "id": "aura_cleanse",
358
+ "name": "Limpieza Áurica",
359
+ "typeId": "psychic",
360
+ "accuracy": 100,
361
+ "maxPP": 5,
362
+ "priority": 0,
363
+ "effects": [
364
+ {
365
+ "kind": "heal",
366
+ "target": "self",
367
+ "amount": 22
368
+ },
369
+ {
370
+ "kind": "clear_status",
371
+ "target": "self",
372
+ "kinds": [
373
+ "soft"
374
+ ]
375
+ }
376
+ ]
377
+ },
378
+ {
379
+ "id": "psyshock",
380
+ "name": "Psicocarga",
381
+ "typeId": "psychic",
382
+ "accuracy": 100,
383
+ "maxPP": 10,
384
+ "priority": 0,
385
+ "effects": [
386
+ {
387
+ "kind": "damage",
388
+ "basePower": 15
389
+ }
390
+ ]
391
+ },
392
+ {
393
+ "id": "healing_mind",
394
+ "name": "Mente Serena",
395
+ "typeId": "psychic",
396
+ "accuracy": 100,
397
+ "maxPP": 8,
398
+ "priority": 0,
399
+ "effects": [
400
+ {
401
+ "kind": "heal",
402
+ "target": "self",
403
+ "amount": 18
404
+ }
405
+ ]
406
+ },
407
+ {
408
+ "id": "rock_wrecker",
409
+ "name": "Destroza Rocas",
410
+ "typeId": "rock",
411
+ "accuracy": 85,
412
+ "maxPP": 3,
413
+ "priority": 0,
414
+ "effects": [
415
+ {
416
+ "kind": "damage",
417
+ "basePower": 40
418
+ },
419
+ {
420
+ "kind": "modify_stats",
421
+ "offenseDelta": -20
422
+ }
423
+ ]
424
+ },
425
+ {
426
+ "id": "stone_edge",
427
+ "name": "Roca Afilada",
428
+ "typeId": "rock",
429
+ "accuracy": 90,
430
+ "maxPP": 5,
431
+ "priority": 0,
432
+ "effects": [
433
+ {
434
+ "kind": "damage",
435
+ "basePower": 30
436
+ }
437
+ ]
438
+ },
439
+ {
440
+ "id": "rock_slide",
441
+ "name": "Avalancha",
442
+ "typeId": "rock",
443
+ "accuracy": 100,
444
+ "maxPP": 8,
445
+ "priority": 0,
446
+ "effects": [
447
+ {
448
+ "kind": "damage",
449
+ "basePower": 15
450
+ },
451
+ {
452
+ "kind": "apply_status",
453
+ "statusId": "petrified"
454
+ }
455
+ ]
456
+ },
457
+ {
458
+ "id": "sand_cleanse",
459
+ "name": "Purga de Arena",
460
+ "typeId": "rock",
461
+ "accuracy": 100,
462
+ "maxPP": 5,
463
+ "priority": 0,
464
+ "effects": [
465
+ {
466
+ "kind": "heal",
467
+ "target": "self",
468
+ "amount": 22
469
+ },
470
+ {
471
+ "kind": "clear_status",
472
+ "target": "self",
473
+ "kinds": [
474
+ "soft"
475
+ ]
476
+ }
477
+ ]
478
+ },
479
+ {
480
+ "id": "power_gem",
481
+ "name": "Joya de Luz",
482
+ "typeId": "rock",
483
+ "accuracy": 100,
484
+ "maxPP": 10,
485
+ "priority": 0,
486
+ "effects": [
487
+ {
488
+ "kind": "damage",
489
+ "basePower": 15
490
+ }
491
+ ]
492
+ },
493
+ {
494
+ "id": "healing_mineral",
495
+ "name": "Mineral Curativo",
496
+ "typeId": "rock",
497
+ "accuracy": 100,
498
+ "maxPP": 8,
499
+ "priority": 0,
500
+ "effects": [
501
+ {
502
+ "kind": "heal",
503
+ "target": "self",
504
+ "amount": 18
505
+ }
506
+ ]
507
+ },
508
+ {
509
+ "id": "bolt_strike",
510
+ "name": "Impacto Voltio",
511
+ "typeId": "electric",
512
+ "accuracy": 85,
513
+ "maxPP": 3,
514
+ "priority": 0,
515
+ "effects": [
516
+ {
517
+ "kind": "damage",
518
+ "basePower": 40
519
+ },
520
+ {
521
+ "kind": "modify_stats",
522
+ "offenseDelta": -15
523
+ }
524
+ ]
525
+ },
526
+ {
527
+ "id": "thunderbolt",
528
+ "name": "Rayo",
529
+ "typeId": "electric",
530
+ "accuracy": 100,
531
+ "maxPP": 8,
532
+ "priority": 0,
533
+ "effects": [
534
+ {
535
+ "kind": "damage",
536
+ "basePower": 30
537
+ }
538
+ ]
539
+ },
540
+ {
541
+ "id": "thunder_wave",
542
+ "name": "Onda Trueno",
543
+ "typeId": "electric",
544
+ "accuracy": 100,
545
+ "maxPP": 10,
546
+ "priority": 0,
547
+ "effects": [
548
+ {
549
+ "kind": "damage",
550
+ "basePower": 20
551
+ },
552
+ {
553
+ "kind": "apply_status",
554
+ "statusId": "shocked"
555
+ }
556
+ ]
557
+ },
558
+ {
559
+ "id": "static_field",
560
+ "name": "Campo Estático",
561
+ "typeId": "electric",
562
+ "accuracy": 100,
563
+ "maxPP": 5,
564
+ "priority": 0,
565
+ "effects": [
566
+ {
567
+ "kind": "heal",
568
+ "target": "self",
569
+ "amount": 22
570
+ },
571
+ {
572
+ "kind": "clear_status",
573
+ "target": "self",
574
+ "kinds": [
575
+ "soft"
576
+ ]
577
+ }
578
+ ]
579
+ },
580
+ {
581
+ "id": "wild_charge",
582
+ "name": "Carga Salvaje",
583
+ "typeId": "electric",
584
+ "accuracy": 100,
585
+ "maxPP": 10,
586
+ "priority": 0,
587
+ "effects": [
588
+ {
589
+ "kind": "damage",
590
+ "basePower": 15
591
+ }
592
+ ]
593
+ },
594
+ {
595
+ "id": "healing_spark",
596
+ "name": "Chispa Sanadora",
597
+ "typeId": "electric",
598
+ "accuracy": 100,
599
+ "maxPP": 8,
600
+ "priority": 0,
601
+ "effects": [
602
+ {
603
+ "kind": "heal",
604
+ "target": "self",
605
+ "amount": 18
606
+ }
607
+ ]
608
+ }
459
609
  ];