import { Card } from '../../../interfaces' import Set from '../Gym Heroes' const card: Card = { name: { en: "Brock's Sandshrew", }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 27, ], hp: 40, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Defense Curl", }, effect: { en: "Flip a coin. If heads, prevent all damage done to Brock's Sandshrew during your opponent's next turn. (Any other effects of attacks still happen.)", }, }, { cost: [ "Fighting", "Colorless", ], name: { en: "Rolling Attack", }, damage: 20, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], resistances: [ { type: "Lightning", value: "-30" }, ], } export default card