@pkmn/dex 0.5.8 → 0.5.9

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.
@@ -66,8 +66,6 @@
66
66
  "gen6mono": "[Gen 6] Monotype",
67
67
  "gen6ag": "[Gen 6] Anything Goes",
68
68
  "crossevo": "[Gen 8] Cross Evolution",
69
- "omotm": "[Gen 8] Trademarked",
70
- "lcotm": "[Gen 8] Linked",
71
69
  "fabio": "Ampharos-Mega",
72
70
  "maero": "Aerodactyl-Mega",
73
71
  "megabunny": "Lopunny-Mega",
@@ -126421,7 +126421,6 @@
126421
126421
  "scorchingsands": ["8T"],
126422
126422
  "secretpower": ["7M", "4M"],
126423
126423
  "seedbomb": ["8M", "8L32", "7L23", "4T"],
126424
- "slackoff": ["8L1"],
126425
126424
  "sleeptalk": ["8M", "7M", "4M"],
126426
126425
  "snore": ["8M", "4T"],
126427
126426
  "solarbeam": ["8M", "7M", "4M"],
@@ -129751,7 +129750,6 @@
129751
129750
  "snore": ["8M"],
129752
129751
  "stealthrock": ["8M"],
129753
129752
  "substitute": ["8M"],
129754
- "swordsdance": ["8M"],
129755
129753
  "thunderwave": ["8M"],
129756
129754
  "toxic": ["8L1"],
129757
129755
  "uturn": ["8M"]
@@ -2781,6 +2781,14 @@
2781
2781
  "tapufini": { "inherit": true, "abilities": { "0": "Misty Surge" } },
2782
2782
  "pyroak": {
2783
2783
  "inherit": true,
2784
+ "baseStats": {
2785
+ "hp": 120,
2786
+ "atk": 70,
2787
+ "def": 105,
2788
+ "spa": 95,
2789
+ "spd": 90,
2790
+ "spe": 60
2791
+ },
2784
2792
  "abilities": { "0": "Rock Head", "1": "Battle Armor", "H": "White Smoke" }
2785
2793
  },
2786
2794
  "voodoom": {
@@ -25776,7 +25784,7 @@
25776
25784
  "hp": 120,
25777
25785
  "atk": 70,
25778
25786
  "def": 105,
25779
- "spa": 95,
25787
+ "spa": 75,
25780
25788
  "spd": 90,
25781
25789
  "spe": 60
25782
25790
  },
@@ -26985,9 +26993,9 @@
26985
26993
  "gender": "N",
26986
26994
  "baseStats": {
26987
26995
  "hp": 85,
26988
- "atk": 110,
26996
+ "atk": 102,
26989
26997
  "def": 85,
26990
- "spa": 55,
26998
+ "spa": 63,
26991
26999
  "spd": 85,
26992
27000
  "spe": 120
26993
27001
  },
package/build/index.d.ts CHANGED
@@ -404,7 +404,7 @@ export declare class ModdedDex implements T.Dex {
404
404
  readonly stats: DexStats;
405
405
  readonly types: DexTypes;
406
406
  modData?: ModData;
407
- constructor(modid?: "gen1" | "gen2" | "gen3" | "gen4" | "gen5" | "gen6" | "gen7" | "gen8" | T.ID, modData?: ModData);
407
+ constructor(modid?: T.ID | "gen1" | "gen2" | "gen3" | "gen4" | "gen5" | "gen6" | "gen7" | "gen8", modData?: ModData);
408
408
  mod(genid: GenID): ModdedDex;
409
409
  mod(modid: T.ID, modData: ModData): ModdedDex;
410
410
  forGen(gen: number): ModdedDex;