1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-26 13:59:18 +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,78 @@
import { Card } from '../../../interfaces'
import Set from '../Plasma Blast'
const card: Card = {
name: {
en: "Machamp",
fr: "Mackogneur",
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
68,
],
hp: 140,
types: [
"Fightning",
],
evolveFrom: {
en: "Machoke",
fr: "Machopeur",
},
stage: "Stage2",
attacks: [
{
cost: [
"Fightning",
"Colorless",
"Colorless",
],
name: {
en: "Knock Off",
fr: "Sabotage",
},
effect: {
en: "Discard a random card from your opponent's hand.",
fr: "Défaussez au hasard une carte de la main de votre adversaire.",
},
damage: 60,
},
{
cost: [
"Fightning",
"Fightning",
"Colorless",
"Colorless",
],
name: {
en: "Reinforced Lariat",
fr: "Bras Renforcés",
},
effect: {
en: "If this Pokémon has a Pokémon Tool card attached to it, this attack does 40 more damage.",
fr: "Si une carte Outil Pokémon est attachée à ce Pokémon, cette attaque inflige 40 dégâts supplémentaires.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 3,
}
export default card