import { Card } from '../../../interfaces' import Set from '../Primal Clash' const card: Card = { name: { en: "Electrike", fr: "Dynavolt", }, illustrator: "Sanosuke Sakuma", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 309, ], hp: 50, types: [ "Lightning", ], stage: "Basic", abilities: [ { type: "Ancient Trait", name: { fr: "Barrière Ω", en: "Ω Barrier" }, effect: { fr: "Chaque fois que votre adversaire joue une carte Dresseur (excepté les Outils Pokémon et les cartes Stade), évitez tous les effets de la carte Dresseur sur ce Pokémon.", en: "Whenever your opponent plays a Trainer card (excluding Pokémon Tools and Stadium cards), prevent all effects of that card done to this Pokémon." }, }, ], attacks: [ { cost: [ "Lightning", ], name: { en: "Thunder Fang", fr: "Crocs Éclair", }, effect: { en: "Flip a coin. If heads, your opponent’s Active Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.", }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Metal", value: "-20" }, ], retreat: 1, } export default card