mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
39 lines
575 B
TypeScript
39 lines
575 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Crown Zenith"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Hop",
|
|
fr: "Nabil",
|
|
es: "Paul",
|
|
it: "Hop",
|
|
pt: "Lupo",
|
|
de: "Hop"
|
|
},
|
|
|
|
rarity: "Holo 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: "D",
|
|
variants: {
|
|
normal: false,
|
|
reverse: true,
|
|
holo: true,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card
|