@pkmn/sim 0.10.6 → 0.10.7

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 (89) hide show
  1. package/build/cjs/config/formats.js +120 -80
  2. package/build/cjs/config/formats.js.map +1 -1
  3. package/build/cjs/data/abilities.js +10 -26
  4. package/build/cjs/data/abilities.js.map +1 -1
  5. package/build/cjs/data/aliases.js +4 -4
  6. package/build/cjs/data/aliases.js.map +1 -1
  7. package/build/cjs/data/conditions.js +60 -0
  8. package/build/cjs/data/conditions.js.map +1 -1
  9. package/build/cjs/data/formats-data.js +5 -5
  10. package/build/cjs/data/formats-data.js.map +1 -1
  11. package/build/cjs/data/learnsets.js +408 -33
  12. package/build/cjs/data/learnsets.js.map +1 -1
  13. package/build/cjs/data/legality.js +4 -4
  14. package/build/cjs/data/mods/gen1/moves.js +15 -0
  15. package/build/cjs/data/mods/gen1/moves.js.map +1 -1
  16. package/build/cjs/data/mods/gen1/scripts.js +21 -0
  17. package/build/cjs/data/mods/gen1/scripts.js.map +1 -1
  18. package/build/cjs/data/mods/gen3/formats-data.js +3 -3
  19. package/build/cjs/data/mods/gen3/formats-data.js.map +1 -1
  20. package/build/cjs/data/mods/gen4/moves.js +2 -15
  21. package/build/cjs/data/mods/gen4/moves.js.map +1 -1
  22. package/build/cjs/data/mods/gen5/moves.js +0 -13
  23. package/build/cjs/data/mods/gen5/moves.js.map +1 -1
  24. package/build/cjs/data/moves.js +1 -32
  25. package/build/cjs/data/moves.js.map +1 -1
  26. package/build/cjs/data/pokedex.js +3 -3
  27. package/build/cjs/data/pokedex.js.map +1 -1
  28. package/build/cjs/data/rulesets.js +6 -0
  29. package/build/cjs/data/rulesets.js.map +1 -1
  30. package/build/cjs/sim/battle-actions.d.ts +2 -2
  31. package/build/cjs/sim/battle-actions.js +7 -5
  32. package/build/cjs/sim/battle-actions.js.map +1 -1
  33. package/build/cjs/sim/battle.d.ts +1 -0
  34. package/build/cjs/sim/battle.js +40 -40
  35. package/build/cjs/sim/battle.js.map +1 -1
  36. package/build/cjs/sim/dex-conditions.d.ts +1 -0
  37. package/build/cjs/sim/dex-conditions.js.map +1 -1
  38. package/build/cjs/sim/exported-global-types.d.ts +5 -2
  39. package/build/cjs/sim/global-types.d.ts +5 -2
  40. package/build/cjs/sim/pokemon.d.ts +1 -0
  41. package/build/cjs/sim/pokemon.js +19 -8
  42. package/build/cjs/sim/pokemon.js.map +1 -1
  43. package/build/cjs/sim/team-validator.js +11 -5
  44. package/build/cjs/sim/team-validator.js.map +1 -1
  45. package/build/esm/config/formats.mjs +120 -80
  46. package/build/esm/config/formats.mjs.map +1 -1
  47. package/build/esm/data/abilities.mjs +10 -26
  48. package/build/esm/data/abilities.mjs.map +1 -1
  49. package/build/esm/data/aliases.mjs +4 -4
  50. package/build/esm/data/aliases.mjs.map +1 -1
  51. package/build/esm/data/conditions.mjs +60 -0
  52. package/build/esm/data/conditions.mjs.map +1 -1
  53. package/build/esm/data/formats-data.mjs +5 -5
  54. package/build/esm/data/formats-data.mjs.map +1 -1
  55. package/build/esm/data/learnsets.mjs +408 -33
  56. package/build/esm/data/learnsets.mjs.map +1 -1
  57. package/build/esm/data/legality.mjs +4 -4
  58. package/build/esm/data/mods/gen1/moves.mjs +15 -0
  59. package/build/esm/data/mods/gen1/moves.mjs.map +1 -1
  60. package/build/esm/data/mods/gen1/scripts.mjs +21 -0
  61. package/build/esm/data/mods/gen1/scripts.mjs.map +1 -1
  62. package/build/esm/data/mods/gen3/formats-data.mjs +3 -3
  63. package/build/esm/data/mods/gen3/formats-data.mjs.map +1 -1
  64. package/build/esm/data/mods/gen4/moves.mjs +2 -15
  65. package/build/esm/data/mods/gen4/moves.mjs.map +1 -1
  66. package/build/esm/data/mods/gen5/moves.mjs +0 -13
  67. package/build/esm/data/mods/gen5/moves.mjs.map +1 -1
  68. package/build/esm/data/moves.mjs +1 -32
  69. package/build/esm/data/moves.mjs.map +1 -1
  70. package/build/esm/data/pokedex.mjs +3 -3
  71. package/build/esm/data/pokedex.mjs.map +1 -1
  72. package/build/esm/data/rulesets.mjs +6 -0
  73. package/build/esm/data/rulesets.mjs.map +1 -1
  74. package/build/esm/sim/battle-actions.d.mts +2 -2
  75. package/build/esm/sim/battle-actions.mjs +7 -5
  76. package/build/esm/sim/battle-actions.mjs.map +1 -1
  77. package/build/esm/sim/battle.d.mts +1 -0
  78. package/build/esm/sim/battle.mjs +40 -40
  79. package/build/esm/sim/battle.mjs.map +1 -1
  80. package/build/esm/sim/dex-conditions.d.mts +1 -0
  81. package/build/esm/sim/dex-conditions.mjs.map +1 -1
  82. package/build/esm/sim/exported-global-types.d.mts +5 -2
  83. package/build/esm/sim/global-types.d.mts +5 -2
  84. package/build/esm/sim/pokemon.d.mts +1 -0
  85. package/build/esm/sim/pokemon.mjs +19 -8
  86. package/build/esm/sim/pokemon.mjs.map +1 -1
  87. package/build/esm/sim/team-validator.mjs +11 -5
  88. package/build/esm/sim/team-validator.mjs.map +1 -1
  89. package/package.json +1 -1
@@ -94998,7 +94998,123 @@ export const Learnsets = {
94998
94998
  whirlpool: ['9M', '8M', '4M']
94999
94999
  }
95000
95000
  },
95001
- gastrodoneast: { learnset: {} },
95001
+ gastrodoneast: {
95002
+ learnset: {
95003
+ amnesia: ['9M', '8M'],
95004
+ ancientpower: ['9L20', '8L20', '4T'],
95005
+ attract: ['8M', '7M', '6M', '5M', '4M'],
95006
+ blizzard: ['9M', '8M', '7M', '6M', '5M', '4M'],
95007
+ block: ['7T', '6T', '5T', '4T'],
95008
+ bodyslam: [
95009
+ '9M', '9L25',
95010
+ '8M', '8L25',
95011
+ '7L29', '6L29',
95012
+ '5L29', '4L29'
95013
+ ],
95014
+ brine: ['8M', '4M'],
95015
+ bulldoze: ['9M', '8M', '7M', '6M', '5M'],
95016
+ captivate: ['4M'],
95017
+ chillingwater: ['9M'],
95018
+ confide: ['7M', '6M'],
95019
+ curse: ['9M'],
95020
+ dig: ['9M', '8M', '6M', '5M', '4M'],
95021
+ dive: ['8M', '6M', '5M', '4T'],
95022
+ doubleteam: ['7M', '6M', '5M', '4M'],
95023
+ earthpower: [
95024
+ '9M', '9L39',
95025
+ '8M', '8L39',
95026
+ '7T', '6T',
95027
+ '5T', '4T'
95028
+ ],
95029
+ earthquake: ['9M', '8M', '7M', '6M', '5M', '4M'],
95030
+ endure: ['9M', '8M', '4M'],
95031
+ facade: ['9M', '8M', '7M', '6M', '5M', '4M'],
95032
+ flash: ['6M', '5M', '4M'],
95033
+ frustration: ['7M', '6M', '5M', '4M'],
95034
+ gigaimpact: ['9M', '8M', '7M', '6M', '5M', '4M'],
95035
+ hail: ['8M', '7M', '6M', '5M', '4M'],
95036
+ harden: ['9L1', '8L1', '7L1', '6L1', '5L1', '4L1'],
95037
+ headbutt: ['4T'],
95038
+ helpinghand: ['9M'],
95039
+ hiddenpower: [
95040
+ '7M', '7L16',
95041
+ '6M', '6L16',
95042
+ '5M', '5L16',
95043
+ '4M', '4L16'
95044
+ ],
95045
+ hydropump: ['9M', '8M'],
95046
+ hyperbeam: ['9M', '8M', '7M', '6M', '5M', '4M'],
95047
+ icebeam: ['9M', '8M', '7M', '6M', '5M', '4M'],
95048
+ icywind: ['9M', '8M', '7T', '6T', '5T', '4T'],
95049
+ infestation: ['7M', '6M'],
95050
+ liquidation: ['9M'],
95051
+ memento: ['9L53', '8L53'],
95052
+ mudbomb: ['7L11', '6L11', '5L11', '4L11'],
95053
+ muddywater: [
95054
+ '9M', '9L33',
95055
+ '8M', '8L33',
95056
+ '7L41', '6L41',
95057
+ '5L41', '4L41'
95058
+ ],
95059
+ mudshot: ['9M', '8M'],
95060
+ mudslap: [
95061
+ '9M', '9L1',
95062
+ '8L1', '7L1',
95063
+ '6L1', '5L1',
95064
+ '4T', '4L1'
95065
+ ],
95066
+ mudsport: ['7L1', '6L1', '5L1', '4L1'],
95067
+ naturalgift: ['4M'],
95068
+ painsplit: ['9M', '7T', '6T', '5T', '4T'],
95069
+ protect: ['9M', '8M', '7M', '6M', '5M', '4M'],
95070
+ raindance: [
95071
+ '9M', '9L46', '8M',
95072
+ '8L46', '7M', '7L22',
95073
+ '6M', '6L22', '5M',
95074
+ '5L22', '4M', '4L22'
95075
+ ],
95076
+ recover: ['9L1', '8L1', '7L54', '6L54', '5L54', '4L54'],
95077
+ rest: ['9M', '8M', '7M', '6M', '5M', '4M'],
95078
+ return: ['7M', '6M', '5M', '4M'],
95079
+ rockblast: ['9M'],
95080
+ rockslide: ['9M', '8M', '7M', '6M', '5M', '4M'],
95081
+ rocksmash: ['6M', '5M', '4M'],
95082
+ rocktomb: ['9M', '8M', '7M', '6M', '5M', '4M'],
95083
+ round: ['8M', '7M', '6M', '5M'],
95084
+ sandstorm: ['9M', '8M', '7M', '6M', '5M', '4M'],
95085
+ sandtomb: ['9M', '8M'],
95086
+ scald: ['8M', '7M', '6M', '5M'],
95087
+ secretpower: ['6M', '4M'],
95088
+ skittersmack: ['9M', '8T'],
95089
+ sleeptalk: ['9M', '8M', '7M', '6M', '5T', '4M'],
95090
+ sludgebomb: ['9M', '8M', '7M', '6M', '5M', '4M'],
95091
+ sludgewave: ['9M', '8M', '7M', '6M', '5M'],
95092
+ snore: ['8M', '7T', '6T', '5T', '4T'],
95093
+ snowscape: ['9M'],
95094
+ spikes: ['9M'],
95095
+ stealthrock: ['9M'],
95096
+ stompingtantrum: ['9M', '8M', '7T'],
95097
+ stoneedge: ['9M', '8M', '7M', '6M', '5M', '4M'],
95098
+ strength: ['6M', '5M', '4M'],
95099
+ stringshot: ['4T'],
95100
+ substitute: ['9M', '8M', '7M', '6M', '5M', '4M'],
95101
+ surf: ['9M', '8M', '7M', '6M', '5M', '4M'],
95102
+ swagger: ['7M', '6M', '5M', '4M'],
95103
+ takedown: ['9M'],
95104
+ terablast: ['9M'],
95105
+ toxic: ['7M', '6M', '5M', '4M'],
95106
+ waterfall: ['9M', '8M', '7M', '6M', '5M', '4M'],
95107
+ watergun: ['9L1', '8L1'],
95108
+ waterpulse: [
95109
+ '9M', '9L15', '8L15',
95110
+ '7T', '7L1', '6T',
95111
+ '6L1', '5L1', '4M',
95112
+ '4L1'
95113
+ ],
95114
+ weatherball: ['9M', '8M'],
95115
+ whirlpool: ['9M', '8M', '4M']
95116
+ }
95117
+ },
95002
95118
  drifloon: {
95003
95119
  learnset: {
95004
95120
  acrobatics: ['9M', '8M', '7M', '6M', '5M'],
@@ -124014,7 +124130,83 @@ export const Learnsets = {
124014
124130
  worryseed: ['8L28', '7T', '7L11', '6T', '6L11']
124015
124131
  }
124016
124132
  },
124017
- pumpkaboosuper: { learnset: {} },
124133
+ pumpkaboosuper: {
124134
+ learnset: {
124135
+ allyswitch: ['8M', '7T'],
124136
+ astonish: ['8L1', '7L1', '6L1'],
124137
+ attract: ['8M', '7M', '6M'],
124138
+ bestow: ['7E', '6E'],
124139
+ bulletseed: ['8M', '8L20', '7L26', '6L26'],
124140
+ chargebeam: ['7M', '6M'],
124141
+ confide: ['7M', '6M'],
124142
+ confuseray: ['8L8', '7L1', '6L1'],
124143
+ curse: ['8E', '7E'],
124144
+ darkpulse: ['8M', '7M', '6M'],
124145
+ destinybond: ['8E', '7E', '6E'],
124146
+ disable: ['8E', '7E', '6E'],
124147
+ doubleteam: ['7M', '6M'],
124148
+ dreameater: ['7M', '6M'],
124149
+ endure: ['8M'],
124150
+ energyball: ['8M', '7M', '6M'],
124151
+ explosion: ['7M', '6M'],
124152
+ facade: ['8M', '7M', '6M'],
124153
+ fireblast: ['8M', '7M', '6M'],
124154
+ flamecharge: ['7M', '6M'],
124155
+ flamethrower: ['8M', '7M', '6M'],
124156
+ flash: ['6M'],
124157
+ foulplay: ['8M', '7T', '6T'],
124158
+ frustration: ['7M', '6M'],
124159
+ gigadrain: ['8M', '7T', '6T'],
124160
+ grassknot: ['8M', '7M', '6M'],
124161
+ grassyglide: ['8T'],
124162
+ gyroball: ['8M', '7M', '6M'],
124163
+ hex: ['8M'],
124164
+ hiddenpower: ['7M', '6M'],
124165
+ imprison: ['8M'],
124166
+ incinerate: ['6M'],
124167
+ leechseed: ['8L16', '7L20', '6L20'],
124168
+ lightscreen: ['8M', '7M', '6M'],
124169
+ magiccoat: ['7T', '6T'],
124170
+ mysticalfire: ['8M'],
124171
+ naturepower: ['7M', '6M'],
124172
+ painsplit: ['8L44', '7T', '7L42', '6T', '6L42'],
124173
+ poltergeist: ['8T'],
124174
+ protect: ['8M', '7M', '6M'],
124175
+ psychic: ['8M', '7M', '6M'],
124176
+ razorleaf: ['8L12', '7L16', '6L16'],
124177
+ rest: ['8M', '7M', '6M'],
124178
+ return: ['7M', '6M'],
124179
+ rockslide: ['8M', '7M', '6M'],
124180
+ rocksmash: ['6M'],
124181
+ roleplay: ['7T', '6T'],
124182
+ round: ['8M', '7M', '6M'],
124183
+ safeguard: ['8M', '7M', '6M'],
124184
+ scaryface: ['8M', '8L24', '7L4', '6L4'],
124185
+ secretpower: ['6M'],
124186
+ seedbomb: ['8M', '8L32', '7T', '7L48', '6T', '6L48'],
124187
+ shadowball: ['8M', '8L36', '7M', '7L36', '6M', '6L36'],
124188
+ shadowsneak: ['8L4', '7L30', '6L30'],
124189
+ skillswap: ['8M', '7T', '6T'],
124190
+ skittersmack: ['8T'],
124191
+ sleeptalk: ['8M', '7M', '6M'],
124192
+ sludgebomb: ['8M', '7M', '6M'],
124193
+ snore: ['8M'],
124194
+ solarbeam: ['8M', '7M', '6M'],
124195
+ spite: ['7T', '6T'],
124196
+ substitute: ['8M', '7M', '6M'],
124197
+ sunnyday: ['8M', '7M', '6M'],
124198
+ swagger: ['7M', '6M'],
124199
+ synthesis: ['7T', '6T'],
124200
+ telekinesis: ['7T'],
124201
+ thief: ['8M', '7M', '6M'],
124202
+ toxic: ['7M', '6M'],
124203
+ trick: ['8M', '8L40', '7T', '7L1', '6T', '6L1'],
124204
+ trickortreat: ['8L1', '7L23', '6L6'],
124205
+ trickroom: ['8M', '7M', '6M'],
124206
+ willowisp: ['8M', '7M', '6M'],
124207
+ worryseed: ['8L28', '7T', '7L11', '6T', '6L11']
124208
+ }
124209
+ },
124018
124210
  gourgeist: {
124019
124211
  learnset: {
124020
124212
  allyswitch: ['8M', '7T'],
@@ -124096,6 +124288,87 @@ export const Learnsets = {
124096
124288
  worryseed: ['8L28', '7T', '7L11', '6T', '6L11']
124097
124289
  }
124098
124290
  },
124291
+ gourgeistsuper: {
124292
+ learnset: {
124293
+ allyswitch: ['8M', '7T'],
124294
+ astonish: ['8L1', '7L1', '6L1'],
124295
+ attract: ['8M', '7M', '6M'],
124296
+ brutalswing: ['8M'],
124297
+ bulletseed: ['8M', '8L20', '7L26', '6L26'],
124298
+ chargebeam: ['7M', '6M'],
124299
+ confide: ['7M', '6M'],
124300
+ confuseray: ['8L1', '7L1', '6L1'],
124301
+ darkpulse: ['8M', '7M', '6M'],
124302
+ doubleteam: ['7M', '6M'],
124303
+ dreameater: ['7M', '6M'],
124304
+ endure: ['8M'],
124305
+ energyball: ['8M', '7M', '6M'],
124306
+ explosion: ['8L1', '7M', '7L1', '6M', '6L1'],
124307
+ facade: ['8M', '7M', '6M'],
124308
+ fireblast: ['8M', '7M', '6M'],
124309
+ flamecharge: ['7M', '6M'],
124310
+ flamethrower: ['8M', '7M', '6M'],
124311
+ flash: ['6M'],
124312
+ focusblast: ['8M', '7M', '6M'],
124313
+ foulplay: ['8M', '7T', '6T'],
124314
+ frustration: ['7M', '6M'],
124315
+ gigadrain: ['8M', '7T', '6T'],
124316
+ gigaimpact: ['8M', '7M', '6M'],
124317
+ grassknot: ['8M', '7M', '6M'],
124318
+ grassyglide: ['8T'],
124319
+ gyroball: ['8M', '7M', '6M'],
124320
+ hex: ['8M'],
124321
+ hiddenpower: ['7M', '6M'],
124322
+ hyperbeam: ['8M', '7M', '6M'],
124323
+ imprison: ['8M'],
124324
+ incinerate: ['6M'],
124325
+ leechseed: ['8L16', '7L20', '6L20'],
124326
+ lightscreen: ['8M', '7M', '6M'],
124327
+ magiccoat: ['7T', '6T'],
124328
+ moonblast: ['8L1'],
124329
+ mysticalfire: ['8M'],
124330
+ nastyplot: ['8M'],
124331
+ naturepower: ['7M', '6M'],
124332
+ painsplit: ['8L44', '7T', '7L42', '6T', '6L42'],
124333
+ phantomforce: ['8M', '8L48', '7L1', '6L1'],
124334
+ poltergeist: ['8T'],
124335
+ powerwhip: ['8M'],
124336
+ protect: ['8M', '7M', '6M'],
124337
+ psychic: ['8M', '7M', '6M'],
124338
+ razorleaf: ['8L12', '7L16', '6L16'],
124339
+ rest: ['8M', '7M', '6M'],
124340
+ return: ['7M', '6M'],
124341
+ rockslide: ['8M', '7M', '6M'],
124342
+ rocksmash: ['6M'],
124343
+ roleplay: ['7T', '6T'],
124344
+ round: ['8M', '7M', '6M'],
124345
+ safeguard: ['8M', '7M', '6M'],
124346
+ scaryface: ['8M', '8L24', '7L1', '6L4'],
124347
+ secretpower: ['6M'],
124348
+ seedbomb: ['8M', '8L32', '7T', '7L48', '6T', '6L48'],
124349
+ shadowball: ['8M', '8L36', '7M', '7L36', '6M', '6L36'],
124350
+ shadowsneak: ['8L1', '7L30', '6L30'],
124351
+ skillswap: ['8M', '7T', '6T'],
124352
+ skittersmack: ['8T'],
124353
+ sleeptalk: ['8M', '7M', '6M'],
124354
+ sludgebomb: ['8M', '7M', '6M'],
124355
+ snore: ['8M'],
124356
+ solarbeam: ['8M', '7M', '6M'],
124357
+ spite: ['7T', '6T'],
124358
+ substitute: ['8M', '7M', '6M'],
124359
+ sunnyday: ['8M', '7M', '6M'],
124360
+ swagger: ['7M', '6M'],
124361
+ synthesis: ['7T', '6T'],
124362
+ telekinesis: ['7T'],
124363
+ thief: ['8M', '7M', '6M'],
124364
+ toxic: ['7M', '6M'],
124365
+ trick: ['8M', '8L40', '7T', '7L1', '6T', '6L1'],
124366
+ trickortreat: ['8L1', '7L23', '6L6'],
124367
+ trickroom: ['8M', '7M', '6M'],
124368
+ willowisp: ['8M', '7M', '6M'],
124369
+ worryseed: ['8L28', '7T', '7L11', '6T', '6L11']
124370
+ }
124371
+ },
124099
124372
  bergmite: {
124100
124373
  learnset: {
124101
124374
  afteryou: ['7T', '6T'],
@@ -134911,47 +135184,52 @@ export const Learnsets = {
134911
135184
  },
134912
135185
  sinisteaantique: {
134913
135186
  learnset: {
134914
- allyswitch: ['9E'],
134915
- aromaticmist: ['9L6'],
134916
- astonish: ['9L1'],
134917
- batonpass: ['9M'],
135187
+ allyswitch: ['9E', '8M'],
135188
+ aromatherapy: ['8L30'],
135189
+ aromaticmist: ['9L6', '8L6'],
135190
+ astonish: ['9L1', '8L1'],
135191
+ batonpass: ['9M', '8M'],
134918
135192
  calmmind: ['9M'],
134919
135193
  confuseray: ['9M'],
134920
135194
  curse: ['9M'],
134921
- darkpulse: ['9M'],
134922
- endure: ['9M'],
134923
- facade: ['9M'],
134924
- foulplay: ['9M'],
134925
- gigadrain: ['9M', '9L36'],
134926
- hex: ['9M'],
134927
- imprison: ['9M'],
135195
+ darkpulse: ['9M', '8M'],
135196
+ endure: ['9M', '8M'],
135197
+ facade: ['9M', '8M'],
135198
+ foulplay: ['9M', '8M'],
135199
+ gigadrain: ['9M', '9L36', '8M', '8L36'],
135200
+ hex: ['9M', '8M'],
135201
+ imprison: ['9M', '8M'],
134928
135202
  magicalleaf: ['9M'],
134929
- megadrain: ['9L12'],
134930
- memento: ['9L54'],
134931
- metronome: ['9M'],
134932
- nastyplot: ['9M', '9L42'],
135203
+ megadrain: ['9L12', '8L12'],
135204
+ memento: ['9L54', '8L54'],
135205
+ metronome: ['9M', '8M'],
135206
+ nastyplot: ['9M', '9L42', '8M', '8L42'],
134933
135207
  nightshade: ['9M'],
134934
- phantomforce: ['9M'],
134935
- poltergeist: ['9M'],
134936
- protect: ['9M'],
135208
+ payback: ['8M'],
135209
+ phantomforce: ['9M', '8M'],
135210
+ poltergeist: ['9M', '8T'],
135211
+ protect: ['9M', '8M', '8L18'],
134937
135212
  psybeam: ['9M'],
134938
- psychic: ['9M'],
134939
- psyshock: ['9M'],
134940
- rest: ['9M'],
134941
- shadowball: ['9M', '9L48'],
134942
- shellsmash: ['9L60'],
135213
+ psychic: ['9M', '8M'],
135214
+ psyshock: ['9M', '8M'],
135215
+ rest: ['9M', '8M'],
135216
+ round: ['8M'],
135217
+ shadowball: ['9M', '9L48', '8M', '8L48'],
135218
+ shellsmash: ['9L60', '8L60'],
134943
135219
  skillswap: ['9M'],
134944
- sleeptalk: ['9M'],
135220
+ sleeptalk: ['9M', '8M'],
135221
+ snore: ['8M'],
134945
135222
  spite: ['9M'],
134946
- storedpower: ['9M'],
134947
- substitute: ['9M'],
134948
- suckerpunch: ['9L24'],
135223
+ storedpower: ['9M', '8M'],
135224
+ substitute: ['9M', '8M'],
135225
+ suckerpunch: ['9L24', '8L24'],
134949
135226
  sweetscent: ['9L30'],
134950
135227
  terablast: ['9M'],
134951
- trick: ['9M'],
135228
+ trick: ['9M', '8M'],
134952
135229
  trickroom: ['9M'],
134953
- willowisp: ['9M'],
134954
- withdraw: ['9L1']
135230
+ willowisp: ['9M', '8M'],
135231
+ withdraw: ['9L1', '8L1'],
135232
+ wonderroom: ['8M']
134955
135233
  }
134956
135234
  },
134957
135235
  polteageist: {
@@ -135012,6 +135290,64 @@ export const Learnsets = {
135012
135290
  wonderroom: ['8M']
135013
135291
  }
135014
135292
  },
135293
+ polteageistantique: {
135294
+ learnset: {
135295
+ allyswitch: ['8M'],
135296
+ aromatherapy: ['8L30'],
135297
+ aromaticmist: ['9L1', '8L1'],
135298
+ astonish: ['9L1', '8L1'],
135299
+ batonpass: ['9M', '8M'],
135300
+ calmmind: ['9M'],
135301
+ confuseray: ['9M'],
135302
+ curse: ['9M', '9L66', '8L66'],
135303
+ darkpulse: ['9M', '8M'],
135304
+ endure: ['9M', '8M'],
135305
+ facade: ['9M', '8M'],
135306
+ foulplay: ['9M', '8M'],
135307
+ gigadrain: ['9M', '9L36', '8M', '8L36'],
135308
+ gigaimpact: ['9M', '8M'],
135309
+ hex: ['9M', '8M'],
135310
+ hyperbeam: ['9M', '8M'],
135311
+ imprison: ['9M', '8M'],
135312
+ lightscreen: ['9M', '8M'],
135313
+ magicalleaf: ['9M'],
135314
+ megadrain: ['9L1', '8L1'],
135315
+ memento: ['9L54', '8L54'],
135316
+ metronome: ['9M', '8M'],
135317
+ nastyplot: ['9M', '9L42', '8M', '8L42'],
135318
+ nightshade: ['9M'],
135319
+ painsplit: ['9M'],
135320
+ payback: ['8M'],
135321
+ phantomforce: ['9M', '8M'],
135322
+ poltergeist: ['9M', '8T'],
135323
+ protect: ['9M', '9L18', '8M', '8L18'],
135324
+ psybeam: ['9M'],
135325
+ psychic: ['9M', '8M'],
135326
+ psyshock: ['9M', '8M'],
135327
+ reflect: ['9M', '8M'],
135328
+ rest: ['9M', '8M'],
135329
+ round: ['8M'],
135330
+ selfdestruct: ['8M'],
135331
+ shadowball: ['9M', '9L48', '8M', '8L48'],
135332
+ shellsmash: ['9L60', '8L60'],
135333
+ skillswap: ['9M'],
135334
+ sleeptalk: ['9M', '8M'],
135335
+ snore: ['8M'],
135336
+ spite: ['9M'],
135337
+ storedpower: ['9M', '8M'],
135338
+ strengthsap: ['9L1', '8L1'],
135339
+ substitute: ['9M', '8M'],
135340
+ suckerpunch: ['9L24', '8L24'],
135341
+ sweetscent: ['9L30'],
135342
+ teatime: ['9L0', '8L0'],
135343
+ terablast: ['9M'],
135344
+ trick: ['9M', '8M'],
135345
+ trickroom: ['9M'],
135346
+ willowisp: ['9M', '8M'],
135347
+ withdraw: ['9L1', '8L1'],
135348
+ wonderroom: ['8M']
135349
+ }
135350
+ },
135015
135351
  hatenna: {
135016
135352
  learnset: {
135017
135353
  afteryou: ['9E', '8E'],
@@ -140128,7 +140464,46 @@ export const Learnsets = {
140128
140464
  whirlpool: ['9M']
140129
140465
  }
140130
140466
  },
140131
- tatsugiristretchy: { learnset: {} },
140467
+ tatsugiristretchy: {
140468
+ learnset: {
140469
+ batonpass: ['9M', '9E'],
140470
+ chillingwater: ['9M'],
140471
+ counter: ['9E'],
140472
+ dracometeor: ['9M'],
140473
+ dragoncheer: ['9M'],
140474
+ dragondance: ['9M'],
140475
+ dragonpulse: ['9M', '9L52'],
140476
+ endure: ['9M'],
140477
+ facade: ['9M'],
140478
+ gigaimpact: ['9M'],
140479
+ harden: ['9L6'],
140480
+ helpinghand: ['9M', '9L12'],
140481
+ hydropump: ['9M'],
140482
+ hyperbeam: ['9M'],
140483
+ icywind: ['9M'],
140484
+ lunge: ['9M'],
140485
+ memento: ['9L34'],
140486
+ mirrorcoat: ['9L47'],
140487
+ muddywater: ['9M', '9L39'],
140488
+ nastyplot: ['9M', '9L43'],
140489
+ outrage: ['9M'],
140490
+ protect: ['9M'],
140491
+ raindance: ['9M'],
140492
+ rapidspin: ['9E'],
140493
+ rest: ['9M'],
140494
+ sleeptalk: ['9M'],
140495
+ soak: ['9L23'],
140496
+ splash: ['9L1'],
140497
+ substitute: ['9M'],
140498
+ surf: ['9M'],
140499
+ takedown: ['9M'],
140500
+ taunt: ['9M', '9L28'],
140501
+ terablast: ['9M'],
140502
+ watergun: ['9L1'],
140503
+ waterpulse: ['9M', '9L17'],
140504
+ whirlpool: ['9M']
140505
+ }
140506
+ },
140132
140507
  cyclizar: {
140133
140508
  learnset: {
140134
140509
  acrobatics: ['9M'],