1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +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,71 @@
import { Card } from '../../../interfaces'
import Set from '../Wizards Black Star Promos'
const card: Card = {
name: {
en: "Machamp",
},
illustrator: "Tomokazu Komiya",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
68,
],
hp: 90,
types: [
"Fightning",
],
evolveFrom: {
en: "Machoke",
},
stage: "Stage2",
attacks: [
{
cost: [
"Fightning",
"Fightning",
],
name: {
en: "Seething Anger",
},
effect: {
en: "Flip a number of coins equal to the number of damage counters on Machamp. This attack does 20 damage plus 10 more damage for each heads.",
},
damage: 20,
},
{
cost: [
"Fightning",
"Fightning",
"Colorless",
"Colorless",
],
name: {
en: "Fling",
},
effect: {
en: "If your opponent has any Benched Pokémon, he or she chooses 1 of them and switches it with the Defending Pokémon. (Do the damage before switching the Pokémon.)",
},
damage: 50,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card