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