import { Card } from '../../../interfaces' import Set from '../Emerald' const card: Card = { name: { en: "Spoink", }, illustrator: "Kagemaru Himeno", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 325, ], hp: 50, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Psychic", ], name: { en: "Knock Away", }, effect: { en: "Flip a coin. If heads, this attack does 10 damage plus 10 more damage.", }, damage: 10, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card