import { Card } from '../../../interfaces' import Set from '../Legendary Treasures' const card: Card = { name: { en: "Zorua", }, illustrator: "Atsuko Nishida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 570, ], hp: 50, types: [ "Darkness", ], stage: "Basic", attacks: [ { cost: [ "Darkness", ], name: { en: "Ascension", }, effect: { en: "Search your deck for a card that evolves from this Pokémon and put it onto this Pokémon. (This counts as evolving this Pokémon.) Shuffle your deck afterward.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Scratch", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-20" }, ], retreat: 1 } export default card