import { Card } from '../../../interfaces' import Set from '../Delta Species' const card: Card = { name: { en: "Sandshrew", }, illustrator: "Tomokazu Komiya", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 27, ], hp: 50, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Fighting", ], name: { en: "Dig Under", }, effect: { en: "Choose 1 of your opponent's Pokémon. This attack does 10 damage to that Pokémon. This attack's damage isn't affected by Weakness or Resistance.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Scratch", }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card