import { Card } from '../../../interfaces' import Set from '../Primal Clash' const card: Card = { name: { en: "Chinchou", fr: "Loupio", }, illustrator: "Kagemaru Himeno", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 170, ], hp: 70, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Water", "Colorless", ], name: { en: "Wave Splash", fr: "Grosse Vague", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Metal", value: "-20" }, ], retreat: 2, } export default card