import { Card } from '../../../interfaces' import Set from '../Arceus' const card: Card = { name: { en: "Pikachu", }, illustrator: "sui", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 25, ], types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Lightning", ], name: { en: "Pika Ball", }, damage: 10, }, { cost: [ "Lightning", "Colorless", "Colorless", ], name: { en: "Mega Shot", }, effect: { en: "Discard all Lightning Energy attached to Pikachu and then choose 1 of your opponent's Pokémon. This attack does 40 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, }, ], weaknesses: [ { type: "Fighting", value: "+10" }, ], resistances: [ { type: "Metal", value: "-20" }, ], retreat: 1, } export default card