import { Card } from '../../../interfaces' import Set from '../Legendary Treasures' const card: Card = { name: { en: "Woobat", }, illustrator: "Mizue", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 527, ], hp: 50, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Psychic", ], name: { en: "Dual Cut", }, effect: { en: "Flip 2 coins. This attack does 10 damage times the number of heads.", }, damage: 10, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1 } export default card