import { Card } from '../../../interfaces' import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Horsea δ", }, illustrator: "Hisao Nakamura", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 116, ], hp: 40, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Sleepy Ball", }, effect: { en: "The Defending Pokémon is now Asleep.", }, damage: 10, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card