import { Card } from '../../../interfaces' import Set from '../Fates Collide' const card: Card = { name: { en: "Cottonee", fr: "Doudouvet", }, illustrator: "MAHOU", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 546, ], hp: 50, types: [ "Fairy", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Fairy Wind", fr: "Vent Féérique", }, damage: 10, }, ], weaknesses: [ { type: "Metal", value: "×2" }, ], resistances: [ { type: "Darkness", value: "-20" }, ], retreat: 1, } export default card