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