1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 21:02:15 +00:00
Florian Bouillon e500777516 Started to add variants information for the two most recent sets
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-07-21 12:16:52 +02:00

40 lines
2.3 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Battle Styles'
const card: Card = {
set: Set,
name: {
en: "Single Strike Scroll of Scorn",
fr: "Rouleau Acerbe Poing Final",
es: "Pergamino Ira Golpe Brusco",
it: "Rotolo dello Sdegno Colpo Singolo",
pt: "Pergaminho de Desprezo Golpe Decisivo",
de: "Fokussierter-Angriff-Spottrolle"
},
illustrator: "5ban Graphics",
rarity: "Uncommon",
category: "Trainer",
effect: {
en: "The Single Strike Pokémon this card is attached to can use the attack on this card. (You still need the necessary Energy to use this attack.)\n\nFighting Furious Anger 10+\nThis attack does 10 more damage for each damage counter on this Pokémon.",
fr: "Le Pokémon Poing Final auquel cette carte est attachée peut utiliser lattaque sur cette carte. (Vous avez toujours besoin de lÉnergie nécessaire pour utiliser cette attaque.)\n\n\nFighting Colère Furieuse 10+\nCette attaque inflige 10 dégâts supplémentaires pour chaque marqueur de dégâts sur ce Pokémon.",
es: "El Pokémon Golpe Brusco al que esté unida esta carta puede usar el ataque de esta carta. (Sigues necesitando las Energías necesarias para usar este ataque).\n\nFighting \nIra Furiosa 10+\nEste ataque hace 10 puntos de daño más por cada contador de daño en este Pokémon.",
it: "Il Pokémon Colpo Singolo a cui è assegnata questa carta può usare lattacco di questa carta. Devi comunque avere lEnergia necessaria per usare questo attacco.\n\nFighting Rabbia Furiosa 10+\nQuesto attacco infligge 10 danni in più per ogni segnalino danno presente su questo Pokémon.",
pt: "O Pokémon Golpe Decisivo ao qual esta carta está ligada pode usar o ataque desta carta (você ainda precisa da Energia necessária para usar este ataque).\n\nFighting Ira Furiosa 10+\nEste ataque causa 10 pontos de dano a mais para cada contador de dano neste Pokémon.",
de: "Das Fokussierter-Angriff-Pokémon, an das diese Karte angelegt ist, kann die Attacke auf dieser Karte einsetzen. (Du benötigst jedoch die für diese Attacke notwendige Energie.)\n\nFighting Rasende Wut 10+\nDiese Attacke fügt für jede Schadensmarke auf diesem Pokémon 10 Schadenspunkte mehr zu."
},
trainerType: "Tool",
regulationMark: "E",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card