import { Card } from '../../../interfaces' import Set from '../Unleashed' const card: Card = { name: { en: "Chinchou", fr: "Loupio", }, illustrator: "sui", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 170, ], hp: 60, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Ram", fr: "Collision", }, damage: 10, }, { cost: [ "Lightning", "Colorless", ], name: { en: "Lightning Ball", fr: "Boule éclair", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1, description: { en: "It shoots positive and negative electricity between the tips of its two antennae and zaps its enemies." }, variants: { normal: true, reverse: false, holo: false, firstEdition: false } } export default card