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,73 @@
import { Card } from '../../../interfaces'
import Set from '../Detective Pikachu'
const card: Card = {
name: {
en: "Machamp",
fr: "Mackogneur",
},
illustrator: undefined,
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
68,
],
hp: 160,
types: [
"Fightning",
],
evolveFrom: {
en: "Machoke",
fr: "Machopeur",
},
stage: "Stage2",
attacks: [
{
cost: [
"Fightning",
],
name: {
en: "Directing Traffic",
fr: "Diriger la Circulation",
},
effect: {
en: "Look at the top 5 cards of your deck and put them back in any order.",
fr: "Regardez les 5 cartes du dessus de votre deck et replacez-les dans lordre de votre choix.",
},
},
{
cost: [
"Fightning",
"Fightning",
],
name: {
en: "Cross Chop",
fr: "Coup-Croix",
},
effect: {
en: "Flip a coin. If heads, this attack does 60 more damage.",
fr: "Lancez une pièce. Si cest face, cette attaque inflige 60 dégâts supplémentaires.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 2,
}
export default card