import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "g1-32", localId: 32, // Card informations name: { en: "Slowpoke", fr: "Ramoloss", }, hp: 50, type: [ Type.PSYCHIC, ], dexId: 79, image: { low: { en: "https://assets.tcgdex.net/en/xy/g1/32/low", fr: "https://assets.tcgdex.net/fr/xy/g1/32/low", }, high: { en: "https://assets.tcgdex.net/en/xy/g1/32/high", fr: "https://assets.tcgdex.net/fr/xy/g1/32/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Miki Tanaka", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Spacing Out", fr: "Trou d'Mémoire", }, text: { en: "Flip a coin. If heads, heal 10 damage from this Pokémon.", fr: "Lancez une pièce. Si c'est face, soignez 10 dégâts à ce Pokémon.", }, },{ cost: [ Type.PSYCHIC, Type.PSYCHIC ], name: { en: "Scavenge", fr: "Farfouille", }, text: { en: "Discard a Psychic Energy attached to this Pokémon. If you do, put an Item card from your discard pile into your hand.", fr: "Défaussez une Énergie Psychic attachée à ce Pokémon. Dans ce cas, prenez une carte Objet dans votre pile de défausse et ajoutez-la à votre main.", }, }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 1, rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "Generations", code: "g1" } } export default card