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