import { Card } from '../../../interfaces' import Set from '../Neo Genesis' const card: Card = { name: { en: "Sneasel", }, illustrator: "Ken Sugimori", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 215, ], hp: 60, types: [ "Darkness", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Fury Swipes", }, effect: { en: "Flip 3 coins. This attack does 10 damage times the number of heads.", }, damage: 10, }, { cost: [ "Darkness", "Darkness", ], name: { en: "Beat Up", }, effect: { en: "Flip a coin for each of your Pokémon in play (including this one). This attack does 20 damage times the number of heads.", }, damage: 20, }, ], resistances: [ { type: "Psychic", value: "-30" }, ], } export default card