@pkmn/dex-types 0.8.4 → 0.8.6

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 +1 -2
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -114,6 +114,7 @@ interface MoveFlags {
114
114
  futuremove?: 1 | 0;
115
115
  gravity?: 1 | 0;
116
116
  heal?: 1 | 0;
117
+ metronome?: 1;
117
118
  mirror?: 1 | 0;
118
119
  mustpressure?: 1 | 0;
119
120
  noassist?: 1 | 0;
@@ -233,7 +234,6 @@ export interface MoveData extends EffectData, HitEffect {
233
234
  hasCrashDamage?: boolean;
234
235
  hasSheerForce?: boolean;
235
236
  isConfusionSelfHit?: boolean;
236
- noMetronome?: string[];
237
237
  noSketch?: boolean;
238
238
  stallingMove?: boolean;
239
239
  }
@@ -383,7 +383,6 @@ export interface Move extends Readonly<BasicEffect<MoveName> & MoveData> {
383
383
  readonly maxMove?: {
384
384
  basePower: number;
385
385
  };
386
- readonly noMetronome?: MoveName[];
387
386
  readonly volatileStatus?: ID;
388
387
  readonly slotCondition?: ID;
389
388
  readonly sideCondition?: ID;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pkmn/dex-types",
3
- "version": "0.8.4",
3
+ "version": "0.8.6",
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",