1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 09: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,65 @@
import { Card } from '../../../interfaces'
import Set from '../Legendary Collection'
const card: Card = {
name: {
en: "Machamp",
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
68,
],
hp: 100,
types: [
"Fightning",
],
evolveFrom: {
en: "Machoke",
},
stage: "Stage2",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Strikes Back",
},
effect: {
en: "Whenever your opponent's attack damages Machamp (even if Machamp is Knoced Out), this power does 10 damage to attacking Pokémon. (Don't apply Weakness and Resistance.) This power can't be used if Machamp is already Asleep, Confused, or Paralyzed when your opponent attacks.",
},
},
],
attacks: [
{
cost: [
"Fightning",
"Fightning",
"Fightning",
"Colorless",
],
name: {
en: "Seismic Toss",
},
damage: 60,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card