mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-13 04:17:49 +00:00
* Added to interface * Added Regulation mark to all current cards * Ready for merge
69 lines
914 B
TypeScript
69 lines
914 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Champion\'s Path'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Machoke",
|
||
fr: "Machopeur"
|
||
},
|
||
|
||
illustrator: "AKIRA EGAWA",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
hp: 110,
|
||
|
||
types: [
|
||
"Fighting",
|
||
],
|
||
|
||
evolveFrom: {
|
||
en: "Machop",
|
||
fr: "Machoc"
|
||
},
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Fighting",
|
||
],
|
||
name: {
|
||
en: "Low Kick",
|
||
fr: "Balayage"
|
||
},
|
||
|
||
damage: 30,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Fighting",
|
||
"Fighting",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Pummel",
|
||
fr: "Martelage"
|
||
},
|
||
effect: {
|
||
en: "Flip a coin. If heads, this attack does 70 more damage.",
|
||
fr: "Lancez une pièce. Si c’est face, cette attaque inflige 70 dégâts supplémentaires."
|
||
},
|
||
damage: "50+",
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Psychic",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 3,
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card
|