import { Card } from '../../../interfaces' import Set from '../HeartGold SoulSilver' const card: Card = { name: { en: "Snubbull", fr: "Snubbull", }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 209, ], hp: 50, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Roar", fr: "Hurlement", }, effect: { en: "Your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon.", fr: "Votre adversaire échange le Pokémon Défenseur avec l’un des Pokémon de son Banc.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Sharp Fang", fr: "Croc aiguisé", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 2, description: { en: "It has an active, playful nature. Many women like to frolic with it because of its affectionate ways." }, variants: { normal: true, reverse: false, holo: false, firstEdition: false } } export default card