import { Card } from '../../../interfaces' import Set from '../Mysterious Treasures' const card: Card = { name: { en: "Snorunt", }, illustrator: "Kagemaru Himeno", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 361, ], hp: 50, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Collect", }, effect: { en: "Draw a card.", }, }, { cost: [ "Water", ], name: { en: "Snowball", }, effect: { en: "Flip a coin. If tails, this attack does nothing.", }, damage: 20, }, ], weaknesses: [ { type: "Metal", value: "+10" }, ], } export default card