import { Card } from '../../../interfaces' import Set from '../Arceus' const card: Card = { name: { en: "Electrike", }, illustrator: "Yukiko Baba", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 309, ], types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Lightning", ], name: { en: "Zap Kick", }, damage: 10, }, { cost: [ "Lightning", "Colorless", ], name: { en: "Thunder Jolt", }, effect: { en: "Flip a coin. If tails, Electrike does 10 damage to itself.", }, damage: 30, }, ], weaknesses: [ { type: "Fighting", value: "+10" }, ], resistances: [ { type: "Metal", value: "-20" }, ], retreat: 1, } export default card