1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 09:59:19 +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: "Zisu",
fr: "Bélila",
es: "Crispa",
it: "Lapilla",
pt: "Zisu",
de: "Belila"
},
rarity: "Secret Rare",
category: "Trainer",
effect: {
en: "Draw cards until you have 1 more card in your hand than your opponent.",
fr: "Piochez des cartes jusqu'à en avoir une de plus dans votre main que votre adversaire.",
es: "Roba cartas hasta que tengas 1 carta más en tu mano que tu rival.",
it: "Pesca fino ad avere in mano una carta in più del tuo avversario.",
pt: "Compre cartas até ter 1 carta a mais na sua mão do que o seu oponente.",
de: "Ziehe so lange Karten, bis du 1 Karte mehr auf deiner Hand hast als dein Gegner."
},
trainerType: "Supporter",
regulationMark: "F",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card