@pkmn/dex-types 0.5.15 → 0.5.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.
Files changed (2) hide show
  1. package/index.d.ts +3 -1
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -251,7 +251,9 @@ export interface SpeciesData {
251
251
  requiredItems?: string[];
252
252
  requiredMove?: string;
253
253
  battleOnly?: string | string[];
254
- isGigantamax?: string;
254
+ canGigantamax?: string;
255
+ gmaxUnreleased?: boolean;
256
+ cannotDynamax?: boolean;
255
257
  changesFrom?: string;
256
258
  tier?: Tier.Singles | Tier.Other;
257
259
  inherit?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pkmn/dex-types",
3
- "version": "0.5.15",
3
+ "version": "0.5.18",
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",