import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../interfaces/Category' const card: Card = { // ids id: "sm10-68", localId: 68, // Card informations name: { en: "Gastly", fr: "Fantominus", }, hp: 60, type: [ Type.PSYCHIC, ], dexId: 92, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm10/68/low.png", fr: "https://assets.tcgdex.net/fr/sm/sm10/68/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm10/68/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm10/68/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 46, name: "MAHOU" }, attacks: [{ cost: [ Type.PSYCHIC ], name: { en: "Smog", fr: "Purédpois", }, text: { en: "Your opponent's Active Pokémon is now Poisoned.", fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné.", }, }], weaknesses: [{ type: Type.DARKNESS, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-20" }], retreat: 1, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Unbroken Bonds", code: "sm10" } } export default card