1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00
Florian Bouillon 0ce5e62460
Added some XY translations (#63)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:18:16 +00:00

86 lines
2.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 '../Evolutions'
const card: Card = {
name: {
en: "Machamp",
fr: "Mackogneur",
es: "Machamp",
it: "Machamp",
pt: "Machamp",
de: "Machomei"
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
68,
],
hp: 160,
types: [
"Fighting",
],
evolveFrom: {
en: "Machoke",
fr: "Machopeur",
},
stage: "Stage2",
abilities: [
{
type: "Ability",
name: {
en: "Counterattack",
fr: "Contre-Attaque",
es: "Contragolpe",
it: "Respinta",
pt: "Contra-Atacante",
de: "Gegenangriff"
},
effect: {
en: "If this Pokémon is your Active Pokémon and is damaged by an opponents attack (even if this Pokémon is Knocked Out), put 3 damage counters on the Attacking Pokémon.",
fr: "Si ce Pokémon est votre Pokémon Actif et quil subit les dégâts dune attaque de votre adversaire (même si ce Pokémon est mis K.O.), placez 3 marqueurs de dégâts sur le Pokémon Attaquant.",
es: "Si este Pokémon es tu Pokémon Activo y resulta dañado por un ataque de tu rival (incluso si este Pokémon queda Fuera de Combate), pon 3 contadores de daño en el Pokémon Atacante.",
it: "Se questo Pokémon è il tuo Pokémon attivo e viene danneggiato da un attacco del tuo avversario, anche se viene messo KO, metti tre segnalini danno sul Pokémon attaccante.",
pt: "Se este Pokémon for seu Pokémon Ativo e for danificado pelo ataque de um oponente (mesmo se esse Pokémon for Nocauteado), coloque 3 contadores de danos no Pokémon Atacante.",
de: "Wenn dieses Pokémon dein Aktives Pokémon ist und durch einen gegnerischen Angriff Schaden erhält (auch wenn dieses Pokémon dadurch kampfunfähig wird), lege 3 Schadensmarken auf das Angreifende Pokémon."
},
},
],
attacks: [
{
cost: [
"Fighting",
"Fighting",
"Fighting",
],
name: {
en: "Seismic Toss",
fr: "Frappe Atlas",
es: "Movimiento Sísmico",
it: "Movimento Sismico",
pt: "Arremesso Sísmico",
de: "Geowurf"
},
damage: 120,
}
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 2,
}
export default card