import { Card } from '../../../interfaces' import Set from '../Call of Legends' const card: Card = { name: { en: "Slowpoke", }, illustrator: "Sumiyoshi Kizuki", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 79, ], hp: 60, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Whimsy Tackle", }, effect: { en: "Flip a coin. If tails, this attack does nothing.", }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card