@pkmn/dex-types 0.9.7 → 0.9.8
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/index.d.ts +4 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -230,6 +230,7 @@ export interface MoveData extends EffectData, HitEffect {
|
|
|
230
230
|
spreadModifier?: number;
|
|
231
231
|
tracksTarget?: boolean;
|
|
232
232
|
willCrit?: boolean;
|
|
233
|
+
callsMove?: boolean;
|
|
233
234
|
|
|
234
235
|
hasCrashDamage?: boolean;
|
|
235
236
|
hasSheerForce?: boolean;
|
|
@@ -238,7 +239,8 @@ export interface MoveData extends EffectData, HitEffect {
|
|
|
238
239
|
stallingMove?: boolean;
|
|
239
240
|
}
|
|
240
241
|
|
|
241
|
-
export type SpeciesTag =
|
|
242
|
+
export type SpeciesTag =
|
|
243
|
+
'Mythical' | 'Restricted Legendary' | 'Sub-Legendary' | 'Ultra Beast' | 'Paradox';
|
|
242
244
|
export interface SpeciesAbility<A = string> { 0: A; 1?: A; H?: A; S?: A }
|
|
243
245
|
|
|
244
246
|
export interface SpeciesData {
|
|
@@ -416,6 +418,7 @@ export interface Species extends Readonly<BasicEffect<SpeciesName> & SpeciesData
|
|
|
416
418
|
readonly tier: Tier.Singles | Tier.Other | 'Illegal';
|
|
417
419
|
readonly doublesTier: Tier.Doubles | 'Illegal';
|
|
418
420
|
readonly isMega?: boolean;
|
|
421
|
+
readonly mother?: string;
|
|
419
422
|
readonly isPrimal?: boolean;
|
|
420
423
|
readonly battleOnly?: SpeciesName | SpeciesName[];
|
|
421
424
|
readonly isGigantamax?: MoveName;
|