import { Card } from '../../../interfaces' import Set from '../BREAKpoint' const card: Card = { name: { en: "Dunsparce", fr: "Insolourdo", }, illustrator: "Akira Komayama", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 206, ], hp: 60, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Call for Family", fr: "Appel à la Famille", }, effect: { en: "Search your deck for a Basic Pokémon and put it onto your Bench. Shuffle your deck afterward.", fr: "Cherchez un Pokémon de base dans votre deck et placez-le sur votre Banc. Mélangez ensuite votre deck.", }, }, { cost: [ "Colorless", ], name: { en: "Ram", fr: "Collision", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1, } export default card