import { Card } from '../../../interfaces' import Set from '../BREAKthrough' const card: Card = { name: { en: "Pikachu", fr: "Pikachu", }, illustrator: "Kouki Saitou", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 25, ], hp: 60, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Lightning", ], name: { en: "Gnaw", fr: "Ronge", }, damage: 10, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Agility", fr: "Hâte", }, effect: { en: "Flip a coin. If heads, prevent all effects of attacks, including damage, done to this Pokémon during your opponent’s next turn.", fr: "Lancez une pièce. Si c'est face, évitez tous les effets d'attaques, y compris les dégâts, infligés à ce Pokémon pendant le prochain tour de votre adversaire.", }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Metal", value: "-20" }, ], retreat: 1, } export default card