import { Card } from '../../../interfaces' import Set from '../Black & White' const card: Card = { name: { en: "Minccino", fr: "Chinchidou", es: "Minccino", it: "Minccino", pt: "Minccino", de: "Picochilla" }, illustrator: "sui", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 572, ], hp: 60, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Tail Slap", fr: "Plumo-Queue", }, effect: { en: "Flip 2 coins. This attack does 10 damage times the number of heads.", fr: "Lancez 2 pièces. Cette attaque inflige 10 dégâts multipliés par le nombre de côtés face.", }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1, } export default card