mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-02 15:42:11 +00:00
33 lines
481 B
TypeScript
33 lines
481 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Yellow A Alternate'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Shrine of Punishment",
|
|
fr: "Chapelle des Châtiments",
|
|
},
|
|
illustrator: "5ban Graphics",
|
|
rarity: "Common",
|
|
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).",
|
|
},
|
|
trainerType: "Stadium",
|
|
|
|
}
|
|
|
|
export default card
|