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