import { Card } from '../../../interfaces' import Set from '../BREAKpoint' const card: Card = { name: { en: "Pancham", fr: "Pandespiègle", es: "Pancham", it: "Pancham", pt: "Pancham", de: "Pam-Pam" }, illustrator: "MAHOU", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 674, ], hp: 60, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Light Punch", fr: "Poing Léger", es: "Puño Ligero", it: "Pugnetto", pt: "Soco de Luz", de: "Leichter Hieb" }, damage: 10, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Confront", fr: "Confrontation", es: "Confrontar", it: "Confronto", pt: "Confrontar", de: "Konfrontieren" }, damage: 20, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 2, } export default card