import { Card } from "../../../interfaces" import Set from "../Celestial Guardians" const card: Card = { set: Set, name: { en: "Alolan Sandshrew" }, illustrator: "ryoma uratsuka", rarity: "One Diamond", category: "Pokemon", hp: 60, types: ["Water"], description: { en: "Life on mountains covered with deep snow has granted this Pokémon a body of ice that's as hard as steel." }, stage: "Basic", attacks: [{ name: { en: "Scratch" }, damage: 20, cost: ["Water"] }], weaknesses: [{ type: "Metal", value: "+20" }], retreat: 1 } export default card