mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
25 lines
339 B
TypeScript
25 lines
339 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: "Cosmoem"
|
|
},
|
|
|
|
rarity: "Rare",
|
|
category: "Pokemon",
|
|
hp: 90,
|
|
types: ["Psychic"],
|
|
stage: "Stage1"
|
|
}
|
|
|
|
export default card |