pokemon-io-core 0.0.121 → 0.0.123
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/skins/cliches/clicheSkin.js +1 -1
- package/dist/skins/cliches/fighters.js +296 -154
- package/dist/skins/cliches/items.d.ts +1 -1
- package/dist/skins/cliches/items.js +298 -91
- package/dist/skins/cliches/moves.js +170 -251
- package/dist/skins/cliches/types.d.ts +11 -6
- package/dist/skins/cliches/types.js +200 -73
- package/package.json +1 -1
|
@@ -1,422 +1,341 @@
|
|
|
1
1
|
export const TRIBE_MOVES = [
|
|
2
|
-
// --- CANALLITA (Fuego) ---
|
|
3
2
|
{
|
|
4
|
-
id: "
|
|
5
|
-
name: "
|
|
6
|
-
typeId: "
|
|
7
|
-
accuracy: 66,
|
|
8
|
-
maxPP: 3,
|
|
9
|
-
priority: 0,
|
|
10
|
-
effects: [
|
|
11
|
-
{ kind: "damage", basePower: 40 },
|
|
12
|
-
{ kind: "damage", flatAmount: 10, target: "self" } // Te hace daño al hígado
|
|
13
|
-
]
|
|
14
|
-
},
|
|
15
|
-
{
|
|
16
|
-
id: "cubatazo", // flamethrower
|
|
17
|
-
name: "Cubatazo",
|
|
18
|
-
typeId: "canallita",
|
|
19
|
-
accuracy: 65,
|
|
20
|
-
maxPP: 8,
|
|
21
|
-
priority: 0,
|
|
22
|
-
effects: [
|
|
23
|
-
{ kind: "damage", basePower: 30 }
|
|
24
|
-
]
|
|
25
|
-
},
|
|
26
|
-
{
|
|
27
|
-
id: "colilla", // ember
|
|
28
|
-
name: "Colilla Mal Apagada",
|
|
29
|
-
typeId: "canallita",
|
|
30
|
-
accuracy: 65,
|
|
31
|
-
maxPP: 15,
|
|
32
|
-
priority: 0,
|
|
33
|
-
effects: [
|
|
34
|
-
{ kind: "damage", basePower: 20 },
|
|
35
|
-
{ kind: "apply_status", statusId: "resaca" }
|
|
36
|
-
]
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
id: "kebab_salvador", // purifying_flame (Heal)
|
|
40
|
-
name: "Kebab de Madrugada",
|
|
41
|
-
typeId: "canallita",
|
|
3
|
+
id: "tortazo", // overheat
|
|
4
|
+
name: "Tortazo",
|
|
5
|
+
typeId: "typeless",
|
|
42
6
|
accuracy: 100,
|
|
43
|
-
maxPP:
|
|
7
|
+
maxPP: 6,
|
|
44
8
|
priority: 0,
|
|
45
9
|
effects: [
|
|
46
|
-
{ kind: "
|
|
47
|
-
{ kind: "clear_status", target: "self", kinds: ["soft"] }
|
|
10
|
+
{ kind: "damage", basePower: 30 },
|
|
48
11
|
]
|
|
49
12
|
},
|
|
50
13
|
{
|
|
51
|
-
id: "
|
|
52
|
-
name: "
|
|
53
|
-
typeId: "
|
|
54
|
-
accuracy:
|
|
55
|
-
maxPP:
|
|
14
|
+
id: "puñetazo", // overheat
|
|
15
|
+
name: "Puñetazo",
|
|
16
|
+
typeId: "typeless",
|
|
17
|
+
accuracy: 85,
|
|
18
|
+
maxPP: 3,
|
|
56
19
|
priority: 0,
|
|
57
20
|
effects: [
|
|
58
|
-
{ kind: "damage", basePower:
|
|
21
|
+
{ kind: "damage", basePower: 40 },
|
|
22
|
+
{ kind: "damage", flatAmount: 10, target: "self" } // Te hace daño al hígado
|
|
59
23
|
]
|
|
60
24
|
},
|
|
61
25
|
{
|
|
62
|
-
id: "
|
|
63
|
-
name: "
|
|
64
|
-
typeId: "
|
|
26
|
+
id: "deporte", // overheat
|
|
27
|
+
name: "Deporte",
|
|
28
|
+
typeId: "typeless",
|
|
65
29
|
accuracy: 100,
|
|
66
|
-
maxPP:
|
|
30
|
+
maxPP: 6,
|
|
67
31
|
priority: 0,
|
|
68
32
|
effects: [
|
|
69
|
-
{ kind:
|
|
33
|
+
{ kind: 'heal', amount: 10 },
|
|
34
|
+
{ kind: 'modify_stats', defenseDelta: 1, offenseDelta: 1 }
|
|
70
35
|
]
|
|
71
36
|
},
|
|
72
|
-
// --- CAYETANO (Agua) ---
|
|
73
37
|
{
|
|
74
|
-
id: "
|
|
75
|
-
name: "
|
|
76
|
-
typeId: "
|
|
77
|
-
accuracy:
|
|
38
|
+
id: "masturbacion", // overheat
|
|
39
|
+
name: "Masturbación",
|
|
40
|
+
typeId: "typeless",
|
|
41
|
+
accuracy: 90,
|
|
78
42
|
maxPP: 3,
|
|
79
43
|
priority: 0,
|
|
80
44
|
effects: [
|
|
81
|
-
{ kind: "
|
|
82
|
-
{ kind: "modify_stats",
|
|
45
|
+
{ kind: "heal", amount: 35 },
|
|
46
|
+
{ kind: "modify_stats", speedDelta: -1, offenseDelta: 1 }
|
|
83
47
|
]
|
|
84
48
|
},
|
|
85
49
|
{
|
|
86
|
-
id: "
|
|
87
|
-
name: "
|
|
88
|
-
typeId: "
|
|
50
|
+
id: "cagar", // overheat
|
|
51
|
+
name: "Cagar",
|
|
52
|
+
typeId: "typeless",
|
|
89
53
|
accuracy: 100,
|
|
90
|
-
maxPP:
|
|
54
|
+
maxPP: 3,
|
|
91
55
|
priority: 0,
|
|
56
|
+
bypassInvulnerability: ['polvos_magicos'],
|
|
92
57
|
effects: [
|
|
93
|
-
{ kind: "damage", basePower: 30 }
|
|
58
|
+
{ kind: "damage", basePower: 30 },
|
|
59
|
+
{ kind: "heal", amount: 10 },
|
|
94
60
|
]
|
|
95
61
|
},
|
|
96
62
|
{
|
|
97
|
-
id: "
|
|
98
|
-
name: "
|
|
99
|
-
typeId: "
|
|
63
|
+
id: "cigarrito", // overheat
|
|
64
|
+
name: "Cigarrito",
|
|
65
|
+
typeId: "typeless",
|
|
100
66
|
accuracy: 100,
|
|
101
|
-
maxPP:
|
|
67
|
+
maxPP: 3,
|
|
102
68
|
priority: 0,
|
|
103
69
|
effects: [
|
|
104
|
-
{ kind: "damage",
|
|
105
|
-
{ kind: "
|
|
70
|
+
{ kind: "damage", flatAmount: 10, target: "self" },
|
|
71
|
+
{ kind: "modify_stats", speedDelta: 1, defenseDelta: 1, offenseDelta: 1 }
|
|
106
72
|
]
|
|
107
73
|
},
|
|
108
74
|
{
|
|
109
|
-
id: "
|
|
110
|
-
name: "
|
|
111
|
-
typeId: "
|
|
75
|
+
id: "estudiar", // overheat
|
|
76
|
+
name: "Estudiar",
|
|
77
|
+
typeId: "nerd",
|
|
112
78
|
accuracy: 100,
|
|
113
|
-
maxPP:
|
|
79
|
+
maxPP: 3,
|
|
114
80
|
priority: 0,
|
|
115
81
|
effects: [
|
|
116
|
-
{ kind: "
|
|
117
|
-
{ kind: "
|
|
82
|
+
{ kind: "damage", basePower: 40 },
|
|
83
|
+
{ kind: "damage", flatAmount: 10, target: "self" } // Te hace daño al hígado
|
|
118
84
|
]
|
|
119
85
|
},
|
|
120
86
|
{
|
|
121
|
-
id: "
|
|
122
|
-
name: "
|
|
123
|
-
typeId: "
|
|
87
|
+
id: "dato_cientifico", // overheat
|
|
88
|
+
name: "Dato científico",
|
|
89
|
+
typeId: "nerd",
|
|
124
90
|
accuracy: 100,
|
|
125
|
-
maxPP:
|
|
91
|
+
maxPP: 3,
|
|
126
92
|
priority: 0,
|
|
127
93
|
effects: [
|
|
128
|
-
{ kind: "damage", basePower:
|
|
94
|
+
{ kind: "damage", basePower: 40 },
|
|
95
|
+
{ kind: "damage", flatAmount: 10, target: "self" } // Te hace daño al hígado
|
|
129
96
|
]
|
|
130
97
|
},
|
|
131
98
|
{
|
|
132
|
-
id: "
|
|
133
|
-
name: "
|
|
134
|
-
typeId: "
|
|
99
|
+
id: "mancuernazo", // overheat
|
|
100
|
+
name: "Mancuernazo",
|
|
101
|
+
typeId: "gymbro",
|
|
135
102
|
accuracy: 100,
|
|
136
|
-
maxPP:
|
|
103
|
+
maxPP: 3,
|
|
137
104
|
priority: 0,
|
|
138
105
|
effects: [
|
|
139
|
-
{ kind: "
|
|
106
|
+
{ kind: "damage", basePower: 40 },
|
|
107
|
+
{ kind: "damage", flatAmount: 10, target: "self" } // Te hace daño al hígado
|
|
140
108
|
]
|
|
141
109
|
},
|
|
142
|
-
// --- PERROFLAUTA (Planta) ---
|
|
143
110
|
{
|
|
144
|
-
id: "
|
|
145
|
-
name: "
|
|
146
|
-
typeId: "
|
|
147
|
-
accuracy:
|
|
111
|
+
id: "pressbanca", // overheat
|
|
112
|
+
name: "Pressbanca",
|
|
113
|
+
typeId: "gymbro",
|
|
114
|
+
accuracy: 100,
|
|
148
115
|
maxPP: 3,
|
|
149
116
|
priority: 0,
|
|
150
117
|
effects: [
|
|
151
118
|
{ kind: "damage", basePower: 40 },
|
|
152
|
-
{ kind: "
|
|
119
|
+
{ kind: "damage", flatAmount: 10, target: "self" } // Te hace daño al hígado
|
|
153
120
|
]
|
|
154
121
|
},
|
|
155
122
|
{
|
|
156
|
-
id: "
|
|
157
|
-
name: "
|
|
158
|
-
typeId: "
|
|
123
|
+
id: "kebab_matutino", // overheat
|
|
124
|
+
name: "Kebab matutino",
|
|
125
|
+
typeId: "fiestero",
|
|
159
126
|
accuracy: 100,
|
|
160
|
-
maxPP:
|
|
127
|
+
maxPP: 3,
|
|
161
128
|
priority: 0,
|
|
162
129
|
effects: [
|
|
163
|
-
{ kind: "damage", basePower:
|
|
130
|
+
{ kind: "damage", basePower: 40 },
|
|
164
131
|
]
|
|
165
132
|
},
|
|
166
133
|
{
|
|
167
|
-
id: "
|
|
168
|
-
name: "
|
|
169
|
-
typeId: "
|
|
134
|
+
id: "hidalgo", // overheat
|
|
135
|
+
name: "Hidalgo",
|
|
136
|
+
typeId: "fiestero",
|
|
170
137
|
accuracy: 100,
|
|
171
|
-
maxPP:
|
|
138
|
+
maxPP: 3,
|
|
172
139
|
priority: 0,
|
|
173
140
|
effects: [
|
|
174
141
|
{ kind: "damage", basePower: 20 },
|
|
175
|
-
{ kind: "
|
|
142
|
+
{ kind: "heal", amount: 20 },
|
|
176
143
|
]
|
|
177
144
|
},
|
|
178
145
|
{
|
|
179
|
-
id: "
|
|
180
|
-
name: "
|
|
181
|
-
typeId: "
|
|
146
|
+
id: "polvos_magicos", // overheat
|
|
147
|
+
name: "Polvos mágicos",
|
|
148
|
+
typeId: "fiestero",
|
|
182
149
|
accuracy: 100,
|
|
183
|
-
maxPP:
|
|
150
|
+
maxPP: 3,
|
|
184
151
|
priority: 0,
|
|
152
|
+
charge: { invulnerability: 'cagar' },
|
|
185
153
|
effects: [
|
|
186
|
-
{ kind: "
|
|
187
|
-
{ kind: "clear_status", target: "self", kinds: ["soft"] }
|
|
154
|
+
{ kind: "damage", basePower: 40 },
|
|
188
155
|
]
|
|
189
156
|
},
|
|
190
157
|
{
|
|
191
|
-
id: "
|
|
192
|
-
name: "
|
|
193
|
-
typeId: "
|
|
158
|
+
id: "horoscopo", // overheat
|
|
159
|
+
name: "Lectura horoscopo",
|
|
160
|
+
typeId: "mistico",
|
|
194
161
|
accuracy: 100,
|
|
195
|
-
maxPP:
|
|
162
|
+
maxPP: 3,
|
|
196
163
|
priority: 0,
|
|
197
164
|
effects: [
|
|
198
|
-
{ kind: "damage", basePower:
|
|
165
|
+
{ kind: "damage", basePower: 10 },
|
|
166
|
+
{ kind: "modify_stats", defenseDelta: -1, offenseDelta: -1, target: 'enemy' }
|
|
199
167
|
]
|
|
200
168
|
},
|
|
201
169
|
{
|
|
202
|
-
id: "
|
|
203
|
-
name: "
|
|
204
|
-
typeId: "
|
|
170
|
+
id: "incienso", // overheat
|
|
171
|
+
name: "Encender incienso",
|
|
172
|
+
typeId: "mistico",
|
|
205
173
|
accuracy: 100,
|
|
206
|
-
maxPP:
|
|
174
|
+
maxPP: 6,
|
|
207
175
|
priority: 0,
|
|
208
176
|
effects: [
|
|
209
|
-
{ kind: "heal",
|
|
177
|
+
{ kind: "heal", amount: 20 },
|
|
178
|
+
{ kind: "modify_stats", defenseDelta: 1, offenseDelta: 1 }
|
|
210
179
|
]
|
|
211
180
|
},
|
|
212
|
-
// --- CUÑADO (Psíquico) ---
|
|
213
181
|
{
|
|
214
|
-
id: "
|
|
215
|
-
name: "
|
|
216
|
-
typeId: "
|
|
217
|
-
accuracy:
|
|
182
|
+
id: "cara_al_sol", // overheat
|
|
183
|
+
name: "Cara al sol",
|
|
184
|
+
typeId: "pijo",
|
|
185
|
+
accuracy: 100,
|
|
218
186
|
maxPP: 3,
|
|
219
187
|
priority: 0,
|
|
220
188
|
effects: [
|
|
221
189
|
{ kind: "damage", basePower: 40 },
|
|
222
|
-
{ kind: "
|
|
190
|
+
{ kind: "damage", flatAmount: 10, target: "self" } // Te hace daño al hígado
|
|
223
191
|
]
|
|
224
|
-
},
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
typeId: "cunado",
|
|
192
|
+
}, {
|
|
193
|
+
id: "okupar", // overheat
|
|
194
|
+
name: "Okupar",
|
|
195
|
+
typeId: "kinki",
|
|
229
196
|
accuracy: 100,
|
|
230
|
-
maxPP:
|
|
197
|
+
maxPP: 3,
|
|
231
198
|
priority: 0,
|
|
232
199
|
effects: [
|
|
233
|
-
{ kind: "damage", basePower:
|
|
200
|
+
{ kind: "damage", basePower: 40 },
|
|
201
|
+
{ kind: "damage", flatAmount: 10, target: "self" } // Te hace daño al hígado
|
|
234
202
|
]
|
|
235
203
|
},
|
|
236
204
|
{
|
|
237
|
-
id: "
|
|
238
|
-
name: "
|
|
239
|
-
typeId: "
|
|
205
|
+
id: "puño_anal", // overheat
|
|
206
|
+
name: "Puño anal",
|
|
207
|
+
typeId: "mistico",
|
|
240
208
|
accuracy: 100,
|
|
241
|
-
maxPP:
|
|
209
|
+
maxPP: 3,
|
|
242
210
|
priority: 0,
|
|
211
|
+
onlyForFighterIds: ['velas'],
|
|
243
212
|
effects: [
|
|
244
|
-
{ kind: "damage", basePower:
|
|
245
|
-
{ kind: "
|
|
213
|
+
{ kind: "damage", basePower: 40 },
|
|
214
|
+
{ kind: "damage", flatAmount: 10, target: "self" } // Te hace daño al hígado
|
|
246
215
|
]
|
|
247
216
|
},
|
|
248
217
|
{
|
|
249
|
-
id: "
|
|
250
|
-
name: "
|
|
251
|
-
typeId: "
|
|
218
|
+
id: "autotune", // overheat
|
|
219
|
+
name: "Autotune mal puesto",
|
|
220
|
+
typeId: "artista",
|
|
252
221
|
accuracy: 100,
|
|
253
|
-
maxPP:
|
|
222
|
+
maxPP: 6,
|
|
254
223
|
priority: 0,
|
|
255
224
|
effects: [
|
|
256
|
-
{ kind: "
|
|
257
|
-
{ kind:
|
|
225
|
+
{ kind: "damage", basePower: 20 },
|
|
226
|
+
{ kind: 'force_switch' }
|
|
258
227
|
]
|
|
259
228
|
},
|
|
260
229
|
{
|
|
261
|
-
id: "
|
|
262
|
-
name: "
|
|
263
|
-
typeId: "
|
|
230
|
+
id: "risitas",
|
|
231
|
+
name: "Risitas",
|
|
232
|
+
typeId: "chuleta",
|
|
264
233
|
accuracy: 100,
|
|
265
|
-
maxPP:
|
|
234
|
+
maxPP: 6,
|
|
266
235
|
priority: 0,
|
|
267
236
|
effects: [
|
|
268
|
-
{ kind: "damage", basePower:
|
|
237
|
+
{ kind: "damage", basePower: 20 },
|
|
238
|
+
{ kind: 'modify_stats', offenseDelta: 1, speedDelta: 1 }
|
|
269
239
|
]
|
|
270
240
|
},
|
|
271
241
|
{
|
|
272
|
-
id: "
|
|
273
|
-
name: "
|
|
274
|
-
typeId: "
|
|
242
|
+
id: "llamar_a_papa",
|
|
243
|
+
name: "Llamar a papá",
|
|
244
|
+
typeId: "formal",
|
|
275
245
|
accuracy: 100,
|
|
276
|
-
maxPP: 8,
|
|
277
|
-
priority: 0,
|
|
278
|
-
effects: [
|
|
279
|
-
{ kind: "heal", target: "self", amount: 18 }
|
|
280
|
-
]
|
|
281
|
-
},
|
|
282
|
-
// --- GYMBRO (Roca) ---
|
|
283
|
-
{
|
|
284
|
-
id: "mancuernazo", // rock_wrecker
|
|
285
|
-
name: "Mancuernazo",
|
|
286
|
-
typeId: "gymbro",
|
|
287
|
-
accuracy: 85,
|
|
288
246
|
maxPP: 3,
|
|
289
247
|
priority: 0,
|
|
290
248
|
effects: [
|
|
291
249
|
{ kind: "damage", basePower: 40 },
|
|
292
|
-
{ kind: "modify_stats", offenseDelta: -20 } // Catabolizas
|
|
293
250
|
]
|
|
294
251
|
},
|
|
295
252
|
{
|
|
296
|
-
id: "
|
|
297
|
-
name: "
|
|
298
|
-
typeId: "
|
|
299
|
-
accuracy: 90,
|
|
300
|
-
maxPP: 5,
|
|
301
|
-
priority: 0,
|
|
302
|
-
effects: [
|
|
303
|
-
{ kind: "damage", basePower: 30 }
|
|
304
|
-
]
|
|
305
|
-
},
|
|
306
|
-
{
|
|
307
|
-
id: "derrumbe", // rock_slide
|
|
308
|
-
name: "Derrumbe Inmobiliario",
|
|
309
|
-
typeId: "gymbro",
|
|
253
|
+
id: "chapa_inteligible",
|
|
254
|
+
name: "Chapa inteligible",
|
|
255
|
+
typeId: "loco",
|
|
310
256
|
accuracy: 100,
|
|
311
|
-
maxPP:
|
|
312
|
-
priority: 0,
|
|
313
|
-
effects: [
|
|
314
|
-
{ kind: "damage", basePower: 15 },
|
|
315
|
-
{ kind: "apply_status", statusId: "agujetas" }
|
|
316
|
-
]
|
|
317
|
-
},
|
|
318
|
-
{
|
|
319
|
-
id: "ducha_fria", // sand_cleanse
|
|
320
|
-
name: "Ducha Fría",
|
|
321
|
-
typeId: "gymbro",
|
|
322
|
-
accuracy: 100,
|
|
323
|
-
maxPP: 5,
|
|
257
|
+
maxPP: 3,
|
|
324
258
|
priority: 0,
|
|
325
259
|
effects: [
|
|
326
|
-
{ kind: "
|
|
327
|
-
{ kind:
|
|
260
|
+
{ kind: "damage", basePower: 30 },
|
|
261
|
+
{ kind: 'heal', amount: 20 },
|
|
262
|
+
{ kind: 'modify_stats', offenseDelta: -1, target: 'enemy' }
|
|
328
263
|
]
|
|
329
264
|
},
|
|
330
265
|
{
|
|
331
|
-
id: "
|
|
332
|
-
name: "
|
|
333
|
-
typeId: "
|
|
334
|
-
accuracy:
|
|
335
|
-
maxPP:
|
|
266
|
+
id: "quiebro_rodillas",
|
|
267
|
+
name: "Quiebro de rodillas",
|
|
268
|
+
typeId: "deportista",
|
|
269
|
+
accuracy: 50,
|
|
270
|
+
maxPP: 3,
|
|
336
271
|
priority: 0,
|
|
272
|
+
onlyForFighterIds: ['currito'],
|
|
337
273
|
effects: [
|
|
338
|
-
{ kind: "damage", basePower:
|
|
274
|
+
{ kind: "damage", basePower: 50 },
|
|
275
|
+
{ kind: 'modify_stats', offenseDelta: 2, target: 'self' }
|
|
339
276
|
]
|
|
340
277
|
},
|
|
341
278
|
{
|
|
342
|
-
id: "
|
|
343
|
-
name: "
|
|
344
|
-
typeId: "
|
|
279
|
+
id: "meditar",
|
|
280
|
+
name: "Meditar",
|
|
281
|
+
typeId: "mistico",
|
|
345
282
|
accuracy: 100,
|
|
346
|
-
maxPP:
|
|
283
|
+
maxPP: 3,
|
|
347
284
|
priority: 0,
|
|
285
|
+
onlyForFighterIds: ['selene'],
|
|
348
286
|
effects: [
|
|
349
|
-
{ kind: "heal",
|
|
287
|
+
{ kind: "heal", amount: 40 },
|
|
288
|
+
{ kind: 'modify_stats', offenseDelta: 1, defenseDelta: 1, target: 'self' },
|
|
289
|
+
{ kind: 'damage', flatAmount: 10 }
|
|
350
290
|
]
|
|
351
291
|
},
|
|
352
|
-
// --- CRYPTOBRO (Eléctrico) ---
|
|
353
292
|
{
|
|
354
|
-
id: "
|
|
355
|
-
name: "
|
|
356
|
-
typeId: "
|
|
357
|
-
accuracy:
|
|
293
|
+
id: "hachazo_tobillero",
|
|
294
|
+
name: "Hachazo tobillero",
|
|
295
|
+
typeId: "loco",
|
|
296
|
+
accuracy: 60,
|
|
358
297
|
maxPP: 3,
|
|
359
298
|
priority: 0,
|
|
299
|
+
onlyForFighterIds: ['ed_gein'],
|
|
360
300
|
effects: [
|
|
361
301
|
{ kind: "damage", basePower: 40 },
|
|
362
|
-
{ kind:
|
|
302
|
+
{ kind: 'modify_stats', offenseDelta: -1, target: 'enemy' }
|
|
363
303
|
]
|
|
364
304
|
},
|
|
365
305
|
{
|
|
366
|
-
id: "
|
|
367
|
-
name: "
|
|
368
|
-
typeId: "
|
|
369
|
-
accuracy:
|
|
370
|
-
maxPP:
|
|
306
|
+
id: "mancuernazo",
|
|
307
|
+
name: "Mancuernazo",
|
|
308
|
+
typeId: "deportista",
|
|
309
|
+
accuracy: 90,
|
|
310
|
+
maxPP: 3,
|
|
371
311
|
priority: 0,
|
|
372
312
|
effects: [
|
|
373
|
-
{ kind: "damage", basePower:
|
|
313
|
+
{ kind: "damage", basePower: 40 },
|
|
314
|
+
{ kind: 'modify_stats', offenseDelta: -1, target: 'enemy' }
|
|
374
315
|
]
|
|
375
316
|
},
|
|
376
317
|
{
|
|
377
|
-
id: "
|
|
378
|
-
name: "
|
|
379
|
-
typeId: "
|
|
380
|
-
accuracy:
|
|
381
|
-
maxPP:
|
|
318
|
+
id: "charla_buenista",
|
|
319
|
+
name: "Charla pacifista",
|
|
320
|
+
typeId: "hippie",
|
|
321
|
+
accuracy: 90,
|
|
322
|
+
maxPP: 6,
|
|
382
323
|
priority: 0,
|
|
383
324
|
effects: [
|
|
384
325
|
{ kind: "damage", basePower: 20 },
|
|
385
|
-
{ kind:
|
|
386
|
-
]
|
|
387
|
-
},
|
|
388
|
-
{
|
|
389
|
-
id: "vpn_activada", // static_field
|
|
390
|
-
name: "Activar VPN",
|
|
391
|
-
typeId: "cryptobro",
|
|
392
|
-
accuracy: 100,
|
|
393
|
-
maxPP: 5,
|
|
394
|
-
priority: 0,
|
|
395
|
-
effects: [
|
|
396
|
-
{ kind: "heal", target: "self", amount: 22 },
|
|
397
|
-
{ kind: "clear_status", target: "self", kinds: ["soft"] }
|
|
326
|
+
{ kind: 'modify_stats', offenseDelta: -2, target: 'enemy' }
|
|
398
327
|
]
|
|
399
328
|
},
|
|
400
329
|
{
|
|
401
|
-
id: "
|
|
402
|
-
name: "
|
|
403
|
-
typeId: "
|
|
330
|
+
id: "guitarrita",
|
|
331
|
+
name: "Guitarrita",
|
|
332
|
+
typeId: "hippie",
|
|
404
333
|
accuracy: 100,
|
|
405
|
-
maxPP:
|
|
334
|
+
maxPP: 3,
|
|
406
335
|
priority: 0,
|
|
407
336
|
effects: [
|
|
408
|
-
{ kind: "damage", basePower:
|
|
337
|
+
{ kind: "damage", basePower: 40 },
|
|
338
|
+
{ kind: 'modify_stats', offenseDelta: -1, target: 'enemy' }
|
|
409
339
|
]
|
|
410
340
|
},
|
|
411
|
-
{
|
|
412
|
-
id: "to_the_moon", // healing_spark
|
|
413
|
-
name: "To The Moon 🚀",
|
|
414
|
-
typeId: "cryptobro",
|
|
415
|
-
accuracy: 100,
|
|
416
|
-
maxPP: 8,
|
|
417
|
-
priority: 0,
|
|
418
|
-
effects: [
|
|
419
|
-
{ kind: "heal", target: "self", amount: 18 }
|
|
420
|
-
]
|
|
421
|
-
}
|
|
422
341
|
];
|
|
@@ -1,11 +1,16 @@
|
|
|
1
1
|
import type { TypeDefinition, TypeEffectivenessMatrix, TypeId } from "../../core/index.js";
|
|
2
2
|
export declare const TRIBE_TYPE_IDS: {
|
|
3
|
-
readonly
|
|
4
|
-
readonly
|
|
5
|
-
readonly
|
|
6
|
-
readonly
|
|
7
|
-
readonly
|
|
8
|
-
readonly
|
|
3
|
+
readonly formal: "formal";
|
|
4
|
+
readonly deportista: "deportista";
|
|
5
|
+
readonly nerd: "nerd";
|
|
6
|
+
readonly chuleta: "chuleta";
|
|
7
|
+
readonly kinki: "kinki";
|
|
8
|
+
readonly artista: "artista";
|
|
9
|
+
readonly fiestero: "fiestero";
|
|
10
|
+
readonly hippie: "hippie";
|
|
11
|
+
readonly mistico: "mistico";
|
|
12
|
+
readonly misterioso: "misterioso";
|
|
13
|
+
readonly loco: "loco";
|
|
9
14
|
};
|
|
10
15
|
export type TribeTypeId = (typeof TRIBE_TYPE_IDS)[keyof typeof TRIBE_TYPE_IDS];
|
|
11
16
|
export declare const TRIBE_TYPES: TypeDefinition[];
|