import { Card } from '../../../interfaces' import Set from '../Neo Destiny' const card: Card = { name: { en: "Seel", }, illustrator: "Masako Yamashita", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 86, ], hp: 50, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Water", "Colorless", ], name: { en: "Take Down", }, effect: { en: "Seel does 10 damage to itself.", }, damage: 30, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card