@pkmn/dex 0.6.2 → 0.6.4
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/formats-data.json +1 -1
- package/build/data/species.json +5 -0
- package/build/index.d.ts +3 -2
- package/build/index.js.map +1 -1
- package/build/production.min.js +1 -1
- package/index.ts +3 -2
- package/package.json +2 -2
package/index.ts
CHANGED
|
@@ -688,7 +688,6 @@ export class Species extends BasicEffect<T.SpeciesName> implements T.Species {
|
|
|
688
688
|
readonly tier: T.Tier.Singles | T.Tier.Other | 'Illegal';
|
|
689
689
|
readonly doublesTier: T.Tier.Doubles | 'Illegal';
|
|
690
690
|
|
|
691
|
-
readonly evoMove?: T.MoveName;
|
|
692
691
|
readonly cosmeticFormes?: T.SpeciesName[];
|
|
693
692
|
readonly otherFormes?: T.SpeciesName[];
|
|
694
693
|
readonly genderRatio: { M: number; F: number };
|
|
@@ -704,9 +703,11 @@ export class Species extends BasicEffect<T.SpeciesName> implements T.Species {
|
|
|
704
703
|
readonly requiredMove?: T.MoveName;
|
|
705
704
|
readonly gender?: T.GenderName;
|
|
706
705
|
readonly maxHP?: number;
|
|
706
|
+
readonly evoMove?: T.MoveName;
|
|
707
|
+
readonly evoItem?: string;
|
|
708
|
+
readonly evoRegion?: 'Alola' | 'Galar';
|
|
707
709
|
readonly evoLevel?: number;
|
|
708
710
|
readonly evoCondition?: string;
|
|
709
|
-
readonly evoItem?: string;
|
|
710
711
|
readonly evoType?: T.EvoType;
|
|
711
712
|
readonly condition?: Partial<Condition>;
|
|
712
713
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pkmn/dex",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.4",
|
|
4
4
|
"main": "build/index.js",
|
|
5
5
|
"types": "build/index.d.ts",
|
|
6
6
|
"unpkg": "build/production.min.js",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"index.ts"
|
|
17
17
|
],
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@pkmn/dex-types": "^0.6.
|
|
19
|
+
"@pkmn/dex-types": "^0.6.4"
|
|
20
20
|
},
|
|
21
21
|
"scripts": {
|
|
22
22
|
"lint": "eslint --cache *.ts",
|