mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
23 lines
311 B
TypeScript
23 lines
311 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: "Lunala"
|
|
},
|
|
|
|
rarity: "Rare",
|
|
category: "Pokemon",
|
|
types: ["Psychic"]
|
|
}
|
|
|
|
export default card |