import { Card } from '../../../interfaces' import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Horsea δ", fr: "Hypotrempe δ ESPÈCES DELTA" }, illustrator: "Tomokazu Komiya", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 116, ], hp: 40, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Tackle", fr: "Charge" }, damage: 10, }, { cost: [ "Fighting", "Colorless", ], name: { en: "Reverse Thrust", fr: "Poussée inverse" }, effect: { en: "Switch Horsea with 1 of your Benched Pokémon.", fr: "Échangez Hypotrempe avec 1 de vos Pokémon de Banc." }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card