import { Card } from '../../../interfaces' import Set from '../Gym Challenge' const card: Card = { name: { en: "Misty's Seel", }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 86, ], hp: 50, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Water", ], name: { en: "Frostbite", }, effect: { en: "The Defending Pokémon can't retreat during your opponent's next turn.", }, damage: 10, }, { cost: [ "Water", "Colorless", ], name: { en: "Mirage", }, effect: { en: "If the Defending Pokémon tries to attack during your opponent's next turn, your opponent flips a coin. If tails, that attack does nothing.", }, damage: 10, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card