import { Card } from '../../../interfaces' import Set from '../Aquapolis' const card: Card = { name: { en: "Chinchou", fr: "Loupio" }, illustrator: "Hisao Nakamura", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 170, ], hp: 50, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Jolt", fr: "Secousse" }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé." }, }, { cost: [ "Lightning", "Colorless", ], name: { en: "Confuse Ray", fr: "Onde folie" }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Confused.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Confus." }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card