import { Card } from '../../../interfaces' import Set from '../Sword & Shield' const card: Card = { name: { en: "Chinchou", fr: "Loupio", es: "Chinchou", it: "Chinchou", pt: "Chinchou", de: "Lampi" }, illustrator: "Sumiyoshi Kizuki", rarity: "Common", category: "Pokemon", set: Set, hp: 70, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Gentle Slap", fr: "Gifle Douce", es: "Bofetada Gentil", it: "Schiaffetto", pt: "Tapinha", de: "Sanfter Hieb" }, damage: 30, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1, regulationMark: "D", variants: { normal: true, reverse: true, holo: false, firstEdition: false }, description: { en: "On the dark ocean floor, its only means of communication is its constantly flashing lights." }, dexId: [170] } export default card