mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-02 15:42:11 +00:00
36 lines
1.5 KiB
TypeScript
36 lines
1.5 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Obsidian Flames"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
fr: "Poing Vengeance",
|
|
en: "Vengeful Punch",
|
|
es: "Puño Vengativo",
|
|
it: "Pugno della Rivalsa",
|
|
pt: "Soco Vingativo",
|
|
de: "Rächender Boxhieb"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
fr: "Si le Pokémon auquel cette carte est attachée est mis K.O. par les dégâts d'une attaque d'un Pokémon de votre adversaire, placez 4 marqueurs de dégâts sur le Pokémon Attaquant.",
|
|
en: "If the Pokémon this card is attached to is Knocked Out by damage from an attack from your opponent's Pokémon, put 4 damage counters on the Attacking Pokémon.",
|
|
es: "Si el Pokémon al que está unida esta carta queda Fuera de Combate por el daño de un ataque de los Pokémon de tu rival, pon 4 contadores de daño en el Pokémon Atacante.",
|
|
it: "Se il Pokémon a cui è assegnata questa carta viene messo KO dai danni inflitti da un attacco di un Pokémon del tuo avversario, metti quattro segnalini danno sul Pokémon attaccante.",
|
|
pt: "Se o Pokémon ao qual esta carta está ligada for Nocauteado pelo dano de um ataque dos Pokémon do seu oponente, coloque 4 contadores de dano no Pokémon Atacante.",
|
|
de: "Wenn das Pokémon, an das diese Karte angelegt ist, durch Schaden einer Attacke von Pokémon deines Gegners kampfunfähig wird, lege 4 Schadensmarken auf das Angreifende Pokémon."
|
|
},
|
|
|
|
trainerType: "Tool",
|
|
regulationMark: "G",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |