1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49:18 +00:00

feat: Add Astral Radiance (#305)

This commit is contained in:
2022-05-27 01:49:58 +02:00
committed by GitHub
parent a006f77bf4
commit 91865f7f02
247 changed files with 16466 additions and 0 deletions

View File

@ -0,0 +1,39 @@
import { Card } from "../../../interfaces"
import Set from "../Astral Radiance"
const card: Card = {
set: Set,
name: {
en: "Choy",
fr: "Sica",
es: "Choi",
it: "Choi",
pt: "Choi",
de: "Taiso"
},
rarity: "Secret Rare",
category: "Trainer",
effect: {
en: "Each player reveals their hand. Draw 3 cards.",
fr: "Chaque joueur montre sa main. Piochez 3 cartes.",
es: "Cada jugador enseña las cartas de su mano. Roba 3 cartas.",
it: "Ciascun giocatore mostra le carte che ha in mano. Pesca tre carte.",
pt: "Cada jogador revela a própria mão. Compre 3 cartas.",
de: "Jeder Spieler zeigt seine Handkarten. Ziehe 3 Karten."
},
trainerType: "Supporter",
regulationMark: "F",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card