1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00
Florian Bouillon 2fc22cc4a5
Added Best of games (#108)
Signed-off-by: Avior <github@avior.me>
2021-10-18 11:59:30 +02:00

40 lines
571 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Best of game'
const card: Card = {
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