import { Card } from '../../../interfaces' import Set from '../Jungle' const card: Card = { name: { en: "Pikachu", }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 25, ], hp: 50, types: [ "Lightning", ], evolveFrom: { en: "Pichu", }, stage: "Basic", attacks: [ { cost: [ "Lightning", "Lightning", ], name: { en: "Spark", }, effect: { en: "If your opponent has any Benched Pokémon, choose 1 of them and this attack does 10 damage to it. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card