1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 01:37:52 +00:00
Florian Bouillon b46b2c4fb9
Updated Evolving Skies with attacks and other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-28 16:54:37 +02:00

39 lines
1.7 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 '../Evolving Skies'
const card: Card = {
set: Set,
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
name: {
en: "Full Face Guard",
fr: "Casque Intégral",
es: "Escafandra",
it: "Difesa Integrale",
pt: "Full Face Guard",
de: "Gesichtsschutz"
},
rarity: "Uncommon",
category: "Trainer",
effect: {
en: "If the Pokémon this card is attached to has no Abilities, it takes 20 less damage from attacks from your opponents Pokémon (after applying Weakness and Resistance).",
fr: "Si le Pokémon auquel cette carte est attachée na pas de talent, il subit 20 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).",
es: "Si el Pokémon al que está unida esta carta no tiene ninguna habilidad, los ataques de los Pokémon de tu rival le hacen 20 puntos de daño menos (después de aplicar Debilidad y Resistencia).",
it: "Se il Pokémon a cui è assegnata questa carta non ha abilità, subisce 20 danni in meno dagli attacchi dei Pokémon del tuo avversario, dopo aver applicato debolezza e resistenza.",
pt: "If the Pokémon this card is attached to has no Abilities, it takes 20 less damage from attacks from your opponents Pokémon (after applying Weakness and Resistance).",
de: "Wenn das Pokémon, an das diese Karte angelegt ist, keine Fähigkeiten hat, werden ihm durch Attacken der Pokémon deines Gegners 20 Schadenspunkte weniger zugefügt (nachdem Schwäche und Resistenz verrechnet wurden)."
},
trainerType: "Tool",
illustrator: "AYUMI ODASHIMA"
}
export default card