1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +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

68 lines
1.9 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 BREAK",
fr: "Mackogneur TURBO",
es: "Machamp TURBO",
it: "Machamp TURBO",
pt: "Machamp TURBO",
de: "Machomei-TURBO"
},
illustrator: "5ban Graphics",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
dexId: [
68,
],
hp: 190,
types: [
"Fighting",
],
evolveFrom: {
en: "Machamp",
fr: "Mackogneur",
},
stage: "BREAK",
attacks: [
{
cost: [
"Fighting",
"Fighting",
"Fighting",
],
name: {
en: "Boomerang Lariat",
fr: "Lasso Boomerang",
es: "Lazo Boomerang",
it: "Lazomerang",
pt: "Bumerangue de Lariat",
de: "Bumeranglasso"
},
effect: {
en: "During your next turn, this Pokémons attacks do 100 more damage to your opponents Active Pokémon (before applying Weakness and Resistance).",
fr: "Pendant votre prochain tour, les attaques de ce Pokémon infligent 100 dégâts supplémentaires au Pokémon Actif de votre adversaire (avant application de la Faiblesse et de la Résistance).",
es: "Durante tu próximo turno, los ataques de este Pokémon hacen 100 puntos de daño más al Pokémon Activo de tu rival (antes de aplicar Debilidad y Resistencia).",
it: "Durante il tuo prossimo turno, gli attacchi di questo Pokémon infliggono 100 danni in più al Pokémon attivo del tuo avversario, prima di aver applicato debolezza e resistenza.",
pt: "Durante sua próxima vez de jogar, os ataques deste Pokémon causarão 1000 de danos adicionais ao Pokémon Ativo do seu oponente (antes da aplicação de Fraqueza e Resistência).",
de: "Während deines nächsten Zuges fügen die Angriffe dieses Pokémon dem Aktiven Pokémon deines Gegners 100 weitere Schadenspunkte zu (bevor Schwäche und Resistenz verrechnet werden)."
},
damage: 100,
}
],
retreat: 0
}
export default card