import { Card } from '../../../interfaces' import Set from '../POP Series 4' const card: Card = { name: { en: "Wobbuffet", }, illustrator: "Kagemaru Himeno", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 202, ], hp: 80, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Nap", }, effect: { en: "Remove 2 damage counters from Wobbuffet.", }, }, { cost: [ "Psychic", "Colorless", ], name: { en: "Expand", }, effect: { 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: "Psychic", value: "×2" }, ], } export default card