import { Card } from '../../../interfaces' import Set from '../Promos' const card: Card = { name: { en: "Cosmog", fr: "Cosmog", }, illustrator: "Megumi Mizutani", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 789, ], hp: 60, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Dust Gathering", fr: "Ramasse Poussière", }, effect: { en: "Draw a card.", fr: "Piochez une carte.", }, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 1, } export default card