import { Card } from '../../../interfaces' import Set from '../Unleashed' const card: Card = { name: { en: "Horsea", fr: "Hypotrempe", }, illustrator: "Shin Nagasawa", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 116, ], hp: 50, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Beat", fr: "Bataille", }, damage: 10, }, { cost: [ "Water", "Colorless", ], name: { en: "Fin Smack", fr: "Coup d’aileron", }, effect: { en: "Flip 2 coins. This attack does 20 damage times the number of heads.", fr: "Lancez 2 pièces. Cette attaque inflige 20 dégâts multipliés par le nombre de côtés face.", }, damage: "20×", }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], retreat: 1, description: { en: "Its big, developed fins move rapidly, allowing it to swim backward while still facing forward." }, variants: { normal: true, reverse: true, holo: false, firstEdition: false } } export default card