import { Card } from '../../../interfaces' import Set from '../Neo Genesis' const card: Card = { name: { en: "Snubbull", }, illustrator: "Mitsuhiro Arita", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 209, ], hp: 50, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Roar", }, effect: { en: "Flip a coin. If heads and if your opponent has any Benched Pokémon, he or she chooses 1 of them and switches it with the Defending Pokémon. (Do the damage before switching the Pokémon.)", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Lick", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-30" }, ], } export default card