@pkmn/dex-types 0.7.3 → 0.7.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.
Files changed (2) hide show
  1. package/index.d.ts +15 -12
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -89,26 +89,28 @@ export interface ItemData extends EffectData {
89
89
 
90
90
  interface MoveFlags {
91
91
  bypasssub?: 1 | 0;
92
+ bite?: 1 | 0;
93
+ bullet?: 1 | 0;
92
94
  charge?: 1 | 0;
93
95
  contact?: 1 | 0;
96
+ dance?: 1 | 0;
94
97
  defrost?: 1 | 0;
98
+ distance?: 1 | 0;
99
+ gravity?: 1 | 0;
100
+ heal?: 1 | 0;
95
101
  mirror?: 1 | 0;
96
102
  allyanim?: 1 | 0;
97
- recharge?: 1 | 0;
103
+ nonsky?: 1 | 0;
104
+ powder?: 1 | 0;
98
105
  protect?: 1 | 0;
99
- bite?: 1 | 0;
106
+ pulse?: 1 | 0;
107
+ punch?: 1 | 0;
108
+ recharge?: 1 | 0;
100
109
  reflectable?: 1 | 0;
110
+ slicing?: 1 | 0;
101
111
  snatch?: 1 | 0;
102
112
  sound?: 1 | 0;
103
- gravity?: 1 | 0;
104
- heal?: 1 | 0;
105
- punch?: 1 | 0;
106
- distance?: 1 | 0;
107
- powder?: 1 | 0;
108
- bullet?: 1 | 0;
109
- nonsky?: 1 | 0;
110
- pulse?: 1 | 0;
111
- dance?: 1 | 0;
113
+ wind?: 1 | 0;
112
114
  }
113
115
 
114
116
  export interface HitEffect {
@@ -208,6 +210,7 @@ export interface MoveData extends EffectData, HitEffect {
208
210
  willCrit?: boolean;
209
211
 
210
212
  hasCrashDamage?: boolean;
213
+ hasSheerForce?: boolean;
211
214
  isConfusionSelfHit?: boolean;
212
215
  isFutureMove?: boolean;
213
216
  noMetronome?: string[];
@@ -215,7 +218,7 @@ export interface MoveData extends EffectData, HitEffect {
215
218
  stallingMove?: boolean;
216
219
  }
217
220
 
218
- export type SpeciesTag = 'Mythical' | 'Restricted Legendary' | 'Sub-Legendary';
221
+ export type SpeciesTag = 'Mythical' | 'Restricted Legendary' | 'Sub-Legendary' | 'Paradox';
219
222
  export interface SpeciesAbility<A = string> { 0: A; 1?: A; H?: A; S?: A }
220
223
 
221
224
  export interface SpeciesData {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pkmn/dex-types",
3
- "version": "0.7.3",
3
+ "version": "0.7.4",
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",