import { Card } from '../../../interfaces' import Set from '../Next Destinies' const card: Card = { name: { en: "Minccino", fr: "Chinchidou", es: "Minccino", it: "Minccino", pt: "Minccino", de: "Picochilla" }, illustrator: "Tomohiro Kitakaze", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 572, ], 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", "Colorless", ], name: { en: "Tail Smack", fr: "Coup de Queue", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1, } export default card