import { Card } from '../../../interfaces' import Set from '../Arceus' const card: Card = { name: { en: "Electrike", }, illustrator: "Shin Nagasawa", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 309, ], types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Bite", }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "+10" }, ], resistances: [ { type: "Metal", value: "-20" }, ], retreat: 1, } export default card