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.2 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: "Shrine of Punishment",
fr: "Chapelle des Châtiments",
es: "Santuario del Castigo",
it: "Ara del Giudizio",
pt: "Santuário da Punição",
de: "Schrein der Bestrafung"
},
illustrator: "5ban Graphics",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Entre chaque tour, placez un marqueur de dégâts sur chaque Pokémon-GX et Pokémon-EX (les vôtres et ceux de votre adversaire).",
en: "Between turns, put 1 damage counter on each Pokémon-GX and Pokémon-EX (both yours and your opponents).",
es: "Entre turnos, pon 1 contador de daño en cada Pokémon-GX y Pokémon-EX (tanto tuyos como de tu rival).",
it: "Tra un turno e laltro, metti un segnalino danno su tutti i Pokémon-GX e i Pokémon-EX, sia tuoi che del tuo avversario.",
pt: "Entre as vezes de jogar, coloque 1 contador de dano em cada Pokémon-GX e Pokémon-EX (seus e do seu oponente).",
de: "Lege zwischen den Zügen 1 Schadensmarke auf jedes Pokémon-GX und Pokémon-EX (deine und die deines Gegners)."
},
trainerType: "Stadium",
}
export default card