1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +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
1.8 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 '../Chilling Reign'
const card: Card = {
set: Set,
name: {
fr: "Plastron de Galar",
en: "Galarian Chestplate",
es: "Coraza de Galar",
it: "Pettorale di Galar",
pt: "Peitoral de Galar",
de: "Galar-Brustpanzer"
},
illustrator: "inose yukie",
rarity: "Uncommon",
category: "Trainer",
effect: {
fr: "Si le Pokémon auquel cette carte est attachée a « de Galar » dans son nom, il subit 30 dégâts de moins provenant des attaques des Pokémon de votre adversaire (après application de la Faiblesse et de la Résistance).",
en: "If the Pokémon this card is attached to has \"Galarian\" in its name, it takes 30 less damage from attacks from your opponents Pokémon (after applying Weakness and Resistance).",
es: "Si el Pokémon al que está unida esta carta tiene \"de Galar\" en su nombre, los ataques de los Pokémon de tu rival le hacen 30 puntos de daño menos (después de aplicar Debilidad y Resistencia).",
it: "Se il Pokémon a cui è assegnata questa carta ha “di Galar” nel nome, subisce 30 danni in meno dagli attacchi dei Pokémon del tuo avversario, dopo aver applicato debolezza e resistenza.",
pt: "Se o Pokémon ao qual esta carta está ligada tiver “de Galar” em seu nome, ele receberá 30 pontos de dano a menos dos ataques dos Pokémon do seu oponente (depois de aplicar Fraqueza e Resistência).",
de: "Wenn bei dem Pokémon, an das diese Karte angelegt ist, „Galar“ zum Namen gehört, werden ihm durch Attacken der Pokémon deines Gegners 30 Schadenspunkte weniger zugefügt (nachdem Schwäche und Resistenz verrechnet wurden)."
},
trainerType: "Tool",
regulationMark: "E",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card