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: "pop4-16", localId: 16, // Card informations name: { en: "Wobbuffet", }, hp: 80, type: [ Type.PSYCHIC, ], dexId: 202, image: { low: { en: "https://assets.tcgdex.net/en/pop/pop4/16/low", }, high: { en: "https://assets.tcgdex.net/en/pop/pop4/16/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Kagemaru Himeno", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Nap", }, text: { en: "Remove 2 damage counters from Wobbuffet.", }, },{ cost: [ Type.PSYCHIC, Type.COLORLESS ], name: { en: "Expand", }, text: { en: "During your opponent's next turn, any damage done to Wobbuffet is reduced by 20 (after applying Weakness and Resistance).", }, damage: 20 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "POP Series 4", code: "pop4" } } export default card