import { Card } from '../../../interfaces' import Set from '../Dragon' const card: Card = { name: { en: "Horsea", }, illustrator: "Hajime Kusajima", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 116, ], hp: 40, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Retaliate", }, effect: { en: "Flip a coin. If heads, this attack does 10 damage times the number of damage counters on Horsea.", }, damage: 10, }, { cost: [ "Water", ], name: { en: "Smokescreen", }, 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