import { Card } from '../../../interfaces' import Set from '../Gym Challenge' const card: Card = { name: { en: "Misty's Magikarp", }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 129, ], hp: 30, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Play Dead", }, effect: { en: "Flip a coin. If heads, during your opponent's next turn, prevent all effects of attacks, including damage, done to Misty's Magikarp.", }, }, { cost: [ "Colorless", ], name: { en: "Leap", }, damage: 10, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card