import { Card } from '../../../interfaces' import Set from '../Aquapolis' const card: Card = { name: { en: "Doduo", }, illustrator: "Yukiko Baba", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 84, ], hp: 40, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Super Speed", }, effect: { en: "Flip a coin. If heads, during your opponent's next turn, prevent all effects of attacks, including damage, done to Doduo.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Rear Kick", }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card