import { Card } from '../../../interfaces' import Set from '../Emerald' const card: Card = { name: { en: "Spoink", }, illustrator: "Atsuko Nishida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 325, ], hp: 50, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Lunge", }, effect: { en: "Flip a coin. If tails, this attack does nothing.", }, damage: 20, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card