import { Card } from '../../../interfaces' import Set from '../Unleashed' const card: Card = { name: { en: "Dunsparce", fr: "Insolourdo", }, illustrator: "Takashi Yamaguchi", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 206, ], hp: 60, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Return", fr: "Retour", }, effect: { en: "Draw cards until you have 6 cards in your hand.", fr: "Piochez jusqu’à ce que vous ayez 6 cartes en main.", }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1, description: { en: "When spotted, this Pokémon escapes backward by furiously boring into the ground with its tail." }, variants: { normal: true, reverse: true, holo: false, firstEdition: false } } export default card