import { Card } from '../../../interfaces' import Set from '../Primal Clash' const card: Card = { name: { en: "Chinchou", fr: "Loupio", es: "Chinchou", it: "Chinchou", pt: "Chinchou", de: "Lampi" }, 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", es: "Chapoteo Ondulante", it: "Schizzi d'Onda", pt: "Onda Borrifante", de: "Wellenplatscher" }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Metal", value: "-20" }, ], retreat: 2, } export default card