mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 16:19:18 +00:00
40
data/E-Card/Best of game/2.ts
Normal file
40
data/E-Card/Best of game/2.ts
Normal file
@ -0,0 +1,40 @@
|
||||
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
|
Reference in New Issue
Block a user