import { Card } from '../../../interfaces' import Set from '../Supreme Victors' const card: Card = { name: { en: "Doduo", fr: "Doduo", }, illustrator: "Atsuko Nishida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 84, ], hp: 50, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Take Down", fr: "Bélier", }, effect: { en: "Doduo does 10 damage to itself.", fr: "Doduo s'inflige 10 dégâts.", }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "+10" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], } export default card