import { Card } from '../../../interfaces' import Set from '../Unbroken Bonds' const card: Card = { name: { en: "Sandshrew", fr: "Sabelette", }, illustrator: "Sekio", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 27, ], hp: 70, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Collect", fr: "Collecte", }, effect: { en: "Draw a card.", fr: "Piochez une carte.", }, }, { cost: [ "Fighting", "Colorless", "Colorless", ], name: { en: "Rolling Tackle", fr: "Roulé-Boulé", }, damage: 30, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 1, } export default card