1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-11 07:39:53 +00:00

59 lines
713 B
TypeScript

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