import { Card } from '../../../interfaces' import Set from '../Emerging Powers' const card: Card = { name: { en: "Cottonee", fr: "Doudouvet", }, illustrator: "Atsuko Nishida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 546, ], hp: 40, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Grass", ], name: { en: "Absorb", fr: "Vol-Vie", }, effect: { en: "Heal 10 damage from this Pokémon.", fr: "Soignez 10 dégâts à ce Pokémon.", }, damage: 10, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], resistances: [ { type: "Water", value: "-20" }, ], retreat: 1, } export default card