import { Card } from "../../../interfaces" import Set from "../Genetic Apex" const card: Card = { set: Set, name: { en: "Snom" }, illustrator: "ryoma uratsuka", category: "Pokemon", hp: 50, types: ["Water"], stage: "Basic", attacks: [{ cost: ["Colorless"], name: { en: "Ram" }, damage: "10" }], weaknesses: [{ type: "Metal", value: "+20" }], retreat: 1, rarity: "One Diamond", description: { en: "It eats snow that has accumulated on the ground. It prefers soft, freshly fallen snow, so it will eat its way up a mountain, aiming for the peak.", } } export default card