import { Card } from '../../../interfaces' import Set from '../Promos' const card: Card = { name: { en: "Snubbull", }, illustrator: undefined, rarity: "Common", category: "Pokemon", set: Set, dexId: [ 209, ], hp: 60, types: [ "Fairy", ], stage: "Basic", attacks: [ { cost: [ "Fairy", ], name: { en: "Bite", }, damage: 10, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Paralyzing Gaze", }, effect: { en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.", }, }, ], weaknesses: [ { type: "Metal", value: "×2" }, ], resistances: [ { type: "Darkness", value: "-20" }, ], } export default card