import { Card } from '../../../interfaces' import Set from '../Neo Destiny' const card: Card = { name: { en: "Unown [Z]", }, illustrator: "CR CG gangs", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 201, ], hp: 40, types: [ "Psychic", ], stage: "Basic", abilities: [ { type: "Poke-POWER", name: { en: "[Zoom]", }, effect: { en: "As long as Unown Z is Benched, you pay no Energy cost to retreat a Pokémon with Unown in its name.", }, }, ], attacks: [ { cost: [ "Psychic", ], name: { en: "Hidden Power", }, damage: 10, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card