import { Card } from '../../../interfaces' import Set from '../Yellow A Alternate' const card: Card = { name: { en: "Shuppet", fr: "Polichombr", }, illustrator: "sui", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 353, ], hp: 60, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Headbutt", fr: "Coup d’Boule", }, damage: 10, }, { cost: [ "Psychic", "Colorless", ], name: { en: "Will-O-Wisp", fr: "Feu Follet", }, damage: 20, }, ], weaknesses: [ { type: "Darkness", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card