import { Card } from '../../../interfaces' import Set from '../Arceus' const card: Card = { name: { en: "Haunter", }, illustrator: "Mitsuhiro Arita", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 93, ], types: [ "Psychic", ], evolveFrom: { en: "Gastly", }, stage: "Stage1", attacks: [ { cost: [ "Psychic", ], name: { en: "Psyshot", }, damage: 20, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Shadow Bind", }, effect: { en: "The Defending Pokémon can't retreat during your opponent's next turn.", }, damage: 30, }, ], weaknesses: [ { type: "Darkness", value: "+20" }, ], resistances: [ { type: "Colorless", value: "-20" }, ], retreat: 1, } export default card