import { Card } from '../../../interfaces' import Set from '../Deoxys' const card: Card = { name: { en: "Electrike", }, illustrator: "Naoyo Kimura", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 309, ], hp: 50, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Lightning", ], name: { en: "High Voltage", }, effect: { en: "Flip a coin. If heads, your opponent can't play Trainer cards from his or her hand during his or her next turn.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Gnaw", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Metal", value: "-30" }, ], } export default card