import { Card } from '../../../interfaces' import Set from '../Neo Genesis' const card: Card = { name: { en: "Sudowoodo", }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 185, ], hp: 60, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Fighting", ], name: { en: "Flail", }, effect: { en: "Does 10 damage times the number of damage counters on Sudowoodo.", }, damage: 10, }, { cost: [ "Fighting", "Colorless", ], name: { en: "Rock Throw", }, damage: 30, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], } export default card