1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

42 lines
1.3 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 '../Celestial Storm'
const card: Card = {
name: {
en: "Sky Pillar",
fr: "Pilier Céleste",
es: "Pilar Celeste",
it: "Torre dei Cieli",
pt: "Pilar Celeste",
de: "Himmelturm"
},
illustrator: "Ryo Ueda",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Évitez tous les effets des attaques de votre adversaire, y compris les dégâts, infligés aux Pokémon de Banc (les vôtres et ceux de votre adversaire).",
en: "Prevent all effects of the opponents attacks, including damage, done to Benched Pokémon (both yours and your opponents).",
es: "Evita todos los efectos de los ataques del rival, incluido el daño, infligidos a los Pokémon en Banca (tanto tuyos como de tu rival).",
it: "Previeni tutti gli effetti degli attacchi del tuo avversario, inclusi i danni, inflitti ai Pokémon in panchina, sia tuoi che del tuo avversario.",
pt: "Previne todos os efeitos dos ataques do oponente, incluindo dano, causados aos Pokémon no Banco (seus e do seu oponente).",
de: "Verhindere alle Effekte von Attacken deines Gegners, einschließlich Schaden, die Pokémon auf der Bank (deiner und der deines Gegners) zugefügt werden."
},
trainerType: "Stadium",
}
export default card