1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 23:02:09 +00:00

38 lines
588 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Brilliant Stars"
const card: Card = {
set: Set,
name: {
en: "Barry",
fr: "René",
es: "Israel",
it: "Barry",
pt: "Barry",
de: "Barry"
},
rarity: "Ultra Rare",
category: "Trainer",
effect: {
en: "Draw 3 cards.",
fr: "Piochez 3 cartes.",
es: "Roba 3 cartas.",
it: "Pesca tre carte.",
pt: "Compre 3 cartas.",
de: "Ziehe 3 Karten."
},
trainerType: "Supporter",
regulationMark: "F",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card