import { Card } from '../../../interfaces' import Set from '../Emerald' const card: Card = { name: { en: "Spoink", fr: "Spoink", de: "Spoink" }, illustrator: "Atsuko Nishida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 325, ], hp: 50, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Lunge", fr: "Coup rapide", de: "Lunge" }, effect: { en: "Flip a coin. If tails, this attack does nothing.", fr: "Lancez une pièce. Si c'est pile, cette attaque est sans effet.", de: "Flip a coin. If tails, this attack does nothing." }, damage: 20, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card