1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 10:52:10 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

41 lines
586 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Best of game'
const card: Card = {
dexId: [107],
set: Set,
name: {
en: "Hitmonchan"
},
illustrator: "Ken Sugimori",
rarity: "None",
category: "Pokemon",
description: {
en: "While seeming to do nothing, it fires punches in lightning-fast volleys that are impossible to see."
},
stage: "Basic",
attacks: [{
cost: ["Fighting"],
name: {
en: "Jab"
},
damage: 20
}, {
cost: ["Fighting", "Fighting", "Colorless"],
name: {
en: "Special Punch"
},
damage: 40
}]
}
export default card