@pkmn/sim 0.7.17 → 0.7.19

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 (126) hide show
  1. package/build/cjs/config/formats.js +43 -39
  2. package/build/cjs/config/formats.js.map +1 -1
  3. package/build/cjs/data/abilities.js +43 -28
  4. package/build/cjs/data/abilities.js.map +1 -1
  5. package/build/cjs/data/aliases.js +3 -0
  6. package/build/cjs/data/aliases.js.map +1 -1
  7. package/build/cjs/data/formats-data.js +8 -12
  8. package/build/cjs/data/formats-data.js.map +1 -1
  9. package/build/cjs/data/items.js +6 -8
  10. package/build/cjs/data/items.js.map +1 -1
  11. package/build/cjs/data/learnsets.js +437 -167
  12. package/build/cjs/data/learnsets.js.map +1 -1
  13. package/build/cjs/data/legality.js +2 -2
  14. package/build/cjs/data/legality.js.map +1 -1
  15. package/build/cjs/data/mods/gen1/formats-data.js +3 -3
  16. package/build/cjs/data/mods/gen1/formats-data.js.map +1 -1
  17. package/build/cjs/data/mods/gen1/moves.js +1 -1
  18. package/build/cjs/data/mods/gen1/moves.js.map +1 -1
  19. package/build/cjs/data/mods/gen1/scripts.js +2 -2
  20. package/build/cjs/data/mods/gen1/scripts.js.map +1 -1
  21. package/build/cjs/data/mods/gen2/formats-data.js +5 -5
  22. package/build/cjs/data/mods/gen2/formats-data.js.map +1 -1
  23. package/build/cjs/data/mods/gen2/moves.js +2 -2
  24. package/build/cjs/data/mods/gen2/moves.js.map +1 -1
  25. package/build/cjs/data/mods/gen3/formats-data.js +6 -6
  26. package/build/cjs/data/mods/gen3/formats-data.js.map +1 -1
  27. package/build/cjs/data/mods/gen4/formats-data.js +12 -11
  28. package/build/cjs/data/mods/gen4/formats-data.js.map +1 -1
  29. package/build/cjs/data/mods/gen4/moves.js +1 -1
  30. package/build/cjs/data/mods/gen4/moves.js.map +1 -1
  31. package/build/cjs/data/mods/gen5/formats-data.js +4 -7
  32. package/build/cjs/data/mods/gen5/formats-data.js.map +1 -1
  33. package/build/cjs/data/mods/gen7/abilities.js +4 -4
  34. package/build/cjs/data/mods/gen7/abilities.js.map +1 -1
  35. package/build/cjs/data/mods/gen8/abilities.js +1 -0
  36. package/build/cjs/data/mods/gen8/abilities.js.map +1 -1
  37. package/build/cjs/data/moves.js +4 -4
  38. package/build/cjs/data/moves.js.map +1 -1
  39. package/build/cjs/data/pokedex.js +14 -14
  40. package/build/cjs/data/pokedex.js.map +1 -1
  41. package/build/cjs/sim/battle.js +6 -3
  42. package/build/cjs/sim/battle.js.map +1 -1
  43. package/build/cjs/sim/dex-conditions.js.map +1 -1
  44. package/build/cjs/sim/dex.js +0 -1
  45. package/build/cjs/sim/dex.js.map +1 -1
  46. package/build/cjs/sim/pokemon.js +21 -9
  47. package/build/cjs/sim/pokemon.js.map +1 -1
  48. package/build/esm/config/formats.mjs +43 -39
  49. package/build/esm/config/formats.mjs.map +1 -1
  50. package/build/esm/data/abilities.mjs +43 -28
  51. package/build/esm/data/abilities.mjs.map +1 -1
  52. package/build/esm/data/aliases.mjs +3 -0
  53. package/build/esm/data/aliases.mjs.map +1 -1
  54. package/build/esm/data/formats-data.mjs +8 -12
  55. package/build/esm/data/formats-data.mjs.map +1 -1
  56. package/build/esm/data/index.mjs +11 -11
  57. package/build/esm/data/items.mjs +6 -8
  58. package/build/esm/data/items.mjs.map +1 -1
  59. package/build/esm/data/learnsets.mjs +437 -167
  60. package/build/esm/data/learnsets.mjs.map +1 -1
  61. package/build/esm/data/legality.mjs +2 -2
  62. package/build/esm/data/legality.mjs.map +1 -1
  63. package/build/esm/data/mods/gen1/formats-data.mjs +3 -3
  64. package/build/esm/data/mods/gen1/formats-data.mjs.map +1 -1
  65. package/build/esm/data/mods/gen1/index.mjs +7 -7
  66. package/build/esm/data/mods/gen1/moves.mjs +1 -1
  67. package/build/esm/data/mods/gen1/moves.mjs.map +1 -1
  68. package/build/esm/data/mods/gen1/scripts.mjs +2 -2
  69. package/build/esm/data/mods/gen1/scripts.mjs.map +1 -1
  70. package/build/esm/data/mods/gen2/formats-data.mjs +5 -5
  71. package/build/esm/data/mods/gen2/formats-data.mjs.map +1 -1
  72. package/build/esm/data/mods/gen2/index.mjs +8 -8
  73. package/build/esm/data/mods/gen2/moves.mjs +2 -2
  74. package/build/esm/data/mods/gen2/moves.mjs.map +1 -1
  75. package/build/esm/data/mods/gen3/formats-data.mjs +6 -6
  76. package/build/esm/data/mods/gen3/formats-data.mjs.map +1 -1
  77. package/build/esm/data/mods/gen3/index.mjs +7 -7
  78. package/build/esm/data/mods/gen4/formats-data.mjs +12 -11
  79. package/build/esm/data/mods/gen4/formats-data.mjs.map +1 -1
  80. package/build/esm/data/mods/gen4/index.mjs +8 -8
  81. package/build/esm/data/mods/gen4/moves.mjs +1 -1
  82. package/build/esm/data/mods/gen4/moves.mjs.map +1 -1
  83. package/build/esm/data/mods/gen5/formats-data.mjs +4 -7
  84. package/build/esm/data/mods/gen5/formats-data.mjs.map +1 -1
  85. package/build/esm/data/mods/gen5/index.mjs +9 -9
  86. package/build/esm/data/mods/gen6/index.mjs +8 -8
  87. package/build/esm/data/mods/gen7/abilities.mjs +4 -4
  88. package/build/esm/data/mods/gen7/abilities.mjs.map +1 -1
  89. package/build/esm/data/mods/gen7/index.mjs +7 -7
  90. package/build/esm/data/mods/gen8/abilities.mjs +1 -0
  91. package/build/esm/data/mods/gen8/abilities.mjs.map +1 -1
  92. package/build/esm/data/mods/gen8/index.mjs +7 -7
  93. package/build/esm/data/moves.mjs +4 -4
  94. package/build/esm/data/moves.mjs.map +1 -1
  95. package/build/esm/data/pokedex.mjs +14 -14
  96. package/build/esm/data/pokedex.mjs.map +1 -1
  97. package/build/esm/lib/index.mjs +2 -2
  98. package/build/esm/sim/battle-actions.mjs +1 -1
  99. package/build/esm/sim/battle-stream.mjs +3 -3
  100. package/build/esm/sim/battle.mjs +16 -13
  101. package/build/esm/sim/battle.mjs.map +1 -1
  102. package/build/esm/sim/dex-abilities.mjs +1 -1
  103. package/build/esm/sim/dex-conditions.mjs +1 -1
  104. package/build/esm/sim/dex-conditions.mjs.map +1 -1
  105. package/build/esm/sim/dex-data.mjs +1 -1
  106. package/build/esm/sim/dex-formats.mjs +4 -4
  107. package/build/esm/sim/dex-items.mjs +1 -1
  108. package/build/esm/sim/dex-moves.mjs +2 -2
  109. package/build/esm/sim/dex-species.mjs +1 -1
  110. package/build/esm/sim/dex.mjs +30 -31
  111. package/build/esm/sim/dex.mjs.map +1 -1
  112. package/build/esm/sim/field.mjs +2 -2
  113. package/build/esm/sim/index.mjs +13 -13
  114. package/build/esm/sim/pokemon.mjs +23 -11
  115. package/build/esm/sim/pokemon.mjs.map +1 -1
  116. package/build/esm/sim/side.mjs +4 -4
  117. package/build/esm/sim/state.mjs +6 -6
  118. package/build/esm/sim/team-validator.mjs +5 -5
  119. package/build/esm/sim/teams.mjs +1 -1
  120. package/build/esm/sim/tools/exhaustive-runner.mjs +4 -4
  121. package/build/esm/sim/tools/index.mjs +2 -2
  122. package/build/esm/sim/tools/random-player-ai.mjs +2 -2
  123. package/build/esm/sim/tools/runner.mjs +6 -6
  124. package/build/types/sim/dex-conditions.d.ts +7 -6
  125. package/build/types/sim/pokemon.d.ts +2 -0
  126. package/package.json +1 -1
@@ -37842,7 +37842,7 @@ export const Learnsets = {
37842
37842
  ]
37843
37843
  }
37844
37844
  },
37845
- taurospaldea: {
37845
+ taurospaldeacombat: {
37846
37846
  learnset: {
37847
37847
  assurance: ['9L15'],
37848
37848
  bodypress: ['9M'],
@@ -37893,7 +37893,7 @@ export const Learnsets = {
37893
37893
  zenheadbutt: ['9M', '9L30']
37894
37894
  }
37895
37895
  },
37896
- taurospaldeafire: {
37896
+ taurospaldeablaze: {
37897
37897
  learnset: {
37898
37898
  bodypress: ['9M'],
37899
37899
  bodyslam: ['9M'],
@@ -37948,7 +37948,7 @@ export const Learnsets = {
37948
37948
  zenheadbutt: ['9M', '9L30']
37949
37949
  }
37950
37950
  },
37951
- taurospaldeawater: {
37951
+ taurospaldeaaqua: {
37952
37952
  learnset: {
37953
37953
  aquajet: ['9L15'],
37954
37954
  bodypress: ['9M'],
@@ -131267,7 +131267,12 @@ export const Learnsets = {
131267
131267
  attract: ['8M', '7M', '4M'],
131268
131268
  avalanche: ['9M', '9L31', '8M', '8L31', '7L48', '4M'],
131269
131269
  blizzard: ['9M', '8M', '7M', '4M'],
131270
- bugbite: ['7M', '4T'],
131270
+ bugbite: [
131271
+ '9E', '8E', '7T',
131272
+ '7E', '6T', '6E',
131273
+ '5T', '5E', '4T',
131274
+ '4E'
131275
+ ],
131271
131276
  bugbuzz: ['9M', '9L50', '8M', '8L50', '7L43', '4L42'],
131272
131277
  captivate: ['4M'],
131273
131278
  confide: ['7M'],
@@ -131294,6 +131299,7 @@ export const Learnsets = {
131294
131299
  icefang: ['9M', '8M'],
131295
131300
  icepunch: ['9M', '8M', '7L1'],
131296
131301
  iceshard: ['9L15', '8L15', '7L5', '4L8'],
131302
+ icespinner: ['9M'],
131297
131303
  iciclecrash: ['9L45', '8L45', '7L39'],
131298
131304
  icywind: [
131299
131305
  '9M', '9L20',
@@ -131304,7 +131310,8 @@ export const Learnsets = {
131304
131310
  leechlife: ['9M', '8M', '7M', '4L5'],
131305
131311
  leer: ['9L1', '8L1', '7L1', '4L1'],
131306
131312
  naturalgift: ['4M'],
131307
- pinmissile: ['8M', '7E', '4E'],
131313
+ pinmissile: ['9E', '8M', '7E', '6E', '5E', '4E'],
131314
+ pounce: ['9M'],
131308
131315
  protect: ['9M', '8M', '7M', '4M'],
131309
131316
  raindance: ['9M', '8M', '7M', '4M'],
131310
131317
  rest: ['9M', '8M', '7M', '4M'],
@@ -131324,9 +131331,13 @@ export const Learnsets = {
131324
131331
  spikes: ['9M', '8M', '7E', '4E'],
131325
131332
  strength: ['6M', '5M'],
131326
131333
  stringshot: ['9E', '8E', '4T'],
131327
- strugglebug: ['9M', '8E', '7M'],
131334
+ strugglebug: ['9M', '9E', '8E', '7M'],
131328
131335
  substitute: ['9M', '8M', '7M', '4M'],
131329
- superpower: ['8M', '7T', '7E', '4T', '4E'],
131336
+ superpower: [
131337
+ '8M', '7T', '7E',
131338
+ '6T', '6E', '5T',
131339
+ '5E', '4T', '4E'
131340
+ ],
131330
131341
  swagger: ['7M', '4M'],
131331
131342
  swift: ['9M', '8M'],
131332
131343
  swordsdance: ['9M', '8M', '7M', '4M'],
@@ -131334,6 +131345,7 @@ export const Learnsets = {
131334
131345
  taunt: ['9M', '8M', '7M', '4M'],
131335
131346
  terablast: ['9M'],
131336
131347
  toxic: ['7M', '4M'],
131348
+ trailblaze: ['9M'],
131337
131349
  uturn: ['9M', '8M', '7M', '4M'],
131338
131350
  waterpulse: ['9M', '6T', '4M'],
131339
131351
  xscissor: [
@@ -131357,10 +131369,11 @@ export const Learnsets = {
131357
131369
  blizzard: ['9M', '8M', '7M', '4M'],
131358
131370
  brickbreak: ['9M', '8M', '7M', '4M'],
131359
131371
  brutalswing: ['8M', '7M'],
131360
- bugbite: ['4T'],
131372
+ bugbite: ['7T', '6T', '5T', '4T'],
131361
131373
  bugbuzz: ['9M', '9L60', '8M', '8L60', '7L46', '4L42'],
131362
131374
  bulldoze: ['9M', '8M', '7M'],
131363
131375
  captivate: ['4M'],
131376
+ closecombat: ['9M'],
131364
131377
  confide: ['7M'],
131365
131378
  counter: ['4T'],
131366
131379
  cut: ['4M'],
@@ -131394,6 +131407,7 @@ export const Learnsets = {
131394
131407
  '4L30'
131395
131408
  ],
131396
131409
  iceshard: ['9L15', '8L15', '7L5', '4L5'],
131410
+ icespinner: ['9M'],
131397
131411
  iciclecrash: ['9L53', '8L53', '7L41'],
131398
131412
  iciclespear: ['9L1', '8M', '8L1', '7L1'],
131399
131413
  icywind: [
@@ -131409,6 +131423,7 @@ export const Learnsets = {
131409
131423
  nastyplot: ['9M', '8M'],
131410
131424
  naturalgift: ['4M'],
131411
131425
  pinmissile: ['8M'],
131426
+ pounce: ['9M'],
131412
131427
  protect: ['9M', '8M', '7M', '4M'],
131413
131428
  raindance: ['9M', '8M', '7M', '4M'],
131414
131429
  rest: ['9M', '8M', '7M', '4M'],
@@ -131432,13 +131447,14 @@ export const Learnsets = {
131432
131447
  stringshot: ['4T'],
131433
131448
  strugglebug: ['9M', '7M'],
131434
131449
  substitute: ['9M', '8M', '7M', '4M'],
131435
- superpower: ['8M', '4T'],
131450
+ superpower: ['8M', '7T', '6T', '5T', '4T'],
131436
131451
  swagger: ['7M', '4M'],
131437
131452
  swift: ['9M', '8M'],
131438
131453
  swordsdance: ['9M', '8M', '7M', '4M'],
131439
131454
  taunt: ['9M', '8M', '7M', '4M'],
131440
131455
  terablast: ['9M'],
131441
131456
  toxic: ['7M', '4M'],
131457
+ trailblaze: ['9M'],
131442
131458
  tripleaxel: ['8T'],
131443
131459
  uturn: ['9M', '8M', '7M', '4M'],
131444
131460
  waterpulse: ['9M', '6T', '4M'],
@@ -131452,7 +131468,12 @@ export const Learnsets = {
131452
131468
  },
131453
131469
  revenankh: {
131454
131470
  learnset: {
131455
- ancientpower: ['4T'],
131471
+ ancientpower: [
131472
+ '9E', '8E',
131473
+ '7E', '6E',
131474
+ '5E', '4T',
131475
+ '4E'
131476
+ ],
131456
131477
  armthrust: ['9L5', '8L5', '7L13', '4L18'],
131457
131478
  attract: ['8M', '7M', '4M'],
131458
131479
  bide: ['7L1', '4L1'],
@@ -131464,13 +131485,15 @@ export const Learnsets = {
131464
131485
  bulkup: ['9M', '8M', '7M', '4M'],
131465
131486
  bulldoze: ['9M', '8M', '7M'],
131466
131487
  captivate: ['4M'],
131488
+ closecombat: ['9M'],
131467
131489
  coaching: ['8T'],
131468
131490
  confide: ['7M'],
131491
+ confuseray: ['9M'],
131469
131492
  counter: ['9E', '8E', '7E', '4T'],
131470
131493
  curse: ['9E', '8E', '7E', '4E'],
131471
131494
  destinybond: ['9E', '8E', '7E', '4E'],
131472
131495
  doubleteam: ['7M', '4M'],
131473
- drainpunch: ['9M', '9L55', '8M', '8L55', '7M', '4M'],
131496
+ drainpunch: ['9M', '9L50', '8M', '8L55', '7M', '4M'],
131474
131497
  dreameater: ['7M', '4M'],
131475
131498
  dualchop: ['7T'],
131476
131499
  earthquake: ['9M', '8M', '7M', '4M'],
@@ -131479,12 +131502,12 @@ export const Learnsets = {
131479
131502
  facade: ['9M', '8M', '7M', '4M'],
131480
131503
  fling: ['9M', '8M', '7M', '4M'],
131481
131504
  focusblast: ['9M', '8M', '7M', '4M'],
131482
- focuspunch: ['9L70', '8L70', '7T', '4M'],
131505
+ focuspunch: ['9L75', '8L75', '7T', '4M'],
131483
131506
  forcepalm: ['9E', '8E', '7E', '4E'],
131484
131507
  frustration: ['7M', '4M'],
131485
131508
  gigaimpact: ['9M', '8M', '7M', '4M'],
131486
131509
  glare: ['9L35', '8L35', '7L26', '4L26'],
131487
- hammerarm: ['9L65', '8L65', '7L57', '4L44'],
131510
+ hammerarm: ['9L60', '8L65', '7L57', '4L44'],
131488
131511
  headbutt: ['7T'],
131489
131512
  helpinghand: ['9M', '8M', '7T', '4T'],
131490
131513
  hex: ['9M', '8M', '7E'],
@@ -131506,9 +131529,9 @@ export const Learnsets = {
131506
131529
  ominouswind: ['7E', '4T', '4E'],
131507
131530
  painsplit: ['7T', '4T'],
131508
131531
  payback: ['9L20', '8M', '8L20', '7L38', '4M'],
131509
- poltergeist: ['8T'],
131532
+ poltergeist: ['9L65', '8T'],
131510
131533
  poweruppunch: ['7M'],
131511
- powerwhip: ['8M', '7L52', '4L38'],
131534
+ powerwhip: ['9L70', '8M', '8L70', '7L52', '4L38'],
131512
131535
  protect: ['9M', '8M', '7M', '4M'],
131513
131536
  psychup: ['7M', '4M'],
131514
131537
  punishment: ['7L71', '4L52'],
@@ -131537,13 +131560,15 @@ export const Learnsets = {
131537
131560
  spite: ['7T', '4T'],
131538
131561
  strength: ['6M', '5M', '4M'],
131539
131562
  substitute: ['9M', '8M', '7M', '4M'],
131540
- suckerpunch: ['9L60', '8L60', '4T'],
131563
+ suckerpunch: ['9L55', '8L60', '4T'],
131541
131564
  sunnyday: ['9M', '8M', '7M', '4M'],
131542
- superpower: ['8M', '7T', '4T'],
131565
+ superpower: ['8M', '7T', '6T', '5T', '4T'],
131543
131566
  swagger: ['7M', '4M'],
131567
+ takedown: ['9M'],
131544
131568
  taunt: ['9M', '8M', '7M', '4M'],
131545
131569
  telekinesis: ['7M'],
131546
131570
  terablast: ['9M'],
131571
+ thunderpunch: ['9M'],
131547
131572
  torment: ['7M', '4M'],
131548
131573
  toxic: ['7M', '4M'],
131549
131574
  trick: ['9M', '8M', '7T', '4T'],
@@ -131598,6 +131623,7 @@ export const Learnsets = {
131598
131623
  grassyterrain: ['9M', '8M', '7E'],
131599
131624
  growth: ['9L12', '8L12', '7L28', '4L5'],
131600
131625
  headbutt: ['4T'],
131626
+ heatcrash: ['9L44', '8M', '8L44'],
131601
131627
  heatwave: ['9M', '8M', '7T', '4T'],
131602
131628
  hiddenpower: ['7M', '4M'],
131603
131629
  incinerate: ['7M'],
@@ -131639,13 +131665,20 @@ export const Learnsets = {
131639
131665
  swift: ['9M', '8M'],
131640
131666
  swordsdance: ['9M', '8M', '7M', '4M'],
131641
131667
  synthesis: ['9L25', '8L25', '7T', '7L14', '4T', '4L37'],
131668
+ takedown: ['9M'],
131642
131669
  terablast: ['9M'],
131643
131670
  terrainpulse: ['8T'],
131644
131671
  toxic: ['7M', '4M'],
131672
+ trailblaze: ['9M'],
131645
131673
  watersport: ['7E', '4E'],
131646
131674
  wildcharge: ['9M', '8M'],
131647
131675
  willowisp: ['9M', '8M', '7M', '4M'],
131648
- worryseed: ['7T', '4T'],
131676
+ worryseed: [
131677
+ '9E', '8E', '7T',
131678
+ '7E', '6T', '6E',
131679
+ '5T', '5E', '4T',
131680
+ '4E'
131681
+ ],
131649
131682
  zenheadbutt: ['9M', '8M']
131650
131683
  }
131651
131684
  },
@@ -131697,6 +131730,7 @@ export const Learnsets = {
131697
131730
  grassyterrain: ['9M', '8M'],
131698
131731
  growth: ['9L12', '8L12', '7L28', '4L5'],
131699
131732
  headbutt: ['4T'],
131733
+ heatcrash: ['9L62', '8M', '8L62'],
131700
131734
  heatwave: ['9M', '8M', '7T', '4T'],
131701
131735
  hiddenpower: ['7M', '4M'],
131702
131736
  incinerate: ['7M'],
@@ -131745,12 +131779,14 @@ export const Learnsets = {
131745
131779
  swift: ['9M', '8M'],
131746
131780
  swordsdance: ['9M', '8M', '7M', '4M'],
131747
131781
  synthesis: ['9L27', '8L27', '7L14', '4T', '4L44'],
131782
+ takedown: ['9M'],
131748
131783
  terablast: ['9M'],
131749
131784
  terrainpulse: ['8T'],
131750
131785
  toxic: ['7M', '4M'],
131786
+ trailblaze: ['9M'],
131751
131787
  wildcharge: ['9M', '8M', '7M'],
131752
131788
  willowisp: ['9M', '8M', '7M', '4M'],
131753
- worryseed: ['7T', '4T'],
131789
+ worryseed: ['7T', '6T', '5T', '4T'],
131754
131790
  zenheadbutt: ['9M', '8M', '7T']
131755
131791
  }
131756
131792
  },
@@ -131769,7 +131805,7 @@ export const Learnsets = {
131769
131805
  '4L1'
131770
131806
  ],
131771
131807
  burningjealousy: ['8T'],
131772
- burnup: ['9L64', '8L64', '7L68'],
131808
+ burnup: ['8L72', '7L68'],
131773
131809
  confide: ['7M'],
131774
131810
  counter: ['4T'],
131775
131811
  doubleedge: ['9L1', '8L1', '4T'],
@@ -131810,7 +131846,7 @@ export const Learnsets = {
131810
131846
  grassyterrain: ['9M', '8M'],
131811
131847
  growth: ['9L12', '8L12', '7L28', '4L5'],
131812
131848
  headbutt: ['4T'],
131813
- heatcrash: ['8M', '7L41'],
131849
+ heatcrash: ['9L64', '8M', '8L64', '7L41'],
131814
131850
  heatwave: ['9M', '8M', '7T', '4T'],
131815
131851
  heavyslam: ['9M', '8M'],
131816
131852
  hiddenpower: ['7M', '4M'],
@@ -131833,7 +131869,7 @@ export const Learnsets = {
131833
131869
  mudslap: ['9M', '4T'],
131834
131870
  naturalgift: ['4M'],
131835
131871
  naturepower: ['7M'],
131836
- overheat: ['9M', '8M', '7M', '4M'],
131872
+ overheat: ['9M', '9L72', '8M', '7M', '4M'],
131837
131873
  petalblizzard: ['9L1', '8L1'],
131838
131874
  petaldance: ['9L56', '8L56', '7L55', '4L36'],
131839
131875
  protect: ['9M', '8M', '7M', '4M'],
@@ -131865,13 +131901,15 @@ export const Learnsets = {
131865
131901
  swift: ['9M', '8M'],
131866
131902
  swordsdance: ['9M', '8M', '7M', '4M'],
131867
131903
  synthesis: ['9L27', '8L27', '7L14', '4T', '4L48'],
131904
+ takedown: ['9M'],
131868
131905
  terablast: ['9M'],
131869
131906
  terrainpulse: ['8T'],
131870
131907
  toxic: ['7M', '4M'],
131908
+ trailblaze: ['9M'],
131871
131909
  wildcharge: ['9M', '8M', '7M'],
131872
131910
  willowisp: ['9M', '8M', '7M', '4M'],
131873
131911
  woodhammer: ['9L1', '8L1', '7L1', '4L1'],
131874
- worryseed: ['7T', '4T'],
131912
+ worryseed: ['7T', '6T', '5T', '4T'],
131875
131913
  zapcannon: ['9L1', '8L1', '7L64', '4L60'],
131876
131914
  zenheadbutt: ['9M', '8M', '7T']
131877
131915
  }
@@ -131887,7 +131925,12 @@ export const Learnsets = {
131887
131925
  ],
131888
131926
  afteryou: ['7T'],
131889
131927
  attract: ['8M', '7M', '4M'],
131890
- block: ['7T', '4T'],
131928
+ block: [
131929
+ '9E', '8E', '7T',
131930
+ '7E', '6T', '6E',
131931
+ '5T', '5E', '4T',
131932
+ '4E'
131933
+ ],
131891
131934
  bodyslam: ['9M', '8M', '4T', '4L30'],
131892
131935
  bounce: ['8M'],
131893
131936
  captivate: ['4M'],
@@ -131907,6 +131950,7 @@ export const Learnsets = {
131907
131950
  gunkshot: ['9M', '9L52', '8M', '8L52'],
131908
131951
  gust: ['9L1', '8L1', '7L1', '4L1'],
131909
131952
  healblock: ['7L54', '4L50'],
131953
+ healingwish: ['9E'],
131910
131954
  helpinghand: [
131911
131955
  '9M', '9L1',
131912
131956
  '8M', '8L1',
@@ -131914,11 +131958,12 @@ export const Learnsets = {
131914
131958
  '4T', '4L1'
131915
131959
  ],
131916
131960
  hiddenpower: ['7M', '4M'],
131961
+ icespinner: ['9M'],
131917
131962
  icywind: ['9M', '8M', '7T', '4T'],
131918
131963
  knockoff: ['9L24', '8L24', '7L14', '4T', '4L14'],
131919
131964
  lightscreen: ['9M', '8M', '7M', '4M'],
131920
131965
  luckychant: ['7L55', '4L59'],
131921
- magicroom: ['8M'],
131966
+ magicroom: ['9E', '8M', '7E'],
131922
131967
  mefirst: ['7E', '4E'],
131923
131968
  metronome: ['9M', '8M', '7E', '4T', '4E'],
131924
131969
  mimic: ['7E', '5E'],
@@ -131926,6 +131971,7 @@ export const Learnsets = {
131926
131971
  naturalgift: ['4M'],
131927
131972
  ominouswind: ['4T'],
131928
131973
  poisonjab: ['9M', '8M', '7M', '4M'],
131974
+ pounce: ['9M'],
131929
131975
  protect: ['9M', '8M', '7M', '4M'],
131930
131976
  psychup: ['7M', '4M'],
131931
131977
  raindance: ['9M', '8M', '7M', '4M'],
@@ -131948,7 +131994,7 @@ export const Learnsets = {
131948
131994
  sandstorm: ['9M', '8M', '7M', '4M'],
131949
131995
  sandtomb: ['8M', '7E', '4E'],
131950
131996
  secretpower: ['7M', '4M'],
131951
- selfdestruct: ['8M'],
131997
+ selfdestruct: ['9E', '8M'],
131952
131998
  shadowball: ['9M', '8M', '7M', '4M'],
131953
131999
  skillswap: ['9M', '8M', '7M', '4M'],
131954
132000
  sleeptalk: ['9M', '8M', '7M', '4M'],
@@ -131980,7 +132026,7 @@ export const Learnsets = {
131980
132026
  venoshock: ['9M', '8M', '7M'],
131981
132027
  whirlwind: ['9L32', '8L32', '7L25', '4L25'],
131982
132028
  wish: ['9E', '8E', '7E', '4E'],
131983
- wonderroom: ['8M']
132029
+ wonderroom: ['9E', '8M', '7E']
131984
132030
  }
131985
132031
  },
131986
132032
  fidgit: {
@@ -131989,7 +132035,7 @@ export const Learnsets = {
131989
132035
  aerialace: ['9M', '9L1', '8L1', '7M', '4M'],
131990
132036
  afteryou: ['7T'],
131991
132037
  attract: ['8M', '7M', '4M'],
131992
- block: ['7T', '4T'],
132038
+ block: ['7T', '6T', '5T', '4T'],
131993
132039
  bodyslam: [
131994
132040
  '9M', '9L28',
131995
132041
  '8M', '8L28',
@@ -132034,11 +132080,12 @@ export const Learnsets = {
132034
132080
  ],
132035
132081
  hiddenpower: ['7M', '4M'],
132036
132082
  hyperbeam: ['9M', '8M', '7M', '4M'],
132083
+ icespinner: ['9M'],
132037
132084
  icywind: ['9M', '8M', '7T', '4T'],
132038
132085
  knockoff: ['9L24', '8L24', '7L14', '4T', '4L14'],
132039
132086
  lightscreen: ['9M', '8M', '7M', '4M'],
132040
132087
  luckychant: ['7L65', '4L67'],
132041
- magicroom: ['8M', '7T'],
132088
+ magicroom: ['8M'],
132042
132089
  megapunch: ['8M'],
132043
132090
  metronome: ['9M', '8M', '4T'],
132044
132091
  mudshot: ['9M', '8M'],
@@ -132046,6 +132093,7 @@ export const Learnsets = {
132046
132093
  naturalgift: ['4M'],
132047
132094
  ominouswind: ['4T'],
132048
132095
  poisonjab: ['9M', '8M', '7M', '4M'],
132096
+ pounce: ['9M'],
132049
132097
  protect: ['9M', '8M', '7M', '4M'],
132050
132098
  psychup: ['7M', '4M'],
132051
132099
  raindance: ['9M', '8M', '7M', '4M'],
@@ -132102,7 +132150,7 @@ export const Learnsets = {
132102
132150
  venoshock: ['9M', '8M', '7M'],
132103
132151
  whirlwind: ['9L32', '8L32', '7L25', '4L25'],
132104
132152
  wideguard: ['9L12', '8L12', '7L1'],
132105
- wonderroom: ['8M', '7T']
132153
+ wonderroom: ['8M']
132106
132154
  }
132107
132155
  },
132108
132156
  rebble: {
@@ -132125,7 +132173,7 @@ export const Learnsets = {
132125
132173
  embargo: ['7M', '4M'],
132126
132174
  endure: ['9M', '8M', '4M'],
132127
132175
  energyball: ['9M', '8M', '7M', '4M'],
132128
- explosion: ['7M', '4M'],
132176
+ explosion: ['9L56', '8L56', '7M', '6M', '5M', '4M'],
132129
132177
  facade: ['9M', '8M', '7M', '4M'],
132130
132178
  falseswipe: ['9M', '8M', '7M', '4M'],
132131
132179
  fireblast: ['9M', '8M', '7M', '4M'],
@@ -132151,7 +132199,7 @@ export const Learnsets = {
132151
132199
  raindance: ['9M', '8M', '7M', '4M'],
132152
132200
  rest: ['9M', '8M', '7M', '4M'],
132153
132201
  rockblast: ['9M', '9L12', '8M', '8L12', '7L13', '4L15'],
132154
- rockpolish: ['7M', '4M'],
132202
+ rockpolish: ['9E', '8E', '7M', '6M', '5M', '4M'],
132155
132203
  rockslide: ['9M', '8M', '7M', '4M'],
132156
132204
  rocksmash: ['6M', '5M', '4M'],
132157
132205
  rocktomb: ['9M', '8M', '7M', '4M'],
@@ -132161,7 +132209,7 @@ export const Learnsets = {
132161
132209
  secretpower: ['7M', '4M'],
132162
132210
  shadowball: ['9M', '8M', '7M', '4M'],
132163
132211
  sleeptalk: ['9M', '8M', '7M', '4M'],
132164
- smackdown: ['7M'],
132212
+ smackdown: ['9L1', '8L1', '7M'],
132165
132213
  snore: ['8M', '7T', '4T'],
132166
132214
  speedswap: ['8M'],
132167
132215
  stealthrock: ['9M', '8M', '7T', '4M'],
@@ -132198,7 +132246,7 @@ export const Learnsets = {
132198
132246
  embargo: ['7M', '4M'],
132199
132247
  endure: ['9M', '8M', '4M'],
132200
132248
  energyball: ['9M', '8M', '7M', '4M'],
132201
- explosion: ['7M', '4M'],
132249
+ explosion: ['9L72', '8L72', '7M', '6M', '5M', '4M'],
132202
132250
  facade: ['9M', '8M', '7M', '4M'],
132203
132251
  falseswipe: ['9M', '8M', '7M', '4M'],
132204
132252
  fireblast: ['9M', '8M', '7M', '4M'],
@@ -132224,7 +132272,7 @@ export const Learnsets = {
132224
132272
  raindance: ['9M', '8M', '7M', '4M'],
132225
132273
  rest: ['9M', '8M', '7M', '4M'],
132226
132274
  rockblast: ['9M', '9L12', '8M', '8L12', '7L13', '4L15'],
132227
- rockpolish: ['7M', '4M'],
132275
+ rockpolish: ['7M', '6M', '5M', '4M'],
132228
132276
  rockslide: ['9M', '8M', '7M', '4M'],
132229
132277
  rocksmash: ['6M', '5M', '4M'],
132230
132278
  rocktomb: ['9M', '8M', '7M', '4M'],
@@ -132234,7 +132282,7 @@ export const Learnsets = {
132234
132282
  secretpower: ['7M', '4M'],
132235
132283
  shadowball: ['9M', '8M', '7M', '4M'],
132236
132284
  sleeptalk: ['9M', '8M', '7M', '4M'],
132237
- smackdown: ['7M'],
132285
+ smackdown: ['9L1', '8L1', '7M'],
132238
132286
  smartstrike: ['9M', '8M'],
132239
132287
  snore: ['8M', '7T', '4T'],
132240
132288
  speedswap: ['8M', '7L55'],
@@ -132272,7 +132320,7 @@ export const Learnsets = {
132272
132320
  embargo: ['7M', '4M'],
132273
132321
  endure: ['9M', '8M', '4M'],
132274
132322
  energyball: ['9M', '8M', '7M', '4M'],
132275
- explosion: ['7M', '4M'],
132323
+ explosion: ['9L72', '8L72', '7M', '6M', '5M', '4M'],
132276
132324
  facade: ['9M', '8M', '7M', '4M'],
132277
132325
  falseswipe: ['9M', '8M', '7M', '4M'],
132278
132326
  fireblast: ['9M', '8M', '7M', '4M'],
@@ -132290,7 +132338,7 @@ export const Learnsets = {
132290
132338
  laserfocus: ['8L1', '7L1'],
132291
132339
  lockon: ['9L60', '8L60', '7L65'],
132292
132340
  metalsound: ['9L36', '8L36', '7L52', '4L37'],
132293
- meteorbeam: ['8T'],
132341
+ meteorbeam: ['9L1', '8T'],
132294
132342
  mudshot: ['9M', '8M', '7L34', '4L25'],
132295
132343
  mudslap: ['9M', '9L1', '8L1', '7L8', '4T'],
132296
132344
  naturalgift: ['4M'],
@@ -132304,7 +132352,7 @@ export const Learnsets = {
132304
132352
  return: ['7M', '4M'],
132305
132353
  rockblast: ['9M', '9L12', '8M', '8L12', '7L13', '4L15'],
132306
132354
  rockclimb: ['4M'],
132307
- rockpolish: ['7M', '4M'],
132355
+ rockpolish: ['7M', '6M', '5M', '4M'],
132308
132356
  rockslide: ['9M', '8M', '7M', '4M'],
132309
132357
  rocksmash: ['6M', '5M', '4M'],
132310
132358
  rocktomb: ['9M', '8M', '7M', '4M'],
@@ -132314,7 +132362,7 @@ export const Learnsets = {
132314
132362
  secretpower: ['7M', '4M'],
132315
132363
  shadowball: ['9M', '8M', '7M', '4M'],
132316
132364
  sleeptalk: ['9M', '8M', '7M', '4M'],
132317
- smackdown: ['7M'],
132365
+ smackdown: ['9L1', '8L1', '7M'],
132318
132366
  smartstrike: ['9M', '8M', '7M'],
132319
132367
  snore: ['8M', '7T', '4T'],
132320
132368
  speedswap: ['8M', '7L56'],
@@ -132335,6 +132383,7 @@ export const Learnsets = {
132335
132383
  },
132336
132384
  privatyke: {
132337
132385
  learnset: {
132386
+ aquacutter: ['9L28'],
132338
132387
  aquajet: ['9L16', '8L16', '7L19', '4L27'],
132339
132388
  armthrust: ['9L4', '8L4', '7L14', '4L21'],
132340
132389
  attract: ['8M', '7M', '4M'],
@@ -132346,6 +132395,7 @@ export const Learnsets = {
132346
132395
  bulkup: ['9M', '8M', '7M', '7E', '4E'],
132347
132396
  bulldoze: ['9M', '8M', '7M'],
132348
132397
  captivate: ['4M'],
132398
+ chillingwater: ['9M'],
132349
132399
  chipaway: ['7L30'],
132350
132400
  closecombat: ['9M', '8M', '7E'],
132351
132401
  coaching: ['8T'],
@@ -132372,6 +132422,7 @@ export const Learnsets = {
132372
132422
  icywind: ['9M', '8M', '7T', '4T'],
132373
132423
  knockoff: ['9L24', '8L24', '7T', '4T'],
132374
132424
  lashout: ['8T'],
132425
+ liquidation: ['9M', '9L40'],
132375
132426
  lowkick: ['9M', '8M', '7T', '4T'],
132376
132427
  lowsweep: ['9M', '8M', '7M'],
132377
132428
  machpunch: ['9L16', '8L16', '7L35', '4L32'],
@@ -132411,9 +132462,10 @@ export const Learnsets = {
132411
132462
  strength: ['4M'],
132412
132463
  submission: ['8L44', '7L48', '4L55'],
132413
132464
  substitute: ['9M', '8M', '7M', '4M'],
132414
- superpower: ['8M', '7T', '4T'],
132465
+ superpower: ['9L44', '8M', '7T', '6T', '5T', '4T'],
132415
132466
  surf: ['9M', '8M', '7M', '4M'],
132416
132467
  swagger: ['7M', '4M'],
132468
+ takedown: ['9M'],
132417
132469
  taunt: [
132418
132470
  '9M', '9L32',
132419
132471
  '8M', '8L32',
@@ -132429,7 +132481,7 @@ export const Learnsets = {
132429
132481
  ],
132430
132482
  throatchop: ['8M'],
132431
132483
  thunderpunch: ['9M', '8M', '7T', '4T'],
132432
- torment: ['7M', '4M'],
132484
+ torment: ['9E', '7M', '6M', '5M', '4M'],
132433
132485
  toxic: ['7M', '4M'],
132434
132486
  vacuumwave: ['4T'],
132435
132487
  waterfall: ['9M', '8M', '7M', '4M'],
@@ -132444,6 +132496,7 @@ export const Learnsets = {
132444
132496
  },
132445
132497
  arghonaut: {
132446
132498
  learnset: {
132499
+ aquacutter: ['9L28'],
132447
132500
  aquajet: ['9L16', '8L16', '7L19', '4L27'],
132448
132501
  armthrust: ['9L1', '8L1', '7L14', '4L21'],
132449
132502
  attract: ['8M', '7M', '4M'],
@@ -132451,11 +132504,17 @@ export const Learnsets = {
132451
132504
  bodypress: ['9M', '8M'],
132452
132505
  bodyslam: ['9M', '8M'],
132453
132506
  brickbreak: ['9M', '8M', '7M', '4M'],
132454
- brine: ['8M', '4M'],
132507
+ brine: [
132508
+ '9L1', '8M',
132509
+ '8L1', '7L1',
132510
+ '6L1', '5L1',
132511
+ '4M', '4L1'
132512
+ ],
132455
132513
  bubble: ['7L1', '4L1'],
132456
132514
  bulkup: ['9M', '8M', '7M'],
132457
132515
  bulldoze: ['9M', '8M', '7M'],
132458
132516
  captivate: ['4M'],
132517
+ chillingwater: ['9M'],
132459
132518
  chipaway: ['7L30'],
132460
132519
  circlethrow: ['9L1', '8L1', '7L1'],
132461
132520
  closecombat: ['9M', '8M'],
@@ -132489,6 +132548,7 @@ export const Learnsets = {
132489
132548
  icywind: ['9M', '8M', '7T', '4T'],
132490
132549
  knockoff: ['9L24', '8L24', '7T', '4T'],
132491
132550
  lashout: ['8T'],
132551
+ liquidation: ['9M', '9L42'],
132492
132552
  lowkick: ['9M', '8M', '7T', '4T'],
132493
132553
  lowsweep: ['9M', '8M', '7M'],
132494
132554
  machpunch: ['9L16', '8L16', '7L35', '4L32'],
@@ -132527,9 +132587,10 @@ export const Learnsets = {
132527
132587
  strength: ['4M'],
132528
132588
  submission: ['8L48', '7L56', '4L55'],
132529
132589
  substitute: ['9M', '8M', '7M', '4M'],
132530
- superpower: ['8M', '7T', '4T'],
132590
+ superpower: ['9L48', '8M', '7T', '6T', '5T', '4T'],
132531
132591
  surf: ['9M', '8M', '7M', '4M'],
132532
132592
  swagger: ['7M', '4M'],
132593
+ takedown: ['9M'],
132533
132594
  taunt: [
132534
132595
  '9M', '9L32',
132535
132596
  '8M', '8L32',
@@ -132565,6 +132626,7 @@ export const Learnsets = {
132565
132626
  captivate: ['4M'],
132566
132627
  closecombat: ['9M', '8M'],
132567
132628
  confide: ['7M'],
132629
+ confuseray: ['9M'],
132568
132630
  copycat: ['9L20', '8L20', '7L22', '4L22'],
132569
132631
  curse: ['9E', '8E', '7E', '4E'],
132570
132632
  cut: ['7M', '4M'],
@@ -132592,8 +132654,8 @@ export const Learnsets = {
132592
132654
  honeclaws: ['9L28', '8L28', '7L31'],
132593
132655
  icepunch: ['9M', '8M', '7T', '4T'],
132594
132656
  icywind: ['9M', '8M', '7T', '4T'],
132595
- irontail: ['8M', '7E', '4M'],
132596
- knockoff: ['7T', '4T'],
132657
+ irontail: ['9E', '8M', '7E', '6E', '5E', '4M'],
132658
+ knockoff: ['9L36', '7T', '6T', '5T', '4T'],
132597
132659
  lastresort: ['7T', '4T'],
132598
132660
  lick: ['9L4', '8L4', '7L6', '4L6'],
132599
132661
  magiccoat: ['7T', '4T'],
@@ -132602,9 +132664,14 @@ export const Learnsets = {
132602
132664
  meteormash: ['9E', '8E', '7E', '4E'],
132603
132665
  metronome: ['9M', '8M'],
132604
132666
  naturalgift: ['4M'],
132667
+ nightshade: ['9M'],
132605
132668
  odorsleuth: ['7L10', '4L10'],
132606
132669
  ominouswind: ['4T'],
132607
- painsplit: ['7T', '4T'],
132670
+ painsplit: [
132671
+ '9E', '8E', '7T',
132672
+ '7E', '6T', '6E',
132673
+ '5T', '4T'
132674
+ ],
132608
132675
  payback: ['8M', '7M', '4M'],
132609
132676
  perishsong: ['9L48', '8L48', '7L56', '4L55'],
132610
132677
  playrough: ['9M', '8M', '7E'],
@@ -132664,6 +132731,7 @@ export const Learnsets = {
132664
132731
  captivate: ['4M'],
132665
132732
  closecombat: ['9M', '8M'],
132666
132733
  confide: ['7M'],
132734
+ confuseray: ['9M'],
132667
132735
  copycat: ['9L20', '8L20', '7L22', '4L22'],
132668
132736
  cut: ['7M', '4M'],
132669
132737
  darkpulse: ['9M', '8M', '7M', '4M'],
@@ -132695,7 +132763,7 @@ export const Learnsets = {
132695
132763
  irondefense: ['9M', '8M', '7T', '4T'],
132696
132764
  ironhead: ['9M', '9L40', '8M', '8L40', '7L43', '4T'],
132697
132765
  irontail: ['8M', '4M'],
132698
- knockoff: ['7T', '4T'],
132766
+ knockoff: ['9L36', '7T', '6T', '5T', '4T'],
132699
132767
  lastresort: ['7T', '4T'],
132700
132768
  lick: ['9L1', '8L1', '7L6', '4L6'],
132701
132769
  lowkick: ['9M', '8M', '7T', '4T'],
@@ -132704,9 +132772,10 @@ export const Learnsets = {
132704
132772
  metalclaw: ['9M', '9L0', '8L0', '7L1', '4L27'],
132705
132773
  metronome: ['9M', '8M'],
132706
132774
  naturalgift: ['4M'],
132775
+ nightshade: ['9M'],
132707
132776
  odorsleuth: ['7L10', '4L10'],
132708
132777
  ominouswind: ['4T'],
132709
- painsplit: ['7T', '4T'],
132778
+ painsplit: ['7T', '6T', '5T', '4T'],
132710
132779
  payback: ['8M', '7M', '4M'],
132711
132780
  perishsong: ['9L52', '8L52', '7L56', '4L55'],
132712
132781
  playrough: ['9M', '8M', '7E'],
@@ -132738,11 +132807,12 @@ export const Learnsets = {
132738
132807
  snore: ['8M', '7T', '4T'],
132739
132808
  spite: ['9L12', '8L12', '7T', '4T'],
132740
132809
  steelbeam: ['9M', '8T'],
132810
+ strengthsap: ['9L1', '8L1'],
132741
132811
  substitute: ['9M', '8M', '7M', '4M'],
132742
132812
  suckerpunch: ['4T'],
132743
132813
  sunnyday: ['9M', '8M', '7M', '4M'],
132744
132814
  superfang: ['7T', '4T'],
132745
- superpower: ['8M', '7T', '4T'],
132815
+ superpower: ['8M', '7T', '6T', '5T', '4T'],
132746
132816
  swagger: ['7M', '4M'],
132747
132817
  tailwhip: ['9L1', '8L1', '7L1', '4L1'],
132748
132818
  taunt: ['9M', '8M', '7M', '4M'],
@@ -132768,7 +132838,9 @@ export const Learnsets = {
132768
132838
  captivate: ['4M'],
132769
132839
  charge: ['9L12', '8L12', '7L11', '4L11'],
132770
132840
  chargebeam: ['9M', '7M', '4M'],
132841
+ chillingwater: ['9M'],
132771
132842
  confide: ['7M'],
132843
+ defog: ['9E'],
132772
132844
  discharge: ['9L33', '8L33', '7L33', '4L37'],
132773
132845
  doubleteam: ['7M', '4M'],
132774
132846
  dragonbreath: ['9L20', '8L20', '7L29', '7E', '4E'],
@@ -132787,7 +132859,11 @@ export const Learnsets = {
132787
132859
  growl: ['9L1', '8L1', '7L1', '4L1'],
132788
132860
  hail: ['8M', '7M', '4M'],
132789
132861
  headbutt: ['9E', '8E', '4T'],
132790
- healbell: ['7E', '4E'],
132862
+ healbell: [
132863
+ '7T', '7E', '6T',
132864
+ '6E', '5T', '5E',
132865
+ '4T', '4E'
132866
+ ],
132791
132867
  hiddenpower: ['7M', '4M'],
132792
132868
  hydropump: ['9M', '8M', '7E', '4E'],
132793
132869
  icebeam: ['9M', '8M', '7M', '4M'],
@@ -132796,7 +132872,7 @@ export const Learnsets = {
132796
132872
  lightscreen: ['9M', '8M', '7M', '4M'],
132797
132873
  lockon: ['9L44', '8L44'],
132798
132874
  muddywater: ['8M'],
132799
- mudslap: ['9M', '8E', '7E', '4T', '4E'],
132875
+ mudslap: ['9M', '9E', '8E', '7E', '4T', '4E'],
132800
132876
  naturalgift: ['4M'],
132801
132877
  naturepower: ['7M'],
132802
132878
  outrage: ['9M', '8M', '4T'],
@@ -132829,6 +132905,7 @@ export const Learnsets = {
132829
132905
  swagger: ['7M'],
132830
132906
  swift: ['9M', '8M', '4T'],
132831
132907
  tackle: ['9L1', '8L1', '7L1', '4L1'],
132908
+ takedown: ['9M'],
132832
132909
  terablast: ['9M'],
132833
132910
  thrash: ['9L48', '8L48', '7L53', '4L50'],
132834
132911
  thunder: [
@@ -132848,7 +132925,7 @@ export const Learnsets = {
132848
132925
  voltswitch: ['9M', '8M', '7M'],
132849
132926
  waterfall: ['9M', '8M', '7M', '4M'],
132850
132927
  waterpulse: ['9M', '7T', '4M'],
132851
- weatherball: ['8M'],
132928
+ weatherball: ['9E', '8M'],
132852
132929
  whirlwind: ['9L16', '8L16', '7L1', '4L1'],
132853
132930
  wildcharge: ['9M', '8M', '7M'],
132854
132931
  zapcannon: ['9L44', '8L44', '7L59', '4L59']
@@ -132864,6 +132941,7 @@ export const Learnsets = {
132864
132941
  captivate: ['4M'],
132865
132942
  charge: ['9L12', '8L12', '7L11', '4L11'],
132866
132943
  chargebeam: ['9M', '7M', '4M'],
132944
+ chillingwater: ['9M'],
132867
132945
  confide: ['7M'],
132868
132946
  discharge: ['9L35', '8L35', '7L33', '4L37'],
132869
132947
  doublehit: ['9L0', '8L0', '7L20', '4L22'],
@@ -132889,6 +132967,7 @@ export const Learnsets = {
132889
132967
  growl: ['9L1', '8L1', '7L1', '4L1'],
132890
132968
  hail: ['8M', '7M', '4M'],
132891
132969
  headbutt: ['4T'],
132970
+ healbell: ['7T', '6T', '5T', '4T'],
132892
132971
  hiddenpower: ['7M', '4M'],
132893
132972
  honeclaws: ['7M'],
132894
132973
  hydropump: ['9M', '8M'],
@@ -132933,6 +133012,7 @@ export const Learnsets = {
132933
133012
  swagger: ['7M'],
132934
133013
  swift: ['9M', '8M', '4T'],
132935
133014
  tackle: ['9L1', '8L1', '7L1', '4L1'],
133015
+ takedown: ['9M'],
132936
133016
  terablast: ['9M'],
132937
133017
  thrash: ['9L58', '8L58', '7L53', '4L50'],
132938
133018
  thunder: [
@@ -132965,11 +133045,12 @@ export const Learnsets = {
132965
133045
  attract: ['8M', '7M', '4M'],
132966
133046
  bide: ['7L1', '4L1'],
132967
133047
  blizzard: ['9M', '8M', '7M', '4M'],
132968
- breakingswipe: ['8M'],
133048
+ breakingswipe: ['9L1', '8M'],
132969
133049
  bulldoze: ['9M', '8M', '7M'],
132970
133050
  captivate: ['4M'],
132971
133051
  charge: ['9L12', '8L12', '7L11', '4L11'],
132972
133052
  chargebeam: ['9M', '7M', '4M'],
133053
+ chillingwater: ['9M'],
132973
133054
  confide: ['7M'],
132974
133055
  discharge: ['9L35', '8L35', '7L33', '4L37'],
132975
133056
  doublehit: ['9L1', '8L1', '7L20', '4L22'],
@@ -132997,6 +133078,7 @@ export const Learnsets = {
132997
133078
  growl: ['9L1', '8L1', '7L1', '4L1'],
132998
133079
  hail: ['8M', '7M', '4M'],
132999
133080
  headbutt: ['4T'],
133081
+ healbell: ['7T', '6T', '5T', '4T'],
133000
133082
  hiddenpower: ['7M', '4M'],
133001
133083
  honeclaws: ['7M'],
133002
133084
  hydropump: ['9M', '8M'],
@@ -133042,6 +133124,7 @@ export const Learnsets = {
133042
133124
  swagger: ['7M'],
133043
133125
  swift: ['9M', '8M', '4T'],
133044
133126
  tackle: ['9L1', '8L1', '7L1', '4L1'],
133127
+ takedown: ['9M'],
133045
133128
  terablast: ['9M'],
133046
133129
  thrash: ['9L64', '8L64', '7L53', '4L50'],
133047
133130
  thunder: [
@@ -133071,10 +133154,14 @@ export const Learnsets = {
133071
133154
  dorsoil: {
133072
133155
  learnset: {
133073
133156
  ancientpower: ['4T'],
133074
- aquatail: ['7T', '4T'],
133157
+ aquatail: ['9E', '8E', '7T', '6T', '5T', '4T'],
133075
133158
  attract: ['8M', '7M', '4M'],
133076
133159
  bite: ['9L20', '8L20', '5L10', '4L11'],
133077
- block: ['7T'],
133160
+ block: [
133161
+ '9E', '8E', '7T',
133162
+ '7E', '6T', '6E',
133163
+ '5T', '5E'
133164
+ ],
133078
133165
  bodypress: ['9M', '8M'],
133079
133166
  bodyslam: [
133080
133167
  '9M', '9L35',
@@ -133110,13 +133197,15 @@ export const Learnsets = {
133110
133197
  frustration: ['7M', '4M'],
133111
133198
  hiddenpower: ['7M', '4M'],
133112
133199
  highhorsepower: ['8M'],
133200
+ icespinner: ['9M'],
133113
133201
  irontail: ['8M', '7T', '4M'],
133114
133202
  knockoff: ['9L25', '8L25', '7T', '4T'],
133115
133203
  leer: ['9L1', '8L1', '7L1', '4L1'],
133116
133204
  magnitude: ['7L32', '4L42'],
133205
+ mudshot: ['9M'],
133117
133206
  mudslap: ['9M', '9L5', '8L5', '7L16', '4T'],
133118
133207
  naturalgift: ['4M'],
133119
- payback: ['8M', '7M', '4M'],
133208
+ payback: ['8M', '7M', '6M', '5M', '4M'],
133120
133209
  peck: ['9L1', '8L1', '7L1', '4L1'],
133121
133210
  protect: ['9M', '8M', '7M', '4M'],
133122
133211
  pursuit: ['7L37', '4L29'],
@@ -133141,14 +133230,21 @@ export const Learnsets = {
133141
133230
  snatch: ['7M', '4M'],
133142
133231
  snore: ['8M', '7T', '4T'],
133143
133232
  spitup: ['9L40', '8L40', '7L53', '4L48'],
133233
+ stealthrock: ['9M'],
133144
133234
  stockpile: ['9L40', '8L40', '7L53', '4L48'],
133145
133235
  strength: ['9L30', '8L30', '4M'],
133146
133236
  substitute: ['9M', '8M', '7M', '4M'],
133147
133237
  suckerpunch: ['9E', '8E', '7E', '4T', '4E'],
133148
133238
  sunnyday: ['9M', '8M', '7M', '4M'],
133149
- superpower: ['8M', '7T', '4T'],
133239
+ superpower: [
133240
+ '9E', '8M', '7T',
133241
+ '7E', '6T', '6E',
133242
+ '5T', '5E', '4T',
133243
+ '4E'
133244
+ ],
133150
133245
  swagger: ['7M', '4M'],
133151
133246
  swallow: ['9L40', '8L40', '7L53', '4L48'],
133247
+ takedown: ['9M'],
133152
133248
  taunt: ['9M', '8M', '7M', '4M'],
133153
133249
  terablast: ['9M'],
133154
133250
  thunderfang: ['9M', '8M', '7E', '4E'],
@@ -133161,10 +133257,10 @@ export const Learnsets = {
133161
133257
  colossoil: {
133162
133258
  learnset: {
133163
133259
  ancientpower: ['4T'],
133164
- aquatail: ['7T', '4T'],
133260
+ aquatail: ['7T', '6T', '5T', '4T'],
133165
133261
  attract: ['8M', '7M', '4M'],
133166
133262
  bite: ['9L20', '8L20', '5L10', '4L11'],
133167
- block: ['7T'],
133263
+ block: ['7T', '6T', '5T'],
133168
133264
  bodypress: ['9M', '8M'],
133169
133265
  bodyslam: [
133170
133266
  '9M', '9L35',
@@ -133174,7 +133270,7 @@ export const Learnsets = {
133174
133270
  ],
133175
133271
  bounce: ['8M', '7L48', '4T', '4L35'],
133176
133272
  brickbreak: ['9M', '8M', '7M', '4M'],
133177
- brutalswing: ['8M', '7M'],
133273
+ brutalswing: ['9L1', '8M', '8L1', '7M'],
133178
133274
  bulldoze: ['9M', '8M', '7M'],
133179
133275
  captivate: ['4M'],
133180
133276
  confide: ['7M'],
@@ -133196,17 +133292,20 @@ export const Learnsets = {
133196
133292
  frustration: ['7M', '4M'],
133197
133293
  furyattack: ['9L1', '8L1', '7L26'],
133198
133294
  gigaimpact: ['9M', '8M', '7M', '4M'],
133295
+ headlongrush: ['9L63'],
133199
133296
  hiddenpower: ['7M', '4M'],
133200
133297
  highhorsepower: ['9L1', '8M', '8L1', '7L1'],
133201
133298
  hornattack: ['9L1', '8L1', '7L5', '4L6'],
133202
- horndrill: ['9L63', '8L63', '7L74', '4L70'],
133299
+ horndrill: ['9L70', '8L63', '7L74', '4L70'],
133203
133300
  hyperbeam: ['9M', '8M', '7M', '4M'],
133301
+ icespinner: ['9M'],
133204
133302
  irontail: ['8M', '7T', '4M'],
133205
133303
  knockoff: ['9L25', '8L25', '7T', '4T'],
133206
133304
  lashout: ['8T'],
133207
133305
  leer: ['9L1', '8L1', '7L1', '4L1'],
133208
133306
  magnitude: ['7L32', '4L42'],
133209
133307
  megahorn: ['9L56', '8M', '8L56', '7L64', '4L63'],
133308
+ mudshot: ['9M'],
133210
133309
  mudslap: ['9M', '9L1', '8L1', '7L16', '4T'],
133211
133310
  naturalgift: ['4M'],
133212
133311
  payback: ['8M', '7M', '4M'],
@@ -133235,15 +133334,17 @@ export const Learnsets = {
133235
133334
  snatch: ['7M', '4M'],
133236
133335
  snore: ['8M', '7T', '4T'],
133237
133336
  spitup: ['9L42', '8L42', '7L53', '4L48'],
133337
+ stealthrock: ['9M'],
133238
133338
  stockpile: ['9L42', '8L42', '7L53', '4L48'],
133239
133339
  stoneedge: ['9M', '8M', '7M', '4M'],
133240
133340
  strength: ['9L30', '8L30', '4M'],
133241
133341
  substitute: ['9M', '8M', '7M', '4M'],
133242
133342
  suckerpunch: ['4T'],
133243
133343
  sunnyday: ['9M', '8M', '7M', '4M'],
133244
- superpower: ['8M', '7T', '4T'],
133344
+ superpower: ['8M', '7T', '6T', '5T', '4T'],
133245
133345
  swagger: ['7M', '4M'],
133246
133346
  swallow: ['9L42', '8L42', '7L53', '4L48'],
133347
+ takedown: ['9M'],
133247
133348
  taunt: ['9M', '8M', '7M', '4M'],
133248
133349
  terablast: ['9M'],
133249
133350
  thunderfang: ['9M', '8M'],
@@ -133266,6 +133367,7 @@ export const Learnsets = {
133266
133367
  mirrorcoat: ['9E', '8E', '7E', '4E'],
133267
133368
  sheercold: ['9E', '8E', '7E', '4E'],
133268
133369
  speedswap: ['7E'],
133370
+ terablast: ['9M'],
133269
133371
  thundershock: ['9L5', '8L5', '7L5', '4L5'],
133270
133372
  watergun: ['9L1', '8L1']
133271
133373
  }
@@ -133280,6 +133382,7 @@ export const Learnsets = {
133280
133382
  bulldoze: ['9M', '8M', '7M'],
133281
133383
  captivate: ['4M'],
133282
133384
  charge: ['9L1', '8L1', '7L1', '4L1'],
133385
+ chillingwater: ['9M'],
133283
133386
  confide: ['7M'],
133284
133387
  confuseray: ['9M', '9L1', '8L1', '7L11', '4L11'],
133285
133388
  copycat: ['9L25', '8L25', '7L39', '4L39'],
@@ -133324,6 +133427,7 @@ export const Learnsets = {
133324
133427
  muddywater: ['9L40', '8M', '8L40', '7L68', '4L68'],
133325
133428
  naturalgift: ['4M'],
133326
133429
  payback: ['8M', '7M', '4M'],
133430
+ pounce: ['9M'],
133327
133431
  protect: ['9M', '8M', '7M', '4M'],
133328
133432
  raindance: ['9M', '8M', '7M', '4M'],
133329
133433
  recycle: ['7T', '4M'],
@@ -133360,7 +133464,7 @@ export const Learnsets = {
133360
133464
  waterfall: ['9M', '8M', '7M', '4M'],
133361
133465
  watergun: ['9L1', '8L1'],
133362
133466
  waterpulse: ['9M', '7T', '4M'],
133363
- whirlpool: ['8M', '7M', '4M'],
133467
+ whirlpool: ['9L35', '8M', '7M', '4M'],
133364
133468
  wildcharge: ['9M', '9L45', '8M', '8L45', '7M', '7L53']
133365
133469
  }
133366
133470
  },
@@ -133395,7 +133499,12 @@ export const Learnsets = {
133395
133499
  hiddenpower: ['7M', '4M'],
133396
133500
  hypervoice: ['9M', '8M', '7T'],
133397
133501
  imprison: ['9M', '8M', '7E', '4E'],
133398
- knockoff: ['7T', '4T'],
133502
+ knockoff: [
133503
+ '9E', '8E', '7T',
133504
+ '7E', '6T', '6E',
133505
+ '5T', '5E', '4T',
133506
+ '4E'
133507
+ ],
133399
133508
  lashout: ['8T'],
133400
133509
  machpunch: ['9E', '8E', '7E', '4E'],
133401
133510
  magiccoat: ['7T', '4T'],
@@ -133430,22 +133539,34 @@ export const Learnsets = {
133430
133539
  snarl: ['9M', '8M', '7M'],
133431
133540
  snatch: ['4M'],
133432
133541
  snore: ['8M', '7T', '4T'],
133433
- spite: ['9L12', '8L12', '7L11', '4T', '4L11'],
133542
+ spite: [
133543
+ '9L12', '8L12',
133544
+ '7T', '7L11',
133545
+ '6T', '5T',
133546
+ '4T', '4L11'
133547
+ ],
133434
133548
  strength: ['7M', '4M'],
133435
133549
  substitute: ['9M', '8M', '7M', '7L50', '4M', '4L50'],
133436
133550
  suckerpunch: ['9E', '8E'],
133437
133551
  sunnyday: ['9M', '8M', '7M', '4M'],
133438
133552
  swagger: ['7M', '4M'],
133553
+ takedown: ['9M'],
133439
133554
  taunt: ['9M', '8M', '7M', '4M'],
133440
133555
  tearfullook: ['9L24', '8L24', '7L22'],
133441
133556
  terablast: ['9M'],
133442
133557
  thief: ['9M', '8M', '7M', '4M'],
133443
133558
  thunderbolt: ['9M', '8M', '7M'],
133444
133559
  thunderwave: ['9M', '8M', '7M', '4M'],
133445
- torment: ['7M', '4M'],
133560
+ torment: ['9L33', '7M', '6M', '5M', '4M'],
133446
133561
  toxic: ['7M', '4M'],
133447
133562
  uproar: ['8M', '7T', '4T'],
133448
- vacuumwave: ['4T'],
133563
+ vacuumwave: [
133564
+ '9E', '8E',
133565
+ '7E', '6E',
133566
+ '5E', '4T',
133567
+ '4E'
133568
+ ],
133569
+ voltswitch: ['9M'],
133449
133570
  workup: ['8M', '7M'],
133450
133571
  wrap: ['9L1', '8L1', '7L1', '4L1']
133451
133572
  }
@@ -133497,7 +133618,7 @@ export const Learnsets = {
133497
133618
  hypervoice: ['9M', '8M', '7T'],
133498
133619
  icepunch: ['9M', '8M', '7T', '4T'],
133499
133620
  imprison: ['9M', '8M'],
133500
- knockoff: ['7T', '4T'],
133621
+ knockoff: ['7T', '6T', '5T', '4T'],
133501
133622
  lashout: ['8T'],
133502
133623
  lowkick: ['9M', '8M', '7T', '4T'],
133503
133624
  lowsweep: ['9M', '8M', '7M'],
@@ -133531,7 +133652,12 @@ export const Learnsets = {
133531
133652
  snarl: ['9M', '8M', '7M'],
133532
133653
  snatch: ['4M'],
133533
133654
  snore: ['8M', '7T', '4T'],
133534
- spite: ['9L12', '8L12', '7L1', '4T', '4L1'],
133655
+ spite: [
133656
+ '9L12', '8L12',
133657
+ '7T', '7L1',
133658
+ '6T', '5T',
133659
+ '4T', '4L1'
133660
+ ],
133535
133661
  stoneedge: ['9M', '8M', '7M', '4M'],
133536
133662
  strength: ['7M', '4M'],
133537
133663
  substitute: ['9M', '8M', '7M', '7L50', '4M', '4L50'],
@@ -133541,14 +133667,15 @@ export const Learnsets = {
133541
133667
  tearfullook: ['9L24', '8L24', '7L22'],
133542
133668
  terablast: ['9M'],
133543
133669
  thief: ['9M', '8M', '7M', '4M'],
133544
- throatchop: ['8M'],
133670
+ throatchop: ['9L1', '8M', '8L1'],
133545
133671
  thunderbolt: ['9M', '8M', '7M'],
133546
133672
  thunderpunch: ['9M', '8M'],
133547
133673
  thunderwave: ['9M', '8M', '7M', '4M'],
133548
- torment: ['7M', '4M'],
133674
+ torment: ['9L35', '7M', '6M', '5M', '4M'],
133549
133675
  toxic: ['7M', '4M'],
133550
133676
  uproar: ['8M', '7T', '4T'],
133551
133677
  vacuumwave: ['4T'],
133678
+ voltswitch: ['9M'],
133552
133679
  workup: ['8M', '7M'],
133553
133680
  wrap: ['9L1', '8L1', '7L1', '4L1']
133554
133681
  }
@@ -133558,8 +133685,9 @@ export const Learnsets = {
133558
133685
  aerialace: ['9M', '7M', '5M'],
133559
133686
  attract: ['8M', '7M', '5M'],
133560
133687
  batonpass: ['9M', '8M', '7E', '5E'],
133688
+ bodypress: ['9M'],
133561
133689
  bodyslam: ['9M', '8M'],
133562
- brickbreak: ['9M', '8M', '7M', '7E', '5M'],
133690
+ brickbreak: ['9M', '9L30', '8M', '7M', '6M', '5M'],
133563
133691
  bulkup: [
133564
133692
  '9M', '9L36',
133565
133693
  '8M', '8L36',
@@ -133570,7 +133698,7 @@ export const Learnsets = {
133570
133698
  closecombat: ['9M', '8M'],
133571
133699
  coaching: ['8T'],
133572
133700
  confide: ['7M'],
133573
- confuseray: ['9M', '8E', '7M', '7E', '5E'],
133701
+ confuseray: ['9M', '9E', '8E', '7M', '7E', '5E'],
133574
133702
  doubleteam: ['7M', '5M'],
133575
133703
  echoedvoice: ['7M', '5M'],
133576
133704
  endure: ['9M', '8M'],
@@ -133594,11 +133722,12 @@ export const Learnsets = {
133594
133722
  hiddenpower: ['7M', '5M'],
133595
133723
  hypervoice: ['9M', '9L33', '8M', '8L33', '7L36', '5L36'],
133596
133724
  irontail: ['8M', '7T'],
133725
+ mudslap: ['9M'],
133597
133726
  megakick: ['8M'],
133598
133727
  megapunch: ['8M'],
133599
133728
  memento: ['9E', '8E', '7E', '5E'],
133600
133729
  naturepower: ['8E', '7M', '7E', '5E'],
133601
- poweruppunch: ['8L3', '6L99'],
133730
+ poweruppunch: ['8L3', '6M'],
133602
133731
  protect: ['9M', '8M', '7M', '5M'],
133603
133732
  quash: ['9E', '8E', '7M', '5M'],
133604
133733
  raindance: ['9M', '8M', '7M', '5M'],
@@ -133632,7 +133761,12 @@ export const Learnsets = {
133632
133761
  '5L18'
133633
133762
  ],
133634
133763
  rocktomb: ['9M', '8M', '7M', '5M'],
133635
- roost: ['7M', '7E', '5E'],
133764
+ roost: [
133765
+ '8E', '7M',
133766
+ '7E', '6M',
133767
+ '6E', '5T',
133768
+ '5E'
133769
+ ],
133636
133770
  round: ['8M', '7M', '5M'],
133637
133771
  safeguard: ['8M', '7M', '5M'],
133638
133772
  scratch: ['9L1', '8L1', '7L1'],
@@ -133644,8 +133778,15 @@ export const Learnsets = {
133644
133778
  submission: ['8L30', '7L32', '5L32'],
133645
133779
  substitute: ['9M', '8M', '7M', '5M'],
133646
133780
  sunnyday: ['9M', '8M', '7M', '5M'],
133647
- superpower: ['9L39', '8M', '8L39', '7L45', '5L45'],
133781
+ superpower: [
133782
+ '9L39', '8M',
133783
+ '8L39', '7T',
133784
+ '7L45', '6T',
133785
+ '6L45', '5T',
133786
+ '5L45'
133787
+ ],
133648
133788
  swagger: ['7M', '5M'],
133789
+ takedown: ['9M'],
133649
133790
  taunt: [
133650
133791
  '9M', '9L15',
133651
133792
  '8M', '8L15',
@@ -133656,6 +133797,7 @@ export const Learnsets = {
133656
133797
  thief: ['9M', '8M', '7M', '5M'],
133657
133798
  throatchop: ['8M'],
133658
133799
  toxic: ['7M', '5M'],
133800
+ trailblaze: ['9M'],
133659
133801
  workup: [
133660
133802
  '9L27', '8M',
133661
133803
  '8L27', '7M',
@@ -133674,14 +133816,16 @@ export const Learnsets = {
133674
133816
  '7L17', '5M',
133675
133817
  '5L17'
133676
133818
  ],
133819
+ aircutter: ['9M'],
133677
133820
  airslash: ['9M', '9L31', '8M', '8L31', '7L33', '5L37'],
133678
133821
  aquatail: ['7T'],
133679
133822
  attract: ['8M', '7M', '5M'],
133680
133823
  aurasphere: ['9M', '9L1', '8M', '8L1', '7L1', '5L1'],
133681
133824
  batonpass: ['9M', '8M'],
133825
+ bodypress: ['9M'],
133682
133826
  bodyslam: ['9M', '8M'],
133683
133827
  bravebird: ['9M', '8M'],
133684
- brickbreak: ['9M', '8M', '5M'],
133828
+ brickbreak: ['9M', '9L36', '8M', '7M', '6M', '5M'],
133685
133829
  bulkup: ['9M', '9L1', '8M', '8L1', '7M', '5M'],
133686
133830
  bulldoze: ['9M', '8M', '7M', '5M'],
133687
133831
  closecombat: ['9M', '8M'],
@@ -133740,11 +133884,12 @@ export const Learnsets = {
133740
133884
  rockslide: ['9M', '8M', '7M', '5M'],
133741
133885
  rocksmash: ['9L1', '8L1', '6M', '5M'],
133742
133886
  rocktomb: ['9M', '8M', '7M', '5M'],
133743
- roost: ['9L26', '8L26', '7M'],
133887
+ roost: ['9L26', '8L26', '7M', '6M', '5T'],
133744
133888
  round: ['8M', '7M', '5M'],
133745
133889
  safeguard: ['8M', '7M', '5M'],
133746
133890
  scratch: ['9L1', '8L1', '7L4'],
133747
133891
  secretpower: ['7M'],
133892
+ shellsmash: ['9E'],
133748
133893
  skyattack: ['9L61', '8L61', '7L55'],
133749
133894
  skydrop: ['7M', '7L49', '5M', '5L50'],
133750
133895
  sleeptalk: ['9M', '8M'],
@@ -133762,13 +133907,21 @@ export const Learnsets = {
133762
133907
  '7M', '7L1',
133763
133908
  '5M', '5L1'
133764
133909
  ],
133765
- superpower: ['9L51', '8M', '8L51', '7L50', '5L51'],
133910
+ superpower: [
133911
+ '9L51', '8M',
133912
+ '8L51', '7T',
133913
+ '7L50', '6T',
133914
+ '6L51', '5T',
133915
+ '5L51'
133916
+ ],
133766
133917
  swagger: ['7M', '5M'],
133918
+ takedown: ['9M'],
133767
133919
  taunt: ['9M', '9L1', '8M', '8L1', '7M', '5M'],
133768
133920
  terablast: ['9M'],
133769
133921
  thief: ['9M', '8M', '7M', '5M'],
133770
133922
  throatchop: ['8M'],
133771
133923
  toxic: ['7M', '5M'],
133924
+ trailblaze: ['9M'],
133772
133925
  whirlwind: ['9L18', '8L18', '7L23', '5L23'],
133773
133926
  workup: ['9L1', '8M', '8L1', '7M', '5M']
133774
133927
  }
@@ -133778,6 +133931,7 @@ export const Learnsets = {
133778
133931
  attract: ['8M', '7M', '5M'],
133779
133932
  calmmind: ['9M', '8M', '7M', '5M'],
133780
133933
  confide: ['7M'],
133934
+ confuseray: ['9M'],
133781
133935
  curse: ['9E', '8E', '7E', '5E'],
133782
133936
  cut: ['7M', '5M'],
133783
133937
  darkpulse: ['9M', '8M', '7M'],
@@ -133797,7 +133951,7 @@ export const Learnsets = {
133797
133951
  hex: ['9M', '9L16', '8M', '8L16', '7L18', '5L25'],
133798
133952
  hiddenpower: ['7M', '5M'],
133799
133953
  ingrain: ['9E', '8E', '7E', '5E'],
133800
- leafblade: ['8M', '7E', '5E'],
133954
+ leafblade: ['9E', '8M', '7E', '6E', '5E'],
133801
133955
  leafstorm: ['9M', '8M', '7E', '5E'],
133802
133956
  leechlife: ['9M', '8M', '7M'],
133803
133957
  leechseed: ['9L8', '8L8', '7L8'],
@@ -133831,7 +133985,11 @@ export const Learnsets = {
133831
133985
  sleeptalk: ['9M', '8M', '7M'],
133832
133986
  snore: ['8M', '7T'],
133833
133987
  solarbeam: ['9M', '8M', '7M', '5M'],
133834
- spite: ['7T'],
133988
+ spite: [
133989
+ '9E', '8E', '7T',
133990
+ '7E', '6T', '6E',
133991
+ '5T', '5E'
133992
+ ],
133835
133993
  substitute: ['9M', '8M', '7M', '5M'],
133836
133994
  sunnyday: ['9M', '8M', '7M', '5M'],
133837
133995
  swagger: ['7M', '5M'],
@@ -133841,6 +133999,7 @@ export const Learnsets = {
133841
133999
  torment: ['7M', '5M'],
133842
134000
  toxic: ['7M', '5M'],
133843
134001
  toxicspikes: ['9M', '9L20', '8M', '8L20', '7L23', '5L19'],
134002
+ trailblaze: ['9M'],
133844
134003
  vinewhip: ['9L1', '8L1', '7L1', '5L1'],
133845
134004
  willowisp: [
133846
134005
  '9M', '9L20',
@@ -133856,6 +134015,7 @@ export const Learnsets = {
133856
134015
  attract: ['8M', '7M', '5M'],
133857
134016
  calmmind: ['9M', '8M', '7M', '5M'],
133858
134017
  confide: ['7M'],
134018
+ confuseray: ['9M'],
133859
134019
  crunch: ['9M', '8M'],
133860
134020
  cut: ['7M', '5M'],
133861
134021
  darkpulse: ['9M', '8M', '7M'],
@@ -133911,7 +134071,7 @@ export const Learnsets = {
133911
134071
  snore: ['8M', '7T'],
133912
134072
  solarbeam: ['9M', '8M', '7M', '5M'],
133913
134073
  solarblade: ['8M'],
133914
- spite: ['7T'],
134074
+ spite: ['7T', '6T', '5T'],
133915
134075
  stoneedge: ['9M', '8M', '7M', '5M'],
133916
134076
  substitute: ['9M', '8M', '7M', '5M'],
133917
134077
  sunnyday: ['9M', '8M', '7M', '5M'],
@@ -133924,6 +134084,7 @@ export const Learnsets = {
133924
134084
  torment: ['7M', '5M'],
133925
134085
  toxic: ['7M', '5M'],
133926
134086
  toxicspikes: ['9M', '9L20', '8M', '8L20', '7L23', '5L19'],
134087
+ trailblaze: ['9M'],
133927
134088
  vinewhip: ['9L1', '8L1', '7L1', '5L1'],
133928
134089
  willowisp: [
133929
134090
  '9M', '9L20',
@@ -133953,7 +134114,7 @@ export const Learnsets = {
133953
134114
  drainingkiss: ['9M', '9L16', '8M', '8L16', '7L20', '7E'],
133954
134115
  ember: ['9L1', '8L1', '7L1', '5L1'],
133955
134116
  endure: ['9M', '8M'],
133956
- eruption: ['9L56', '8L56', '7L57', '5L52'],
134117
+ eruption: ['9L68', '8L68', '7L57', '5L52'],
133957
134118
  explosion: ['7M', '5M'],
133958
134119
  facade: ['9M', '8M', '7M', '5M'],
133959
134120
  finalgambit: ['9L60', '8L60', '7L60', '5L57'],
@@ -133963,26 +134124,27 @@ export const Learnsets = {
133963
134124
  flamethrower: ['9M', '8M', '7M', '5M'],
133964
134125
  flash: ['6M', '5M'],
133965
134126
  frustration: ['7M', '5M'],
133966
- gastroacid: ['9L52', '8L52', '7M', '6T', '5E'],
134127
+ gastroacid: ['9L56', '8L56', '7M', '6T', '5E'],
133967
134128
  gigaimpact: ['9M', '8M', '7M', '5M'],
133968
134129
  gunkshot: ['9M', '8M', '7L52', '6T', '5L49'],
133969
- healbell: ['7E', '6T', '5E'],
134130
+ healbell: ['7T', '7E', '6T', '6E', '5T', '5E'],
133970
134131
  healpulse: ['9E', '8E', '7E', '5E'],
133971
134132
  heatwave: ['9M', '8M', '7L36', '6T', '5L33'],
133972
134133
  helpinghand: ['9M', '8M', '7E', '6T', '5E'],
133973
134134
  hiddenpower: ['7M', '5M'],
134135
+ hydropump: ['9M'],
133974
134136
  hyperbeam: ['9M', '8M', '7M', '5M'],
133975
- inferno: ['9L44', '8L44', '7L49', '5L44'],
134137
+ inferno: ['9L48', '8L48', '7L49', '5L44'],
133976
134138
  lavaplume: ['9L28', '8L28', '7L28', '5L25'],
133977
134139
  leechlife: ['9M', '8M', '7M'],
133978
134140
  lifedew: ['9L20', '8L20'],
133979
134141
  lightscreen: ['9M', '8M', '7M', '5M'],
133980
- moonlight: ['9L36', '8L36', '7L33', '5L28'],
134142
+ moonlight: ['9L40', '8L40', '7L33', '5L28'],
133981
134143
  overheat: ['9M', '8M', '7M', '5M'],
133982
134144
  protect: ['9M', '8M', '7M', '5M'],
133983
134145
  raindance: ['9M', '8M', '7M', '5M'],
133984
134146
  rapidspin: ['9E', '8E', '7E', '5E'],
133985
- recover: ['9L48', '8L48', '7L41', '5L36'],
134147
+ recover: ['9L52', '8L52', '7L41', '5L36'],
133986
134148
  rest: ['9M', '8M', '7M', '5M'],
133987
134149
  return: ['7M', '5M'],
133988
134150
  round: ['8M', '7M', '5M'],
@@ -133992,7 +134154,7 @@ export const Learnsets = {
133992
134154
  skittersmack: ['8T'],
133993
134155
  sleeptalk: ['9M', '8M', '7M', '7E', '5E'],
133994
134156
  sludgebomb: ['9M', '8M', '7M', '5M'],
133995
- sludgewave: ['8M', '7M', '5M'],
134157
+ sludgewave: ['9L36', '8M', '8L36', '7M', '5M'],
133996
134158
  snore: ['8M', '7T'],
133997
134159
  solarbeam: ['9M', '8M', '7M', '5M'],
133998
134160
  spotlight: ['7L65'],
@@ -134007,7 +134169,7 @@ export const Learnsets = {
134007
134169
  thunderbolt: ['9M', '8M', '7M', '5M'],
134008
134170
  thunderwave: ['9M', '8M', '7M', '5M'],
134009
134171
  toxic: ['9L64', '8L64', '7M', '5M'],
134010
- toxicspikes: ['9M', '9L40', '8M', '8L40', '7L44', '5L41'],
134172
+ toxicspikes: ['9M', '9L44', '8M', '8L44', '7L44', '5L41'],
134011
134173
  trick: ['9M', '8M', '7E', '6T', '5E'],
134012
134174
  venomdrench: ['8M', '7E'],
134013
134175
  venoshock: ['9M', '8M', '7M', '5M'],
@@ -134022,11 +134184,12 @@ export const Learnsets = {
134022
134184
  attract: ['8M', '7M', '5M'],
134023
134185
  bugbite: ['9L15', '8L15', '7T', '7L7', '5T', '5L7'],
134024
134186
  bugbuzz: ['9M', '8M', '7E', '5E'],
134187
+ calmmind: ['9M'],
134025
134188
  closecombat: ['9M', '8M', '7E', '5E'],
134026
134189
  confide: ['7M'],
134027
134190
  counter: ['9E', '8E', '7E', '5E'],
134028
134191
  cut: ['6M', '5M'],
134029
- disable: ['7E', '5E'],
134192
+ disable: ['9E', '7E', '6E', '5E'],
134030
134193
  doubleteam: ['9L9', '8L9', '7M', '5M'],
134031
134194
  dreameater: ['7M', '5M'],
134032
134195
  echoedvoice: ['7M', '5M'],
@@ -134049,12 +134212,13 @@ export const Learnsets = {
134049
134212
  lightscreen: ['9M', '8M', '7M', '5M'],
134050
134213
  magiccoat: ['7T', '5T'],
134051
134214
  magicroom: ['8M', '7T', '5T'],
134052
- megahorn: ['8M', '7E', '5E'],
134215
+ megahorn: ['9E', '8M', '7E', '6E', '5E'],
134053
134216
  nastyplot: ['9M', '8M'],
134217
+ pounce: ['9M'],
134054
134218
  protect: ['9M', '8M', '7M', '5M'],
134055
134219
  psychic: ['9M', '9L33', '8M', '8L33', '7M', '5M'],
134056
134220
  psychicterrain: ['9M', '8M'],
134057
- psychup: ['7M', '5M'],
134221
+ psychup: ['9E', '7M', '6M', '5M'],
134058
134222
  psyshock: ['9M', '8M', '7M', '5M'],
134059
134223
  raindance: ['9M', '8M', '7M', '5M'],
134060
134224
  recycle: ['7T', '5T'],
@@ -134117,6 +134281,7 @@ export const Learnsets = {
134117
134281
  attract: ['8M', '7M', '5M'],
134118
134282
  bugbite: ['9L15', '8L15', '7T', '7L7', '5T', '5L7'],
134119
134283
  bugbuzz: ['9M', '8M'],
134284
+ calmmind: ['9M'],
134120
134285
  closecombat: ['9M', '8M'],
134121
134286
  confide: ['7M'],
134122
134287
  cut: ['6M', '5M'],
@@ -134149,6 +134314,7 @@ export const Learnsets = {
134149
134314
  megahorn: ['8M'],
134150
134315
  nastyplot: ['9M', '9L42', '8M', '8L42'],
134151
134316
  ominouswind: ['7L27', '5L27'],
134317
+ pounce: ['9M'],
134152
134318
  protect: ['9M', '8M', '7M', '5M'],
134153
134319
  psychic: [
134154
134320
  '9M', '9L47',
@@ -134221,6 +134387,7 @@ export const Learnsets = {
134221
134387
  blizzard: ['9M', '8M', '7M', '5M'],
134222
134388
  bugbite: ['9L15', '8L15', '7T', '5T'],
134223
134389
  bugbuzz: ['8M'],
134390
+ calmmind: ['9M'],
134224
134391
  closecombat: ['9M', '8M'],
134225
134392
  confide: ['7M'],
134226
134393
  cut: ['6M', '5M'],
@@ -134256,6 +134423,7 @@ export const Learnsets = {
134256
134423
  nastyplot: ['9M', '9L42', '8M', '8L42'],
134257
134424
  ominouswind: ['7L27', '5L27'],
134258
134425
  overheat: ['9M', '8M', '7M', '5M'],
134426
+ pounce: ['9M'],
134259
134427
  protect: ['9M', '8M', '7M', '5M'],
134260
134428
  psychic: ['9M', '9L47', '8M', '8L47', '7M', '5M'],
134261
134429
  psychicterrain: ['9M', '9L0', '8M', '8L0', '7L1'],
@@ -134321,10 +134489,11 @@ export const Learnsets = {
134321
134489
  aromatherapy: ['8E', '7E', '5E'],
134322
134490
  attract: ['8M', '7M', '5M'],
134323
134491
  beatup: ['8M', '7E', '5E'],
134492
+ belch: ['9E', '8E', '7E'],
134324
134493
  bind: ['7T', '5T'],
134325
134494
  brutalswing: ['8M', '7M'],
134326
134495
  confide: ['7M'],
134327
- crunch: ['9M', '9L36', '8M', '8L36', '7L43', '5L39'],
134496
+ crunch: ['9M', '9L28', '8M', '8L28', '7L43', '5L39'],
134328
134497
  cut: ['6M', '5M'],
134329
134498
  darkpulse: ['9M', '8M', '7M', '5T'],
134330
134499
  doubleteam: ['7M', '5M'],
@@ -134349,9 +134518,9 @@ export const Learnsets = {
134349
134518
  hiddenpower: ['7M', '5M'],
134350
134519
  icefang: ['9M', '8M', '7E'],
134351
134520
  irontail: ['8M', '7T', '5T'],
134352
- knockoff: ['7T', '5T'],
134521
+ knockoff: ['9E', '8E', '7T', '6T', '5T'],
134353
134522
  lashout: ['8T'],
134354
- leafblade: ['9L28', '8M', '8L28', '7L26', '5L34'],
134523
+ leafblade: ['9L36', '8M', '8L36', '7L26', '5L34'],
134355
134524
  leer: ['9L1', '8L1', '7L1'],
134356
134525
  nastyplot: ['9M', '8M'],
134357
134526
  naturepower: ['7M'],
@@ -134359,11 +134528,12 @@ export const Learnsets = {
134359
134528
  partingshot: ['9L48', '8L48'],
134360
134529
  payback: ['9L8', '8M', '8L8', '7M', '5M'],
134361
134530
  poisonpowder: ['9E', '8E', '7E', '5E'],
134362
- powerwhip: ['8M', '7L44', '5L50'],
134531
+ poisontail: ['9M', '9E', '8E', '7E', '6E', '5E'],
134532
+ powerwhip: ['9L52', '8M', '8L52', '7L44', '5L50'],
134363
134533
  protect: ['9M', '8M', '7M', '5M'],
134364
134534
  punishment: ['7L55', '5L55'],
134365
134535
  pursuit: ['7L8', '5L1'],
134366
- recycle: ['7T'],
134536
+ recycle: ['9E', '7T', '6T', '5T'],
134367
134537
  rest: ['9M', '8M', '7M', '5M'],
134368
134538
  retaliate: ['8M', '7M', '5M'],
134369
134539
  return: ['7M', '5M'],
@@ -134376,7 +134546,7 @@ export const Learnsets = {
134376
134546
  '7L11', '7E',
134377
134547
  '5E'
134378
134548
  ],
134379
- screech: ['8M', '7E', '5E'],
134549
+ screech: ['9E', '8M', '7E', '5E'],
134380
134550
  secretpower: ['7M'],
134381
134551
  seedbomb: ['9M', '8M', '7T', '5T'],
134382
134552
  skittersmack: ['8T'],
@@ -134386,20 +134556,25 @@ export const Learnsets = {
134386
134556
  snore: ['8M', '7T', '5T'],
134387
134557
  solarbeam: ['9M', '8M', '7M', '5M'],
134388
134558
  spikyshield: ['9L40', '8L40', '7L40'],
134389
- spite: ['7T', '5T'],
134559
+ spite: ['9E', '7T', '6T', '5T'],
134390
134560
  strength: ['6M', '5M'],
134391
134561
  stunspore: ['9E', '8E', '7E', '5E'],
134392
134562
  substitute: ['9M', '8M', '7M', '5M'],
134393
134563
  suckerpunch: ['9L20', '8L20', '7L18', '5L25'],
134394
134564
  sunnyday: ['8M', '7M', '5M'],
134395
- swagger: ['7M', '5M'],
134565
+ swagger: ['7M', '6M', '5M'],
134396
134566
  sweetscent: ['9E', '8E', '7E', '5E'],
134397
- synthesis: ['7T', '5T'],
134567
+ synthesis: [
134568
+ '9E', '8E', '7T',
134569
+ '7E', '6T', '6E',
134570
+ '5T', '5E'
134571
+ ],
134398
134572
  taunt: ['9M', '8M', '7M', '5M'],
134399
134573
  terablast: ['9M'],
134400
134574
  thief: ['9M', '8M', '7M', '5M'],
134401
134575
  thunderfang: ['9M', '8M', '7E'],
134402
- toxic: ['7M', '5M'],
134576
+ toxic: ['7M', '6M', '5M'],
134577
+ trailblaze: ['9M'],
134403
134578
  uturn: ['9M', '8M', '7M', '5M'],
134404
134579
  vinewhip: ['9L4', '8L4', '7L5', '5L1'],
134405
134580
  weatherball: ['8M'],
@@ -134417,7 +134592,7 @@ export const Learnsets = {
134417
134592
  breakingswipe: ['8M'],
134418
134593
  brutalswing: ['8M', '7M'],
134419
134594
  confide: ['7M'],
134420
- crunch: ['9M', '9L38', '8M', '8L38', '7L43', '5L42'],
134595
+ crunch: ['9M', '9L28', '8M', '8L28', '7L43', '5L42'],
134421
134596
  cut: ['6M', '5M'],
134422
134597
  darkpulse: ['9M', '8M', '7M', '5T'],
134423
134598
  doubleteam: ['7M', '5M'],
@@ -134438,25 +134613,27 @@ export const Learnsets = {
134438
134613
  '5M', '5L18'
134439
134614
  ],
134440
134615
  grassyglide: ['8T'],
134616
+ gravapple: ['9L0', '8L0'],
134441
134617
  healbell: ['7T', '5T'],
134442
134618
  hiddenpower: ['7M', '5M'],
134443
134619
  hyperbeam: ['9M', '8M', '7M', '5M'],
134444
134620
  icefang: ['9M', '8M'],
134445
134621
  irontail: ['8M', '7T', '5T'],
134446
- knockoff: ['7T', '5T'],
134622
+ knockoff: ['7T', '6T', '5T'],
134447
134623
  lashout: ['8T'],
134448
- leafblade: ['9L28', '8M', '8L28', '7L34', '5L36'],
134624
+ leafblade: ['9L38', '8M', '8L38', '7L34', '5L36'],
134449
134625
  leer: ['9L1', '8L1', '7L1'],
134450
134626
  nastyplot: ['9M', '8M'],
134451
134627
  naturepower: ['7M'],
134452
134628
  partingshot: ['9L56', '8L56'],
134453
134629
  payback: ['9L1', '8M', '8L1', '7M', '5M'],
134454
- powerwhip: ['8M', '7L48', '5L57'],
134630
+ poisontail: ['9M'],
134631
+ powerwhip: ['9L1', '8M', '8L1', '7L48', '5L57'],
134455
134632
  protect: ['9M', '8M', '7M', '5M'],
134456
134633
  punishment: ['7L62', '5L66'],
134457
134634
  pursuit: ['7L10', '5L1'],
134458
- rapidspin: ['9L0', '8L0', '7L1', '5L1'],
134459
- recycle: ['7T'],
134635
+ rapidspin: ['9L1', '8L1', '7L1', '6L1', '5L1'],
134636
+ recycle: ['7T', '6T', '5T'],
134460
134637
  rest: ['9M', '8M', '7M', '5M'],
134461
134638
  retaliate: ['8M', '7M', '5M'],
134462
134639
  return: ['7M', '5M'],
@@ -134475,19 +134652,20 @@ export const Learnsets = {
134475
134652
  solarbeam: ['9M', '8M', '7M', '5M'],
134476
134653
  solarblade: ['9L62', '8M', '8L62', '7L66'],
134477
134654
  spikyshield: ['9L44', '8L44', '7L52'],
134478
- spite: ['7T', '5T'],
134655
+ spite: ['7T', '6T', '5T'],
134479
134656
  strength: ['6M', '5M'],
134480
134657
  substitute: ['9M', '8M', '7M', '5M'],
134481
134658
  suckerpunch: ['9L20', '8L20', '7L24', '5L25'],
134482
134659
  sunnyday: ['9M', '8M', '7M', '5M'],
134483
134660
  swagger: ['7M', '5M'],
134484
- synthesis: ['7T', '5T'],
134661
+ synthesis: ['7T', '6T', '5T'],
134485
134662
  taunt: ['9M', '8M', '7M', '5M'],
134486
134663
  terablast: ['9M'],
134487
134664
  thief: ['9M', '8M', '7M', '5M'],
134488
134665
  throatchop: ['8M'],
134489
134666
  thunderfang: ['9M', '8M'],
134490
- toxic: ['7M', '5M'],
134667
+ toxic: ['7M', '6M', '5M'],
134668
+ trailblaze: ['9M'],
134491
134669
  uturn: ['9M', '8M', '7M', '5M'],
134492
134670
  vinewhip: ['9L1', '8L1', '7L6', '5L1'],
134493
134671
  weatherball: ['8M'],
@@ -134500,7 +134678,8 @@ export const Learnsets = {
134500
134678
  cawdet: {
134501
134679
  learnset: {
134502
134680
  acrobatics: ['9M', '8M', '5M'],
134503
- aerialace: ['9M', '8E', '5M'],
134681
+ aerialace: ['9M', '9E', '8E', '5M'],
134682
+ aircutter: ['9M'],
134504
134683
  airslash: ['9M', '8M', '7E', '5E'],
134505
134684
  assurance: ['8M'],
134506
134685
  attract: ['8M', '5M'],
@@ -134509,12 +134688,17 @@ export const Learnsets = {
134509
134688
  brickbreak: ['9M', '8M', '5M'],
134510
134689
  brine: ['9L28', '8M', '8L28', '5L42'],
134511
134690
  bulletpunch: ['9L8', '8L8', '5L38'],
134691
+ chillingwater: ['9M'],
134512
134692
  confide: ['7M'],
134513
134693
  detect: ['9L32', '8L32', '5L26'],
134514
134694
  doubleteam: ['5M'],
134515
134695
  drainpunch: ['9M', '8M', '5T'],
134516
134696
  drillpeck: ['9E', '8E', '7E', '5E'],
134517
- endeavor: ['5T'],
134697
+ endeavor: [
134698
+ '9E', '8E', '7T',
134699
+ '7E', '6T', '6E',
134700
+ '5T', '5E'
134701
+ ],
134518
134702
  endure: ['9M', '8M'],
134519
134703
  facade: ['9M', '8M', '5M'],
134520
134704
  flashcannon: ['9M', '9L44', '8M', '8L44', '5M', '5L49'],
@@ -134525,7 +134709,11 @@ export const Learnsets = {
134525
134709
  hurricane: ['9M', '9L48', '8M', '8L48', '5L53'],
134526
134710
  irondefense: ['9M', '8M'],
134527
134711
  ironhead: ['9M', '8M', '5T'],
134528
- knockoff: ['5T'],
134712
+ knockoff: [
134713
+ '9E', '8E', '7T',
134714
+ '7E', '6T', '6E',
134715
+ '5T', '5E'
134716
+ ],
134529
134717
  leer: ['9L1', '8L1', '5L1'],
134530
134718
  metalclaw: ['9M', '9L12', '8L12', '5L13'],
134531
134719
  metalsound: ['9E', '8E', '7E', '5E'],
@@ -134561,6 +134749,7 @@ export const Learnsets = {
134561
134749
  swagger: ['5M'],
134562
134750
  swift: ['9M', '9L20', '8M', '8L20', '5L9'],
134563
134751
  tailwind: ['9M', '9L40', '8L40', '5T', '5L45'],
134752
+ takedown: ['9M'],
134564
134753
  terablast: ['9M'],
134565
134754
  toxic: ['5M'],
134566
134755
  waterpulse: ['9M', '7T'],
@@ -134574,6 +134763,7 @@ export const Learnsets = {
134574
134763
  acrobatics: ['9M', '8M', '7M', '5M'],
134575
134764
  aerialace: ['9M', '7M', '5M'],
134576
134765
  agility: ['9M', '8M'],
134766
+ aircutter: ['9M'],
134577
134767
  airslash: ['9M', '8M'],
134578
134768
  assurance: ['8M'],
134579
134769
  attract: ['8M', '7M', '5M'],
@@ -134584,12 +134774,13 @@ export const Learnsets = {
134584
134774
  brickbreak: ['9M', '8M', '7M', '5M'],
134585
134775
  brine: ['9L28', '8M', '8L28', '7L44', '5L44'],
134586
134776
  bulletpunch: ['9L1', '8L1', '7L39', '5L39'],
134777
+ chillingwater: ['9M'],
134587
134778
  confide: ['7M'],
134588
134779
  detect: ['9L32', '8L32', '7L26', '5L26'],
134589
134780
  doubleteam: ['7M', '5M'],
134590
134781
  drainpunch: ['9M', '8M', '7T', '5T'],
134591
134782
  dualwingbeat: ['8T'],
134592
- endeavor: ['7T', '5T'],
134783
+ endeavor: ['7T', '6T', '5T'],
134593
134784
  endure: ['9M', '8M'],
134594
134785
  facade: ['9M', '8M', '7M', '5M'],
134595
134786
  flashcannon: [
@@ -134607,7 +134798,7 @@ export const Learnsets = {
134607
134798
  hyperbeam: ['9M', '8M', '7M', '5M'],
134608
134799
  irondefense: ['9M', '8M'],
134609
134800
  ironhead: ['9M', '8M', '7T', '5T'],
134610
- knockoff: ['7T', '5T'],
134801
+ knockoff: ['7T', '6T', '5T'],
134611
134802
  leer: ['9L1', '8L1', '7L1', '5L1'],
134612
134803
  megapunch: ['8M'],
134613
134804
  metalclaw: ['9M', '9L12', '8L12', '7L13', '5L13'],
@@ -134640,6 +134831,7 @@ export const Learnsets = {
134640
134831
  swagger: ['7M', '5M'],
134641
134832
  swift: ['9M', '9L20', '8M', '8L20', '7L9', '5L9'],
134642
134833
  tailwind: ['9M', '9L44', '8L44', '5T', '5L48'],
134834
+ takedown: ['9M'],
134643
134835
  terablast: ['9M'],
134644
134836
  throatchop: ['8M'],
134645
134837
  toxic: ['7M', '5M'],
@@ -134665,12 +134857,14 @@ export const Learnsets = {
134665
134857
  destinybond: ['9L44', '8L44', '6L32'],
134666
134858
  dive: ['9L28', '8M', '8L28', '6L36'],
134667
134859
  doubleteam: ['6M'],
134860
+ extrasensory: ['9L40', '8L40'],
134668
134861
  facade: ['9M', '8M', '6M'],
134669
134862
  falseswipe: ['9M', '8M', '6M'],
134670
134863
  fireblast: ['9M', '8M', '6M'],
134671
134864
  firespin: ['9M', '9L8', '8M', '8L8', '6L18'],
134672
134865
  flameburst: ['6L23'],
134673
134866
  flamethrower: ['9M', '8M', '6M'],
134867
+ flareblitz: ['9M'],
134674
134868
  flash: ['6M', '6L1'],
134675
134869
  flashcannon: ['9M', '8M', '6M'],
134676
134870
  fling: ['9M', '8M', '6M'],
@@ -134680,12 +134874,13 @@ export const Learnsets = {
134680
134874
  hiddenpower: ['6M'],
134681
134875
  hydropump: ['9M', '9L48', '8M', '8L48', '6L51'],
134682
134876
  incinerate: ['9L20', '8L20', '6M'],
134683
- infestation: ['7M'],
134877
+ infestation: ['9E', '8E', '7M', '6M'],
134684
134878
  leechlife: ['9M', '8M', '6L1'],
134685
134879
  memento: ['9L52', '8L52', '6L59'],
134686
134880
  muddywater: ['8M'],
134687
134881
  overheat: ['9M', '8M', '6M'],
134688
134882
  payback: ['8M', '6M'],
134883
+ pounce: ['9M'],
134689
134884
  powergem: ['9M', '9L36', '8M', '8L36', '6L39'],
134690
134885
  protect: ['9M', '8M', '6M'],
134691
134886
  quash: ['6M'],
@@ -134695,7 +134890,7 @@ export const Learnsets = {
134695
134890
  rest: ['9M', '8M', '6M'],
134696
134891
  return: ['6M'],
134697
134892
  round: ['8M', '6M'],
134698
- scald: ['9L40', '8M', '8L40', '6M', '6L28'],
134893
+ scald: ['8M', '7M', '6M', '6L28'],
134699
134894
  scaryface: ['9M', '8M', '7E', '6E'],
134700
134895
  scorchingsands: ['8T'],
134701
134896
  skittersmack: ['8T'],
@@ -134713,7 +134908,7 @@ export const Learnsets = {
134713
134908
  uturn: ['9M', '8M', '6M'],
134714
134909
  waterfall: ['9M', '8M', '6M'],
134715
134910
  watergun: ['9L4', '8L4', '6L1'],
134716
- waterpulse: ['9M', '8E', '7E', '6E'],
134911
+ waterpulse: ['9M', '9E', '8E', '7E', '6E'],
134717
134912
  whirlpool: ['9L16', '8M', '8L16', '6L14'],
134718
134913
  willowisp: ['9M', '8M', '6M']
134719
134914
  }
@@ -134734,6 +134929,7 @@ export const Learnsets = {
134734
134929
  destinybond: ['9L56', '8L56', '7L32', '6L32'],
134735
134930
  dive: ['9L28', '8M', '8L28', '6L37'],
134736
134931
  doubleteam: ['7M', '6M'],
134932
+ extrasensory: ['9L50', '8L50'],
134737
134933
  facade: ['9M', '8M', '7M', '6M'],
134738
134934
  falseswipe: ['9M', '8M', '7M', '6M'],
134739
134935
  fireblast: ['9M', '8M', '7M', '6M'],
@@ -134741,6 +134937,7 @@ export const Learnsets = {
134741
134937
  firespin: ['9M', '9L1', '8M', '8L1', '7L18', '6L18'],
134742
134938
  flameburst: ['7L23', '6L23'],
134743
134939
  flamethrower: ['9M', '8M', '7M', '6M'],
134940
+ flareblitz: ['9M'],
134744
134941
  flash: ['7L1', '6M', '6L1'],
134745
134942
  flashcannon: ['9M', '8M', '7M', '6M'],
134746
134943
  fling: ['9M', '8M', '7M', '6M'],
@@ -134752,13 +134949,14 @@ export const Learnsets = {
134752
134949
  hydropump: ['9M', '9L62', '8M', '8L62', '7L56', '6L56'],
134753
134950
  hyperbeam: ['9M', '8M', '7M', '6M'],
134754
134951
  incinerate: ['9L20', '8L20', '7M'],
134755
- infestation: ['7M'],
134952
+ infestation: ['7M', '6M'],
134756
134953
  leechlife: ['9M', '8M', '7M', '6L1'],
134757
134954
  liquidation: ['9M', '8M'],
134758
134955
  memento: ['9L68', '8L68', '7L66', '6L66'],
134759
134956
  muddywater: ['8M'],
134760
134957
  overheat: ['9M', '8M', '7M', '6M'],
134761
134958
  payback: ['8M', '7M', '6M'],
134959
+ pounce: ['9M'],
134762
134960
  powergem: ['9M', '9L44', '8M', '8L44', '7L42', '6L42'],
134763
134961
  protect: ['9M', '8M', '7M', '6M'],
134764
134962
  quash: ['7M', '6M'],
@@ -134773,8 +134971,8 @@ export const Learnsets = {
134773
134971
  return: ['7M', '6M'],
134774
134972
  round: ['8M', '7M', '6M'],
134775
134973
  scald: [
134776
- '9L50', '8M',
134777
- '8L50', '7M',
134974
+ '9L0', '8M',
134975
+ '8L0', '7M',
134778
134976
  '7L28', '6M',
134779
134977
  '6L28'
134780
134978
  ],
@@ -134804,10 +135002,13 @@ export const Learnsets = {
134804
135002
  snugglow: {
134805
135003
  learnset: {
134806
135004
  acid: ['9L8', '8L8', '6L12'],
134807
- aquatail: ['9L44', '8L44', '6L32'],
135005
+ acidspray: ['9M'],
135006
+ aquatail: ['9E', '8E', '6L32'],
134808
135007
  attract: ['8M', '6M'],
134809
135008
  aurasphere: ['9M', '8M', '7E'],
134810
135009
  block: ['7T'],
135010
+ chargebeam: ['9M', '7M', '6M'],
135011
+ chillingwater: ['9M'],
134811
135012
  clearsmog: ['9L28', '8L28', '6L22'],
134812
135013
  confide: ['6M'],
134813
135014
  crosspoison: ['8M'],
@@ -134828,7 +135029,6 @@ export const Learnsets = {
134828
135029
  hiddenpower: ['6M'],
134829
135030
  iondeluge: ['6L26'],
134830
135031
  irontail: ['9M', '8M'],
134831
- magnetrise: ['7T'],
134832
135032
  paraboliccharge: ['9L24', '8L24', '6L36'],
134833
135033
  poisonjab: ['9M', '8M'],
134834
135034
  poisonsting: ['9L1', '8L1', '6L6'],
@@ -134843,15 +135043,16 @@ export const Learnsets = {
134843
135043
  return: ['6M'],
134844
135044
  risingvoltage: ['8T'],
134845
135045
  round: ['8M', '6M'],
134846
- shockwave: ['7E', '6E'],
135046
+ shockwave: ['9E', '7E', '6E'],
134847
135047
  signalbeam: ['7E', '6E'],
134848
135048
  sleeptalk: ['9M', '8M', '6M'],
134849
135049
  sludgebomb: ['9M', '8M', '6M'],
134850
- sludgewave: ['8M', '6M'],
135050
+ sludgewave: ['9L44', '8M', '8L44', '7M', '6M'],
134851
135051
  snore: ['8M'],
134852
135052
  splash: ['9E', '8E', '7E', '6E'],
134853
135053
  substitute: ['9M', '8M', '6M'],
134854
135054
  supersonic: ['9L4', '8L4', '6L1'],
135055
+ surf: ['9M'],
134855
135056
  swagger: ['6M'],
134856
135057
  taunt: ['9M', '8M', '6M'],
134857
135058
  terablast: ['9M'],
@@ -134862,7 +135063,7 @@ export const Learnsets = {
134862
135063
  toxic: ['9E', '8E', '6M'],
134863
135064
  venomdrench: ['8M', '7E'],
134864
135065
  venoshock: ['9M', '8M', '6M'],
134865
- waterpulse: ['9M', '8E', '7E', '6E'],
135066
+ waterpulse: ['9M', '9E', '8E', '7E', '6E'],
134866
135067
  wideguard: ['9E', '8E', '7E', '6E'],
134867
135068
  wildcharge: ['9M', '8M', '6M'],
134868
135069
  zenheadbutt: ['9M', '8M']
@@ -134871,12 +135072,15 @@ export const Learnsets = {
134871
135072
  plasmanta: {
134872
135073
  learnset: {
134873
135074
  acid: ['9L1', '8L1', '7L12', '6L12'],
134874
- aquatail: ['9L52', '8L52', '7L33', '6T', '6L33'],
135075
+ acidspray: ['9M'],
135076
+ aquatail: ['7L33', '6T', '6L33'],
134875
135077
  attract: ['8M', '7M', '6M'],
134876
135078
  aurasphere: ['9M', '8M'],
134877
135079
  block: ['7T'],
134878
135080
  bodypress: ['9M', '8M'],
134879
135081
  bodyslam: ['9M', '8M'],
135082
+ chargebeam: ['9M', '7M', '6M'],
135083
+ chillingwater: ['9M'],
134880
135084
  clearsmog: ['9L28', '8L28', '7L22', '6L22'],
134881
135085
  confide: ['7M', '6M'],
134882
135086
  corrosivegas: ['8T'],
@@ -134901,7 +135105,7 @@ export const Learnsets = {
134901
135105
  iondeluge: ['7L26', '6L26'],
134902
135106
  irontail: ['8M', '7T'],
134903
135107
  liquidation: ['9M', '8M'],
134904
- magnetrise: ['7T'],
135108
+ magnetrise: ['9L1', '8L1', '7T'],
134905
135109
  paraboliccharge: ['9L24', '8L24', '7L38', '6L38'],
134906
135110
  poisonjab: ['9M', '8M', '7M'],
134907
135111
  poisonsting: ['9L1', '8L1', '7L1', '6L1'],
@@ -134919,10 +135123,11 @@ export const Learnsets = {
134919
135123
  signalbeam: ['6T'],
134920
135124
  sleeptalk: ['9M', '8M', '7M', '6M'],
134921
135125
  sludgebomb: ['9M', '8M', '7M', '6M'],
134922
- sludgewave: ['8M', '7M', '6M'],
135126
+ sludgewave: ['9L52', '8M', '8L52', '7M', '6M'],
134923
135127
  snore: ['8M', '7T'],
134924
135128
  substitute: ['9M', '8M', '7M', '6M'],
134925
135129
  supersonic: ['9L1', '8L1', '7L1', '6L1'],
135130
+ surf: ['9M'],
134926
135131
  swagger: ['9L58', '8L58', '7M', '7L56', '6M', '6L56'],
134927
135132
  taunt: ['9M', '8M', '7M', '6M'],
134928
135133
  terablast: ['9M'],
@@ -134958,6 +135163,7 @@ export const Learnsets = {
134958
135163
  brutalswing: ['8M'],
134959
135164
  bubblebeam: ['9L22', '8L22', '6L23'],
134960
135165
  calmmind: ['9M', '8M', '6M'],
135166
+ chillingwater: ['9M'],
134961
135167
  confide: ['6M'],
134962
135168
  crunch: ['9M', '8M'],
134963
135169
  dive: ['8M', '6M'],
@@ -134984,13 +135190,13 @@ export const Learnsets = {
134984
135190
  icefang: ['9M', '8M', '7E', '6E'],
134985
135191
  icepunch: ['9M', '8M', '6T'],
134986
135192
  iciclecrash: ['9L36', '8L36', '6L42'],
134987
- iciclespear: ['8M', '7E', '6E'],
135193
+ iciclespear: ['9E', '8M', '7E', '6E'],
134988
135194
  icywind: ['9M', '8M', '6T'],
134989
135195
  ironhead: ['9M', '9L33', '8M', '8L33', '6T', '6L53'],
134990
135196
  irontail: ['8M', '7E', '6T', '6E'],
134991
135197
  metalclaw: ['9M', '9L9', '8L9', '6L11'],
134992
135198
  metronome: ['9M', '8M', '7E', '6E'],
134993
- muddywater: ['8M'],
135199
+ muddywater: ['9E', '8M', '7E', '6E'],
134994
135200
  peck: ['9L1', '8L1', '6L1'],
134995
135201
  protect: ['9M', '9L42', '8M', '8L42', '6M'],
134996
135202
  psychicfangs: ['9M', '8M', '7E'],
@@ -135032,6 +135238,7 @@ export const Learnsets = {
135032
135238
  brutalswing: ['8M'],
135033
135239
  bubblebeam: ['9L24', '8L24', '6L25'],
135034
135240
  calmmind: ['9M', '8M', '6M'],
135241
+ chillingwater: ['9M'],
135035
135242
  confide: ['6M'],
135036
135243
  crunch: ['9M', '8M'],
135037
135244
  dive: ['8M', '6M'],
@@ -135114,6 +135321,7 @@ export const Learnsets = {
135114
135321
  brutalswing: ['8M', '7M'],
135115
135322
  bubblebeam: ['9L24', '8L24', '7L25', '6L25'],
135116
135323
  calmmind: ['9M', '8M', '7M', '6M'],
135324
+ chillingwater: ['9M'],
135117
135325
  confide: ['7M', '6M'],
135118
135326
  crunch: ['9M', '8M'],
135119
135327
  dive: ['8M', '7M', '6M'],
@@ -135189,7 +135397,8 @@ export const Learnsets = {
135189
135397
  waterfall: ['9M', '8M', '7M', '6M'],
135190
135398
  watergun: ['9L1', '8L1', '7L7', '6L7'],
135191
135399
  waterpulse: ['9M', '9L12', '8L12', '6T'],
135192
- whirlpool: ['8M'],
135400
+ wavecrash: ['9L73'],
135401
+ whirlpool: ['9L1', '8M', '8L1'],
135193
135402
  wideguard: ['9L1', '8L1', '7L54', '6L54'],
135194
135403
  wildcharge: ['9M', '8M', '7M', '6M']
135195
135404
  }
@@ -135197,6 +135406,7 @@ export const Learnsets = {
135197
135406
  crucibelle: {
135198
135407
  learnset: {
135199
135408
  acidarmor: ['9L40', '8L40', '7L32', '6L32'],
135409
+ acidspray: ['9M'],
135200
135410
  assurance: ['8M'],
135201
135411
  astonish: ['9L1', '8L1', '7L1', '6L1'],
135202
135412
  attract: ['8M', '7M', '6M'],
@@ -135211,7 +135421,7 @@ export const Learnsets = {
135211
135421
  drainingkiss: ['9M', '8M'],
135212
135422
  embargo: ['7M', '6M'],
135213
135423
  endure: ['9M', '9L1', '8M', '8L1', '7L1', '6L1'],
135214
- explosion: ['9L64', '8L64', '7M', '7L60', '6M', '6L60'],
135424
+ explosion: ['9L68', '8L68', '7M', '7L60', '6M', '6L60'],
135215
135425
  facade: ['9M', '8M', '7M', '6M'],
135216
135426
  faketears: ['9M', '9L28', '8M', '8L28', '7L10', '6L10'],
135217
135427
  frustration: ['7M', '6M'],
@@ -135219,8 +135429,8 @@ export const Learnsets = {
135219
135429
  grassknot: ['9M', '8M', '7M', '6M'],
135220
135430
  gravity: ['7T', '6T'],
135221
135431
  gunkshot: [
135222
- '9M', '9L60',
135223
- '8M', '8L60',
135432
+ '9M', '9L64',
135433
+ '8M', '8L64',
135224
135434
  '7L56', '6T',
135225
135435
  '6L56'
135226
135436
  ],
@@ -135231,6 +135441,7 @@ export const Learnsets = {
135231
135441
  infestation: ['7M', '6M'],
135232
135442
  irondefense: ['9M', '8M'],
135233
135443
  ironhead: ['9M', '8M', '6T'],
135444
+ knockoff: ['9E'],
135234
135445
  lightscreen: ['9M', '8M'],
135235
135446
  magicroom: ['8M', '6T'],
135236
135447
  meteorbeam: ['8T'],
@@ -135251,7 +135462,7 @@ export const Learnsets = {
135251
135462
  rest: ['9M', '8M', '7M', '6M'],
135252
135463
  return: ['7M', '6M'],
135253
135464
  rockblast: ['9M', '9L12', '8M', '8L12', '7L52', '6L52'],
135254
- rockpolish: ['7M', '6M'],
135465
+ rockpolish: ['9E', '8E', '7M', '6M'],
135255
135466
  rockslide: [
135256
135467
  '9M', '9L52',
135257
135468
  '8M', '8L52',
@@ -135272,7 +135483,7 @@ export const Learnsets = {
135272
135483
  sleeptalk: ['9M', '8M', '7M', '6M'],
135273
135484
  sludge: ['9L44', '8L44', '7L28', '6L28'],
135274
135485
  sludgebomb: ['9M', '8M', '7M', '6M'],
135275
- sludgewave: ['8M', '7M', '6M'],
135486
+ sludgewave: ['8M', '8L60', '7M', '6M'],
135276
135487
  smackdown: ['9L24', '8L24', '7M', '7L23', '6M', '6L23'],
135277
135488
  snatch: ['6T'],
135278
135489
  snore: ['8M', '6T'],
@@ -135299,7 +135510,7 @@ export const Learnsets = {
135299
135510
  learnset: {
135300
135511
  allyswitch: ['8M'],
135301
135512
  attract: ['8M', '6M'],
135302
- beatup: ['8M'],
135513
+ beatup: ['9E', '8M', '7E', '6E'],
135303
135514
  bodyslam: ['9M', '8M'],
135304
135515
  charm: ['9M', '9L9', '8M', '8L9', '7E', '6E'],
135305
135516
  confide: ['7T', '6L25'],
@@ -135348,7 +135559,8 @@ export const Learnsets = {
135348
135559
  snore: ['9L27', '8M', '8L27', '6T'],
135349
135560
  substitute: ['9M', '8M', '6M'],
135350
135561
  sunnyday: ['9M', '8M', '6M'],
135351
- swagger: ['6M'],
135562
+ swagger: ['7M', '6M'],
135563
+ takedown: ['9M'],
135352
135564
  taunt: ['9M', '8M', '6M'],
135353
135565
  terablast: ['9M'],
135354
135566
  torment: ['9L33', '8L33', '6M'],
@@ -135371,7 +135583,7 @@ export const Learnsets = {
135371
135583
  bodyslam: ['9M', '8M'],
135372
135584
  brickbreak: ['9M', '8M', '7M', '6M'],
135373
135585
  bulkup: ['9M', '8M', '7M', '6M'],
135374
- charm: ['9M', '9L1', '8M', '8L1'],
135586
+ charm: ['9M', '9L9', '8M', '8L1'],
135375
135587
  closecombat: ['9M', '9L42', '8M', '8L42', '7L53', '6L53'],
135376
135588
  coaching: ['8T'],
135377
135589
  confide: ['7L25', '6L25'],
@@ -135437,8 +135649,9 @@ export const Learnsets = {
135437
135649
  substitute: ['9M', '8M', '7M', '6M'],
135438
135650
  sunnyday: ['9M', '8M', '7M', '6M'],
135439
135651
  superpower: ['8M'],
135440
- swagger: ['7M', '6M'],
135652
+ swagger: ['9L1', '8L1', '7M', '7L1', '6M', '6L1'],
135441
135653
  swift: ['9M', '8M'],
135654
+ takedown: ['9M'],
135442
135655
  taunt: ['9M', '8M', '7M', '6M'],
135443
135656
  terablast: ['9M'],
135444
135657
  torment: ['9L36', '8L36', '7M', '6M'],
@@ -135457,10 +135670,11 @@ export const Learnsets = {
135457
135670
  bind: ['9L5', '8L5', '7T'],
135458
135671
  block: ['7T'],
135459
135672
  bravebird: ['9M', '9L1', '8M', '8L1', '7L1'],
135460
- breakingswipe: ['8M'],
135673
+ breakingswipe: ['9L30', '8M'],
135461
135674
  brutalswing: ['8M', '7M'],
135462
135675
  bulldoze: ['9M', '8M', '7M'],
135463
135676
  confide: ['7M'],
135677
+ confuseray: ['9M'],
135464
135678
  crunch: ['9M', '8M'],
135465
135679
  doubleteam: ['9L25', '8L25', '7M'],
135466
135680
  dracometeor: ['9M', '8T', '7T'],
@@ -135469,7 +135683,7 @@ export const Learnsets = {
135469
135683
  dragonpulse: ['9M', '8M', '7T'],
135470
135684
  dragonrage: ['7L12'],
135471
135685
  dragonrush: ['9E', '8E', '7L34'],
135472
- dreameater: ['7M'],
135686
+ dreameater: ['9E', '7M'],
135473
135687
  drillrun: ['9M', '8M', '7T'],
135474
135688
  dualchop: ['8L30', '7T'],
135475
135689
  earthquake: ['9M', '8M', '7M'],
@@ -135477,6 +135691,7 @@ export const Learnsets = {
135477
135691
  facade: ['9M', '8M', '7M'],
135478
135692
  fairylock: ['9L1', '8L1', '7L1'],
135479
135693
  fly: ['9M', '8M', '7M'],
135694
+ focusenergy: ['9L15', '8M', '7E'],
135480
135695
  frustration: ['7M'],
135481
135696
  gastroacid: ['7T'],
135482
135697
  gigaimpact: ['9M', '8M', '7M'],
@@ -135492,7 +135707,7 @@ export const Learnsets = {
135492
135707
  icepunch: ['9M', '8M', '7T'],
135493
135708
  icywind: ['9M', '8M'],
135494
135709
  imprison: ['9M', '8M'],
135495
- infestation: ['7M'],
135710
+ infestation: ['9E', '8E', '7M'],
135496
135711
  irontail: ['8M', '7T', '7E'],
135497
135712
  laserfocus: ['8L15', '7T', '7L10'],
135498
135713
  leechlife: ['9M', '8M', '7M'],
@@ -135511,7 +135726,7 @@ export const Learnsets = {
135511
135726
  rockslide: ['9M', '8M', '7M'],
135512
135727
  rocktomb: ['9M', '8M', '7M'],
135513
135728
  round: ['8M', '7M'],
135514
- sandtomb: ['8M', '7E'],
135729
+ sandtomb: ['9E', '8M', '7E'],
135515
135730
  shadowball: ['9M', '8M', '7M'],
135516
135731
  shadowclaw: ['9M', '8M', '7M'],
135517
135732
  sleeptalk: ['9M', '8M', '7M'],
@@ -135523,6 +135738,8 @@ export const Learnsets = {
135523
135738
  substitute: ['8M', '7M'],
135524
135739
  surf: ['9M', '8M', '7M'],
135525
135740
  swagger: ['7M'],
135741
+ takedown: ['9M'],
135742
+ taunt: ['9M'],
135526
135743
  telekinesis: ['7T'],
135527
135744
  terablast: ['9M'],
135528
135745
  throatchop: ['8M', '7T'],
@@ -135558,6 +135775,7 @@ export const Learnsets = {
135558
135775
  grassyterrain: ['9M', '8M', '7E'],
135559
135776
  gravity: ['7T'],
135560
135777
  gyroball: ['8M', '7M'],
135778
+ harden: ['9L1'],
135561
135779
  healingwish: ['9E', '8E', '7E'],
135562
135780
  heavyslam: ['9M', '8M'],
135563
135781
  helpinghand: ['9M', '9L15', '8M', '8L15', '7T', '7L35'],
@@ -135591,11 +135809,14 @@ export const Learnsets = {
135591
135809
  solarbeam: ['9M', '8M', '7M'],
135592
135810
  substitute: ['9M', '8M', '7M'],
135593
135811
  sunnyday: ['9M', '9L50', '8M', '8L50', '7M', '7L40'],
135812
+ superpower: ['9E', '8M', '7T', '7E'],
135594
135813
  swagger: ['7M'],
135595
135814
  synthesis: ['9L50', '8L50', '7T'],
135596
135815
  tackle: ['9L1', '8L1', '7L4'],
135816
+ takedown: ['9M'],
135597
135817
  terablast: ['9M'],
135598
135818
  toxic: ['7M'],
135819
+ trailblaze: ['9M'],
135599
135820
  wish: ['9L30', '8L30', '7L22'],
135600
135821
  woodhammer: ['9E', '8E', '7E'],
135601
135822
  worryseed: ['9E', '8E', '7T']
@@ -135633,6 +135854,7 @@ export const Learnsets = {
135633
135854
  grassyterrain: ['9M', '8M'],
135634
135855
  gravity: ['7T'],
135635
135856
  gyroball: ['8M', '7M'],
135857
+ harden: ['9L1'],
135636
135858
  heavyslam: ['9M', '9L60', '8M', '8L60', '7L42'],
135637
135859
  helpinghand: ['9M', '9L1', '8M', '8L1', '7T'],
135638
135860
  hiddenpower: ['7M'],
@@ -135663,7 +135885,7 @@ export const Learnsets = {
135663
135885
  seedbomb: ['9M', '8M', '7T'],
135664
135886
  selfdestruct: ['8M'],
135665
135887
  shadowball: ['9M', '8M', '7M'],
135666
- shoreup: ['7L1'],
135888
+ shoreup: ['9L1', '8L1', '7L1'],
135667
135889
  sleeptalk: ['9M', '8M', '7M'],
135668
135890
  snore: ['8M', '7T'],
135669
135891
  solarbeam: ['8M', '7M'],
@@ -135674,8 +135896,10 @@ export const Learnsets = {
135674
135896
  swagger: ['7M'],
135675
135897
  synthesis: ['9L50', '8L50', '7T'],
135676
135898
  tackle: ['9L1', '8L1', '7L1'],
135899
+ takedown: ['9M'],
135677
135900
  terablast: ['9M'],
135678
135901
  toxic: ['7M'],
135902
+ trailblaze: ['9M'],
135679
135903
  wish: ['9L30', '8L30', '7L21'],
135680
135904
  wonderroom: ['8M', '7T'],
135681
135905
  worryseed: ['7T']
@@ -135696,6 +135920,7 @@ export const Learnsets = {
135696
135920
  doublekick: ['9E', '8E', '7E'],
135697
135921
  doubleteam: ['7M'],
135698
135922
  echoedvoice: ['7M'],
135923
+ endeavor: ['9E', '8E', '7T'],
135699
135924
  endure: ['9M', '8M'],
135700
135925
  energyball: ['9M', '9L39', '8M', '8L39', '7M'],
135701
135926
  facade: ['9M', '8M', '7M'],
@@ -135716,7 +135941,7 @@ export const Learnsets = {
135716
135941
  leer: ['9L1', '8L1', '7L4'],
135717
135942
  naturalgift: ['7E'],
135718
135943
  naturepower: ['7M'],
135719
- powerwhip: ['8M', '7E'],
135944
+ powerwhip: ['9E', '8M', '7E'],
135720
135945
  present: ['9E', '8E', '7E'],
135721
135946
  protect: ['9M', '8M', '7M'],
135722
135947
  quickattack: ['9L9', '8L9', '7L11'],
@@ -135739,10 +135964,12 @@ export const Learnsets = {
135739
135964
  swordsdance: ['9M', '8M', '7M'],
135740
135965
  synthesis: ['9L33', '8L33', '7T'],
135741
135966
  tackle: ['9L1', '8L1', '7L1'],
135967
+ takedown: ['9M'],
135742
135968
  terablast: ['9M'],
135743
135969
  thundershock: ['9L6', '8L6', '7L7'],
135744
135970
  toxic: ['7M'],
135745
- uproar: ['8M', '7T'],
135971
+ trailblaze: ['9M'],
135972
+ uproar: ['9E', '8M', '7T', '7E'],
135746
135973
  voltswitch: ['9M', '8M', '7M'],
135747
135974
  wildcharge: ['9M', '9L36', '8M', '8L36', '7T', '7L38'],
135748
135975
  workup: ['8M', '7M'],
@@ -135809,6 +136036,7 @@ export const Learnsets = {
135809
136036
  swordsdance: ['9M', '8M', '7M'],
135810
136037
  synthesis: ['9L45', '8L45', '7T'],
135811
136038
  tackle: ['9L1', '8L1', '7L1'],
136039
+ takedown: ['9M'],
135812
136040
  terablast: ['9M'],
135813
136041
  throatchop: ['8M'],
135814
136042
  thunder: ['9M', '8M', '7M'],
@@ -135816,6 +136044,7 @@ export const Learnsets = {
135816
136044
  thundershock: ['9L1', '8L1', '7L7'],
135817
136045
  thunderwave: ['9M', '8M', '7M'],
135818
136046
  toxic: ['7M'],
136047
+ trailblaze: ['9M'],
135819
136048
  uproar: ['8M', '7T'],
135820
136049
  voltswitch: ['9M', '8M', '7M'],
135821
136050
  wildcharge: ['9M', '9L50', '8M', '8L50', '7T', '7L40'],
@@ -135859,6 +136088,7 @@ export const Learnsets = {
135859
136088
  hiddenpower: ['7M'],
135860
136089
  hornleech: ['9L0', '8L0', '7L1'],
135861
136090
  hyperbeam: ['9M', '8M', '7M'],
136091
+ hyperdrill: ['9L1'],
135862
136092
  hypervoice: ['9M', '8M', '7T'],
135863
136093
  knockoff: ['7T'],
135864
136094
  leafage: ['9L1', '8L1', '7L1'],
@@ -135891,6 +136121,7 @@ export const Learnsets = {
135891
136121
  swordsdance: ['9M', '8M', '7M'],
135892
136122
  synthesis: ['9L51', '8L51', '7T'],
135893
136123
  tackle: ['9L1', '8L1', '7L1'],
136124
+ takedown: ['9M'],
135894
136125
  terablast: ['9M'],
135895
136126
  terrainpulse: ['8T'],
135896
136127
  throatchop: ['8M'],
@@ -135899,6 +136130,7 @@ export const Learnsets = {
135899
136130
  thundershock: ['9L1', '8L1', '7L1'],
135900
136131
  thunderwave: ['9M', '8M', '7M'],
135901
136132
  toxic: ['7M'],
136133
+ trailblaze: ['9M'],
135902
136134
  uproar: ['8M', '7T'],
135903
136135
  voltswitch: ['9M', '8M', '7M'],
135904
136136
  wildcharge: ['9M', '9L58', '8M', '8L58', '7T', '7L42'],
@@ -135909,7 +136141,8 @@ export const Learnsets = {
135909
136141
  },
135910
136142
  smogecko: {
135911
136143
  learnset: {
135912
- acidspray: ['9M', '8E', '7E'],
136144
+ acidspray: ['9M', '9E', '8E', '7E'],
136145
+ aerialace: ['9M'],
135913
136146
  attract: ['8M', '7M'],
135914
136147
  bonerush: ['9E', '8E', '7E'],
135915
136148
  brickbreak: ['9M', '8M', '7M'],
@@ -135923,7 +136156,7 @@ export const Learnsets = {
135923
136156
  doubleteam: ['7M'],
135924
136157
  earthpower: ['9M', '8M', '7T'],
135925
136158
  ember: ['9L3', '8L3', '7L1'],
135926
- endeavor: ['7T'],
136159
+ endeavor: ['9E', '8E', '7T'],
135927
136160
  facade: ['9M', '8M', '7M'],
135928
136161
  fireblast: ['9M', '8M', '7M'],
135929
136162
  firefang: ['9M', '8M'],
@@ -135931,6 +136164,7 @@ export const Learnsets = {
135931
136164
  firepunch: ['9M', '8M'],
135932
136165
  firespin: ['9M', '8M', '7E'],
135933
136166
  flameburst: ['7L22'],
136167
+ flamecharge: ['9M', '9E', '8E'],
135934
136168
  flamethrower: ['9M', '8M', '7M', '7L40'],
135935
136169
  flamewheel: ['9L21', '8L21', '7L15'],
135936
136170
  flareblitz: ['9L39', '8L39'],
@@ -135973,6 +136207,7 @@ export const Learnsets = {
135973
136207
  taunt: ['9M', '8M', '7M'],
135974
136208
  terablast: ['9M'],
135975
136209
  toxic: ['9L36', '8L36', '7M'],
136210
+ trailblaze: ['9M'],
135976
136211
  venomdrench: ['8M'],
135977
136212
  willowisp: ['9M', '8M', '7M'],
135978
136213
  workup: ['8M', '7M']
@@ -135981,6 +136216,7 @@ export const Learnsets = {
135981
136216
  smoguana: {
135982
136217
  learnset: {
135983
136218
  acidspray: ['9M'],
136219
+ aerialace: ['9M'],
135984
136220
  attract: ['8M', '7M'],
135985
136221
  brickbreak: ['9M', '8M', '7M'],
135986
136222
  bulkup: ['9M', '8M', '7M'],
@@ -136004,6 +136240,7 @@ export const Learnsets = {
136004
136240
  firepledge: ['9M', '8T', '7T'],
136005
136241
  firepunch: ['9M', '8M', '7T'],
136006
136242
  flameburst: ['7L22'],
136243
+ flamecharge: ['9M'],
136007
136244
  flamethrower: ['9M', '8M', '7M', '7L42'],
136008
136245
  flamewheel: ['9L30', '8L30', '7L15'],
136009
136246
  flareblitz: ['9M', '9L60', '8M', '8L60', '7L55'],
@@ -136045,6 +136282,7 @@ export const Learnsets = {
136045
136282
  taunt: ['9M', '8M', '7M'],
136046
136283
  terablast: ['9M'],
136047
136284
  toxic: ['9L55', '8L55', '7M'],
136285
+ trailblaze: ['9M'],
136048
136286
  venomdrench: ['8M'],
136049
136287
  willowisp: ['9M', '8M', '7M'],
136050
136288
  workup: ['8M', '7M']
@@ -136053,6 +136291,7 @@ export const Learnsets = {
136053
136291
  smokomodo: {
136054
136292
  learnset: {
136055
136293
  acidspray: ['9M'],
136294
+ aerialace: ['9M'],
136056
136295
  attract: ['8M', '7M'],
136057
136296
  blastburn: ['9M', '8T', '7T'],
136058
136297
  brickbreak: ['9M', '8M', '7M'],
@@ -136081,6 +136320,7 @@ export const Learnsets = {
136081
136320
  firespin: ['9M', '8M'],
136082
136321
  fissure: ['9L1', '8L1', '7L65'],
136083
136322
  flameburst: ['7L24'],
136323
+ flamecharge: ['9M'],
136084
136324
  flamethrower: ['9M', '8M', '7M', '7L43'],
136085
136325
  flamewheel: ['9L30', '8L30', '7L17'],
136086
136326
  flareblitz: ['9M', '9L70', '8M', '8L70', '7L60'],
@@ -136133,6 +136373,7 @@ export const Learnsets = {
136133
136373
  taunt: ['9M', '8M', '7M'],
136134
136374
  terablast: ['9M'],
136135
136375
  toxic: ['9L63', '8L63', '7M'],
136376
+ trailblaze: ['9M'],
136136
136377
  venomdrench: ['8M'],
136137
136378
  willowisp: ['9M', '8M', '7M'],
136138
136379
  workup: ['8M', '7M']
@@ -136151,6 +136392,7 @@ export const Learnsets = {
136151
136392
  bugbuzz: ['9M', '9L33', '8M', '8L33', '7L38'],
136152
136393
  captivate: ['7L40'],
136153
136394
  charm: ['9M', '9L9', '8M', '8L9', '7L10'],
136395
+ chillingwater: ['9M'],
136154
136396
  confide: ['7M'],
136155
136397
  confusion: ['9L15', '8L15', '7L14'],
136156
136398
  dazzlinggleam: ['9M', '8M', '7M'],
@@ -136177,7 +136419,9 @@ export const Learnsets = {
136177
136419
  lifedew: ['9E', '8E'],
136178
136420
  magiccoat: ['7T'],
136179
136421
  metronome: ['9M', '8M'],
136180
- muddywater: ['8M'],
136422
+ muddywater: ['9E', '8M', '7E'],
136423
+ pinmissile: ['9E', '8M', '7E'],
136424
+ pounce: ['9M'],
136181
136425
  pound: ['9L1', '8L1', '7L1'],
136182
136426
  powder: ['7E'],
136183
136427
  protect: ['9M', '8M', '7M'],
@@ -136233,6 +136477,7 @@ export const Learnsets = {
136233
136477
  bugbuzz: ['9M', '9L50', '8M', '8L50', '7L42'],
136234
136478
  captivate: ['7L48'],
136235
136479
  charm: ['9M', '9L9', '8M', '8L9', '7L10'],
136480
+ chillingwater: ['9M'],
136236
136481
  confide: ['7M'],
136237
136482
  confusion: ['9L15', '8L15', '7L14'],
136238
136483
  dazzlinggleam: ['9M', '8M', '7M'],
@@ -136261,11 +136506,13 @@ export const Learnsets = {
136261
136506
  magicroom: ['8M', '7T'],
136262
136507
  metronome: ['9M', '8M'],
136263
136508
  muddywater: ['8M'],
136509
+ pinmissile: ['8M'],
136510
+ pounce: ['9M'],
136264
136511
  pound: ['9L1', '8L1', '7L1'],
136265
136512
  protect: ['9M', '8M', '7M'],
136266
136513
  psychic: ['9M', '9L40', '8M', '8L40', '7M', '7L38'],
136267
136514
  raindance: ['9M', '9L20', '8M', '8L20', '7M', '7L30'],
136268
- razorshell: ['8M'],
136515
+ razorshell: ['9L1', '8M', '8L1'],
136269
136516
  rest: ['9M', '8M', '7M'],
136270
136517
  return: ['7M'],
136271
136518
  round: ['8M', '7M'],
@@ -136316,6 +136563,7 @@ export const Learnsets = {
136316
136563
  bugbuzz: ['9M', '9L58', '8M', '8L58', '7L48'],
136317
136564
  captivate: ['7L56'],
136318
136565
  charm: ['9M', '9L9', '8M', '8L9', '7L11'],
136566
+ chillingwater: ['9M'],
136319
136567
  confide: ['7M'],
136320
136568
  confusion: ['9L15', '8L15', '7L14'],
136321
136569
  dazzlinggleam: ['9M', '8M', '7M'],
@@ -136350,12 +136598,14 @@ export const Learnsets = {
136350
136598
  metronome: ['9M', '8M'],
136351
136599
  muddywater: ['8M'],
136352
136600
  pinmissile: ['8M'],
136601
+ pounce: ['9M'],
136353
136602
  pound: ['9L1', '8L1', '7L1'],
136354
136603
  protect: ['9M', '8M', '7M'],
136355
136604
  psychic: ['9M', '9L44', '8M', '8L44', '7M', '7L44'],
136356
136605
  raindance: ['9M', '9L20', '8M', '8L20', '7M', '7L32'],
136357
136606
  rapidspin: ['9L1', '8L1', '7L1'],
136358
- razorshell: ['8M'],
136607
+ razorshell: ['9L1', '8M', '8L1'],
136608
+ recover: ['9E'],
136359
136609
  rest: ['9M', '8M', '7M'],
136360
136610
  return: ['7M'],
136361
136611
  round: ['8M', '7M'],
@@ -136409,11 +136659,14 @@ export const Learnsets = {
136409
136659
  facade: ['9M', '8M', '7M'],
136410
136660
  flashcannon: ['9M', '9L28', '8M', '8L28', '7M', '7L41'],
136411
136661
  frustration: ['7M'],
136662
+ gravity: ['9L24', '7T'],
136412
136663
  guardsplit: ['9L16', '8L16', '7L21'],
136413
136664
  gyroball: ['9L12', '8M', '8L12', '7M', '7L17'],
136414
136665
  healingwish: ['9L40', '8L40', '7L46'],
136666
+ heavyslam: ['9M'],
136415
136667
  helpinghand: ['9M', '8M', '7T'],
136416
136668
  hiddenpower: ['7M'],
136669
+ icespinner: ['9M'],
136417
136670
  imprison: ['9M', '9L8', '8M', '8L8', '7L9'],
136418
136671
  irondefense: ['9M', '8M', '7T'],
136419
136672
  ironhead: ['9M', '8M', '7T'],
@@ -136474,10 +136727,11 @@ export const Learnsets = {
136474
136727
  flashcannon: ['9M', '9L28', '8M', '8L28', '7M', '7L45'],
136475
136728
  frustration: ['7M'],
136476
136729
  gigaimpact: ['9M', '8M', '7M'],
136477
- gravity: ['7T'],
136730
+ gravity: ['9L24', '7T'],
136478
136731
  guardsplit: ['9L16', '8L16', '7L25'],
136479
136732
  gyroball: ['9L12', '8M', '8L12', '7M', '7L20'],
136480
136733
  healingwish: ['9L46', '8L46', '7L50'],
136734
+ heavyslam: ['9M'],
136481
136735
  helpinghand: ['9M', '8M', '7T'],
136482
136736
  hiddenpower: ['7M'],
136483
136737
  hyperbeam: ['9M', '8M', '7M'],
@@ -136547,10 +136801,11 @@ export const Learnsets = {
136547
136801
  fireblast: ['9M', '8M'],
136548
136802
  firelash: ['9L36', '9L36', '8L36'],
136549
136803
  firespin: ['9M', '8M'],
136804
+ flamecharge: ['9M'],
136550
136805
  flamethrower: ['9M', '8M'],
136551
136806
  flamewheel: ['9L16', '8L16'],
136552
136807
  flareblitz: ['9M', '9L52', '8M', '8L52'],
136553
- healbell: ['9L32', '8L32'],
136808
+ healbell: ['8L32'],
136554
136809
  healingwish: ['9L44', '8L44'],
136555
136810
  heatwave: ['9M', '8M'],
136556
136811
  helpinghand: ['9M', '8M'],
@@ -136568,7 +136823,7 @@ export const Learnsets = {
136568
136823
  reflect: ['9M', '8M'],
136569
136824
  rest: ['9M', '8M'],
136570
136825
  round: ['8M'],
136571
- safeguard: ['8M'],
136826
+ safeguard: ['9L32', '8M'],
136572
136827
  sleeptalk: ['9M', '8M'],
136573
136828
  snore: ['8M'],
136574
136829
  solarbeam: ['9M', '8M'],
@@ -136578,6 +136833,7 @@ export const Learnsets = {
136578
136833
  sunnyday: ['9M', '8M'],
136579
136834
  swift: ['9M', '8M'],
136580
136835
  tailwhip: ['9L1', '8L1'],
136836
+ takedown: ['9M'],
136581
136837
  taunt: ['9M', '8M'],
136582
136838
  terablast: ['9M'],
136583
136839
  thunderwave: ['9M', '8M'],
@@ -136614,10 +136870,11 @@ export const Learnsets = {
136614
136870
  firelash: ['9L38', '8L38'],
136615
136871
  firepunch: ['9M', '8M'],
136616
136872
  firespin: ['9M', '8M'],
136873
+ flamecharge: ['9M'],
136617
136874
  flamethrower: ['9M', '8M'],
136618
136875
  flamewheel: ['9L16', '8L16'],
136619
136876
  flareblitz: ['9M', '9L62', '8M', '8L62'],
136620
- healbell: ['9L32', '8L32'],
136877
+ healbell: ['8L32'],
136621
136878
  healingwish: ['9L50', '8L50'],
136622
136879
  heatwave: ['9M', '8M'],
136623
136880
  helpinghand: ['9M', '8M'],
@@ -136636,7 +136893,7 @@ export const Learnsets = {
136636
136893
  reflect: ['9M', '8M'],
136637
136894
  rest: ['9M', '8M'],
136638
136895
  round: ['8M'],
136639
- safeguard: ['8M'],
136896
+ safeguard: ['9L32', '8M'],
136640
136897
  scorchingsands: ['8T'],
136641
136898
  sleeptalk: ['9M', '8M'],
136642
136899
  snore: ['8M'],
@@ -136648,6 +136905,7 @@ export const Learnsets = {
136648
136905
  sunnyday: ['9M', '8M'],
136649
136906
  swift: ['9M', '8M'],
136650
136907
  tailwhip: ['9L1', '8L1'],
136908
+ takedown: ['9M'],
136651
136909
  taunt: ['9M', '8M'],
136652
136910
  terablast: ['9M'],
136653
136911
  thunderwave: ['9M', '8M'],
@@ -136673,7 +136931,7 @@ export const Learnsets = {
136673
136931
  dragonclaw: ['9M', '8M'],
136674
136932
  dragonpulse: ['9M', '9L40', '8M', '8L40'],
136675
136933
  dragonrush: ['9E', '8E'],
136676
- dragontail: ['9M', '8E'],
136934
+ dragontail: ['9M', '9E', '8E'],
136677
136935
  earthpower: ['9M', '8M'],
136678
136936
  endure: ['9M', '8M'],
136679
136937
  facade: ['9M', '8M'],
@@ -136686,11 +136944,13 @@ export const Learnsets = {
136686
136944
  irontail: ['8M'],
136687
136945
  leechlife: ['9M', '8M'],
136688
136946
  lunge: ['9L44', '8L44'],
136947
+ megahorn: ['9E', '8M'],
136689
136948
  outrage: ['9M', '8M'],
136690
136949
  pinmissile: ['8M'],
136691
136950
  poisonfang: ['9E', '8E'],
136692
136951
  poisongas: ['9L20', '8L20'],
136693
136952
  poisonjab: ['9M', '8M'],
136953
+ pounce: ['9M'],
136694
136954
  protect: ['9M', '8M'],
136695
136955
  raindance: ['9M', '8M'],
136696
136956
  recover: ['9E', '8E'],
@@ -136763,10 +137023,12 @@ export const Learnsets = {
136763
137023
  pinmissile: ['8M'],
136764
137024
  poisongas: ['9L20', '8L20'],
136765
137025
  poisonjab: ['9M', '8M'],
137026
+ pounce: ['9M'],
136766
137027
  protect: ['9M', '8M'],
136767
137028
  raindance: ['9M', '8M'],
136768
137029
  rest: ['9M', '8M'],
136769
137030
  round: ['8M'],
137031
+ scaleshot: ['9L0'],
136770
137032
  scaryface: ['9M', '8M'],
136771
137033
  screech: ['8M'],
136772
137034
  skittersmack: ['8T'],
@@ -136806,9 +137068,10 @@ export const Learnsets = {
136806
137068
  boomburst: ['9L75', '8L75'],
136807
137069
  calmmind: ['9M', '8M'],
136808
137070
  charm: ['9M', '8M'],
137071
+ chillingwater: ['9M'],
136809
137072
  crunch: ['9M', '9L35', '8M', '8L35'],
136810
137073
  darkpulse: ['9M', '8M'],
136811
- decorate: ['9L65', '8L65'],
137074
+ decorate: ['8L65'],
136812
137075
  endure: ['9M', '8M'],
136813
137076
  facade: ['9M', '8M'],
136814
137077
  faketears: ['9M', '8M'],
@@ -136817,6 +137080,7 @@ export const Learnsets = {
136817
137080
  firstimpression: ['9L45', '8L45'],
136818
137081
  foulplay: ['9M', '8M'],
136819
137082
  gigaimpact: ['9M', '8M'],
137083
+ grassknot: ['9L60'],
136820
137084
  gunkshot: ['9M', '8M'],
136821
137085
  hex: ['9M', '8M'],
136822
137086
  hyperbeam: ['9M', '8M'],
@@ -136828,11 +137092,12 @@ export const Learnsets = {
136828
137092
  lifedew: ['9L40', '8L40'],
136829
137093
  lightscreen: ['9M', '8M'],
136830
137094
  metalclaw: ['9M', '9L5', '8L5'],
137095
+ mudslap: ['9M'],
136831
137096
  nobleroar: ['9L1', '8L1'],
136832
137097
  outrage: ['9M', '9L70', '8M', '8L70'],
136833
137098
  payback: ['8M'],
136834
137099
  payday: ['8M'],
136835
- playrough: ['9M', '8M'],
137100
+ playrough: ['9M', '9L65', '8M'],
136836
137101
  protect: ['9M', '8M'],
136837
137102
  recover: ['9L1', '8L1'],
136838
137103
  reflect: ['9M', '8M'],
@@ -136852,6 +137117,7 @@ export const Learnsets = {
136852
137117
  stompingtantrum: ['9M', '9L30', '8M', '8L30'],
136853
137118
  substitute: ['9M', '8M'],
136854
137119
  sunnyday: ['9M', '8M'],
137120
+ switcheroo: ['9L1', '8L1'],
136855
137121
  taunt: ['9M', '8M'],
136856
137122
  terablast: ['9M'],
136857
137123
  thief: ['9M', '8M'],
@@ -136860,6 +137126,7 @@ export const Learnsets = {
136860
137126
  thunderfang: ['9M', '9L20', '8M', '8L20'],
136861
137127
  toxic: ['9L55', '8L55'],
136862
137128
  toxicspikes: ['9M', '8M'],
137129
+ trailblaze: ['9M'],
136863
137130
  uproar: ['8M'],
136864
137131
  venomdrench: ['8M'],
136865
137132
  wideguard: ['9L50', '8L50']
@@ -136867,6 +137134,7 @@ export const Learnsets = {
136867
137134
  },
136868
137135
  venomicon: {
136869
137136
  learnset: {
137137
+ acidspray: ['9M'],
136870
137138
  aircutter: ['9M', '9L15', '8L15'],
136871
137139
  airslash: ['9M', '8M'],
136872
137140
  assurance: ['8M'],
@@ -136925,6 +137193,8 @@ export const Learnsets = {
136925
137193
  steelwing: ['8M'],
136926
137194
  substitute: ['9M', '8M'],
136927
137195
  swift: ['9M', '8M'],
137196
+ tailwind: ['9M'],
137197
+ takedown: ['9M'],
136928
137198
  terablast: ['9M'],
136929
137199
  thunderwave: ['9M', '8M'],
136930
137200
  toxic: ['9L30', '8L30'],
@@ -136980,7 +137250,7 @@ export const Learnsets = {
136980
137250
  terablast: ['9M'],
136981
137251
  thief: ['9M', '9L24', '8M', '8L24'],
136982
137252
  watergun: ['9L12', '8L12'],
136983
- waterpulse: ['9M', '8E']
137253
+ waterpulse: ['9M', '9E', '8E']
136984
137254
  }
136985
137255
  },
136986
137256
  saharaja: {
@@ -137001,7 +137271,7 @@ export const Learnsets = {
137001
137271
  gigaimpact: ['9M', '8M'],
137002
137272
  healbell: ['9L1', '8L1'],
137003
137273
  heavyslam: ['9M', '8M'],
137004
- highhorsepower: ['8M'],
137274
+ highhorsepower: ['9E', '8M'],
137005
137275
  hornleech: ['9L1', '8L1'],
137006
137276
  hyperbeam: ['9M', '8M'],
137007
137277
  lashout: ['8T'],
@@ -137009,7 +137279,7 @@ export const Learnsets = {
137009
137279
  mudshot: ['9M', '8M'],
137010
137280
  outrage: ['9M', '8M'],
137011
137281
  payback: ['8M'],
137012
- payday: ['8M'],
137282
+ payday: ['9L1', '8M', '8L1'],
137013
137283
  powergem: ['9M', '8M'],
137014
137284
  protect: ['9M', '8M'],
137015
137285
  rest: ['9M', '8M'],