import { Card } from '../../../interfaces' import Set from '../Boundaries Crossed' const card: Card = { name: { en: "Chinchou", fr: "Loupio", es: "Chinchou", it: "Chinchou", pt: "Chinchou", de: "Lampi" }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 170, ], hp: 60, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Lightning", "Colorless", ], name: { en: "Electripult", fr: "Électripulte", }, effect: { en: "This attack does 20 damage to 1 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", fr: "Cette attaque inflige 20 dégâts à 1 des Pokémon de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", }, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1, } export default card