import { Card } from '../../../interfaces' import Set from '../Neo Destiny' const card: Card = { name: { en: "Gastly", }, illustrator: "Aya Kusube", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 92, ], hp: 40, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Psychic", ], name: { en: "Nightmare", }, effect: { en: "The Defending Pokémon is now Asleep.", }, damage: 10, }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card