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: "sm7-57", localId: 57, // Card informations name: { en: "Gulpin", fr: "Gloupti", }, hp: 60, type: [ Type.PSYCHIC, ], dexId: 316, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm7/57/low.png", fr: "https://assets.tcgdex.net/fr/sm/sm7/57/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm7/57/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm7/57/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 45, name: "Yuka Morii" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Yawn", fr: "Bâillement", }, text: { en: "Your opponent's Active Pokémon is now Asleep.", fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi.", }, },{ cost: [ Type.PSYCHIC ], name: { en: "Spit Poison", fr: "Crache-Venin", }, 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.PSYCHIC, value: "×2" }], retreat: 1, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Celestial Storm", code: "sm7" } } export default card