mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
57 lines
619 B
TypeScript
57 lines
619 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Generations'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Machoke",
|
||
fr: "Machopeur",
|
||
},
|
||
illustrator: "Mitsuhiro Arita",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
67,
|
||
],
|
||
hp: 90,
|
||
types: [
|
||
"Fighting",
|
||
],
|
||
evolveFrom: {
|
||
en: "Machop",
|
||
fr: "Machoc",
|
||
},
|
||
stage: "Stage1",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Fighting",
|
||
"Fighting",
|
||
],
|
||
name: {
|
||
en: "Beatdown",
|
||
fr: "Dérouillée",
|
||
},
|
||
|
||
damage: 40,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Psychic",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 2,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|