import { Card } from '../../../interfaces' import Set from '../Next Destinies' const card: Card = { name: { en: "Pikachu", fr: "Pikachu", es: "Pikachu", it: "Pikachu", pt: "Pikachu", de: "Pikachu" }, illustrator: "Akira Komayama", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 25, ], hp: 60, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Lightning", ], name: { en: "Thundershock", fr: "Éclair", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.", }, damage: 10, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Tail Whap", fr: "Queue Battoir", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1, } export default card