import { Card } from '../../../interfaces' import Set from '../Dark Explorers' const card: Card = { name: { en: "Sandile", fr: "Mascaïman", es: "Sandile", it: "Sandile", pt: "Sandile", de: "Ganovil" }, illustrator: "Hajime Kusajima", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 551, ], hp: 70, types: [ "Darkness", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Sand Dive", }, effect: { en: "Flip a coin. If heads, prevent all damage done to this Pokémon by attacks during your opponent's next turn.", }, }, { cost: [ "Darkness", "Colorless", "Colorless", ], name: { en: "Corkscrew Punch", }, damage: 40, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-20" }, ], retreat: 2 } export default card