import { Card } from '../../../interfaces' import Set from '../Neo Discovery' const card: Card = { name: { en: "Unown [O]", }, illustrator: "CR CG gangs", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 201, ], hp: 40, types: [ "Psychic", ], stage: "Basic", abilities: [ { type: "Poke-POWER", name: { en: "Observe", }, effect: { en: "Once during your turn (before you attack), you may look at 5 cards from the top of your opponent's deck and put them back in the same order.", }, }, ], attacks: [ { cost: [ "Psychic", ], name: { en: "Hidden Power", }, damage: 10, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card