import { Card } from '../../../interfaces' import Set from '../Legend Maker' const card: Card = { name: { en: "Shuppet", }, illustrator: "Mitsuhiro Arita", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 353, ], hp: 50, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Headbutt", }, damage: 10, }, { cost: [ "Psychic", "Colorless", ], name: { en: "Will-o'-the-wisp", }, damage: 20, }, ], weaknesses: [ { type: "Darkness", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card