import { Card } from '../../../interfaces' import Set from '../Neo Discovery' const card: Card = { name: { en: "Tyrogue", fr: "Débugant" }, illustrator: "Miki Tanaka", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 236, ], hp: 30, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Smash Punch", fr: "Boxe" }, effect: { en: "Flip a coin. If tails, this attack does nothing.", fr: "Lancez une pièce. Si c'est pile, cette attaque ne fait rien." }, damage: 30 }, ], description: { fr: "Il déborde toujours d'énergie. Pour devenir plus fort, il continue de se battre même s'il perd." } } export default card