import { Card } from '../../../interfaces' import Set from '../Dragon' const card: Card = { name: { en: "Horsea", }, illustrator: "Midori Harada", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 116, ], hp: 50, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Paralyzing Gaze", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Wave Splash", }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card