import { Card } from '../../../interfaces' import Set from '../Boundaries Crossed' const card: Card = { name: { en: "Sandshrew", fr: "Sabelette", es: "Sandshrew", it: "Sandshrew", pt: "Sandshrew", de: "Sandan" }, illustrator: "Naoki Saito", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 27, ], hp: 70, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Rollout", fr: "Roulade", }, damage: 10, }, { cost: [ "Fighting", "Colorless", "Colorless", ], name: { en: "Slash", fr: "Tranche", }, damage: 40, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], resistances: [ { type: "Lightning", value: "-20" }, ], retreat: 2, } export default card