import { Card } from '../../../interfaces' import Set from '../Roaring Skies' const card: Card = { name: { en: "Shuppet", fr: "Polichombr", }, illustrator: "Yukiko Baba", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 353, ], hp: 60, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Psychic", ], name: { en: "Bleh", fr: "Nananère", }, effect: { en: "Discard a Special Energy attached to 1 of your opponent’s Pokémon.", fr: "Défaussez une Énergie spéciale attachée à l'un des Pokémon de votre adversaire.", }, }, ], weaknesses: [ { type: "Darkness", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card