import { Card } from '../../../interfaces' import Set from '../BREAKthrough' const card: Card = { name: { en: "Pancham", fr: "Pandespiègle", }, illustrator: "Mizue", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 674, ], hp: 60, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Fighting", "Colorless", ], name: { en: "Pompous Punch", fr: "Coup d'Poing Solennel", }, effect: { en: "Discard a random card from your opponent’s hand.", fr: "Défaussez au hasard une carte de la main de votre adversaire.", }, damage: 10, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 2, } export default card