pokemon-io-core 0.0.125 → 0.0.126
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/core/ids.d.ts +18 -6
- package/dist/core/ids.js +10 -1
- package/dist/core/index.d.ts +2 -1
- package/dist/core/index.js +2 -1
- package/dist/core/randomEvents.d.ts +21 -5
- package/dist/core/randomEvents.js +4 -4
- package/dist/core/randomEventsList.d.ts +10 -4
- package/dist/core/randomEventsList.js +24 -163
- package/dist/core/status.d.ts +1 -0
- package/dist/core/validation.d.ts +21 -0
- package/dist/core/validation.js +183 -0
- package/dist/engine/combat/damage.js +2 -1
- package/dist/engine/events/applyRandomEvent.js +13 -6
- package/dist/engine/turn/resolveTurn.js +3 -2
- package/dist/skins/CombatSkin.d.ts +1 -0
- package/dist/skins/cliches/clicheSkin.d.ts +2 -1
- package/dist/skins/cliches/clicheSkin.js +3 -0
- package/dist/skins/cliches/constants.d.ts +135 -0
- package/dist/skins/cliches/constants.js +136 -0
- package/dist/skins/cliches/fighters.d.ts +1 -1
- package/dist/skins/cliches/fighters.js +165 -165
- package/dist/skins/cliches/items.js +45 -44
- package/dist/skins/cliches/moves.js +74 -69
- package/dist/skins/cliches/randomEvents.d.ts +7 -0
- package/dist/skins/cliches/randomEvents.js +1167 -0
- package/dist/skins/cliches/statuses.js +63 -36
- package/dist/skins/cliches/types.d.ts +12 -12
- package/dist/skins/cliches/types.js +12 -11
- package/dist/skins/pokemon/constants.d.ts +83 -0
- package/dist/skins/pokemon/constants.js +84 -0
- package/dist/skins/pokemon/fighters.js +55 -55
- package/dist/skins/pokemon/items.js +23 -22
- package/dist/skins/pokemon/moves.js +59 -58
- package/dist/skins/pokemon/pokemonSkin.d.ts +2 -1
- package/dist/skins/pokemon/pokemonSkin.js +3 -0
- package/dist/skins/pokemon/randomEvents.d.ts +6 -0
- package/dist/skins/pokemon/randomEvents.js +165 -0
- package/dist/skins/pokemon/statuses.js +5 -4
- package/dist/skins/pokemon/types.d.ts +6 -6
- package/dist/skins/pokemon/types.js +7 -6
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { TRIBE_TYPE_IDS } from "./
|
|
1
|
+
import { TRIBE_FIGHTER_IDS, TRIBE_TYPE_IDS } from "./constants.js";
|
|
2
2
|
const makeStats = (offense, defense, speed, crit) => ({
|
|
3
3
|
offense,
|
|
4
4
|
defense,
|
|
@@ -8,309 +8,309 @@ const makeStats = (offense, defense, speed, crit) => ({
|
|
|
8
8
|
export const TRIBE_FIGHTERS = [
|
|
9
9
|
// --- TIER 1: AZUL (Suma Atk + Def < 100) ---
|
|
10
10
|
{
|
|
11
|
-
id:
|
|
11
|
+
id: TRIBE_FIGHTER_IDS.LOS_GARCIA,
|
|
12
12
|
name: "Los García",
|
|
13
13
|
description: "Cree que se hará rico mañana. Rápido hablando, frágil si le preguntas qué hace.",
|
|
14
|
-
img: "los_garcia",
|
|
15
|
-
classIds: [TRIBE_TYPE_IDS.
|
|
14
|
+
img: "los_garcia",
|
|
15
|
+
classIds: [TRIBE_TYPE_IDS.FORMAL],
|
|
16
16
|
baseStats: makeStats(55, 35, 90, 15),
|
|
17
|
-
recommendedMoves: [
|
|
17
|
+
recommendedMoves: [],
|
|
18
18
|
},
|
|
19
19
|
{
|
|
20
|
-
id:
|
|
20
|
+
id: TRIBE_FIGHTER_IDS.CASADO,
|
|
21
21
|
name: "Casado",
|
|
22
22
|
description: "Cree que se hará rico mañana. Rápido hablando, frágil si le preguntas qué hace.",
|
|
23
|
-
img: "casado",
|
|
24
|
-
classIds: [TRIBE_TYPE_IDS.
|
|
23
|
+
img: "casado",
|
|
24
|
+
classIds: [TRIBE_TYPE_IDS.DEPORTISTA, TRIBE_TYPE_IDS.FORMAL],
|
|
25
25
|
baseStats: makeStats(55, 35, 90, 15),
|
|
26
|
-
recommendedMoves: [
|
|
26
|
+
recommendedMoves: [],
|
|
27
27
|
},
|
|
28
28
|
{
|
|
29
|
-
id:
|
|
29
|
+
id: TRIBE_FIGHTER_IDS.VIRTUAL,
|
|
30
30
|
name: "Virtual",
|
|
31
31
|
description: "Cree que se hará rico mañana. Rápido hablando, frágil si le preguntas qué hace.",
|
|
32
|
-
img: "virtual",
|
|
33
|
-
classIds: [TRIBE_TYPE_IDS.
|
|
32
|
+
img: "virtual",
|
|
33
|
+
classIds: [TRIBE_TYPE_IDS.MISTICO, TRIBE_TYPE_IDS.ARTISTA],
|
|
34
34
|
baseStats: makeStats(55, 35, 90, 15),
|
|
35
|
-
recommendedMoves: [
|
|
35
|
+
recommendedMoves: [],
|
|
36
36
|
},
|
|
37
37
|
{
|
|
38
|
-
id:
|
|
38
|
+
id: TRIBE_FIGHTER_IDS.MURPHY,
|
|
39
39
|
name: "Murphy",
|
|
40
40
|
description: "Cree que se hará rico mañana. Rápido hablando, frágil si le preguntas qué hace.",
|
|
41
|
-
img: "murphy",
|
|
42
|
-
classIds: [TRIBE_TYPE_IDS.
|
|
41
|
+
img: "murphy",
|
|
42
|
+
classIds: [TRIBE_TYPE_IDS.MISTERIOSO],
|
|
43
43
|
baseStats: makeStats(55, 35, 90, 15),
|
|
44
|
-
recommendedMoves: [
|
|
44
|
+
recommendedMoves: [],
|
|
45
45
|
},
|
|
46
46
|
{
|
|
47
|
-
id:
|
|
47
|
+
id: TRIBE_FIGHTER_IDS.JUAN,
|
|
48
48
|
name: "Juan",
|
|
49
49
|
description: "Cree que se hará rico mañana. Rápido hablando, frágil si le preguntas qué hace.",
|
|
50
|
-
img: "juan",
|
|
51
|
-
classIds: [TRIBE_TYPE_IDS.
|
|
50
|
+
img: "juan",
|
|
51
|
+
classIds: [TRIBE_TYPE_IDS.HIPPIE],
|
|
52
52
|
baseStats: makeStats(55, 35, 90, 15),
|
|
53
|
-
recommendedMoves: [
|
|
53
|
+
recommendedMoves: [],
|
|
54
54
|
},
|
|
55
55
|
{
|
|
56
|
-
id:
|
|
56
|
+
id: TRIBE_FIGHTER_IDS.SIMON_Y_SILVIA,
|
|
57
57
|
name: "Simón y Silvia",
|
|
58
58
|
description: "Cree que se hará rico mañana. Rápido hablando, frágil si le preguntas qué hace.",
|
|
59
|
-
img: "simon_y_silvia",
|
|
60
|
-
classIds: [TRIBE_TYPE_IDS.
|
|
59
|
+
img: "simon_y_silvia",
|
|
60
|
+
classIds: [TRIBE_TYPE_IDS.FIESTERO],
|
|
61
61
|
baseStats: makeStats(60, 40, 100, 15),
|
|
62
|
-
recommendedMoves: [
|
|
62
|
+
recommendedMoves: [],
|
|
63
63
|
},
|
|
64
64
|
{
|
|
65
|
-
id:
|
|
65
|
+
id: TRIBE_FIGHTER_IDS.KING_KASTA,
|
|
66
66
|
name: "King Kasta",
|
|
67
67
|
description: "Cree que se hará rico mañana. Rápido hablando, frágil si le preguntas qué hace.",
|
|
68
|
-
img: "king_kasta",
|
|
69
|
-
classIds: [TRIBE_TYPE_IDS.
|
|
68
|
+
img: "king_kasta",
|
|
69
|
+
classIds: [TRIBE_TYPE_IDS.ARTISTA, TRIBE_TYPE_IDS.KINKI],
|
|
70
70
|
baseStats: makeStats(55, 35, 90, 15),
|
|
71
|
-
recommendedMoves: [
|
|
71
|
+
recommendedMoves: [],
|
|
72
72
|
},
|
|
73
73
|
{
|
|
74
|
-
id:
|
|
74
|
+
id: TRIBE_FIGHTER_IDS.METRIKA,
|
|
75
75
|
name: "Metrika",
|
|
76
76
|
description: "Cree que se hará rico mañana. Rápido hablando, frágil si le preguntas qué hace.",
|
|
77
|
-
img: "metrika",
|
|
78
|
-
classIds: [TRIBE_TYPE_IDS.
|
|
77
|
+
img: "metrika",
|
|
78
|
+
classIds: [TRIBE_TYPE_IDS.ARTISTA, TRIBE_TYPE_IDS.CHULETA],
|
|
79
79
|
baseStats: makeStats(55, 35, 90, 15),
|
|
80
|
-
recommendedMoves: [
|
|
80
|
+
recommendedMoves: [],
|
|
81
81
|
},
|
|
82
82
|
{
|
|
83
|
-
id:
|
|
83
|
+
id: TRIBE_FIGHTER_IDS.CHECHU,
|
|
84
84
|
name: "Chechu",
|
|
85
85
|
description: "Cree que se hará rico mañana. Rápido hablando, frágil si le preguntas qué hace.",
|
|
86
|
-
img: "chechu",
|
|
87
|
-
classIds: [TRIBE_TYPE_IDS.
|
|
86
|
+
img: "chechu",
|
|
87
|
+
classIds: [TRIBE_TYPE_IDS.MISTERIOSO],
|
|
88
88
|
baseStats: makeStats(55, 35, 90, 15),
|
|
89
|
-
recommendedMoves: [
|
|
89
|
+
recommendedMoves: [],
|
|
90
90
|
},
|
|
91
91
|
{
|
|
92
|
-
id:
|
|
92
|
+
id: TRIBE_FIGHTER_IDS.VIKA,
|
|
93
93
|
name: "Vika",
|
|
94
94
|
description: "Cree que se hará rico mañana. Rápido hablando, frágil si le preguntas qué hace.",
|
|
95
|
-
img: "vika",
|
|
96
|
-
classIds: [TRIBE_TYPE_IDS.
|
|
95
|
+
img: "vika",
|
|
96
|
+
classIds: [TRIBE_TYPE_IDS.MISTERIOSO, TRIBE_TYPE_IDS.HIPPIE],
|
|
97
97
|
baseStats: makeStats(55, 35, 90, 15),
|
|
98
|
-
recommendedMoves: [
|
|
98
|
+
recommendedMoves: [],
|
|
99
99
|
},
|
|
100
100
|
{
|
|
101
|
-
id:
|
|
101
|
+
id: TRIBE_FIGHTER_IDS.YUNG_BEEF,
|
|
102
102
|
name: "Yung Beef",
|
|
103
103
|
description: "Cree que se hará rico mañana. Rápido hablando, frágil si le preguntas qué hace.",
|
|
104
|
-
img: "yung_beef",
|
|
105
|
-
classIds: [TRIBE_TYPE_IDS.
|
|
104
|
+
img: "yung_beef",
|
|
105
|
+
classIds: [TRIBE_TYPE_IDS.ARTISTA, TRIBE_TYPE_IDS.HIPPIE],
|
|
106
106
|
baseStats: makeStats(55, 35, 90, 15),
|
|
107
|
-
recommendedMoves: [
|
|
107
|
+
recommendedMoves: [],
|
|
108
108
|
},
|
|
109
109
|
{
|
|
110
|
-
id:
|
|
110
|
+
id: TRIBE_FIGHTER_IDS.VELAS,
|
|
111
111
|
name: "Velas",
|
|
112
112
|
description: "Cree que se hará rico mañana. Rápido hablando, frágil si le preguntas qué hace.",
|
|
113
|
-
img: "velas",
|
|
114
|
-
classIds: [TRIBE_TYPE_IDS.
|
|
113
|
+
img: "velas",
|
|
114
|
+
classIds: [TRIBE_TYPE_IDS.DEPORTISTA, TRIBE_TYPE_IDS.FIESTERO],
|
|
115
115
|
baseStats: makeStats(55, 35, 90, 15),
|
|
116
|
-
recommendedMoves: [
|
|
116
|
+
recommendedMoves: [],
|
|
117
117
|
},
|
|
118
118
|
{
|
|
119
|
-
id:
|
|
119
|
+
id: TRIBE_FIGHTER_IDS.MODRIC_SHAOLIN,
|
|
120
120
|
name: "Modric Shaolin",
|
|
121
121
|
description: "Cree que se hará rico mañana. Rápido hablando, frágil si le preguntas qué hace.",
|
|
122
|
-
img: "modric_shaolin",
|
|
123
|
-
classIds: [TRIBE_TYPE_IDS.
|
|
122
|
+
img: "modric_shaolin",
|
|
123
|
+
classIds: [TRIBE_TYPE_IDS.MISTERIOSO],
|
|
124
124
|
baseStats: makeStats(60, 60, 90, 15),
|
|
125
|
-
recommendedMoves: [
|
|
125
|
+
recommendedMoves: [],
|
|
126
126
|
},
|
|
127
127
|
{
|
|
128
|
-
id:
|
|
128
|
+
id: TRIBE_FIGHTER_IDS.LORENA,
|
|
129
129
|
name: "Lorena",
|
|
130
130
|
description: "Cree que se hará rico mañana. Rápido hablando, frágil si le preguntas qué hace.",
|
|
131
|
-
img: "lorena",
|
|
132
|
-
classIds: [TRIBE_TYPE_IDS.
|
|
131
|
+
img: "lorena",
|
|
132
|
+
classIds: [TRIBE_TYPE_IDS.NERD, TRIBE_TYPE_IDS.HIPPIE],
|
|
133
133
|
baseStats: makeStats(55, 35, 90, 15),
|
|
134
|
-
recommendedMoves: [
|
|
134
|
+
recommendedMoves: [],
|
|
135
135
|
},
|
|
136
136
|
{
|
|
137
|
-
id:
|
|
137
|
+
id: TRIBE_FIGHTER_IDS.JUAREZ,
|
|
138
138
|
name: "Juarez",
|
|
139
139
|
description: "Cree que se hará rico mañana. Rápido hablando, frágil si le preguntas qué hace.",
|
|
140
|
-
img: "juarez",
|
|
141
|
-
classIds: [TRIBE_TYPE_IDS.
|
|
140
|
+
img: "juarez",
|
|
141
|
+
classIds: [TRIBE_TYPE_IDS.NERD, TRIBE_TYPE_IDS.FIESTERO],
|
|
142
142
|
baseStats: makeStats(55, 35, 90, 15),
|
|
143
|
-
recommendedMoves: [
|
|
143
|
+
recommendedMoves: [],
|
|
144
144
|
},
|
|
145
145
|
{
|
|
146
|
-
id:
|
|
146
|
+
id: TRIBE_FIGHTER_IDS.CURRITO,
|
|
147
147
|
name: "Currito",
|
|
148
148
|
description: "Cree que se hará rico mañana. Rápido hablando, frágil si le preguntas qué hace.",
|
|
149
|
-
img: "currito",
|
|
150
|
-
classIds: [TRIBE_TYPE_IDS.
|
|
149
|
+
img: "currito",
|
|
150
|
+
classIds: [TRIBE_TYPE_IDS.DEPORTISTA, TRIBE_TYPE_IDS.FIESTERO],
|
|
151
151
|
baseStats: makeStats(55, 35, 90, 15),
|
|
152
|
-
recommendedMoves: [
|
|
152
|
+
recommendedMoves: [],
|
|
153
153
|
},
|
|
154
154
|
{
|
|
155
|
-
id:
|
|
155
|
+
id: TRIBE_FIGHTER_IDS.ANGEL,
|
|
156
156
|
name: "Angel",
|
|
157
157
|
description: "Cree que se hará rico mañana. Rápido hablando, frágil si le preguntas qué hace.",
|
|
158
|
-
img: "angel",
|
|
159
|
-
classIds: [TRIBE_TYPE_IDS.
|
|
158
|
+
img: "angel",
|
|
159
|
+
classIds: [TRIBE_TYPE_IDS.NERD, TRIBE_TYPE_IDS.FORMAL],
|
|
160
160
|
baseStats: makeStats(55, 35, 90, 15),
|
|
161
|
-
recommendedMoves: [
|
|
161
|
+
recommendedMoves: [],
|
|
162
162
|
},
|
|
163
163
|
{
|
|
164
|
-
id:
|
|
164
|
+
id: TRIBE_FIGHTER_IDS.CTANGANA,
|
|
165
165
|
name: "Ctangana",
|
|
166
166
|
description: "Cree que se hará rico mañana. Rápido hablando, frágil si le preguntas qué hace.",
|
|
167
|
-
img: "ctangana",
|
|
168
|
-
classIds: [TRIBE_TYPE_IDS.
|
|
167
|
+
img: "ctangana",
|
|
168
|
+
classIds: [TRIBE_TYPE_IDS.ARTISTA, TRIBE_TYPE_IDS.FORMAL],
|
|
169
169
|
baseStats: makeStats(55, 35, 90, 15),
|
|
170
|
-
recommendedMoves: [
|
|
170
|
+
recommendedMoves: [],
|
|
171
171
|
},
|
|
172
172
|
{
|
|
173
|
-
id:
|
|
173
|
+
id: TRIBE_FIGHTER_IDS.DURAN,
|
|
174
174
|
name: "Duran",
|
|
175
175
|
description: "Cree que se hará rico mañana. Rápido hablando, frágil si le preguntas qué hace.",
|
|
176
|
-
img: "duran",
|
|
177
|
-
classIds: [TRIBE_TYPE_IDS.
|
|
176
|
+
img: "duran",
|
|
177
|
+
classIds: [TRIBE_TYPE_IDS.FIESTERO],
|
|
178
178
|
baseStats: makeStats(55, 35, 90, 15),
|
|
179
|
-
recommendedMoves: [
|
|
179
|
+
recommendedMoves: [],
|
|
180
180
|
},
|
|
181
181
|
{
|
|
182
|
-
id:
|
|
182
|
+
id: TRIBE_FIGHTER_IDS.FERCHY,
|
|
183
183
|
name: "Ferchy",
|
|
184
184
|
description: "Cree que se hará rico mañana. Rápido hablando, frágil si le preguntas qué hace.",
|
|
185
|
-
img: "ferchy",
|
|
186
|
-
classIds: [TRIBE_TYPE_IDS.
|
|
185
|
+
img: "ferchy",
|
|
186
|
+
classIds: [TRIBE_TYPE_IDS.NERD, TRIBE_TYPE_IDS.FIESTERO],
|
|
187
187
|
baseStats: makeStats(55, 35, 90, 15),
|
|
188
|
-
recommendedMoves: [
|
|
188
|
+
recommendedMoves: [],
|
|
189
189
|
},
|
|
190
190
|
{
|
|
191
|
-
id:
|
|
192
|
-
name:
|
|
193
|
-
description:
|
|
194
|
-
img:
|
|
195
|
-
classIds: [TRIBE_TYPE_IDS.
|
|
191
|
+
id: TRIBE_FIGHTER_IDS.HECTOR,
|
|
192
|
+
name: "Hector",
|
|
193
|
+
description: "Cree que se hará rico mañana. Rápido hablando, frágil si le preguntas qué hace.",
|
|
194
|
+
img: "hector",
|
|
195
|
+
classIds: [TRIBE_TYPE_IDS.NERD, TRIBE_TYPE_IDS.DEPORTISTA],
|
|
196
196
|
baseStats: makeStats(55, 35, 90, 15),
|
|
197
|
-
recommendedMoves: [
|
|
197
|
+
recommendedMoves: [],
|
|
198
198
|
},
|
|
199
199
|
{
|
|
200
|
-
id:
|
|
201
|
-
name:
|
|
202
|
-
description:
|
|
203
|
-
img:
|
|
204
|
-
classIds: [TRIBE_TYPE_IDS.
|
|
200
|
+
id: TRIBE_FIGHTER_IDS.MELENDI,
|
|
201
|
+
name: "Melendi",
|
|
202
|
+
description: "Cree que se hará rico mañana. Rápido hablando, frágil si le preguntas qué hace.",
|
|
203
|
+
img: "melendi",
|
|
204
|
+
classIds: [TRIBE_TYPE_IDS.ARTISTA, TRIBE_TYPE_IDS.HIPPIE],
|
|
205
205
|
baseStats: makeStats(55, 35, 90, 15),
|
|
206
|
-
recommendedMoves: [
|
|
206
|
+
recommendedMoves: [],
|
|
207
207
|
},
|
|
208
208
|
{
|
|
209
|
-
id:
|
|
210
|
-
name:
|
|
211
|
-
description:
|
|
212
|
-
img:
|
|
213
|
-
classIds: [TRIBE_TYPE_IDS.
|
|
209
|
+
id: TRIBE_FIGHTER_IDS.SELENE,
|
|
210
|
+
name: "Selene",
|
|
211
|
+
description: "Cree que se hará rico mañana. Rápido hablando, frágil si le preguntas qué hace.",
|
|
212
|
+
img: "selene",
|
|
213
|
+
classIds: [TRIBE_TYPE_IDS.HIPPIE, TRIBE_TYPE_IDS.MISTICO],
|
|
214
214
|
baseStats: makeStats(55, 35, 90, 15),
|
|
215
|
-
recommendedMoves: [
|
|
215
|
+
recommendedMoves: [],
|
|
216
216
|
},
|
|
217
217
|
{
|
|
218
|
-
id:
|
|
219
|
-
name:
|
|
220
|
-
description:
|
|
221
|
-
img:
|
|
222
|
-
classIds: [TRIBE_TYPE_IDS.
|
|
218
|
+
id: TRIBE_FIGHTER_IDS.TABARA,
|
|
219
|
+
name: "Tabara",
|
|
220
|
+
description: "Cree que se hará rico mañana. Rápido hablando, frágil si le preguntas qué hace.",
|
|
221
|
+
img: "tabara",
|
|
222
|
+
classIds: [TRIBE_TYPE_IDS.MISTERIOSO],
|
|
223
223
|
baseStats: makeStats(55, 35, 90, 15),
|
|
224
|
-
recommendedMoves: [
|
|
224
|
+
recommendedMoves: [],
|
|
225
225
|
},
|
|
226
226
|
{
|
|
227
|
-
id:
|
|
228
|
-
name:
|
|
229
|
-
description:
|
|
230
|
-
img:
|
|
231
|
-
classIds: [TRIBE_TYPE_IDS.
|
|
227
|
+
id: TRIBE_FIGHTER_IDS.TSUNAMI,
|
|
228
|
+
name: "Tsunami",
|
|
229
|
+
description: "Cree que se hará rico mañana. Rápido hablando, frágil si le preguntas qué hace.",
|
|
230
|
+
img: "tsunami",
|
|
231
|
+
classIds: [TRIBE_TYPE_IDS.FORMAL],
|
|
232
232
|
baseStats: makeStats(55, 35, 90, 15),
|
|
233
|
-
recommendedMoves: [
|
|
233
|
+
recommendedMoves: [],
|
|
234
234
|
},
|
|
235
235
|
{
|
|
236
|
-
id:
|
|
237
|
-
name:
|
|
238
|
-
description:
|
|
239
|
-
img:
|
|
240
|
-
classIds: [TRIBE_TYPE_IDS.
|
|
236
|
+
id: TRIBE_FIGHTER_IDS.BADGYAL,
|
|
237
|
+
name: "Badgyal",
|
|
238
|
+
description: "Cree que se hará rico mañana. Rápido hablando, frágil si le preguntas qué hace.",
|
|
239
|
+
img: "badgyal",
|
|
240
|
+
classIds: [TRIBE_TYPE_IDS.CHULETA, TRIBE_TYPE_IDS.ARTISTA],
|
|
241
241
|
baseStats: makeStats(55, 35, 90, 15),
|
|
242
|
-
recommendedMoves: [
|
|
242
|
+
recommendedMoves: [],
|
|
243
243
|
},
|
|
244
244
|
{
|
|
245
|
-
id:
|
|
246
|
-
name:
|
|
247
|
-
description:
|
|
248
|
-
img:
|
|
249
|
-
classIds: [TRIBE_TYPE_IDS.
|
|
245
|
+
id: TRIBE_FIGHTER_IDS.BENYART,
|
|
246
|
+
name: "Benyart",
|
|
247
|
+
description: "Cree que se hará rico mañana. Rápido hablando, frágil si le preguntas qué hace.",
|
|
248
|
+
img: "benyart",
|
|
249
|
+
classIds: [TRIBE_TYPE_IDS.ARTISTA, TRIBE_TYPE_IDS.MISTERIOSO],
|
|
250
250
|
baseStats: makeStats(55, 35, 90, 15),
|
|
251
|
-
recommendedMoves: [
|
|
251
|
+
recommendedMoves: [],
|
|
252
252
|
},
|
|
253
253
|
{
|
|
254
|
-
id:
|
|
255
|
-
name:
|
|
256
|
-
description:
|
|
257
|
-
img:
|
|
258
|
-
classIds: [TRIBE_TYPE_IDS.
|
|
254
|
+
id: TRIBE_FIGHTER_IDS.CECILIOG,
|
|
255
|
+
name: "Ceciliog",
|
|
256
|
+
description: "Cree que se hará rico mañana. Rápido hablando, frágil si le preguntas qué hace.",
|
|
257
|
+
img: "ceciliog",
|
|
258
|
+
classIds: [TRIBE_TYPE_IDS.ARTISTA, TRIBE_TYPE_IDS.LOCO],
|
|
259
259
|
baseStats: makeStats(55, 35, 90, 15),
|
|
260
|
-
recommendedMoves: [
|
|
260
|
+
recommendedMoves: [],
|
|
261
261
|
},
|
|
262
262
|
{
|
|
263
|
-
id:
|
|
264
|
-
name:
|
|
265
|
-
description:
|
|
266
|
-
img:
|
|
267
|
-
classIds: [TRIBE_TYPE_IDS.
|
|
263
|
+
id: TRIBE_FIGHTER_IDS.DELGAO,
|
|
264
|
+
name: "Delgao",
|
|
265
|
+
description: "Cree que se hará rico mañana. Rápido hablando, frágil si le preguntas qué hace.",
|
|
266
|
+
img: "delgao",
|
|
267
|
+
classIds: [TRIBE_TYPE_IDS.ARTISTA, TRIBE_TYPE_IDS.KINKI],
|
|
268
268
|
baseStats: makeStats(55, 35, 90, 15),
|
|
269
|
-
recommendedMoves: [
|
|
269
|
+
recommendedMoves: [],
|
|
270
270
|
},
|
|
271
271
|
{
|
|
272
|
-
id:
|
|
273
|
-
name:
|
|
274
|
-
description:
|
|
275
|
-
img:
|
|
276
|
-
classIds: [TRIBE_TYPE_IDS.
|
|
272
|
+
id: TRIBE_FIGHTER_IDS.JARFAITER,
|
|
273
|
+
name: "Jarfaiter",
|
|
274
|
+
description: "Cree que se hará rico mañana. Rápido hablando, frágil si le preguntas qué hace.",
|
|
275
|
+
img: "jarfaiter",
|
|
276
|
+
classIds: [TRIBE_TYPE_IDS.KINKI, TRIBE_TYPE_IDS.ARTISTA],
|
|
277
277
|
baseStats: makeStats(55, 35, 90, 15),
|
|
278
|
-
recommendedMoves: [
|
|
278
|
+
recommendedMoves: [],
|
|
279
279
|
},
|
|
280
280
|
{
|
|
281
|
-
id:
|
|
282
|
-
name:
|
|
283
|
-
description:
|
|
284
|
-
img:
|
|
285
|
-
classIds: [TRIBE_TYPE_IDS.
|
|
281
|
+
id: TRIBE_FIGHTER_IDS.ÑENGO,
|
|
282
|
+
name: "Ñengo",
|
|
283
|
+
description: "Cree que se hará rico mañana. Rápido hablando, frágil si le preguntas qué hace.",
|
|
284
|
+
img: "ñengo",
|
|
285
|
+
classIds: [TRIBE_TYPE_IDS.ARTISTA, TRIBE_TYPE_IDS.CHULETA],
|
|
286
286
|
baseStats: makeStats(55, 35, 90, 15),
|
|
287
|
-
recommendedMoves: [
|
|
287
|
+
recommendedMoves: [],
|
|
288
288
|
},
|
|
289
289
|
{
|
|
290
|
-
id:
|
|
291
|
-
name:
|
|
292
|
-
description:
|
|
293
|
-
img:
|
|
294
|
-
classIds: [TRIBE_TYPE_IDS.
|
|
290
|
+
id: TRIBE_FIGHTER_IDS.PORTERO_MISTERIOSO,
|
|
291
|
+
name: "Portero Misterioso",
|
|
292
|
+
description: "Cree que se hará rico mañana. Rápido hablando, frágil si le preguntas qué hace.",
|
|
293
|
+
img: "portero_misterioso",
|
|
294
|
+
classIds: [TRIBE_TYPE_IDS.MISTERIOSO],
|
|
295
295
|
baseStats: makeStats(55, 35, 90, 15),
|
|
296
|
-
recommendedMoves: [
|
|
296
|
+
recommendedMoves: [],
|
|
297
297
|
},
|
|
298
298
|
{
|
|
299
|
-
id:
|
|
300
|
-
name:
|
|
301
|
-
description:
|
|
302
|
-
img:
|
|
303
|
-
classIds: [TRIBE_TYPE_IDS.
|
|
299
|
+
id: TRIBE_FIGHTER_IDS.ED_GEIN,
|
|
300
|
+
name: "Ed Gein",
|
|
301
|
+
description: "Cree que se hará rico mañana. Rápido hablando, frágil si le preguntas qué hace.",
|
|
302
|
+
img: "ed_gein",
|
|
303
|
+
classIds: [TRIBE_TYPE_IDS.LOCO],
|
|
304
304
|
baseStats: makeStats(55, 35, 90, 15),
|
|
305
|
-
recommendedMoves: [
|
|
305
|
+
recommendedMoves: [],
|
|
306
306
|
},
|
|
307
307
|
{
|
|
308
|
-
id:
|
|
309
|
-
name:
|
|
310
|
-
description:
|
|
311
|
-
img:
|
|
312
|
-
classIds: [TRIBE_TYPE_IDS.
|
|
308
|
+
id: TRIBE_FIGHTER_IDS.JOSE_BRETON,
|
|
309
|
+
name: "Jose Breton",
|
|
310
|
+
description: "Cree que se hará rico mañana. Rápido hablando, frágil si le preguntas qué hace.",
|
|
311
|
+
img: "jose_breton",
|
|
312
|
+
classIds: [TRIBE_TYPE_IDS.LOCO],
|
|
313
313
|
baseStats: makeStats(55, 35, 90, 15),
|
|
314
|
-
recommendedMoves: [
|
|
314
|
+
recommendedMoves: [],
|
|
315
315
|
}
|
|
316
316
|
];
|