import { Card } from '../../../interfaces' import Set from '../Neo Destiny' const card: Card = { name: { en: "Unown [T]", }, illustrator: "CR CG gangs", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 201, ], hp: 40, types: [ "Psychic", ], stage: "Basic", abilities: [ { type: "Poke-POWER", name: { en: "[Tell]", }, effect: { en: "Once during your turn (before your attack), you may flip a coin. If heads, look at your opponent's hand and show your hand to your opponent. This power can be used even if Unown T is Asleep, Confused, or Paralyzed.", }, }, ], attacks: [ { cost: [ "Psychic", "Colorless", ], name: { en: "Hidden Power", }, damage: 20, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card