import { Card } from '../../../interfaces' import Set from '../Emerging Powers' const card: Card = { name: { en: "Minccino", fr: "Chinchidou", es: "Minccino", it: "Minccino", pt: "Minccino", de: "Picochilla" }, illustrator: "Atsuko Nishida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 572, ], hp: 60, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Last Resort", fr: "Dernierecour", }, effect: { en: "Flip a coin. If tails, this attack does nothing.", fr: "Lancez une pièce. Si c'est pile, cette attaque ne fait rien.", }, damage: 30, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1, } export default card