1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-05 16:57:52 +00:00

71 lines
917 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Stormfront'
const card: Card = {
name: {
en: "Machop",
fr: "Machop",
},
illustrator: "Midori Harada",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
66,
],
hp: 60,
types: [
"Fightning",
],
evolveFrom: {
fr: "Machoc",
},
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Kick",
fr: "Koudpied",
},
damage: 10,
},
{
cost: [
"Fightning",
"Colorless",
],
name: {
en: "Knock Back",
fr: "Engloutir",
},
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.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Psychic",
value: "+10"
},
],
retreat: 1,
}
export default card