import { Card } from '../../../interfaces' import Set from '../Dragon' const card: Card = { name: { en: "Seadra", }, illustrator: "Midori Harada", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 117, ], hp: 70, types: [ "Water", ], evolveFrom: { en: "Horsea", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Agility", }, effect: { en: "Flip a coin. If heads, prevent all effects of an attack, including damage, done to Seadra during your opponent's next turn.", }, damage: 20, }, { cost: [ "Water", "Colorless", "Colorless", ], name: { en: "Waterfall", }, damage: 40, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card