@pkmn/dex-types 0.9.17 → 0.9.19

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 (2) hide show
  1. package/index.d.ts +3 -2
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -416,8 +416,9 @@ export interface Species extends Readonly<BasicEffect<SpeciesName> & SpeciesData
416
416
  readonly unreleasedHidden: boolean | 'Past';
417
417
  readonly maleOnlyHidden: boolean;
418
418
  readonly changesFrom?: SpeciesName;
419
- readonly tier: Tier.Singles | Tier.Other | 'Illegal';
420
- readonly doublesTier: Tier.Doubles | 'Illegal';
419
+ readonly tier: Tier.Singles | Tier.Other;
420
+ readonly doublesTier: Tier.Doubles | Tier.Other;
421
+ readonly natDexTier: Tier.Singles | Tier.Other;
421
422
  readonly isMega?: boolean;
422
423
  readonly mother?: string;
423
424
  readonly isPrimal?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pkmn/dex-types",
3
- "version": "0.9.17",
3
+ "version": "0.9.19",
4
4
  "types": "index.d.ts",
5
5
  "description": "Common Pokémon Showdown Dex types shared by @pkmn/dex and @pkmn/sim",
6
6
  "repository": "github:pkmn/ps",