import { Card } from '../../../interfaces' import Set from '../Deoxys' const card: Card = { name: { en: "Spoink", fr: "Spoink", de: "Spoink" }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 325, ], hp: 50, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Hypnotic Gaze", fr: "Regard hypnotique", de: "Hypnotic Gaze" }, effect: { en: "The Defending Pokémon is now Asleep.", fr: "Le Pokémon Défenseur est maintenant Endormi.", de: "The Defending Pokémon is now Asleep." }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Flop", fr: "Flop", de: "Flop" }, damage: 20, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card