import { Card } from '../../../interfaces' import Set from '../Cosmic Eclipse' const card: Card = { name: { en: "Cosmog", fr: "Cosmog", }, illustrator: "Masakazu Fukuda", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 789, ], hp: 60, types: [ "Psychic", ], stage: "Basic", abilities: [ { type: "Ability", name: { en: "Unaware", fr: "Inconscient", }, effect: { en: "Prevent all effects of your opponent's attacks, except damage, done to this Pokémon.", fr: "Évitez tous les effets des attaques de votre adversaire, à l’exception des dégâts, infligés à ce Pokémon.", }, }, ], attacks: [ { cost: [ "Colorless", ], name: { en: "Surprise Attack", fr: "Attaque Surprise", }, effect: { en: "Flip a coin. If tails, this attack does nothing.", fr: "Lancez une pièce. Si c’est pile, cette attaque ne fait rien.", }, damage: 10, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 1, } export default card