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: "bw7-58", localId: 58, // Card informations name: { en: "Wobbuffet", fr: "Qulbutoké", }, hp: 90, type: [ Type.PSYCHIC, ], dexId: 202, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw7/58/low", fr: "https://assets.tcgdex.net/fr/bw/bw7/58/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw7/58/high", fr: "https://assets.tcgdex.net/fr/bw/bw7/58/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Ken Sugimori", attacks: [{ cost: [ Type.PSYCHIC, Type.PSYCHIC, Type.COLORLESS ], name: { en: "Headbutt Bounce", fr: "Culbute Surprise", }, damage: 60 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 2, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Boundaries Crossed", code: "bw7" } } export default card