import { Card } from '../../../interfaces' import Set from '../Burning Shadows' const card: Card = { name: { en: "Hoothoot", fr: "Hoothoot", }, illustrator: "MAHOU", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 163, ], hp: 60, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "See Through", fr: "Main Transparente", }, effect: { en: "Your opponent reveals their hand.", fr: "Votre adversaire dévoile sa main.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Peck", fr: "Picpic", }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card