Refactor Resistance and Weakness imports

This commit is contained in:
Tee
2021-03-01 22:01:24 -05:00
parent 979a6367b8
commit 0d00d4f984

View File

@ -1,8 +1,7 @@
import { Ability } from './ability';
import { AncientTrait } from './ancientTrait';
import { Attack } from './attack';
import { Resistance } from './resistance';
import { Weakness } from './weakness';
import { Resistance, Weakness } from './stats';
import { CardImage } from './image';
import { ILegality } from './legality';
import { Set } from './set';
@ -30,7 +29,7 @@ export interface Card {
set: Set;
subtypes: string[];
supertype: string;
tcgplayer: TCGPlayer | undefined;
tcgplayer?: TCGPlayer;
types: string[];
weaknesses: Weakness[];
}