import { Card } from '../../../interfaces' import Set from '../Holon Phantoms' const card: Card = { name: { en: "Sableye", }, illustrator: "Mitsuhiro Arita", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 302, ], 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: "Knock Off", }, effect: { en: "Choose 1 card from your opponent's hand without looking and discard it.", }, damage: 10, }, ], resistances: [ { type: "Colorless", value: "-30" }, ], } export default card