import { Card } from '../../../interfaces' import Set from '../Supreme Victors' const card: Card = { name: { en: "Sandshrew", fr: "Sabelette", }, illustrator: "Suwama Chiaki", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 27, ], hp: 50, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Fighting", ], name: { en: "Scratch", fr: "Griffe", }, damage: 20, }, ], weaknesses: [ { type: "Water", value: "+10" }, ], resistances: [ { type: "Lightning", value: "-20" }, ], retreat: 1, } export default card