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: "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.png", fr: "https://assets.tcgdex.net/fr/bw/bw7/58/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw7/58/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw7/58/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 5, name: "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