import { Card } from '../../../interfaces' import Set from '../Furious Fists' const card: Card = { name: { en: "Dedenne", fr: "Dedenne", }, illustrator: "5ban Graphics", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 702, ], hp: 70, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Entrainment", fr: "Ten-Danse", }, effect: { en: "Search your deck for up to 2 Basic Pokémon and put them onto your Bench. Shuffle your deck afterward.", fr: "Cherchez jusqu’à 2 Pokémon de base dans votre deck et placez-les sur votre Banc. Mélangez ensuite votre deck.", }, }, { cost: [ "Colorless", ], name: { en: "Energy Short", fr: "Énergie Dérivée", }, effect: { en: "This attack does 20 damage times the amount of Energy attached to your opponent’s Active Pokémon.", fr: "Cette attaque inflige 20 dégâts multipliés par le nombre d’Énergies attachées au Pokémon Actif de votre adversaire.", }, damage: "20×", }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Metal", value: "-20" }, ], retreat: 1, } export default card