mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
81 lines
1.2 KiB
TypeScript
81 lines
1.2 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Stormfront'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Machop",
|
|
fr: "Machoc",
|
|
de: "Machollo"
|
|
},
|
|
|
|
illustrator: "Midori Harada",
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
set: Set,
|
|
|
|
dexId: [
|
|
66,
|
|
],
|
|
|
|
hp: 60,
|
|
|
|
types: [
|
|
"Fighting",
|
|
],
|
|
|
|
evolveFrom: {
|
|
fr: "Machoc",
|
|
},
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Kick",
|
|
fr: "Koud'pied",
|
|
de: "Tritt"
|
|
},
|
|
|
|
damage: 10,
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Fighting",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Knock Back",
|
|
fr: "Engloutir",
|
|
de: "Schlag versetzen"
|
|
},
|
|
effect: {
|
|
en: "Your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon.",
|
|
fr: "Votre adversaire échange le Pokémon Défenseur avec 1 de ses Pokémon de Banc.",
|
|
de: "Dein Gegner tauscht das Verteidigende Pokémon gegen 1 Pokémon auf seiner Bank aus."
|
|
},
|
|
damage: 20,
|
|
|
|
},
|
|
],
|
|
|
|
weaknesses: [
|
|
{
|
|
type: "Psychic",
|
|
value: "+10"
|
|
},
|
|
],
|
|
|
|
retreat: 1,
|
|
|
|
description: {
|
|
fr: "Il muscle son corps en soulevant régulièrement un Gravalanch. Il est rompu à tous les arts martiaux."
|
|
}
|
|
}
|
|
|
|
export default card
|