@pkmn/mods 0.5.10 → 0.5.13

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.
@@ -1,5 +1,7 @@
1
1
  import type {ModdedLearnsetData} from '@pkmn/sim';
2
2
 
3
+ /* eslint-disable max-len */
4
+
3
5
  export const Learnsets: {[k: string]: ModdedLearnsetData} = {
4
6
  bulbasaur: {
5
7
  learnset: {
@@ -25073,7 +25075,7 @@ export const Learnsets: {[k: string]: ModdedLearnsetData} = {
25073
25075
  darkpulse: ["8M", "8L93"],
25074
25076
  darkvoid: ["8L66"],
25075
25077
  disable: ["8L1"],
25076
- doubleteam: ["8M", "8L47"],
25078
+ doubleteam: ["8M", "8L47", "8S0"],
25077
25079
  drainpunch: ["8M"],
25078
25080
  dreameater: ["8M", "8L84"],
25079
25081
  endure: ["8M"],
@@ -25082,11 +25084,11 @@ export const Learnsets: {[k: string]: ModdedLearnsetData} = {
25082
25084
  fling: ["8M"],
25083
25085
  focusblast: ["8M"],
25084
25086
  focuspunch: ["8M"],
25085
- foulplay: ["8L38"],
25087
+ foulplay: ["8L38", "8S0"],
25086
25088
  gigaimpact: ["8M"],
25087
25089
  haze: ["8L57"],
25088
25090
  hyperbeam: ["8M"],
25089
- hypnosis: ["8L20"],
25091
+ hypnosis: ["8L20", "8S0"],
25090
25092
  icebeam: ["8M"],
25091
25093
  nastyplot: ["8M", "8L75"],
25092
25094
  payback: ["8M"],
@@ -25109,7 +25111,7 @@ export const Learnsets: {[k: string]: ModdedLearnsetData} = {
25109
25111
  snarl: ["8M"],
25110
25112
  strength: ["8M"],
25111
25113
  substitute: ["8M"],
25112
- suckerpunch: ["8L29"],
25114
+ suckerpunch: ["8L29", "8S0"],
25113
25115
  sunnyday: ["8M"],
25114
25116
  swagger: ["8M"],
25115
25117
  swordsdance: ["8M"],
@@ -25122,6 +25124,10 @@ export const Learnsets: {[k: string]: ModdedLearnsetData} = {
25122
25124
  willowisp: ["8M"],
25123
25125
  xscissor: ["8M"],
25124
25126
  },
25127
+ eventData: [
25128
+ {generation: 8, level: 50, shiny: 1, perfectIVs: 3, moves: ["hypnosis", "suckerpunch", "foulplay", "doubleteam"]},
25129
+ ],
25130
+ eventOnly: true,
25125
25131
  },
25126
25132
  shaymin: {
25127
25133
  learnset: {
@@ -25162,7 +25168,7 @@ export const Learnsets: {[k: string]: ModdedLearnsetData} = {
25162
25168
  worryseed: ["8L55"],
25163
25169
  },
25164
25170
  eventData: [
25165
- {generation: 8, level: 30, shiny: 1, moves: ["growth", "magicalleaf", "leechseed", "synthesis"], pokeball: "pokeball"},
25171
+ {generation: 8, level: 30, shiny: 1, perfectIVs: 3, moves: ["growth", "magicalleaf", "leechseed", "synthesis"]},
25166
25172
  ],
25167
25173
  eventOnly: true,
25168
25174
  },
@@ -25201,14 +25207,14 @@ export const Learnsets: {[k: string]: ModdedLearnsetData} = {
25201
25207
  flashcannon: ["8M"],
25202
25208
  fly: ["8M"],
25203
25209
  focusblast: ["8M"],
25204
- futuresight: ["8L60"],
25210
+ futuresight: ["8L60", "8S0"],
25205
25211
  gigadrain: ["8M"],
25206
25212
  gigaimpact: ["8M"],
25207
25213
  grassknot: ["8M"],
25208
25214
  gravity: ["8L10"],
25209
25215
  hail: ["8M"],
25210
- healingwish: ["8L50"],
25211
- hyperbeam: ["8M", "8L80"],
25216
+ healingwish: ["8L50", "8S0"],
25217
+ hyperbeam: ["8M", "8L80", "8S0"],
25212
25218
  hypervoice: ["8L30"],
25213
25219
  icebeam: ["8M"],
25214
25220
  irontail: ["8M"],
@@ -25222,7 +25228,7 @@ export const Learnsets: {[k: string]: ModdedLearnsetData} = {
25222
25228
  psychic: ["8M"],
25223
25229
  psychup: ["8M"],
25224
25230
  raindance: ["8M"],
25225
- recover: ["8L70"],
25231
+ recover: ["8L70", "8S0"],
25226
25232
  recycle: ["8M"],
25227
25233
  reflect: ["8M"],
25228
25234
  rest: ["8M"],
@@ -25259,6 +25265,10 @@ export const Learnsets: {[k: string]: ModdedLearnsetData} = {
25259
25265
  workup: ["8M"],
25260
25266
  xscissor: ["8M"],
25261
25267
  },
25268
+ eventData: [
25269
+ {generation: 8, level: 80, shiny: 1, perfectIVs: 3, moves: ["healingwish", "futuresight", "recover", "hyperbeam"]},
25270
+ ],
25271
+ eventOnly: true,
25262
25272
  },
25263
25273
  syclar: {
25264
25274
  learnset: {
@@ -103,7 +103,7 @@ export const Moves: {[k: string]: ModdedMoveData} = {
103
103
  },
104
104
  darkvoid: {
105
105
  inherit: true,
106
- isNonstandard: "Unobtainable",
106
+ isNonstandard: null,
107
107
  },
108
108
  decorate: {
109
109
  inherit: true,
@@ -503,7 +503,7 @@ export const Moves: {[k: string]: ModdedMoveData} = {
503
503
  },
504
504
  judgment: {
505
505
  inherit: true,
506
- isNonstandard: "Unobtainable",
506
+ isNonstandard: null,
507
507
  },
508
508
  junglehealing: {
509
509
  inherit: true,
@@ -44,6 +44,7 @@ export const Pokedex: {[k: string]: ModdedSpeciesData} = {
44
44
  arceusfairy: {
45
45
  inherit: true,
46
46
  requiredItems: ["Pixie Plate"],
47
+ gen: 4,
47
48
  },
48
49
  arceusfighting: {
49
50
  inherit: true,