1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 09:59:19 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,71 @@
import { Card } from '../../../interfaces'
import Set from '../Guardians Rising'
const card: Card = {
name: {
en: "Machoke",
fr: "Machopeur",
},
illustrator: "Kouki Saitou",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
67,
],
hp: 100,
types: [
"Fightning",
],
evolveFrom: {
en: "Machop",
fr: "Machoc",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Daunting Pose",
fr: "Attitude Patibulaire",
},
effect: {
en: "Prevent all damage done to your Benched Pokémon by your opponent's attacks. Your opponent's attacks and Abilities can't put damage counters on your Benched Pokémon.",
fr: "Évitez tous les dégâts infligés à vos Pokémon de Banc par les attaques de votre adversaire. Les attaques et les talents de votre adversaire ne peuvent pas placer de marqueurs de dégâts sur vos Pokémon de Banc.",
},
},
],
attacks: [
{
cost: [
"Fightning",
"Fightning",
],
name: {
en: "Cross Chop",
fr: "Coup-Croix",
},
effect: {
en: "Flip a coin. If heads, this attack does 30 more damage.",
fr: "Lancez une pièce. Si cest face, cette attaque inflige 30 dégâts supplémentaires.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 3,
}
export default card