import { Card } from '../../../interfaces' import Set from '../Detective Pikachu' const card: Card = { name: { en: "Detective Pikachu", fr: "Détective Pikachu", }, illustrator: undefined, rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 25, ], hp: 90, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Lightning", ], name: { en: "Scout", fr: "Espionnage", }, effect: { en: "Your opponent reveals their hand.", fr: "Votre adversaire dévoile sa main.", }, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Surprise Attack", fr: "Attaque Surprise", }, effect: { en: "Flip a coin. If tails, this attack does nothing.", fr: "Lancez une pièce. Si c’est pile, cette attaque ne fait rien.", }, damage: 80, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Metal", value: "-20" }, ], retreat: 2, } export default card