import { Card } from '../../../interfaces' import Set from '../Neo Genesis' const card: Card = { name: { en: "Chinchou", }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 170, ], hp: 50, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Lightning", ], name: { en: "Supersonic", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Confused.", }, }, { cost: [ "Water", ], name: { en: "Flail", }, effect: { en: "Does 10 damage times the number of damage counters on Chinchou.", }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card