import { Card } from "../../../interfaces" import Set from "../Wisdom of Sea and Sky" const card: Card = { set: Set, name: { en: "Sneasel" }, illustrator: "MAHOU", rarity: "One Shiny", category: "Pokemon", hp: 60, types: ["Darkness"], description: { en: "This cunning Pokémon hides under the cover of\ndarkness, waiting to attack its prey." }, stage: "Basic", attacks: [{ name: { en: "Scratch" }, damage: 20, cost: ["Darkness"] }], weaknesses: [{ type: "Grass", value: "+20" }], retreat: 1 } export default card