import { Card } from '../../../interfaces' import Set from '../Dragon' const card: Card = { name: { en: "Horsea", fr: "Hypotrempe" }, illustrator: "Midori Harada", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 116, ], hp: 50, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Paralyzing Gaze", fr: "Regard paralysant" }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé." }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Wave Splash", fr: "Grosse vague" }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card