@pkmn/dex 0.9.17 → 0.9.18

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/index.d.mts CHANGED
@@ -5,6 +5,7 @@ declare function toID(text: any): T.ID;
5
5
  interface FormatData {
6
6
  tier?: string;
7
7
  doublesTier?: string;
8
+ natDexTier?: string;
8
9
  isNonstandard?: T.Nonstandard | null;
9
10
  inherit?: boolean;
10
11
  }
@@ -247,8 +248,9 @@ declare class Species extends BasicEffect<T.SpeciesName> implements T.Species {
247
248
  readonly unreleasedHidden: boolean | 'Past';
248
249
  readonly maleOnlyHidden: boolean;
249
250
  readonly changesFrom?: T.SpeciesName;
250
- readonly tier: T.Tier.Singles | T.Tier.Other | 'Illegal';
251
- readonly doublesTier: T.Tier.Doubles | 'Illegal';
251
+ readonly tier: T.Tier.Singles | T.Tier.Other;
252
+ readonly doublesTier: T.Tier.Doubles | T.Tier.Other;
253
+ readonly natDexTier: T.Tier.Singles | T.Tier.Other;
252
254
  readonly cosmeticFormes?: T.SpeciesName[];
253
255
  readonly otherFormes?: T.SpeciesName[];
254
256
  readonly formeOrder?: T.SpeciesName[];
package/build/index.d.ts CHANGED
@@ -5,6 +5,7 @@ declare function toID(text: any): T.ID;
5
5
  interface FormatData {
6
6
  tier?: string;
7
7
  doublesTier?: string;
8
+ natDexTier?: string;
8
9
  isNonstandard?: T.Nonstandard | null;
9
10
  inherit?: boolean;
10
11
  }
@@ -247,8 +248,9 @@ declare class Species extends BasicEffect<T.SpeciesName> implements T.Species {
247
248
  readonly unreleasedHidden: boolean | 'Past';
248
249
  readonly maleOnlyHidden: boolean;
249
250
  readonly changesFrom?: T.SpeciesName;
250
- readonly tier: T.Tier.Singles | T.Tier.Other | 'Illegal';
251
- readonly doublesTier: T.Tier.Doubles | 'Illegal';
251
+ readonly tier: T.Tier.Singles | T.Tier.Other;
252
+ readonly doublesTier: T.Tier.Doubles | T.Tier.Other;
253
+ readonly natDexTier: T.Tier.Singles | T.Tier.Other;
252
254
  readonly cosmeticFormes?: T.SpeciesName[];
253
255
  readonly otherFormes?: T.SpeciesName[];
254
256
  readonly formeOrder?: T.SpeciesName[];