1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

56 lines
866 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Neo Discovery'
const card: Card = {
name: {
en: "Tyrogue",
fr: "Débugant",
de: "Rabauz"
},
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",
de: "Schmetterschlag"
},
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.",
de: "Wirf eine Münze. Bei \"Zahl\" hat dieser Angriff keine Auswirkungen."
},
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