import { Card } from '../../../interfaces' import Set from '../Neo Discovery' const card: Card = { name: { en: "Poliwrath", }, illustrator: "Shin-ichi Yoshida", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 62, ], hp: 90, types: [ "Fighting", ], evolveFrom: { en: "Poliwhirl", }, stage: "Stage2", attacks: [ { cost: [ "Fighting", "Colorless", ], name: { en: "Corkscrew Punch", }, damage: 30, }, { cost: [ "Fighting", "Fighting", "Colorless", "Colorless", ], name: { en: "Submission", }, effect: { en: "Poliwrath does 20 damage to itself.", }, damage: 70, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card