import { Card } from "../../../interfaces" import Set from "../Genetic Apex" const card: Card = { set: Set, name: { en: "Sandshrew" }, illustrator: "Miki Tanaka", category: "Pokemon", hp: 70, types: ["Fighting"], stage: "Basic", attacks: [{ cost: ["Fighting"], name: { en: "Scratch" }, damage: "10" }], weaknesses: [{ type: "Grass", value: "+20" }], retreat: 1, rarity: "One Diamond", description: { en: "It loves to bathe in the grit of dry, sandy areas. By sand bathing, the Pokémon rids itself of dirt and moisture clinging to its body.", } } export default card