import { Card } from '../../../interfaces' import Set from '../Platinum' const card: Card = { name: { en: "Electrike", fr: "Dynavolt", }, illustrator: "Miki Tanaka", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 309, ], hp: 50, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Roar", fr: "Hurlement", }, effect: { en: "Your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon.", fr: "Votre adversaire échange le Pokémon Défenseur avec 1 de ses Pokémon de Banc.", }, }, { cost: [ "Lightning", "Colorless", ], name: { en: "Thunder Fang", fr: "Crocs Éclair", }, 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é.", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "+10" }, ], resistances: [ { type: "Metal", value: "-20" }, ], } export default card