1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-29 11:09:51 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,68 @@
import { Card } from '../../../interfaces'
import Set from '../Team Rocket'
const card: Card = {
name: {
en: "Dark Machamp",
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
68,
],
hp: 70,
types: [
"Fightning",
],
evolveFrom: {
en: "Machoke",
},
stage: "Stage2",
attacks: [
{
cost: [
"Fightning",
"Fightning",
],
name: {
en: "Mega Punch",
},
damage: 30,
},
{
cost: [
"Fightning",
"Fightning",
"Fightning",
"Colorless",
],
name: {
en: "Fling",
},
effect: {
en: "Your opponent shuffles his or her Active Pokémon and all cards attached to it into his or her deck. This attack can't be used if your opponent has no Benched Pokémon.",
},
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card