import { Card } from '../../../interfaces' import Set from '../Delta Species' const card: Card = { name: { en: "Hypno", }, illustrator: "Midori Harada", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 97, ], hp: 70, types: [ "Psychic", ], evolveFrom: { en: "Drowzee", }, stage: "Stage1", abilities: [ { type: "Poke-BODY", name: { en: "Binding Aura", }, effect: { en: "Your opponent can't play any Basic Pokémon or Evolution cards from his or her hand to evolve an Asleep Pokémon and can't attach any Energy cards from his or her hand to an Asleep Pokémon.", }, }, ], attacks: [ { cost: [ "Colorless", ], name: { en: "Sleep Inducer", }, effect: { en: "Switch 1 of your opponent's Benched Pokémon with 1 of the Defending Pokémon. Your opponent chooses the Defending Pokémon to switch. The new Defending Pokémon is now Asleep.", }, }, { cost: [ "Psychic", "Colorless", ], name: { en: "Psyshot", }, damage: 40, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card