import { Card } from '../../../interfaces' import Set from '../BREAKthrough' const card: Card = { name: { en: "Zorua", fr: "Zorua", }, illustrator: "Hitoshi Ariga", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 570, ], hp: 60, types: [ "Darkness", ], stage: "Basic", attacks: [ { cost: [ "Darkness", ], name: { en: "Whiny Voice", fr: "Voix Suppliante", }, effect: { en: "Choose a random card from your opponent’s hand. Your opponent reveals that card and shuffles it into his or her deck.", fr: "Choisissez une carte au hasard de la main de votre adversaire. Votre adversaire montre la carte choisie et la mélange avec son deck.", }, }, { cost: [ "Darkness", "Colorless", ], name: { en: "Dark Edge", fr: "Lame Obscurité", }, effect: { en: "Discard an Energy attached to this Pokémon.", fr: "Défaussez une Énergie attachée à ce Pokémon.", }, damage: 30, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-20" }, ], retreat: 1, } export default card