import { Card } from '../../../interfaces' import Set from '../Team Rocket Returns' const card: Card = { name: { en: "Dark Sandslash", }, illustrator: "Masakazu Fukuda", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 28, ], hp: 70, types: [ "Fighting", "Darkness", ], evolveFrom: { en: "Sandshrew", }, stage: "Stage1", abilities: [ { type: "Poke-BODY", name: { en: "Poison Payback", }, effect: { en: "If Dark Sandslash is your Active Pokémon and is damaged by an opponent's attack (even if Dark Sandslash is Knocked Out), the Attacking Pokémon is now Poisoned.", }, }, ], attacks: [ { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Swift", }, effect: { en: "This attack's damage isn't affected by Weakness, Resistance, Poké-Powers, Poké-Bodies, or any other effects on the Defending Pokémon.", }, damage: 50, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], } export default card