import { Card } from '../../../interfaces' import Set from '../Dragons Exalted' const card: Card = { name: { en: "Bidoof", fr: "Keunotor", es: "Bidoof", it: "Bidoof", pt: "Bidoof", de: "Bidiza" }, illustrator: "match", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 399, ], hp: 70, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Bang Heads", fr: "Choc Frontal", }, effect: { en: "Both this Pokémon and the Defending Pokémon are now Confused.", fr: "Ce Pokémon et le Pokémon Défenseur sont maintenant Confus.", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 2, } export default card