import { Card } from '../../../interfaces' import Set from '../FireRed & LeafGreen' const card: Card = { name: { en: "Slowpoke", }, illustrator: "Yuka Morii", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 79, ], hp: 50, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Confusion Wave", }, effect: { en: "Both Slowpoke and the Defending Pokémon are now Confused.", }, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card