@pkmn/dex 0.5.5 → 0.5.8
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.
- package/build/data/aliases.json +4 -4
- package/build/data/formats-data.json +38 -10
- package/build/data/learnsets.json +12 -5
- package/build/data/moves.json +2 -0
- package/build/data/species.json +630 -13
- package/build/index.d.ts +1 -1
- package/build/learnsets.min.js +1 -1
- package/build/production.min.js +1 -1
- package/package.json +2 -2
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?:
|
|
407
|
+
constructor(modid?: "gen1" | "gen2" | "gen3" | "gen4" | "gen5" | "gen6" | "gen7" | "gen8" | T.ID, modData?: ModData);
|
|
408
408
|
mod(genid: GenID): ModdedDex;
|
|
409
409
|
mod(modid: T.ID, modData: ModData): ModdedDex;
|
|
410
410
|
forGen(gen: number): ModdedDex;
|