@pkmn/sim 0.5.25 → 0.5.27

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (57) hide show
  1. package/build/config/formats.js +195 -162
  2. package/build/config/formats.js.map +1 -1
  3. package/build/data/aliases.js +2 -2
  4. package/build/data/aliases.js.map +1 -1
  5. package/build/data/conditions.js +1 -1
  6. package/build/data/conditions.js.map +1 -1
  7. package/build/data/formats-data.js +24 -25
  8. package/build/data/formats-data.js.map +1 -1
  9. package/build/data/learnsets.js +27 -20
  10. package/build/data/learnsets.js.map +1 -1
  11. package/build/data/mods/gen1/formats-data.js +0 -5
  12. package/build/data/mods/gen1/formats-data.js.map +1 -1
  13. package/build/data/mods/gen1/moves.js +54 -22
  14. package/build/data/mods/gen1/moves.js.map +1 -1
  15. package/build/data/mods/gen2/moves.js +10 -5
  16. package/build/data/mods/gen2/moves.js.map +1 -1
  17. package/build/data/mods/gen3/formats-data.js +2 -2
  18. package/build/data/mods/gen3/formats-data.js.map +1 -1
  19. package/build/data/mods/gen3/moves.js +9 -0
  20. package/build/data/mods/gen3/moves.js.map +1 -1
  21. package/build/data/mods/gen6/formats-data.js +14 -14
  22. package/build/data/mods/gen6/formats-data.js.map +1 -1
  23. package/build/data/mods/gen7/pokedex.js +4 -5
  24. package/build/data/mods/gen7/pokedex.js.map +1 -1
  25. package/build/data/pokedex.js +14 -14
  26. package/build/data/pokedex.js.map +1 -1
  27. package/build/data/rulesets.js +1 -1
  28. package/build/data/rulesets.js.map +1 -1
  29. package/build/data/text/abilities.js +321 -139
  30. package/build/data/text/abilities.js.map +1 -1
  31. package/build/data/text/moves.js +8 -2
  32. package/build/data/text/moves.js.map +1 -1
  33. package/build/sim/battle-actions.js.map +1 -1
  34. package/build/sim/pokemon.js +1 -1
  35. package/build/sim/pokemon.js.map +1 -1
  36. package/build/sim/team-validator.js +30 -18
  37. package/build/sim/team-validator.js.map +1 -1
  38. package/config/formats.ts +194 -159
  39. package/data/aliases.ts +2 -2
  40. package/data/conditions.ts +1 -1
  41. package/data/formats-data.ts +24 -25
  42. package/data/learnsets.ts +27 -20
  43. package/data/mods/gen1/formats-data.ts +0 -5
  44. package/data/mods/gen1/moves.ts +54 -23
  45. package/data/mods/gen2/moves.ts +10 -5
  46. package/data/mods/gen3/formats-data.ts +2 -2
  47. package/data/mods/gen3/moves.ts +9 -0
  48. package/data/mods/gen6/formats-data.ts +14 -14
  49. package/data/mods/gen7/pokedex.ts +4 -5
  50. package/data/pokedex.ts +14 -14
  51. package/data/rulesets.ts +1 -1
  52. package/data/text/abilities.ts +321 -139
  53. package/data/text/moves.ts +8 -2
  54. package/package.json +1 -1
  55. package/sim/battle-actions.ts +1 -0
  56. package/sim/pokemon.ts +1 -1
  57. package/sim/team-validator.ts +31 -20
@@ -122,6 +122,7 @@ export const Moves: {[k: string]: ModdedMoveData} = {
122
122
  inherit: true,
123
123
  accuracy: 100,
124
124
  ignoreAccuracy: true,
125
+ ignoreEvasion: true,
125
126
  },
126
127
  brickbreak: {
127
128
  inherit: true,
@@ -441,6 +442,7 @@ export const Moves: {[k: string]: ModdedMoveData} = {
441
442
  inherit: true,
442
443
  accuracy: 100,
443
444
  ignoreAccuracy: true,
445
+ ignoreEvasion: true,
444
446
  },
445
447
  megadrain: {
446
448
  inherit: true,
@@ -450,6 +452,7 @@ export const Moves: {[k: string]: ModdedMoveData} = {
450
452
  inherit: true,
451
453
  accuracy: 100,
452
454
  ignoreAccuracy: true,
455
+ ignoreEvasion: true,
453
456
  },
454
457
  mirrorcoat: {
455
458
  inherit: true,
@@ -521,6 +524,7 @@ export const Moves: {[k: string]: ModdedMoveData} = {
521
524
  inherit: true,
522
525
  accuracy: 100,
523
526
  ignoreAccuracy: true,
527
+ ignoreEvasion: true,
524
528
  },
525
529
  petaldance: {
526
530
  inherit: true,
@@ -538,11 +542,13 @@ export const Moves: {[k: string]: ModdedMoveData} = {
538
542
  inherit: true,
539
543
  accuracy: 100,
540
544
  ignoreAccuracy: true,
545
+ ignoreEvasion: true,
541
546
  },
542
547
  skillswap: {
543
548
  inherit: true,
544
549
  accuracy: 100,
545
550
  ignoreAccuracy: true,
551
+ ignoreEvasion: true,
546
552
  },
547
553
  sleeptalk: {
548
554
  inherit: true,
@@ -571,6 +577,7 @@ export const Moves: {[k: string]: ModdedMoveData} = {
571
577
  inherit: true,
572
578
  accuracy: 100,
573
579
  ignoreAccuracy: true,
580
+ ignoreEvasion: true,
574
581
  },
575
582
  spite: {
576
583
  inherit: true,
@@ -694,6 +701,7 @@ export const Moves: {[k: string]: ModdedMoveData} = {
694
701
  inherit: true,
695
702
  accuracy: 100,
696
703
  ignoreAccuracy: true,
704
+ ignoreEvasion: true,
697
705
  },
698
706
  volttackle: {
699
707
  inherit: true,
@@ -730,6 +738,7 @@ export const Moves: {[k: string]: ModdedMoveData} = {
730
738
  inherit: true,
731
739
  accuracy: 100,
732
740
  ignoreAccuracy: true,
741
+ ignoreEvasion: true,
733
742
  },
734
743
  zapcannon: {
735
744
  inherit: true,
@@ -24,7 +24,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
24
24
  tier: "NFE",
25
25
  },
26
26
  charizard: {
27
- randomBattleMoves: ["acrobatics", "airslash", "earthquake", "fireblast", "flareblitz", "roost", "swordsdance", "willowisp"],
27
+ randomBattleMoves: ["airslash", "earthquake", "fireblast", "roost", "willowisp"],
28
28
  randomDoubleBattleMoves: ["airslash", "dragonpulse", "fireblast", "heatwave", "overheat", "protect", "roost", "tailwind"],
29
29
  tier: "NU",
30
30
  doublesTier: "(DUU)",
@@ -54,7 +54,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
54
54
  doublesTier: "(DUU)",
55
55
  },
56
56
  blastoisemega: {
57
- randomBattleMoves: ["aurasphere", "darkpulse", "dragontail", "hydropump", "icebeam", "rapidspin", "scald"],
57
+ randomBattleMoves: ["aurasphere", "darkpulse", "hydropump", "icebeam", "rapidspin", "scald"],
58
58
  randomDoubleBattleMoves: ["aurasphere", "darkpulse", "fakeout", "followme", "hydropump", "icebeam", "icywind", "muddywater", "protect", "scald"],
59
59
  tier: "UU",
60
60
  doublesTier: "DUU",
@@ -686,7 +686,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
686
686
  tier: "LC",
687
687
  },
688
688
  seaking: {
689
- randomBattleMoves: ["drillrun", "icebeam", "knockoff", "megahorn", "scald", "waterfall"],
689
+ randomBattleMoves: ["drillrun", "icebeam", "knockoff", "megahorn", "raindance", "waterfall"],
690
690
  randomDoubleBattleMoves: ["drillrun", "icebeam", "icywind", "knockoff", "megahorn", "protect", "surf", "waterfall"],
691
691
  tier: "(PU)",
692
692
  doublesTier: "(DUU)",
@@ -1693,7 +1693,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1693
1693
  tier: "NFE",
1694
1694
  },
1695
1695
  aggron: {
1696
- randomBattleMoves: ["aquatail", "autotomize", "earthquake", "headsmash", "heavyslam", "lowkick", "stealthrock"],
1696
+ randomBattleMoves: ["aquatail", "autotomize", "earthquake", "headsmash", "heavyslam", "stealthrock"],
1697
1697
  randomDoubleBattleMoves: ["aquatail", "earthquake", "headsmash", "heavyslam", "lowkick", "protect", "rockslide", "stealthrock"],
1698
1698
  tier: "NU",
1699
1699
  doublesTier: "(DUU)",
@@ -1819,7 +1819,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1819
1819
  doublesTier: "DUU",
1820
1820
  },
1821
1821
  torkoal: {
1822
- randomBattleMoves: ["earthpower", "fireblast", "hiddenpowergrass", "lavaplume", "rapidspin", "shellsmash", "stealthrock", "yawn"],
1822
+ randomBattleMoves: ["earthpower", "lavaplume", "rapidspin", "stealthrock", "yawn"],
1823
1823
  randomDoubleBattleMoves: ["earthpower", "fireblast", "heatwave", "hiddenpowergrass", "protect", "shellsmash", "willowisp"],
1824
1824
  tier: "PU",
1825
1825
  doublesTier: "(DUU)",
@@ -1846,7 +1846,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1846
1846
  tier: "NFE",
1847
1847
  },
1848
1848
  flygon: {
1849
- randomBattleMoves: ["defog", "earthquake", "fireblast", "firepunch", "outrage", "roost", "stoneedge", "uturn"],
1849
+ randomBattleMoves: ["defog", "earthquake", "fireblast", "outrage", "roost", "stoneedge", "uturn"],
1850
1850
  randomDoubleBattleMoves: ["dragonclaw", "earthquake", "feint", "fireblast", "firepunch", "protect", "rockslide", "tailwind", "uturn"],
1851
1851
  tier: "RU",
1852
1852
  doublesTier: "(DUU)",
@@ -1855,7 +1855,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1855
1855
  tier: "LC",
1856
1856
  },
1857
1857
  cacturne: {
1858
- randomBattleMoves: ["darkpulse", "drainpunch", "focusblast", "gigadrain", "seedbomb", "spikes", "suckerpunch", "swordsdance"],
1858
+ randomBattleMoves: ["darkpulse", "drainpunch", "focusblast", "seedbomb", "spikes", "suckerpunch", "swordsdance"],
1859
1859
  randomDoubleBattleMoves: ["drainpunch", "seedbomb", "spikyshield", "substitute", "suckerpunch", "swordsdance"],
1860
1860
  tier: "PU",
1861
1861
  doublesTier: "(DUU)",
@@ -1882,7 +1882,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1882
1882
  doublesTier: "(DUU)",
1883
1883
  },
1884
1884
  seviper: {
1885
- randomBattleMoves: ["coil", "darkpulse", "earthquake", "flamethrower", "gigadrain", "poisonjab", "sludgewave", "suckerpunch", "switcheroo"],
1885
+ randomBattleMoves: ["darkpulse", "earthquake", "flamethrower", "gigadrain", "poisonjab", "sludgewave", "suckerpunch", "switcheroo"],
1886
1886
  randomDoubleBattleMoves: ["aquatail", "earthquake", "flamethrower", "gigadrain", "glare", "poisonjab", "protect", "sludgebomb", "suckerpunch"],
1887
1887
  tier: "(PU)",
1888
1888
  doublesTier: "(DUU)",
@@ -2021,7 +2021,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
2021
2021
  doublesTier: "(DUU)",
2022
2022
  },
2023
2023
  absolmega: {
2024
- randomBattleMoves: ["fireblast", "icebeam", "knockoff", "playrough", "pursuit", "suckerpunch", "superpower", "swordsdance"],
2024
+ randomBattleMoves: ["icebeam", "knockoff", "playrough", "pursuit", "suckerpunch", "superpower", "swordsdance"],
2025
2025
  randomDoubleBattleMoves: ["fireblast", "knockoff", "playrough", "protect", "suckerpunch", "superpower", "swordsdance"],
2026
2026
  tier: "UU",
2027
2027
  doublesTier: "(DUU)",
@@ -2147,7 +2147,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
2147
2147
  doublesTier: "(DUU)",
2148
2148
  },
2149
2149
  latiasmega: {
2150
- randomBattleMoves: ["calmmind", "dracometeor", "dragonpulse", "hiddenpowerfire", "psyshock", "roost", "substitute", "surf"],
2150
+ randomBattleMoves: ["calmmind", "dracometeor", "hiddenpowerfire", "psyshock", "roost", "substitute", "surf"],
2151
2151
  randomDoubleBattleMoves: ["dragonpulse", "healpulse", "helpinghand", "lightscreen", "protect", "psychic", "reflect", "tailwind"],
2152
2152
  tier: "(OU)",
2153
2153
  doublesTier: "(DUU)",
@@ -3392,7 +3392,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
3392
3392
  tier: "NFE",
3393
3393
  },
3394
3394
  hydreigon: {
3395
- randomBattleMoves: ["darkpulse", "dracometeor", "dragonpulse", "earthpower", "fireblast", "flashcannon", "roost", "superpower", "uturn"],
3395
+ randomBattleMoves: ["darkpulse", "dracometeor", "fireblast", "flashcannon", "roost", "superpower", "uturn"],
3396
3396
  randomDoubleBattleMoves: ["darkpulse", "dracometeor", "dragonpulse", "earthpower", "fireblast", "flashcannon", "protect", "roost", "superpower", "tailwind", "uturn"],
3397
3397
  tier: "UU",
3398
3398
  doublesTier: "DOU",
@@ -3401,7 +3401,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
3401
3401
  tier: "LC",
3402
3402
  },
3403
3403
  volcarona: {
3404
- randomBattleMoves: ["bugbuzz", "fierydance", "fireblast", "gigadrain", "hiddenpowerground", "hiddenpowerice", "quiverdance", "roost"],
3404
+ randomBattleMoves: ["bugbuzz", "fierydance", "fireblast", "gigadrain", "hiddenpowerice", "quiverdance", "roost"],
3405
3405
  randomDoubleBattleMoves: ["bugbuzz", "fierydance", "fireblast", "gigadrain", "heatwave", "hiddenpowerice", "protect", "quiverdance", "ragepowder", "roost", "tailwind", "willowisp"],
3406
3406
  tier: "UUBL",
3407
3407
  doublesTier: "DUU",
@@ -3449,7 +3449,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
3449
3449
  doublesTier: "(DUU)",
3450
3450
  },
3451
3451
  reshiram: {
3452
- randomBattleMoves: ["blueflare", "dracometeor", "dragonpulse", "flamecharge", "roost", "stoneedge", "toxic"],
3452
+ randomBattleMoves: ["blueflare", "dracometeor", "earthpower", "roost", "stoneedge", "toxic"],
3453
3453
  randomDoubleBattleMoves: ["blueflare", "dracometeor", "dragonpulse", "flamecharge", "heatwave", "protect", "roost", "tailwind"],
3454
3454
  tier: "Uber",
3455
3455
  doublesTier: "DUber",
@@ -3805,7 +3805,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
3805
3805
  doublesTier: "DUU",
3806
3806
  },
3807
3807
  klefki: {
3808
- randomBattleMoves: ["foulplay", "lightscreen", "magnetrise", "playrough", "reflect", "spikes", "thunderwave", "toxic"],
3808
+ randomBattleMoves: ["foulplay", "lightscreen", "playrough", "reflect", "spikes", "thunderwave", "toxic"],
3809
3809
  randomDoubleBattleMoves: ["dazzlinggleam", "flashcannon", "lightscreen", "playrough", "protect", "reflect", "safeguard", "substitute", "thunderwave"],
3810
3810
  tier: "UU",
3811
3811
  doublesTier: "(DUU)",
@@ -165,13 +165,12 @@ export const Pokedex: {[k: string]: ModdedSpeciesData} = {
165
165
  inherit: true,
166
166
  baseStats: {hp: 90, atk: 85, def: 80, spa: 105, spd: 80, spe: 110},
167
167
  },
168
- justyke: {
168
+ mumbao: {
169
169
  inherit: true,
170
- abilities: {0: "Levitate", 1: "Bulletproof", H: "Justified"},
170
+ unreleasedHidden: true,
171
171
  },
172
- equilibra: {
172
+ jumbao: {
173
173
  inherit: true,
174
- baseStats: {hp: 102, atk: 50, def: 96, spa: 133, spd: 118, spe: 60},
175
- abilities: {0: "Levitate", 1: "Bulletproof", H: "Justified"},
174
+ unreleasedHidden: true,
176
175
  },
177
176
  };
package/data/pokedex.ts CHANGED
@@ -4153,7 +4153,7 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
4153
4153
  abilities: {0: "Poison Point", 1: "Swift Swim", H: "Intimidate"},
4154
4154
  heightm: 0.5,
4155
4155
  weightkg: 3.9,
4156
- color: "Gray",
4156
+ color: "Black",
4157
4157
  evos: ["Overqwil"],
4158
4158
  eggGroups: ["Water 2"],
4159
4159
  },
@@ -4249,7 +4249,7 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
4249
4249
  abilities: {0: "Inner Focus", 1: "Keen Eye", H: "Poison Touch"},
4250
4250
  heightm: 0.9,
4251
4251
  weightkg: 27,
4252
- color: "Black",
4252
+ color: "Gray",
4253
4253
  evos: ["Sneasler"],
4254
4254
  eggGroups: ["Field"],
4255
4255
  },
@@ -10984,7 +10984,7 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
10984
10984
  abilities: {0: "Keen Eye", 1: "Sheer Force", H: "Defiant"},
10985
10985
  heightm: 1.7,
10986
10986
  weightkg: 43.4,
10987
- color: "Red",
10987
+ color: "White",
10988
10988
  prevo: "Rufflet",
10989
10989
  evoLevel: 54,
10990
10990
  eggGroups: ["Flying"],
@@ -15851,7 +15851,7 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
15851
15851
  abilities: {0: "Hunger Switch"},
15852
15852
  heightm: 0.3,
15853
15853
  weightkg: 3,
15854
- color: "Yellow",
15854
+ color: "Purple",
15855
15855
  eggGroups: ["Field", "Fairy"],
15856
15856
  requiredAbility: "Hunger Switch",
15857
15857
  battleOnly: "Morpeko",
@@ -16402,7 +16402,7 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
16402
16402
  abilities: {0: "Pressure", H: "Poison Touch"},
16403
16403
  heightm: 1.3,
16404
16404
  weightkg: 43,
16405
- color: "Gray",
16405
+ color: "Blue",
16406
16406
  prevo: "Sneasel-Hisui",
16407
16407
  evoType: "useItem",
16408
16408
  evoItem: "Razor Claw",
@@ -16433,7 +16433,7 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
16433
16433
  abilities: {0: "Healer", H: "Contrary"},
16434
16434
  heightm: 1.6,
16435
16435
  weightkg: 48,
16436
- color: "Brown",
16436
+ color: "Pink",
16437
16437
  tags: ["Sub-Legendary"],
16438
16438
  eggGroups: ["Undiscovered"],
16439
16439
  otherFormes: ["Enamorus-Therian"],
@@ -16450,7 +16450,7 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
16450
16450
  abilities: {0: "Overcoat"},
16451
16451
  heightm: 1.6,
16452
16452
  weightkg: 48,
16453
- color: "Brown",
16453
+ color: "Pink",
16454
16454
  eggGroups: ["Undiscovered"],
16455
16455
  changesFrom: "Enamorus",
16456
16456
  },
@@ -17065,9 +17065,9 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
17065
17065
  name: "Mumbao",
17066
17066
  types: ["Grass", "Fairy"],
17067
17067
  baseStats: {hp: 55, atk: 30, def: 64, spa: 87, spd: 73, spe: 66},
17068
- abilities: {0: "Solar Power", 1: "Trace", H: "Overcoat"},
17068
+ abilities: {0: "Trace", 1: "Overcoat", H: "Solar Power"},
17069
17069
  heightm: 1,
17070
- weightkg: 250,
17070
+ weightkg: 83,
17071
17071
  color: "Brown",
17072
17072
  evos: ["Jumbao"],
17073
17073
  eggGroups: ["Grass"],
@@ -17078,9 +17078,9 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
17078
17078
  name: "Jumbao",
17079
17079
  types: ["Grass", "Fairy"],
17080
17080
  baseStats: {hp: 92, atk: 63, def: 97, spa: 124, spd: 104, spe: 96},
17081
- abilities: {0: "Drought", 1: "Trace", H: "Overcoat"},
17081
+ abilities: {0: "Trace", 1: "Overcoat", H: "Drought"},
17082
17082
  heightm: 2.4,
17083
- weightkg: 600,
17083
+ weightkg: 200,
17084
17084
  color: "Brown",
17085
17085
  prevo: "Mumbao",
17086
17086
  evoType: "levelFriendship",
@@ -17229,7 +17229,7 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
17229
17229
  types: ["Steel", "Ground"],
17230
17230
  gender: "N",
17231
17231
  baseStats: {hp: 72, atk: 70, def: 56, spa: 83, spd: 68, spe: 30},
17232
- abilities: {0: "Levitate", 1: "Stalwart", H: "Justified"},
17232
+ abilities: {0: "Levitate", 1: "Bulletproof", H: "Justified"},
17233
17233
  heightm: 0.4,
17234
17234
  weightkg: 36.5,
17235
17235
  color: "Brown",
@@ -17242,8 +17242,8 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
17242
17242
  name: "Equilibra",
17243
17243
  types: ["Steel", "Ground"],
17244
17244
  gender: "N",
17245
- baseStats: {hp: 102, atk: 50, def: 96, spa: 121, spd: 118, spe: 60},
17246
- abilities: {0: "Levitate", 1: "Stalwart", H: "Justified"},
17245
+ baseStats: {hp: 102, atk: 50, def: 96, spa: 133, spd: 118, spe: 60},
17246
+ abilities: {0: "Levitate", 1: "Bulletproof", H: "Justified"},
17247
17247
  heightm: 0.8,
17248
17248
  weightkg: 51.3,
17249
17249
  color: "Brown",
package/data/rulesets.ts CHANGED
@@ -994,7 +994,7 @@ export const Rulesets: {[k: string]: FormatData} = {
994
994
  if (status.id === 'slp') {
995
995
  for (const pokemon of target.side.pokemon) {
996
996
  if (pokemon.hp && pokemon.status === 'slp') {
997
- this.add('-message', "Sleep Clause activated. (In Stadium, Sleep Clause activates if any of the opponent's Pokemon are asleep, even if self-inflicted from Rest)");
997
+ this.add('-message', "Sleep Clause activated. (In Nintendo formats, Sleep Clause activates if any of the opponent's Pokemon are asleep, even if self-inflicted from Rest)");
998
998
  return false;
999
999
  }
1000
1000
  }