import { Card } from '../../../interfaces' import Set from '../Chilling Reign' const card: Card = { set: Set, name: { en: "Gastly", fr: "Fantominus" }, illustrator: "Motofumi Fujiwara", rarity: "Common", category: "Pokemon", hp: 50, types: ["Psychic"], attacks: [{ name: { en: "Sleep Pulse", fr: "Pouls Dodo" }, effect: { en: "Flip a coin. If heads, your opponent’s Active Pokémon is now Asleep.", fr: "Lancez une pièce. Si c’est face, le Pokémon Actif de votre adversaire est maintenant Endormi." }, damage: 10, cost: ["Psychic"] }], weaknesses: [{ type: "Darkness", value: "×2" }], resistances: [{ type: "Fighting", value: "-30" }], retreat: 1, regulationMark: "E" } export default card