import { Card } from '../../../interfaces' import Set from '../Lost Thunder' const card: Card = { name: { en: "Dedenne", fr: "Dedenne", }, illustrator: "MAHOU", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 702, ], hp: 70, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Lightning", ], name: { en: "Nuzzle", fr: "Frotte-Frimousse", }, 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é.", }, }, { cost: [ "Lightning", ], name: { en: "Nuzzle Shot", fr: "Tir Frotte-Frimousse", }, effect: { en: "This attack does 10 damage for each of your Pokémon in play that has the Nuzzle attack 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, pour chacun de vos Pokémon en jeu ayant l’attaque Frotte-Frimousse, à l’un des Pokémon de Banc de votre adversaire. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", }, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Metal", value: "-20" }, ], retreat: 1, } export default card