1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-29 06:12:10 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

69 lines
1.2 KiB
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 '../Guardians Rising'
const card: Card = {
name: {
en: "Machop",
fr: "Machoc",
es: "Machop",
it: "Machop",
pt: "Machop",
de: "Machollo"
},
illustrator: "Kyoko Umemoto",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
66,
],
hp: 70,
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
cost: [
"Fighting",
"Fighting",
],
name: {
en: "Dual Chop",
fr: "Double Baffe",
es: "Golpe Bis",
it: "Doppiocolpo",
pt: "Pancada Dupla",
de: "Doppelhieb"
},
effect: {
en: "Flip 2 coins. This attack does 30 damage for each heads.",
fr: "Lancez 2 pièces. Cette attaque inflige 30 dégâts multipliés par le nombre de côtés face.",
es: "Lanza 2 monedas. Este ataque hace 30 puntos de daño por cada cara.",
it: "Lancia due volte una moneta. Questo attacco infligge 30 danni ogni volta che esce testa.",
pt: "Jogue 2 moedas. Este ataque causa 30 pontos de dano para cada cara.",
de: "Wirf 2 Münzen. Diese Attacke fügt 30 Schadenspunkte pro Kopf zu."
},
damage: "30×",
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 2,
}
export default card