import { Card } from '../../../interfaces' import Set from '../Power Keepers' const card: Card = { name: { en: "Sealeo", }, 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", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card