import { Card } from '../../../interfaces' import Set from '../Dark Explorers' const card: Card = { name: { en: "Zorua", fr: "Zorua", es: "Zorua", it: "Zorua", pt: "Zorua", de: "Zorua" }, illustrator: "Akira Komayama", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 570, ], hp: 60, types: [ "Darkness", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Paralyzing Gaze", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, }, { cost: [ "Darkness", "Colorless", ], name: { en: "Shadow Bind", }, effect: { en: "The Defending Pokémon can't retreat during your opponent's next turn.", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-20" }, ], retreat: 1 } export default card