import { Card } from '../../../interfaces' import Set from '../Neo Revelation' const card: Card = { name: { en: "Unown [K]", }, illustrator: "CR CG gangs", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 201, ], hp: 40, types: [ "Psychic", ], stage: "Basic", abilities: [ { type: "Poke-POWER", name: { en: "[Keep]", }, effect: { en: "Your opponent's attacks, Pokémon Powers, and Trainer cards can't discard Energy cards from your Pokémon with Unown in their names. (Any other effects of attacks still happen.)", }, }, ], attacks: [ { cost: [ "Psychic", ], name: { en: "Hidden Power", }, damage: 10, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card