import { Card } from '../../../interfaces' import Set from '../Mysterious Treasures' const card: Card = { name: { en: "Dunsparce", }, illustrator: "Midori Harada", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 206, ], hp: 60, types: [ "Colorless", ], stage: "Basic", attacks: [ { name: { en: "Snake Hook", }, effect: { en: "Draw a card.", }, }, { name: { en: "Bite and Run", }, effect: { en: "Switch Dunsparce with 1 of your Benched Pokémon.", }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "+10" }, ], } export default card