import { Card } from '../../../interfaces' import Set from '../Plasma Freeze' const card: Card = { name: { en: "Chinchou", fr: "Loupio", }, illustrator: "Kouki Saitou", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 170, ], hp: 70, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Lightning", "Colorless", ], name: { en: "Static Shock", fr: "Choc Statique", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 2, } export default card