import { Card } from '../../../interfaces' import Set from '../Primal Clash' const card: Card = { name: { en: "Electrike", fr: "Dynavolt", }, illustrator: "Sumiyoshi Kizuki", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 309, ], hp: 60, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Charge", fr: "Chargeur", }, effect: { en: "Search your deck for a Lightning Energy card and attach it to this Pokémon. Shuffle your deck afterward.", fr: "Cherchez une carte Énergie Lightning dans votre deck et attachez-la à ce Pokémon. Mélangez ensuite votre deck.", }, }, { cost: [ "Lightning", "Colorless", ], name: { en: "Bite", fr: "Morsure", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Metal", value: "-20" }, ], retreat: 1, } export default card