import { Card } from "../../../interfaces" import Set from "../Brilliant Stars" const card: Card = { dexId: [572], set: Set, name: { en: "Minccino", fr: "Chinchidou", es: "Minccino", it: "Minccino", pt: "Minccino", de: "Picochilla" }, rarity: "Common", category: "Pokemon", hp: 60, types: ["Colorless"], stage: "Basic", attacks: [{ cost: ["Colorless"], name: { en: "Call for Family", fr: "Appel à la Famille", es: "Llamar a la Familia", it: "Cerca Famiglia", pt: "Chamar a Família", de: "Familienruf" }, effect: { en: "Search your deck for up to 2 Basic Pokémon and put them onto your Bench. Then, shuffle your deck.", fr: "Cherchez dans votre deck jusqu'à 2 Pokémon de base, puis placez-les sur votre Banc. Mélangez ensuite votre deck.", es: "Busca en tu baraja hasta 2 Pokémon Básicos y ponlos en tu Banca. Después, baraja las cartas de tu baraja.", it: "Cerca nel tuo mazzo fino a due Pokémon Base e mettili nella tua panchina. Poi rimischia le carte del tuo mazzo.", pt: "Procure por até 2 Pokémon Básicos no seu baralho e coloque-os no seu Banco. Em seguida, embaralhe o seu baralho.", de: "Durchsuche dein Deck nach bis zu 2 Basis-Pokémon und lege sie auf deine Bank. Mische anschließend dein Deck." } }, { cost: ["Colorless"], name: { en: "Pound", fr: "Écras'Face", es: "Destructor", it: "Botta", pt: "Pancada", de: "Klaps" }, damage: 10 }], retreat: 1, regulationMark: "F", variants: { normal: true, reverse: true, holo: false, firstEdition: false } } export default card