import { Card } from '../../../interfaces' import Set from '../Diamond & Pearl' const card: Card = { name: { en: "Machop", fr: "Machoc", de: "Machollo" }, illustrator: "Atsuko Nishida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 66, ], hp: 60, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Fighting", ], name: { en: "Low Kick", fr: "Balayage", de: "Fußkick" }, damage: 20, }, ], weaknesses: [ { type: "Psychic", value: "+10" }, ], retreat: 2, description: { fr: "Il muscle son corps en soulevant régulièrement un Gravalanch. Il est rompu à tous les arts martiaux." } } export default card