import { Card } from '../../../interfaces' import Set from '../Base Set' const card: Card = { name: { en: "Gastly", fr: "Fantominus" }, illustrator: "Keiji Kinebuchi", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 92, ], hp: 30, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Psychic", ], name: { en: "Sleeping Gas", fr: "Gaz Soporifique" }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Asleep.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Endormi." }, }, { cost: [ "Psychic", "Colorless", ], name: { en: "Destiny Bond", fr: "Prélèvement du Destin" }, effect: { en: "Discard 1 Energy card attached to Gastly in order to use this attack. If a Pokémon Knocks Out Gastly during your opponent's next turn, Knock Out that Pokémon.", fr: "Défaussez 1 carte Énergie attachée à Fantominus pour pouvoir utiliser cette attaque. Si un Pokémon met Fantominus K.O. pendant le prochain tour de votre adversaire, mettez ce Pokémon K.O." }, }, ], resistances: [ { type: "Fighting", value: "-30" }, ], description: { fr: "Ce Pokémon gazeux plonge ses victimes dans un profond sommeil sans qu'elles s'en aperçoivent." } } export default card