import { Card } from '../../../interfaces' import Set from '../Promos' const card: Card = { name: { en: "Pikachu", }, illustrator: "Saya Tsuruta", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 25, ], hp: 60, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Tail Whap", }, damage: 10, }, { cost: [ "Lightning", "Colorless", ], name: { en: "Thunder Shock", }, effect: { en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.", }, damage: 20, }, ], weaknesses: [ { type: "Fightning", value: "×2" }, ], resistances: [ { type: "Metal", value: "-20" }, ], } export default card