@pkmn/sim 0.7.9 → 0.7.10

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 (57) hide show
  1. package/build/cjs/config/formats.js +93 -89
  2. package/build/cjs/config/formats.js.map +1 -1
  3. package/build/cjs/data/aliases.js +1 -1
  4. package/build/cjs/data/formats-data.js +4 -0
  5. package/build/cjs/data/formats-data.js.map +1 -1
  6. package/build/cjs/data/learnsets.js +4793 -4255
  7. package/build/cjs/data/learnsets.js.map +1 -1
  8. package/build/cjs/data/mods/gen6/learnsets.js +0 -90
  9. package/build/cjs/data/mods/gen6/learnsets.js.map +1 -1
  10. package/build/cjs/data/mods/gen6/legality.js +1 -1
  11. package/build/cjs/data/mods/gen6/legality.js.map +1 -1
  12. package/build/cjs/data/mods/gen6/pokedex.js +0 -4
  13. package/build/cjs/data/mods/gen6/pokedex.js.map +1 -1
  14. package/build/cjs/data/mods/gen8/abilities.js +1115 -16
  15. package/build/cjs/data/mods/gen8/abilities.js.map +1 -1
  16. package/build/cjs/data/moves.js +9 -5
  17. package/build/cjs/data/moves.js.map +1 -1
  18. package/build/cjs/data/pokedex.js +18 -2
  19. package/build/cjs/data/pokedex.js.map +1 -1
  20. package/build/cjs/data/text/moves.js +1 -1
  21. package/build/cjs/data/text/moves.js.map +1 -1
  22. package/build/cjs/sim/battle-actions.js +4 -2
  23. package/build/cjs/sim/battle-actions.js.map +1 -1
  24. package/build/cjs/sim/dex-moves.js.map +1 -1
  25. package/build/cjs/sim/pokemon.js +4 -3
  26. package/build/cjs/sim/pokemon.js.map +1 -1
  27. package/build/cjs/sim/team-validator.js +1 -1
  28. package/build/esm/config/formats.mjs +93 -89
  29. package/build/esm/config/formats.mjs.map +1 -1
  30. package/build/esm/data/aliases.mjs +1 -1
  31. package/build/esm/data/formats-data.mjs +4 -0
  32. package/build/esm/data/formats-data.mjs.map +1 -1
  33. package/build/esm/data/learnsets.mjs +4793 -4255
  34. package/build/esm/data/learnsets.mjs.map +1 -1
  35. package/build/esm/data/mods/gen6/learnsets.mjs +0 -90
  36. package/build/esm/data/mods/gen6/learnsets.mjs.map +1 -1
  37. package/build/esm/data/mods/gen6/legality.mjs +1 -1
  38. package/build/esm/data/mods/gen6/legality.mjs.map +1 -1
  39. package/build/esm/data/mods/gen6/pokedex.mjs +0 -4
  40. package/build/esm/data/mods/gen6/pokedex.mjs.map +1 -1
  41. package/build/esm/data/mods/gen8/abilities.mjs +1115 -16
  42. package/build/esm/data/mods/gen8/abilities.mjs.map +1 -1
  43. package/build/esm/data/moves.mjs +9 -5
  44. package/build/esm/data/moves.mjs.map +1 -1
  45. package/build/esm/data/pokedex.mjs +18 -2
  46. package/build/esm/data/pokedex.mjs.map +1 -1
  47. package/build/esm/data/text/moves.mjs +1 -1
  48. package/build/esm/data/text/moves.mjs.map +1 -1
  49. package/build/esm/sim/battle-actions.mjs +4 -2
  50. package/build/esm/sim/battle-actions.mjs.map +1 -1
  51. package/build/esm/sim/dex-moves.mjs.map +1 -1
  52. package/build/esm/sim/pokemon.mjs +4 -3
  53. package/build/esm/sim/pokemon.mjs.map +1 -1
  54. package/build/esm/sim/team-validator.mjs +1 -1
  55. package/build/types/sim/dex-moves.d.ts +2 -0
  56. package/build/types/sim/pokemon.d.ts +1 -1
  57. package/package.json +2 -2
@@ -1,4 +1,105 @@
1
+ /*
2
+
3
+ Ratings and how they work:
4
+
5
+ -1: Detrimental
6
+ An ability that severely harms the user.
7
+ ex. Defeatist, Slow Start
8
+
9
+ 0: Useless
10
+ An ability with no overall benefit in a singles battle.
11
+ ex. Color Change, Plus
12
+
13
+ 1: Ineffective
14
+ An ability that has minimal effect or is only useful in niche situations.
15
+ ex. Light Metal, Suction Cups
16
+
17
+ 2: Useful
18
+ An ability that can be generally useful.
19
+ ex. Flame Body, Overcoat
20
+
21
+ 3: Effective
22
+ An ability with a strong effect on the user or foe.
23
+ ex. Chlorophyll, Sturdy
24
+
25
+ 4: Very useful
26
+ One of the more popular abilities. It requires minimal support to be effective.
27
+ ex. Adaptability, Magic Bounce
28
+
29
+ 5: Essential
30
+ The sort of ability that defines metagames.
31
+ ex. Imposter, Shadow Tag
32
+
33
+ */
1
34
  export const Abilities = {
35
+ noability: {
36
+ inherit: true,
37
+ rating: 0.1,
38
+ },
39
+ adaptability: {
40
+ inherit: true,
41
+ rating: 4,
42
+ },
43
+ aerilate: {
44
+ inherit: true,
45
+ rating: 4,
46
+ },
47
+ aftermath: {
48
+ inherit: true,
49
+ rating: 2.5,
50
+ },
51
+ airlock: {
52
+ inherit: true,
53
+ rating: 2,
54
+ },
55
+ analytic: {
56
+ inherit: true,
57
+ rating: 2.5,
58
+ },
59
+ angerpoint: {
60
+ inherit: true,
61
+ rating: 1.5,
62
+ },
63
+ anticipation: {
64
+ inherit: true,
65
+ rating: 0.5,
66
+ },
67
+ arenatrap: {
68
+ inherit: true,
69
+ rating: 5,
70
+ },
71
+ aromaveil: {
72
+ inherit: true,
73
+ rating: 2,
74
+ },
75
+ asoneglastrier: {
76
+ inherit: true,
77
+ rating: 3.5,
78
+ },
79
+ asonespectrier: {
80
+ inherit: true,
81
+ rating: 3.5,
82
+ },
83
+ aurabreak: {
84
+ inherit: true,
85
+ rating: 1,
86
+ },
87
+ baddreams: {
88
+ inherit: true,
89
+ rating: 1.5,
90
+ },
91
+ ballfetch: {
92
+ inherit: true,
93
+ rating: 0,
94
+ },
95
+ battery: {
96
+ inherit: true,
97
+ rating: 0,
98
+ },
99
+ battlearmor: {
100
+ inherit: true,
101
+ rating: 1,
102
+ },
2
103
  battlebond: {
3
104
  inherit: true,
4
105
  onSourceAfterFaint(length, target, source, effect) {
@@ -17,18 +118,385 @@ export const Abilities = {
17
118
  move.multihit = 3;
18
119
  }
19
120
  },
121
+ rating: 4,
122
+ },
123
+ beastboost: {
124
+ inherit: true,
125
+ rating: 3.5,
126
+ },
127
+ berserk: {
128
+ inherit: true,
129
+ rating: 2,
130
+ },
131
+ bigpecks: {
132
+ inherit: true,
133
+ rating: 0.5,
134
+ },
135
+ blaze: {
136
+ inherit: true,
137
+ rating: 2,
138
+ },
139
+ bulletproof: {
140
+ inherit: true,
141
+ rating: 3,
142
+ },
143
+ cheekpouch: {
144
+ inherit: true,
145
+ rating: 2,
146
+ },
147
+ chillingneigh: {
148
+ inherit: true,
149
+ rating: 3,
150
+ },
151
+ chlorophyll: {
152
+ inherit: true,
153
+ rating: 3,
154
+ },
155
+ clearbody: {
156
+ inherit: true,
157
+ rating: 2,
158
+ },
159
+ cloudnine: {
160
+ inherit: true,
161
+ rating: 2,
162
+ },
163
+ colorchange: {
164
+ inherit: true,
165
+ rating: 0,
166
+ },
167
+ comatose: {
168
+ inherit: true,
169
+ rating: 4,
170
+ },
171
+ competitive: {
172
+ inherit: true,
173
+ rating: 2.5,
174
+ },
175
+ compoundeyes: {
176
+ inherit: true,
177
+ rating: 3,
178
+ },
179
+ contrary: {
180
+ inherit: true,
181
+ rating: 4.5,
182
+ },
183
+ corrosion: {
184
+ inherit: true,
185
+ rating: 2.5,
186
+ },
187
+ cottondown: {
188
+ inherit: true,
189
+ rating: 2,
190
+ },
191
+ curiousmedicine: {
192
+ inherit: true,
193
+ rating: 0,
194
+ },
195
+ cursedbody: {
196
+ inherit: true,
197
+ rating: 2,
198
+ },
199
+ cutecharm: {
200
+ inherit: true,
201
+ rating: 0.5,
202
+ },
203
+ damp: {
204
+ inherit: true,
205
+ rating: 1,
206
+ },
207
+ dancer: {
208
+ inherit: true,
209
+ rating: 1.5,
210
+ },
211
+ darkaura: {
212
+ inherit: true,
213
+ rating: 3,
20
214
  },
21
215
  dauntlessshield: {
22
216
  inherit: true,
23
217
  onStart(pokemon) {
24
218
  this.boost({ def: 1 }, pokemon);
25
219
  },
220
+ rating: 3.5,
221
+ },
222
+ dazzling: {
223
+ inherit: true,
224
+ rating: 2.5,
225
+ },
226
+ defeatist: {
227
+ inherit: true,
228
+ rating: -1,
229
+ },
230
+ defiant: {
231
+ inherit: true,
232
+ rating: 2.5,
233
+ },
234
+ deltastream: {
235
+ inherit: true,
236
+ rating: 4,
237
+ },
238
+ desolateland: {
239
+ inherit: true,
240
+ rating: 4.5,
241
+ },
242
+ disguise: {
243
+ inherit: true,
244
+ rating: 3.5,
245
+ },
246
+ download: {
247
+ inherit: true,
248
+ rating: 3.5,
249
+ },
250
+ dragonsmaw: {
251
+ inherit: true,
252
+ rating: 3.5,
253
+ },
254
+ drizzle: {
255
+ inherit: true,
256
+ rating: 4,
257
+ },
258
+ drought: {
259
+ inherit: true,
260
+ rating: 4,
261
+ },
262
+ dryskin: {
263
+ inherit: true,
264
+ rating: 3,
265
+ },
266
+ earlybird: {
267
+ inherit: true,
268
+ rating: 1.5,
269
+ },
270
+ effectspore: {
271
+ inherit: true,
272
+ rating: 2,
273
+ },
274
+ electricsurge: {
275
+ inherit: true,
276
+ rating: 4,
277
+ },
278
+ emergencyexit: {
279
+ inherit: true,
280
+ rating: 1,
281
+ },
282
+ fairyaura: {
283
+ inherit: true,
284
+ rating: 3,
285
+ },
286
+ filter: {
287
+ inherit: true,
288
+ rating: 3,
289
+ },
290
+ flamebody: {
291
+ inherit: true,
292
+ rating: 2,
293
+ },
294
+ flareboost: {
295
+ inherit: true,
296
+ rating: 2,
297
+ },
298
+ flashfire: {
299
+ inherit: true,
300
+ rating: 3.5,
301
+ },
302
+ flowergift: {
303
+ inherit: true,
304
+ rating: 1,
305
+ },
306
+ flowerveil: {
307
+ inherit: true,
308
+ rating: 0,
309
+ },
310
+ fluffy: {
311
+ inherit: true,
312
+ rating: 3.5,
313
+ },
314
+ forecast: {
315
+ inherit: true,
316
+ rating: 2,
317
+ },
318
+ forewarn: {
319
+ inherit: true,
320
+ rating: 0.5,
321
+ },
322
+ friendguard: {
323
+ inherit: true,
324
+ rating: 0,
325
+ },
326
+ frisk: {
327
+ inherit: true,
328
+ rating: 1.5,
329
+ },
330
+ fullmetalbody: {
331
+ inherit: true,
332
+ rating: 2,
333
+ },
334
+ furcoat: {
335
+ inherit: true,
336
+ rating: 4,
337
+ },
338
+ galewings: {
339
+ inherit: true,
340
+ rating: 2.5,
341
+ },
342
+ galvanize: {
343
+ inherit: true,
344
+ rating: 4,
345
+ },
346
+ gluttony: {
347
+ inherit: true,
348
+ rating: 1.5,
349
+ },
350
+ gooey: {
351
+ inherit: true,
352
+ rating: 2,
353
+ },
354
+ gorillatactics: {
355
+ inherit: true,
356
+ rating: 4.5,
357
+ },
358
+ grasspelt: {
359
+ inherit: true,
360
+ rating: 0.5,
361
+ },
362
+ grassysurge: {
363
+ inherit: true,
364
+ rating: 4,
365
+ },
366
+ grimneigh: {
367
+ inherit: true,
368
+ rating: 3,
369
+ },
370
+ gulpmissile: {
371
+ inherit: true,
372
+ rating: 2.5,
373
+ },
374
+ guts: {
375
+ inherit: true,
376
+ rating: 3,
377
+ },
378
+ harvest: {
379
+ inherit: true,
380
+ rating: 2.5,
381
+ },
382
+ healer: {
383
+ inherit: true,
384
+ rating: 0,
385
+ },
386
+ heatproof: {
387
+ inherit: true,
388
+ rating: 2,
389
+ },
390
+ heavymetal: {
391
+ inherit: true,
392
+ rating: 0,
393
+ },
394
+ honeygather: {
395
+ inherit: true,
396
+ rating: 0,
397
+ },
398
+ hugepower: {
399
+ inherit: true,
400
+ rating: 5,
401
+ },
402
+ hungerswitch: {
403
+ inherit: true,
404
+ rating: 1,
405
+ },
406
+ hustle: {
407
+ inherit: true,
408
+ rating: 3.5,
409
+ },
410
+ hydration: {
411
+ inherit: true,
412
+ rating: 1.5,
413
+ },
414
+ hypercutter: {
415
+ inherit: true,
416
+ rating: 1.5,
417
+ },
418
+ icebody: {
419
+ inherit: true,
420
+ rating: 1,
421
+ },
422
+ iceface: {
423
+ inherit: true,
424
+ rating: 3,
425
+ },
426
+ icescales: {
427
+ inherit: true,
428
+ rating: 4,
429
+ },
430
+ illuminate: {
431
+ inherit: true,
432
+ rating: 0,
433
+ },
434
+ illusion: {
435
+ inherit: true,
436
+ rating: 4.5,
437
+ },
438
+ immunity: {
439
+ inherit: true,
440
+ rating: 2,
441
+ },
442
+ imposter: {
443
+ inherit: true,
444
+ rating: 5,
445
+ },
446
+ infiltrator: {
447
+ inherit: true,
448
+ rating: 2.5,
449
+ },
450
+ innardsout: {
451
+ inherit: true,
452
+ rating: 4,
453
+ },
454
+ innerfocus: {
455
+ inherit: true,
456
+ rating: 1.5,
457
+ },
458
+ insomnia: {
459
+ inherit: true,
460
+ rating: 2,
461
+ },
462
+ intimidate: {
463
+ inherit: true,
464
+ rating: 3.5,
26
465
  },
27
466
  intrepidsword: {
28
467
  inherit: true,
29
468
  onStart(pokemon) {
30
469
  this.boost({ atk: 1 }, pokemon);
31
470
  },
471
+ rating: 4,
472
+ },
473
+ ironbarbs: {
474
+ inherit: true,
475
+ rating: 2.5,
476
+ },
477
+ ironfist: {
478
+ inherit: true,
479
+ rating: 3,
480
+ },
481
+ justified: {
482
+ inherit: true,
483
+ rating: 2.5,
484
+ },
485
+ keeneye: {
486
+ inherit: true,
487
+ rating: 0.5,
488
+ },
489
+ klutz: {
490
+ inherit: true,
491
+ rating: -1,
492
+ },
493
+ leafguard: {
494
+ inherit: true,
495
+ rating: 0.5,
496
+ },
497
+ levitate: {
498
+ inherit: true,
499
+ rating: 3.5,
32
500
  },
33
501
  libero: {
34
502
  inherit: true,
@@ -43,26 +511,657 @@ export const Abilities = {
43
511
  }
44
512
  },
45
513
  onSwitchIn() { },
514
+ rating: 4.5,
46
515
  },
47
- protean: {
516
+ lightmetal: {
48
517
  inherit: true,
49
- onPrepareHit(source, target, move) {
50
- if (move.hasBounced || move.isFutureMove || move.sourceEffect === 'snatch')
51
- return;
52
- const type = move.type;
53
- if (type && type !== '???' && source.getTypes().join() !== type) {
54
- if (!source.setType(type))
55
- return;
56
- this.add('-start', source, 'typechange', type, '[from] ability: Protean');
57
- }
58
- },
59
- onSwitchIn() { },
518
+ rating: 1,
60
519
  },
61
- snowwarning: {
520
+ lightningrod: {
62
521
  inherit: true,
63
- onStart(source) {
64
- this.field.setWeather('hail');
65
- },
522
+ rating: 3,
523
+ },
524
+ limber: {
525
+ inherit: true,
526
+ rating: 2,
527
+ },
528
+ liquidooze: {
529
+ inherit: true,
530
+ rating: 1.5,
531
+ },
532
+ liquidvoice: {
533
+ inherit: true,
534
+ rating: 1.5,
535
+ },
536
+ longreach: {
537
+ inherit: true,
538
+ rating: 1,
539
+ },
540
+ magicbounce: {
541
+ inherit: true,
542
+ rating: 4,
543
+ },
544
+ magicguard: {
545
+ inherit: true,
546
+ rating: 4,
547
+ },
548
+ magician: {
549
+ inherit: true,
550
+ rating: 1.5,
551
+ },
552
+ magmaarmor: {
553
+ inherit: true,
554
+ rating: 1,
555
+ },
556
+ magnetpull: {
557
+ inherit: true,
558
+ rating: 4,
559
+ },
560
+ marvelscale: {
561
+ inherit: true,
562
+ rating: 2.5,
563
+ },
564
+ megalauncher: {
565
+ inherit: true,
566
+ rating: 3,
567
+ },
568
+ merciless: {
569
+ inherit: true,
570
+ rating: 1.5,
571
+ },
572
+ mimicry: {
573
+ inherit: true,
574
+ rating: 0.5,
575
+ },
576
+ minus: {
577
+ inherit: true,
578
+ rating: 0,
579
+ },
580
+ mirrorarmor: {
581
+ inherit: true,
582
+ rating: 2,
583
+ },
584
+ mistysurge: {
585
+ inherit: true,
586
+ rating: 3.5,
587
+ },
588
+ moldbreaker: {
589
+ inherit: true,
590
+ rating: 3.5,
591
+ },
592
+ moody: {
593
+ inherit: true,
594
+ rating: 5,
595
+ },
596
+ motordrive: {
597
+ inherit: true,
598
+ rating: 3,
599
+ },
600
+ moxie: {
601
+ inherit: true,
602
+ rating: 3,
603
+ },
604
+ multiscale: {
605
+ inherit: true,
606
+ rating: 3.5,
607
+ },
608
+ multitype: {
609
+ inherit: true,
610
+ rating: 4,
611
+ },
612
+ mummy: {
613
+ inherit: true,
614
+ rating: 2,
615
+ },
616
+ naturalcure: {
617
+ inherit: true,
618
+ rating: 2.5,
619
+ },
620
+ neuroforce: {
621
+ inherit: true,
622
+ rating: 2.5,
623
+ },
624
+ neutralizinggas: {
625
+ inherit: true,
626
+ rating: 4,
627
+ },
628
+ noguard: {
629
+ inherit: true,
630
+ rating: 4,
631
+ },
632
+ normalize: {
633
+ inherit: true,
634
+ rating: 0,
635
+ },
636
+ oblivious: {
637
+ inherit: true,
638
+ rating: 1.5,
639
+ },
640
+ overcoat: {
641
+ inherit: true,
642
+ rating: 2,
643
+ },
644
+ overgrow: {
645
+ inherit: true,
646
+ rating: 2,
647
+ },
648
+ owntempo: {
649
+ inherit: true,
650
+ rating: 1.5,
651
+ },
652
+ parentalbond: {
653
+ inherit: true,
654
+ rating: 4.5,
655
+ },
656
+ pastelveil: {
657
+ inherit: true,
658
+ rating: 2,
659
+ },
660
+ perishbody: {
661
+ inherit: true,
662
+ rating: 1,
663
+ },
664
+ pickpocket: {
665
+ inherit: true,
666
+ rating: 1,
667
+ },
668
+ pickup: {
669
+ inherit: true,
670
+ rating: 0.5,
671
+ },
672
+ pixilate: {
673
+ inherit: true,
674
+ rating: 4,
675
+ },
676
+ plus: {
677
+ inherit: true,
678
+ rating: 0,
679
+ },
680
+ poisonheal: {
681
+ inherit: true,
682
+ rating: 4,
683
+ },
684
+ poisonpoint: {
685
+ inherit: true,
686
+ rating: 1.5,
687
+ },
688
+ poisontouch: {
689
+ inherit: true,
690
+ rating: 2,
691
+ },
692
+ powerconstruct: {
693
+ inherit: true,
694
+ rating: 5,
695
+ },
696
+ powerofalchemy: {
697
+ inherit: true,
698
+ rating: 0,
699
+ },
700
+ powerspot: {
701
+ inherit: true,
702
+ rating: 1,
703
+ },
704
+ prankster: {
705
+ inherit: true,
706
+ rating: 4,
707
+ },
708
+ pressure: {
709
+ inherit: true,
710
+ rating: 2.5,
711
+ },
712
+ primordialsea: {
713
+ inherit: true,
714
+ rating: 4.5,
715
+ },
716
+ prismarmor: {
717
+ inherit: true,
718
+ rating: 3,
719
+ },
720
+ propellertail: {
721
+ inherit: true,
722
+ rating: 0,
723
+ },
724
+ protean: {
725
+ inherit: true,
726
+ onPrepareHit(source, target, move) {
727
+ if (move.hasBounced || move.isFutureMove || move.sourceEffect === 'snatch')
728
+ return;
729
+ const type = move.type;
730
+ if (type && type !== '???' && source.getTypes().join() !== type) {
731
+ if (!source.setType(type))
732
+ return;
733
+ this.add('-start', source, 'typechange', type, '[from] ability: Protean');
734
+ }
735
+ },
736
+ onSwitchIn() { },
737
+ rating: 4.5,
738
+ },
739
+ psychicsurge: {
740
+ inherit: true,
741
+ rating: 4,
742
+ },
743
+ punkrock: {
744
+ inherit: true,
745
+ rating: 3.5,
746
+ },
747
+ purepower: {
748
+ inherit: true,
749
+ rating: 5,
750
+ },
751
+ queenlymajesty: {
752
+ inherit: true,
753
+ rating: 2.5,
754
+ },
755
+ quickdraw: {
756
+ inherit: true,
757
+ rating: 2.5,
758
+ },
759
+ quickfeet: {
760
+ inherit: true,
761
+ rating: 2.5,
762
+ },
763
+ raindish: {
764
+ inherit: true,
765
+ rating: 1.5,
766
+ },
767
+ rattled: {
768
+ inherit: true,
769
+ rating: 1.5,
770
+ },
771
+ receiver: {
772
+ inherit: true,
773
+ rating: 0,
774
+ },
775
+ reckless: {
776
+ inherit: true,
777
+ rating: 3,
778
+ },
779
+ refrigerate: {
780
+ inherit: true,
781
+ rating: 4,
782
+ },
783
+ regenerator: {
784
+ inherit: true,
785
+ rating: 4.5,
786
+ },
787
+ ripen: {
788
+ inherit: true,
789
+ rating: 2,
790
+ },
791
+ rivalry: {
792
+ inherit: true,
793
+ rating: 0,
794
+ },
795
+ rkssystem: {
796
+ inherit: true,
797
+ rating: 4,
798
+ },
799
+ rockhead: {
800
+ inherit: true,
801
+ rating: 3,
802
+ },
803
+ roughskin: {
804
+ inherit: true,
805
+ rating: 2.5,
806
+ },
807
+ runaway: {
808
+ inherit: true,
809
+ rating: 0,
810
+ },
811
+ sandforce: {
812
+ inherit: true,
813
+ rating: 2,
814
+ },
815
+ sandrush: {
816
+ inherit: true,
817
+ rating: 3,
818
+ },
819
+ sandspit: {
820
+ inherit: true,
821
+ rating: 2,
822
+ },
823
+ sandstream: {
824
+ inherit: true,
825
+ rating: 4,
826
+ },
827
+ sandveil: {
828
+ inherit: true,
829
+ rating: 1.5,
830
+ },
831
+ sapsipper: {
832
+ inherit: true,
833
+ rating: 3,
834
+ },
835
+ schooling: {
836
+ inherit: true,
837
+ rating: 3,
838
+ },
839
+ scrappy: {
840
+ inherit: true,
841
+ rating: 3,
842
+ },
843
+ screencleaner: {
844
+ inherit: true,
845
+ rating: 2,
846
+ },
847
+ serenegrace: {
848
+ inherit: true,
849
+ rating: 3.5,
850
+ },
851
+ shadowshield: {
852
+ inherit: true,
853
+ rating: 3.5,
854
+ },
855
+ shadowtag: {
856
+ inherit: true,
857
+ rating: 5,
858
+ },
859
+ shedskin: {
860
+ inherit: true,
861
+ rating: 3,
862
+ },
863
+ sheerforce: {
864
+ inherit: true,
865
+ rating: 3.5,
866
+ },
867
+ shellarmor: {
868
+ inherit: true,
869
+ rating: 1,
870
+ },
871
+ shielddust: {
872
+ inherit: true,
873
+ rating: 2,
874
+ },
875
+ shieldsdown: {
876
+ inherit: true,
877
+ rating: 3,
878
+ },
879
+ simple: {
880
+ inherit: true,
881
+ rating: 4,
882
+ },
883
+ skilllink: {
884
+ inherit: true,
885
+ rating: 3,
886
+ },
887
+ slowstart: {
888
+ inherit: true,
889
+ rating: -1,
890
+ },
891
+ slushrush: {
892
+ inherit: true,
893
+ rating: 3,
894
+ },
895
+ sniper: {
896
+ inherit: true,
897
+ rating: 2,
898
+ },
899
+ snowcloak: {
900
+ inherit: true,
901
+ rating: 1.5,
902
+ },
903
+ snowwarning: {
904
+ inherit: true,
905
+ onStart(source) {
906
+ this.field.setWeather('hail');
907
+ },
908
+ rating: 4,
909
+ },
910
+ solarpower: {
911
+ inherit: true,
912
+ rating: 2,
913
+ },
914
+ solidrock: {
915
+ inherit: true,
916
+ rating: 3,
917
+ },
918
+ soulheart: {
919
+ inherit: true,
920
+ rating: 3.5,
921
+ },
922
+ soundproof: {
923
+ inherit: true,
924
+ rating: 1.5,
925
+ },
926
+ speedboost: {
927
+ inherit: true,
928
+ rating: 4.5,
929
+ },
930
+ stakeout: {
931
+ inherit: true,
932
+ rating: 4.5,
933
+ },
934
+ stall: {
935
+ inherit: true,
936
+ rating: -1,
937
+ },
938
+ stalwart: {
939
+ inherit: true,
940
+ rating: 0,
941
+ },
942
+ stamina: {
943
+ inherit: true,
944
+ rating: 3.5,
945
+ },
946
+ stancechange: {
947
+ inherit: true,
948
+ rating: 4,
949
+ },
950
+ static: {
951
+ inherit: true,
952
+ rating: 2,
953
+ },
954
+ steadfast: {
955
+ inherit: true,
956
+ rating: 1,
957
+ },
958
+ steamengine: {
959
+ inherit: true,
960
+ rating: 2,
961
+ },
962
+ steelworker: {
963
+ inherit: true,
964
+ rating: 3.5,
965
+ },
966
+ steelyspirit: {
967
+ inherit: true,
968
+ rating: 3.5,
969
+ },
970
+ stench: {
971
+ inherit: true,
972
+ rating: 0.5,
973
+ },
974
+ stickyhold: {
975
+ inherit: true,
976
+ rating: 2,
977
+ },
978
+ stormdrain: {
979
+ inherit: true,
980
+ rating: 3,
981
+ },
982
+ strongjaw: {
983
+ inherit: true,
984
+ rating: 3,
985
+ },
986
+ sturdy: {
987
+ inherit: true,
988
+ rating: 3,
989
+ },
990
+ suctioncups: {
991
+ inherit: true,
992
+ rating: 1,
993
+ },
994
+ superluck: {
995
+ inherit: true,
996
+ rating: 1.5,
997
+ },
998
+ surgesurfer: {
999
+ inherit: true,
1000
+ rating: 3,
1001
+ },
1002
+ swarm: {
1003
+ inherit: true,
1004
+ rating: 2,
1005
+ },
1006
+ sweetveil: {
1007
+ inherit: true,
1008
+ rating: 2,
1009
+ },
1010
+ swiftswim: {
1011
+ inherit: true,
1012
+ rating: 3,
1013
+ },
1014
+ symbiosis: {
1015
+ inherit: true,
1016
+ rating: 0,
1017
+ },
1018
+ synchronize: {
1019
+ inherit: true,
1020
+ rating: 2,
1021
+ },
1022
+ tangledfeet: {
1023
+ inherit: true,
1024
+ rating: 1,
1025
+ },
1026
+ tanglinghair: {
1027
+ inherit: true,
1028
+ rating: 2,
1029
+ },
1030
+ technician: {
1031
+ inherit: true,
1032
+ rating: 3.5,
1033
+ },
1034
+ telepathy: {
1035
+ inherit: true,
1036
+ rating: 0,
1037
+ },
1038
+ teravolt: {
1039
+ inherit: true,
1040
+ rating: 3.5,
1041
+ },
1042
+ thickfat: {
1043
+ inherit: true,
1044
+ rating: 3.5,
1045
+ },
1046
+ tintedlens: {
1047
+ inherit: true,
1048
+ rating: 4,
1049
+ },
1050
+ torrent: {
1051
+ inherit: true,
1052
+ rating: 2,
1053
+ },
1054
+ toughclaws: {
1055
+ inherit: true,
1056
+ rating: 3.5,
1057
+ },
1058
+ toxicboost: {
1059
+ inherit: true,
1060
+ rating: 2.5,
1061
+ },
1062
+ trace: {
1063
+ inherit: true,
1064
+ rating: 2.5,
1065
+ },
1066
+ transistor: {
1067
+ inherit: true,
1068
+ rating: 3.5,
1069
+ },
1070
+ triage: {
1071
+ inherit: true,
1072
+ rating: 3.5,
1073
+ },
1074
+ truant: {
1075
+ inherit: true,
1076
+ rating: -1,
1077
+ },
1078
+ turboblaze: {
1079
+ inherit: true,
1080
+ rating: 3.5,
1081
+ },
1082
+ unaware: {
1083
+ inherit: true,
1084
+ rating: 4,
1085
+ },
1086
+ unburden: {
1087
+ inherit: true,
1088
+ rating: 3.5,
1089
+ },
1090
+ unnerve: {
1091
+ inherit: true,
1092
+ rating: 1.5,
1093
+ },
1094
+ unseenfist: {
1095
+ inherit: true,
1096
+ rating: 2,
1097
+ },
1098
+ victorystar: {
1099
+ inherit: true,
1100
+ rating: 2,
1101
+ },
1102
+ vitalspirit: {
1103
+ inherit: true,
1104
+ rating: 2,
1105
+ },
1106
+ voltabsorb: {
1107
+ inherit: true,
1108
+ rating: 3.5,
1109
+ },
1110
+ wanderingspirit: {
1111
+ inherit: true,
1112
+ rating: 2.5,
1113
+ },
1114
+ waterabsorb: {
1115
+ inherit: true,
1116
+ rating: 3.5,
1117
+ },
1118
+ waterbubble: {
1119
+ inherit: true,
1120
+ rating: 4.5,
1121
+ },
1122
+ watercompaction: {
1123
+ inherit: true,
1124
+ rating: 1.5,
1125
+ },
1126
+ waterveil: {
1127
+ inherit: true,
1128
+ rating: 2,
1129
+ },
1130
+ weakarmor: {
1131
+ inherit: true,
1132
+ rating: 1,
1133
+ },
1134
+ whitesmoke: {
1135
+ inherit: true,
1136
+ rating: 2,
1137
+ },
1138
+ wimpout: {
1139
+ inherit: true,
1140
+ rating: 1,
1141
+ },
1142
+ wonderguard: {
1143
+ inherit: true,
1144
+ rating: 5,
1145
+ },
1146
+ wonderskin: {
1147
+ inherit: true,
1148
+ rating: 2,
1149
+ },
1150
+ zenmode: {
1151
+ inherit: true,
1152
+ rating: 0,
1153
+ },
1154
+ mountaineer: {
1155
+ inherit: true,
1156
+ rating: 3,
1157
+ },
1158
+ rebound: {
1159
+ inherit: true,
1160
+ rating: 3,
1161
+ },
1162
+ persistent: {
1163
+ inherit: true,
1164
+ rating: 3,
66
1165
  },
67
1166
  };
68
1167
  //# sourceMappingURL=abilities.mjs.map