import { Card } from '../../../interfaces' import Set from '../Power Keepers' const card: Card = { name: { en: "Sealeo", fr: "Phogleur", de: "Seejong" }, illustrator: "Ken Sugimori", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 364, ], hp: 70, types: [ "Water", ], evolveFrom: { en: "Spheal", }, stage: "Stage1", attacks: [ { cost: [ "Water", "Colorless", ], name: { en: "Ice Beam", fr: "Laser glace", de: "Eisstrahl" }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.", de: "Wirf 1 Münze. Bei \"Kopf\" ist das Verteidigende Pokémon jetzt gelähmt." }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card