import { Card } from '../../../interfaces' import Set from '../Neo Discovery' const card: Card = { name: { en: "Tyrogue", }, illustrator: "Miki Tanaka", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 236, ], hp: 30, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Smash Punch", }, effect: { en: "Flip a coin. If tails, this attack does nothing.", }, }, ], } export default card