import { Card } from "../../../interfaces" import Set from "../Genetic Apex" const card: Card = { set: Set, name: { en: "Gastly" }, illustrator: "Masako Yamashita", category: "Pokemon", hp: 60, types: ["Psychic"], stage: "Basic", attacks: [{ cost: ["Psychic"], name: { en: "Suffocating Gas" }, damage: "20" }], weaknesses: [{ type: "Darkness", value: "+20" }], retreat: 1, rarity: "One Diamond", description: { en: "It wraps its opponent in its gas-like body, slowly weakening its prey by poisoning it through the skin.", } } export default card