import { Card } from '../../../interfaces' import Set from '../Emerald' const card: Card = { name: { en: "Pikachu", }, illustrator: "Masakazu Fukuda", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 25, ], hp: 50, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Lightning", ], name: { en: "Pika Ball", }, damage: 10, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Thundershock", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card