import { Card } from '../../../interfaces' import Set from '../Neo Destiny' const card: Card = { name: { en: "Machop", fr: "Machoc" }, illustrator: "Toshinao Aoki", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 66, ], hp: 40, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Chop", fr: "Coup tranchant" }, damage: 10, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Punch", fr: "Koud'poing" }, damage: 20, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], description: { fr: "Quand il s'ennuie, ce Pokémon super fort s'entraîne en soulevant des rochers." } } export default card