1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00
Florian Bouillon 96f34fcafb
Added informations on more languages for Sword & Shield cards
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-29 17:20:26 +02:00

33 lines
1.0 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 '../Darkness Ablaze'
const card: Card = {
name: {
en: "Cape of Toughness",
fr: "Cape dEndurance",
es: "Capa de Dureza",
it: "Mantello della Tenacia",
pt: "Capa da Determinação",
de: "Umhang der Stärke"
},
illustrator: "inose yukie",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
en: "The Basic Pokémon this card is attached to gets +50 HP, except Pokémon-GX.",
fr: "Cette carte ajoute 50 PV au Pokémon de base auquel elle est attachée, sauf sil sagit dun Pokémon-GX.",
es: "El Pokémon Básico al que esté unida esta carta obtiene 50 PS más, excepto los Pokémon-GX.",
it: "Il Pokémon Base a cui è assegnata questa carta ha 50 PS in più, a eccezione dei Pokémon-GX.",
pt: "O Pokémon Básico ao qual esta carta está ligada recebe 50 PS a mais, exceto por Pokémon-GX .",
de: "Das Basis-Pokémon, an das diese Karte angelegt ist, erhält +50 KP, außer Pokémon-GX."
},
trainerType: "Tool",
regulationMark: "D"
}
export default card