poke-crucible 0.1.0

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.
Files changed (99) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +192 -0
  3. package/dist/battle/pairing.d.ts +25 -0
  4. package/dist/battle/pairing.js +59 -0
  5. package/dist/battle/pairing.js.map +1 -0
  6. package/dist/battle/pool.d.ts +25 -0
  7. package/dist/battle/pool.js +97 -0
  8. package/dist/battle/pool.js.map +1 -0
  9. package/dist/battle/run-battle.d.ts +13 -0
  10. package/dist/battle/run-battle.js +49 -0
  11. package/dist/battle/run-battle.js.map +1 -0
  12. package/dist/battle/worker.d.ts +1 -0
  13. package/dist/battle/worker.js +21 -0
  14. package/dist/battle/worker.js.map +1 -0
  15. package/dist/cli.d.ts +2 -0
  16. package/dist/cli.js +326 -0
  17. package/dist/cli.js.map +1 -0
  18. package/dist/critic/agent-sdk-model.d.ts +27 -0
  19. package/dist/critic/agent-sdk-model.js +21 -0
  20. package/dist/critic/agent-sdk-model.js.map +1 -0
  21. package/dist/critic/critique.d.ts +21 -0
  22. package/dist/critic/critique.js +51 -0
  23. package/dist/critic/critique.js.map +1 -0
  24. package/dist/critic/evidence.d.ts +24 -0
  25. package/dist/critic/evidence.js +17 -0
  26. package/dist/critic/evidence.js.map +1 -0
  27. package/dist/critic/llm.d.ts +34 -0
  28. package/dist/critic/llm.js +23 -0
  29. package/dist/critic/llm.js.map +1 -0
  30. package/dist/critic/parse.d.ts +5 -0
  31. package/dist/critic/parse.js +84 -0
  32. package/dist/critic/parse.js.map +1 -0
  33. package/dist/critic/prompt.d.ts +14 -0
  34. package/dist/critic/prompt.js +56 -0
  35. package/dist/critic/prompt.js.map +1 -0
  36. package/dist/critic/types.d.ts +52 -0
  37. package/dist/critic/types.js +2 -0
  38. package/dist/critic/types.js.map +1 -0
  39. package/dist/designer/agent-sdk-model.d.ts +30 -0
  40. package/dist/designer/agent-sdk-model.js +62 -0
  41. package/dist/designer/agent-sdk-model.js.map +1 -0
  42. package/dist/designer/design.d.ts +12 -0
  43. package/dist/designer/design.js +218 -0
  44. package/dist/designer/design.js.map +1 -0
  45. package/dist/designer/fitness.d.ts +25 -0
  46. package/dist/designer/fitness.js +24 -0
  47. package/dist/designer/fitness.js.map +1 -0
  48. package/dist/designer/model.d.ts +14 -0
  49. package/dist/designer/model.js +27 -0
  50. package/dist/designer/model.js.map +1 -0
  51. package/dist/designer/mutate.d.ts +31 -0
  52. package/dist/designer/mutate.js +209 -0
  53. package/dist/designer/mutate.js.map +1 -0
  54. package/dist/designer/rng.d.ts +17 -0
  55. package/dist/designer/rng.js +40 -0
  56. package/dist/designer/rng.js.map +1 -0
  57. package/dist/designer/types.d.ts +103 -0
  58. package/dist/designer/types.js +2 -0
  59. package/dist/designer/types.js.map +1 -0
  60. package/dist/evaluate.d.ts +11 -0
  61. package/dist/evaluate.js +99 -0
  62. package/dist/evaluate.js.map +1 -0
  63. package/dist/gauntlet/gauntlet.d.ts +18 -0
  64. package/dist/gauntlet/gauntlet.js +41 -0
  65. package/dist/gauntlet/gauntlet.js.map +1 -0
  66. package/dist/gauntlet/teams-g1.d.ts +23 -0
  67. package/dist/gauntlet/teams-g1.js +476 -0
  68. package/dist/gauntlet/teams-g1.js.map +1 -0
  69. package/dist/gauntlet/teams-g2.d.ts +14 -0
  70. package/dist/gauntlet/teams-g2.js +725 -0
  71. package/dist/gauntlet/teams-g2.js.map +1 -0
  72. package/dist/index.d.ts +25 -0
  73. package/dist/index.js +24 -0
  74. package/dist/index.js.map +1 -0
  75. package/dist/llm/agent-query.d.ts +21 -0
  76. package/dist/llm/agent-query.js +70 -0
  77. package/dist/llm/agent-query.js.map +1 -0
  78. package/dist/pilot/damage.d.ts +34 -0
  79. package/dist/pilot/damage.js +75 -0
  80. package/dist/pilot/damage.js.map +1 -0
  81. package/dist/pilot/eval-pilot.d.ts +39 -0
  82. package/dist/pilot/eval-pilot.js +161 -0
  83. package/dist/pilot/eval-pilot.js.map +1 -0
  84. package/dist/pilot/pilot.d.ts +71 -0
  85. package/dist/pilot/pilot.js +290 -0
  86. package/dist/pilot/pilot.js.map +1 -0
  87. package/dist/ranking.d.ts +25 -0
  88. package/dist/ranking.js +40 -0
  89. package/dist/ranking.js.map +1 -0
  90. package/dist/seed.d.ts +13 -0
  91. package/dist/seed.js +42 -0
  92. package/dist/seed.js.map +1 -0
  93. package/dist/team.d.ts +29 -0
  94. package/dist/team.js +100 -0
  95. package/dist/team.js.map +1 -0
  96. package/dist/types.d.ts +77 -0
  97. package/dist/types.js +8 -0
  98. package/dist/types.js.map +1 -0
  99. package/package.json +57 -0
@@ -0,0 +1 @@
1
+ {"version":3,"file":"gauntlet.js","sourceRoot":"","sources":["../../src/gauntlet/gauntlet.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,OAAO,EAAE,KAAK,EAAE,MAAM,WAAW,CAAC;AAClC,OAAO,EAAE,WAAW,EAAE,gBAAgB,EAAyB,MAAM,eAAe,CAAC;AACrF,OAAO,EAAE,WAAW,EAAE,mBAAmB,EAAE,MAAM,eAAe,CAAC;AAEjE,OAAO,EAAE,gBAAgB,EAAE,CAAC;AAC5B,MAAM,CAAC,MAAM,wBAAwB,GAAG,gBAAgB,CAAC;AAazD,MAAM,QAAQ,GAAuC;IACnD,CAAC,gBAAgB,CAAC,EAAE,WAAW;IAC/B,CAAC,mBAAmB,CAAC,EAAE,WAAW,EAAE,2CAA2C;CAChF,CAAC;AAEF,MAAM,UAAU,qBAAqB;IACnC,OAAO,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;AAC/B,CAAC;AAED;qCACqC;AACrC,MAAM,UAAU,gBAAgB,CAAC,UAAkB,wBAAwB;IACzE,MAAM,KAAK,GAAG,QAAQ,CAAC,OAAO,CAAC,CAAC;IAChC,IAAI,CAAC,KAAK;QAAE,MAAM,IAAI,KAAK,CAAC,6BAA6B,OAAO,IAAI,CAAC,CAAC;IACtE,OAAO,KAAK,CAAC;AACf,CAAC;AAED,oFAAoF;AACpF,MAAM,UAAU,YAAY,CAAC,UAAkB,wBAAwB;IACrE,MAAM,KAAK,GAAG,QAAQ,CAAC,OAAO,CAAC,CAAC;IAChC,IAAI,CAAC,KAAK,EAAE,CAAC;QACX,MAAM,IAAI,KAAK,CACb,6BAA6B,OAAO,sBAAsB,qBAAqB,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,CAChG,CAAC;IACJ,CAAC;IACD,MAAM,OAAO,GAAG,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE;QAC9B,MAAM,IAAI,GAAG,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC;QACnC,IAAI,CAAC,IAAI,IAAI,IAAI,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;YAC/B,MAAM,IAAI,KAAK,CAAC,kBAAkB,CAAC,CAAC,IAAI,oBAAoB,CAAC,CAAC;QAChE,CAAC;QACD,OAAO,EAAE,IAAI,EAAE,CAAC,CAAC,IAAI,EAAE,SAAS,EAAE,CAAC,CAAC,SAAS,EAAE,MAAM,EAAE,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC;IAC5E,CAAC,CAAC,CAAC;IACH,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,CAAC;AAC9B,CAAC"}
@@ -0,0 +1,23 @@
1
+ /**
2
+ * Gauntlet members, version `g1`.
3
+ *
4
+ * A fixed, versioned set of Archetype-labeled Gen 3 OU Teams used as the Field
5
+ * in gauntlet mode (ADR 0003). Each Team is standard Showdown paste text built
6
+ * from canonical Smogon Gen 3 OU sets.
7
+ *
8
+ * NOTE ON PROVENANCE: the design envisioned fetching these from Smogon's sample
9
+ * teams + usage stats. That fetch-and-parse is deferred; this set of Teams is
10
+ * hand-authored from well-known legal sets to stand the harness up. Because the
11
+ * Gauntlet is versioned, re-sourcing later is a `g2` bump, not a rewrite — and
12
+ * every result records which version produced it, so nothing silently drifts.
13
+ *
14
+ * Every Team here is asserted legal Gen 3 OU by a test; changing these Teams
15
+ * must bump GAUNTLET_VERSION.
16
+ */
17
+ export declare const GAUNTLET_VERSION = "g1";
18
+ export interface GauntletTeamData {
19
+ name: string;
20
+ archetype: string;
21
+ paste: string;
22
+ }
23
+ export declare const GAUNTLET_G1: GauntletTeamData[];
@@ -0,0 +1,476 @@
1
+ /**
2
+ * Gauntlet members, version `g1`.
3
+ *
4
+ * A fixed, versioned set of Archetype-labeled Gen 3 OU Teams used as the Field
5
+ * in gauntlet mode (ADR 0003). Each Team is standard Showdown paste text built
6
+ * from canonical Smogon Gen 3 OU sets.
7
+ *
8
+ * NOTE ON PROVENANCE: the design envisioned fetching these from Smogon's sample
9
+ * teams + usage stats. That fetch-and-parse is deferred; this set of Teams is
10
+ * hand-authored from well-known legal sets to stand the harness up. Because the
11
+ * Gauntlet is versioned, re-sourcing later is a `g2` bump, not a rewrite — and
12
+ * every result records which version produced it, so nothing silently drifts.
13
+ *
14
+ * Every Team here is asserted legal Gen 3 OU by a test; changing these Teams
15
+ * must bump GAUNTLET_VERSION.
16
+ */
17
+ export const GAUNTLET_VERSION = 'g1';
18
+ export const GAUNTLET_G1 = [
19
+ {
20
+ name: 'Sand Beatdown',
21
+ archetype: 'Sand Offense',
22
+ paste: `Tyranitar @ Choice Band
23
+ Ability: Sand Stream
24
+ EVs: 4 HP / 252 Atk / 252 Spe
25
+ Adamant Nature
26
+ - Rock Slide
27
+ - Earthquake
28
+ - Double-Edge
29
+ - Hidden Power Bug
30
+
31
+ Salamence @ Choice Band
32
+ Ability: Intimidate
33
+ EVs: 4 HP / 252 Atk / 252 Spe
34
+ Adamant Nature
35
+ - Rock Slide
36
+ - Earthquake
37
+ - Hidden Power Flying
38
+ - Brick Break
39
+
40
+ Metagross @ Leftovers
41
+ Ability: Clear Body
42
+ EVs: 236 HP / 252 Atk / 20 Spe
43
+ Adamant Nature
44
+ - Meteor Mash
45
+ - Earthquake
46
+ - Rock Slide
47
+ - Explosion
48
+
49
+ Magneton @ Leftovers
50
+ Ability: Magnet Pull
51
+ EVs: 4 HP / 252 SpA / 252 Spe
52
+ Modest Nature
53
+ - Thunderbolt
54
+ - Hidden Power Grass
55
+ - Thunder Wave
56
+ - Protect
57
+
58
+ Aerodactyl @ Choice Band
59
+ Ability: Rock Head
60
+ EVs: 4 HP / 252 Atk / 252 Spe
61
+ Adamant Nature
62
+ - Rock Slide
63
+ - Earthquake
64
+ - Double-Edge
65
+ - Hidden Power Flying
66
+
67
+ Swampert @ Leftovers
68
+ Ability: Torrent
69
+ EVs: 252 HP / 240 Def / 16 SpA
70
+ Relaxed Nature
71
+ - Surf
72
+ - Earthquake
73
+ - Ice Beam
74
+ - Protect`,
75
+ },
76
+ {
77
+ name: 'Skarmbliss Stall',
78
+ archetype: 'Spikes Stall',
79
+ paste: `Skarmory @ Leftovers
80
+ Ability: Keen Eye
81
+ EVs: 252 HP / 232 Def / 24 Spe
82
+ Impish Nature
83
+ - Spikes
84
+ - Roar
85
+ - Protect
86
+ - Toxic
87
+
88
+ Blissey @ Leftovers
89
+ Ability: Natural Cure
90
+ EVs: 252 HP / 252 Def / 4 SpD
91
+ Bold Nature
92
+ - Soft-Boiled
93
+ - Toxic
94
+ - Seismic Toss
95
+ - Aromatherapy
96
+
97
+ Swampert @ Leftovers
98
+ Ability: Torrent
99
+ EVs: 252 HP / 216 Def / 40 SpA
100
+ Relaxed Nature
101
+ - Surf
102
+ - Earthquake
103
+ - Ice Beam
104
+ - Protect
105
+
106
+ Claydol @ Leftovers
107
+ Ability: Levitate
108
+ EVs: 252 HP / 156 Def / 100 SpD
109
+ Impish Nature
110
+ - Rapid Spin
111
+ - Earthquake
112
+ - Toxic
113
+ - Psychic
114
+
115
+ Gengar @ Leftovers
116
+ Ability: Levitate
117
+ EVs: 252 HP / 4 Def / 252 SpA
118
+ Modest Nature
119
+ - Will-O-Wisp
120
+ - Ice Punch
121
+ - Thunderbolt
122
+ - Giga Drain
123
+
124
+ Tyranitar @ Leftovers
125
+ Ability: Sand Stream
126
+ EVs: 252 HP / 176 Def / 80 SpD
127
+ Sassy Nature
128
+ - Rock Slide
129
+ - Roar
130
+ - Toxic
131
+ - Protect`,
132
+ },
133
+ {
134
+ name: 'Standard Balance',
135
+ archetype: 'Balance',
136
+ paste: `Metagross @ Leftovers
137
+ Ability: Clear Body
138
+ EVs: 252 HP / 128 Atk / 128 Spe
139
+ Adamant Nature
140
+ - Meteor Mash
141
+ - Earthquake
142
+ - Rock Slide
143
+ - Explosion
144
+
145
+ Suicune @ Leftovers
146
+ Ability: Pressure
147
+ EVs: 252 HP / 252 Def / 4 SpD
148
+ Bold Nature
149
+ - Calm Mind
150
+ - Surf
151
+ - Ice Beam
152
+ - Rest
153
+
154
+ Blissey @ Leftovers
155
+ Ability: Natural Cure
156
+ EVs: 252 HP / 252 Def / 4 SpD
157
+ Bold Nature
158
+ - Soft-Boiled
159
+ - Toxic
160
+ - Seismic Toss
161
+ - Ice Beam
162
+
163
+ Skarmory @ Leftovers
164
+ Ability: Keen Eye
165
+ EVs: 252 HP / 232 Def / 24 Spe
166
+ Impish Nature
167
+ - Spikes
168
+ - Roar
169
+ - Protect
170
+ - Toxic
171
+
172
+ Claydol @ Leftovers
173
+ Ability: Levitate
174
+ EVs: 252 HP / 180 Def / 76 SpD
175
+ Impish Nature
176
+ - Rapid Spin
177
+ - Earthquake
178
+ - Psychic
179
+ - Toxic
180
+
181
+ Tyranitar @ Leftovers
182
+ Ability: Sand Stream
183
+ EVs: 176 HP / 252 Atk / 80 Spe
184
+ Adamant Nature
185
+ - Rock Slide
186
+ - Earthquake
187
+ - Crunch
188
+ - Dragon Dance`,
189
+ },
190
+ {
191
+ name: 'CroCune Balance',
192
+ archetype: 'Calm Mind Balance',
193
+ paste: `Suicune @ Leftovers
194
+ Ability: Pressure
195
+ EVs: 252 HP / 252 Def / 4 SpA
196
+ Bold Nature
197
+ - Calm Mind
198
+ - Surf
199
+ - Ice Beam
200
+ - Rest
201
+
202
+ Blissey @ Leftovers
203
+ Ability: Natural Cure
204
+ EVs: 252 HP / 252 Def / 4 SpD
205
+ Bold Nature
206
+ - Soft-Boiled
207
+ - Toxic
208
+ - Seismic Toss
209
+ - Aromatherapy
210
+
211
+ Skarmory @ Leftovers
212
+ Ability: Keen Eye
213
+ EVs: 252 HP / 232 Def / 24 Spe
214
+ Impish Nature
215
+ - Spikes
216
+ - Roar
217
+ - Protect
218
+ - Drill Peck
219
+
220
+ Claydol @ Leftovers
221
+ Ability: Levitate
222
+ EVs: 252 HP / 156 Def / 100 SpD
223
+ Impish Nature
224
+ - Rapid Spin
225
+ - Earthquake
226
+ - Toxic
227
+ - Psychic
228
+
229
+ Magneton @ Leftovers
230
+ Ability: Magnet Pull
231
+ EVs: 4 HP / 252 SpA / 252 Spe
232
+ Modest Nature
233
+ - Thunderbolt
234
+ - Hidden Power Grass
235
+ - Thunder Wave
236
+ - Protect
237
+
238
+ Tyranitar @ Leftovers
239
+ Ability: Sand Stream
240
+ EVs: 252 HP / 176 Atk / 80 SpD
241
+ Adamant Nature
242
+ - Rock Slide
243
+ - Earthquake
244
+ - Crunch
245
+ - Toxic`,
246
+ },
247
+ {
248
+ name: 'Trapper Offense',
249
+ archetype: 'Choice Band Offense',
250
+ paste: `Metagross @ Choice Band
251
+ Ability: Clear Body
252
+ EVs: 4 HP / 252 Atk / 252 Spe
253
+ Adamant Nature
254
+ - Meteor Mash
255
+ - Earthquake
256
+ - Rock Slide
257
+ - Explosion
258
+
259
+ Magneton @ Leftovers
260
+ Ability: Magnet Pull
261
+ EVs: 4 HP / 252 SpA / 252 Spe
262
+ Modest Nature
263
+ - Thunderbolt
264
+ - Hidden Power Grass
265
+ - Thunder Wave
266
+ - Protect
267
+
268
+ Dugtrio @ Choice Band
269
+ Ability: Arena Trap
270
+ EVs: 4 HP / 252 Atk / 252 Spe
271
+ Adamant Nature
272
+ - Earthquake
273
+ - Rock Slide
274
+ - Aerial Ace
275
+ - Hidden Power Bug
276
+
277
+ Salamence @ Choice Band
278
+ Ability: Intimidate
279
+ EVs: 4 HP / 252 Atk / 252 Spe
280
+ Adamant Nature
281
+ - Rock Slide
282
+ - Earthquake
283
+ - Hidden Power Flying
284
+ - Brick Break
285
+
286
+ Suicune @ Leftovers
287
+ Ability: Pressure
288
+ EVs: 252 HP / 252 Def / 4 SpA
289
+ Bold Nature
290
+ - Calm Mind
291
+ - Surf
292
+ - Ice Beam
293
+ - Rest
294
+
295
+ Snorlax @ Leftovers
296
+ Ability: Thick Fat
297
+ EVs: 188 HP / 252 Atk / 68 Def
298
+ Adamant Nature
299
+ - Body Slam
300
+ - Earthquake
301
+ - Self-Destruct
302
+ - Rest`,
303
+ },
304
+ {
305
+ name: 'Dragon Dance Sweep',
306
+ archetype: 'Dragon Dance Offense',
307
+ paste: `Tyranitar @ Lum Berry
308
+ Ability: Sand Stream
309
+ EVs: 4 HP / 252 Atk / 252 Spe
310
+ Adamant Nature
311
+ - Dragon Dance
312
+ - Rock Slide
313
+ - Earthquake
314
+ - Hidden Power Bug
315
+
316
+ Salamence @ Leftovers
317
+ Ability: Intimidate
318
+ EVs: 4 HP / 252 Atk / 252 Spe
319
+ Adamant Nature
320
+ - Dragon Dance
321
+ - Rock Slide
322
+ - Earthquake
323
+ - Hidden Power Flying
324
+
325
+ Metagross @ Leftovers
326
+ Ability: Clear Body
327
+ EVs: 236 HP / 252 Atk / 20 Spe
328
+ Adamant Nature
329
+ - Agility
330
+ - Meteor Mash
331
+ - Earthquake
332
+ - Rock Slide
333
+
334
+ Magneton @ Leftovers
335
+ Ability: Magnet Pull
336
+ EVs: 4 HP / 252 SpA / 252 Spe
337
+ Modest Nature
338
+ - Thunderbolt
339
+ - Hidden Power Grass
340
+ - Thunder Wave
341
+ - Protect
342
+
343
+ Suicune @ Leftovers
344
+ Ability: Pressure
345
+ EVs: 252 HP / 252 Def / 4 SpA
346
+ Bold Nature
347
+ - Calm Mind
348
+ - Surf
349
+ - Ice Beam
350
+ - Rest
351
+
352
+ Claydol @ Leftovers
353
+ Ability: Levitate
354
+ EVs: 252 HP / 156 Def / 100 SpD
355
+ Impish Nature
356
+ - Rapid Spin
357
+ - Earthquake
358
+ - Psychic
359
+ - Toxic`,
360
+ },
361
+ {
362
+ name: 'Special Spam',
363
+ archetype: 'Special Offense',
364
+ paste: `Jolteon @ Leftovers
365
+ Ability: Volt Absorb
366
+ EVs: 4 HP / 252 SpA / 252 Spe
367
+ Timid Nature
368
+ - Thunderbolt
369
+ - Hidden Power Ice
370
+ - Thunder Wave
371
+ - Substitute
372
+
373
+ Starmie @ Leftovers
374
+ Ability: Natural Cure
375
+ EVs: 4 HP / 252 SpA / 252 Spe
376
+ Timid Nature
377
+ - Surf
378
+ - Ice Beam
379
+ - Thunderbolt
380
+ - Rapid Spin
381
+
382
+ Gengar @ Leftovers
383
+ Ability: Levitate
384
+ EVs: 4 HP / 252 SpA / 252 Spe
385
+ Timid Nature
386
+ - Thunderbolt
387
+ - Ice Punch
388
+ - Giga Drain
389
+ - Will-O-Wisp
390
+
391
+ Zapdos @ Leftovers
392
+ Ability: Pressure
393
+ EVs: 252 HP / 4 SpA / 252 Spe
394
+ Timid Nature
395
+ - Thunderbolt
396
+ - Hidden Power Ice
397
+ - Roar
398
+ - Rest
399
+
400
+ Jirachi @ Leftovers
401
+ Ability: Serene Grace
402
+ EVs: 252 HP / 224 SpA / 32 Spe
403
+ Modest Nature
404
+ - Calm Mind
405
+ - Psychic
406
+ - Thunderbolt
407
+ - Ice Punch
408
+
409
+ Tyranitar @ Leftovers
410
+ Ability: Sand Stream
411
+ EVs: 252 HP / 4 Atk / 252 SpD
412
+ Careful Nature
413
+ - Rock Slide
414
+ - Earthquake
415
+ - Pursuit
416
+ - Toxic`,
417
+ },
418
+ {
419
+ name: 'Toxic Wall Stall',
420
+ archetype: 'Toxic Stall',
421
+ paste: `Weezing @ Leftovers
422
+ Ability: Levitate
423
+ EVs: 252 HP / 252 Def / 4 SpD
424
+ Bold Nature
425
+ - Will-O-Wisp
426
+ - Sludge Bomb
427
+ - Toxic
428
+ - Pain Split
429
+
430
+ Milotic @ Leftovers
431
+ Ability: Marvel Scale
432
+ EVs: 252 HP / 220 Def / 36 SpA
433
+ Bold Nature
434
+ - Surf
435
+ - Ice Beam
436
+ - Recover
437
+ - Toxic
438
+
439
+ Blissey @ Leftovers
440
+ Ability: Natural Cure
441
+ EVs: 252 HP / 252 Def / 4 SpD
442
+ Bold Nature
443
+ - Soft-Boiled
444
+ - Toxic
445
+ - Seismic Toss
446
+ - Aromatherapy
447
+
448
+ Skarmory @ Leftovers
449
+ Ability: Keen Eye
450
+ EVs: 252 HP / 232 Def / 24 Spe
451
+ Impish Nature
452
+ - Spikes
453
+ - Roar
454
+ - Protect
455
+ - Toxic
456
+
457
+ Claydol @ Leftovers
458
+ Ability: Levitate
459
+ EVs: 252 HP / 156 Def / 100 SpD
460
+ Impish Nature
461
+ - Rapid Spin
462
+ - Earthquake
463
+ - Toxic
464
+ - Psychic
465
+
466
+ Gengar @ Leftovers
467
+ Ability: Levitate
468
+ EVs: 252 HP / 4 Def / 252 SpA
469
+ Timid Nature
470
+ - Thunderbolt
471
+ - Ice Punch
472
+ - Giga Drain
473
+ - Will-O-Wisp`,
474
+ },
475
+ ];
476
+ //# sourceMappingURL=teams-g1.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"teams-g1.js","sourceRoot":"","sources":["../../src/gauntlet/teams-g1.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;GAeG;AAEH,MAAM,CAAC,MAAM,gBAAgB,GAAG,IAAI,CAAC;AAQrC,MAAM,CAAC,MAAM,WAAW,GAAuB;IAC7C;QACE,IAAI,EAAE,eAAe;QACrB,SAAS,EAAE,cAAc;QACzB,KAAK,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UAoDD;KACP;IACD;QACE,IAAI,EAAE,kBAAkB;QACxB,SAAS,EAAE,cAAc;QACzB,KAAK,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UAoDD;KACP;IACD;QACE,IAAI,EAAE,kBAAkB;QACxB,SAAS,EAAE,SAAS;QACpB,KAAK,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;eAoDI;KACZ;IACD;QACE,IAAI,EAAE,iBAAiB;QACvB,SAAS,EAAE,mBAAmB;QAC9B,KAAK,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAoDH;KACL;IACD;QACE,IAAI,EAAE,iBAAiB;QACvB,SAAS,EAAE,qBAAqB;QAChC,KAAK,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAoDJ;KACJ;IACD;QACE,IAAI,EAAE,oBAAoB;QAC1B,SAAS,EAAE,sBAAsB;QACjC,KAAK,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAoDH;KACL;IACD;QACE,IAAI,EAAE,cAAc;QACpB,SAAS,EAAE,iBAAiB;QAC5B,KAAK,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAoDH;KACL;IACD;QACE,IAAI,EAAE,kBAAkB;QACxB,SAAS,EAAE,aAAa;QACxB,KAAK,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAoDG;KACX;CACF,CAAC"}
@@ -0,0 +1,14 @@
1
+ /**
2
+ * Gauntlet members, version `g2` — real Smogon ADV (Gen 3) OU sample teams.
3
+ *
4
+ * Unlike `g1` (hand-authored), these are fetched verbatim from Smogon's official
5
+ * ADV OU Sample Teams resource (each Team's pokepaste URL is noted inline), so the
6
+ * Gauntlet reflects the real metagame. Every Team is asserted legal Gen 3 OU by a
7
+ * test. This resolves the `g1` provenance deviation; `g1` remains the default
8
+ * baseline (swapping the default is a deliberate rebaseline — ADR 0003).
9
+ *
10
+ * Source: https://www.smogon.com/forums/threads/adv-ou-sample-teams.3687813/
11
+ */
12
+ import type { GauntletTeamData } from './teams-g1.js';
13
+ export declare const GAUNTLET_G2_VERSION = "g2";
14
+ export declare const GAUNTLET_G2: GauntletTeamData[];