import { Card } from '../../../interfaces' import Set from '../Neo Genesis' const card: Card = { name: { en: "Slowpoke", }, illustrator: "Tomokazu Komiya", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 79, ], hp: 50, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Psychic", ], name: { en: "Psyshock", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 10, }, { cost: [ "Water", ], name: { en: "Water Gun", }, effect: { en: "Does 10 damage plus 10 more damage for each Energy attached to Slowpoke but not used to pay for this attack's Energy cost. You can't add more than 20 damage in this way.", }, damage: 10, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card