import { Card } from '../../../interfaces' import Set from '../Dark Explorers' const card: Card = { name: { en: "Woobat", fr: "Chovsourir", es: "Woobat", it: "Woobat", pt: "Woobat", de: "Fleknoil" }, illustrator: "Kagemaru Himeno", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 527, ], hp: 50, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Psychic", ], name: { en: "Supersonic", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Confused.", }, }, { cost: [ "Psychic", "Colorless", ], name: { en: "Heart Stamp", }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1 } export default card