import { Card } from '../../../interfaces' import Set from '../Southern Islands' const card: Card = { name: { en: "Slowking", }, illustrator: "Naoyo Kimura", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 199, ], hp: 70, types: [ "Psychic", ], evolveFrom: { en: "Slowpoke", }, stage: "Stage1", attacks: [ { cost: [ "Psychic", ], name: { en: "Revelation", }, effect: { en: "Flip a coin. If heads, search your deck for a Trainer card, show it to your opponent, and put it into your hand. Shuffle your deck afterward.", }, }, { cost: [ "Psychic", "Colorless", ], name: { en: "Psychic", }, effect: { en: "Does 10 damage plus 10 more damage for each Energy card attached to the Defending Pokémon.", }, damage: 10, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card