import { Card } from '../../../interfaces' import Set from '../Promos' const card: Card = { name: { en: "Pikachu", fr: "Pikachu", }, illustrator: "kodama", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 25, ], hp: 60, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Tail Whap", fr: "Queue Battoir", }, damage: 10, }, { cost: [ "Lightning", "Colorless", ], name: { en: "Spark", fr: "Étincelle", }, effect: { en: "This attack does 10 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", fr: "Cette attaque inflige 10 dégâts à l’un des Pokémon de Banc de votre adversaire. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", }, damage: 20, }, ], weaknesses: [ { type: "Fightning", value: "×2" }, ], resistances: [ { type: "Metal", value: "-20" }, ], retreat: 1, } export default card