import { Card } from '../../../interfaces' import Set from '../Skyridge' const card: Card = { name: { en: "Seel", de: "Jurob" }, illustrator: "Hisao Nakamura", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 86, ], hp: 50, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Water", ], name: { en: "Cold Breath", de: "Kalter Atem" }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Asleep.", de: "Wirf eine Münze. Bei\"Kopf\" schläft das verteidigende Pokémon jetzt." }, damage: 10, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card