import { Card } from '../../../interfaces' import Set from '../Generations' const card: Card = { name: { en: "Snorunt", fr: "Stalgamin", }, illustrator: "MAHOU", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 361, ], hp: 50, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Icy Snow", fr: "Verglas", }, damage: 10, }, ], weaknesses: [ { type: "Metal", value: "×2" }, ], retreat: 1, } export default card