import { Card } from '../../../interfaces' import Set from '../Skyridge' const card: Card = { name: { en: "Gastly", }, illustrator: "Kyoko Umemoto", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 92, ], hp: 50, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Psychic", ], name: { en: "Haunt", }, effect: { en: "Put a damage counter on the Defending Pokémon.", }, damage: 10, }, ], weaknesses: [ { type: "Darkness", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card