1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
2021-10-07 10:38:16 +02:00

23 lines
319 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Celebrations'
const card: Card = {
set: Set,
variants: {
normal: false,
reverse: false,
holo: false,
firstEdition: false
},
name: {
en: "Zacian V"
},
rarity: "Ultra Rare",
category: "Pokemon",
types: ["Psychic"]
}
export default card