mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
77 lines
1.1 KiB
TypeScript
77 lines
1.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Power Keepers'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Machop",
|
||
fr: "Machoc",
|
||
de: "Machollo"
|
||
},
|
||
illustrator: "Ken Sugimori",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
66,
|
||
],
|
||
hp: 50,
|
||
types: [
|
||
"Fighting",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Smash Punch",
|
||
fr: "Poing écrasant",
|
||
de: "Schmetterschlag"
|
||
},
|
||
effect: {
|
||
en: "Flip a coin. If tails, this attack does nothing.",
|
||
fr: "Lancez une pièce. Si c'est pile, cette attaque est sans effet.",
|
||
de: "Wirf 1 Münze. Bei \"Zahl\" hat dieser Angriff keine Auswirkungen."
|
||
},
|
||
damage: 20,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Fighting",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Submission",
|
||
fr: "Sacrifice",
|
||
de: "Überroller"
|
||
},
|
||
effect: {
|
||
en: "Machop does 10 damage to itself.",
|
||
fr: "Machoc s'inflige 10 dégâts.",
|
||
de: "Machollo fügt sich selbst 10 Schadenspunkte zu."
|
||
},
|
||
damage: 30,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Psychic",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|