mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-07 01:37:52 +00:00
* Added basic translation IT will need a second checkup by another source as attacks are not correcly ordered Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net> * Removed bugged file Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
31 lines
1.5 KiB
TypeScript
31 lines
1.5 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Dark Explorers'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Dark Claw",
|
|
fr: "Griffe Obscure",
|
|
es: "Garra Oscura",
|
|
it: "Scurartigli",
|
|
pt: "Garra da Escuridão",
|
|
de: "Finsterklaue"
|
|
},
|
|
|
|
illustrator: "5ban Graphics",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
set: Set,
|
|
trainerType: "Tool",
|
|
|
|
effect: {
|
|
en: "If this card is attached to a Darkness Pokémon, each of the attacks of that Pokémon does 20 more damage to the Active Pokémon (before applying Weakness and Resistance).",
|
|
fr: "Si cette carte est attachée à un Pokémon Darkness, chacune de ses attaques inflige 20 dégâts supplémentaires aux Pokémon Actifs (avant application de la Faiblesse et de la Résistance).",
|
|
es: "Si esta carta está unida a un Pokémon Darkness, cada uno de los ataques de ese Pokémon hace 20 puntos de daño más a los Pokémon Activos (antes de aplicar Debilidad y Resistencia).",
|
|
it: "Se questa carta è assegnata a un Pokémon Darkness, tutti gli attacchi di quel Pokémon infliggono 20 danni in più al Pokémon attivo, prima di aver applicato debolezza e resistenza,.",
|
|
pt: "Se este card estiver ligado a um Pokémon Darkness, cada um dos ataques desse Pokémon causará 20 de danos adicionais ao Pokémon Ativo (antes de aplicar Fraqueza e Resistência).",
|
|
de: "Wenn diese Karte an ein Darkness Pokémon angelegt ist, fügen alle Angriffe dieses Pokémon den Aktiven Pokémon 20 weitere Schadenspunkte zu (bevor Schwäche und Resistenz verrechnet werden)."
|
|
}
|
|
}
|
|
|
|
export default card
|