import { Card } from '../../../interfaces' import Set from '../Base Set' const card: Card = { name: { en: "Haunter", }, illustrator: "Keiji Kinebuchi", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 93, ], hp: 60, types: [ "Psychic", ], evolveFrom: { en: "Gastly", }, stage: "Stage1", attacks: [ { cost: [ "Psychic", ], name: { en: "Hypnosis", }, effect: { en: "The Defending Pokémon is now Asleep.", }, }, { cost: [ "Psychic", "Psychic", ], name: { en: "Dream Eater", }, effect: { en: "You can't this attack unless the Defending Pokémon is Asleep.", }, damage: 50, }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card