import { Card } from '../../../interfaces' import Set from '../Team Magma vs Team Aqua' const card: Card = { name: { en: "Pikachu", fr: "Pikachu", de: "Pikachu" }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 25, ], hp: 50, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Agility", fr: "Hâte", de: "Agility" }, effect: { en: "Flip a coin. If heads, prevent all effects of an attack, including damage, done to Pikachu during your opponent's next turn.", fr: "Lancez une pièce. Si c'est face, pendant le prochain tour de votre adversaire, prévenez tous les effets d'attaque, y compris les dégâts, infligés à Pikachu.", de: "Flip a coin. If heads, prevent all effects of an attack, including damage, done to Pikachu during your opponent's next turn." }, }, { cost: [ "Lightning", "Colorless", ], name: { en: "Thundershock", fr: "Éclair", de: "Thundershock" }, 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é.", de: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed." }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card