import { Card } from '../../../interfaces' import Set from '../Great Encounters' const card: Card = { name: { en: "Snubbull", fr: "Snubbull", }, illustrator: "Atsuko Nishida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 209, ], hp: 60, 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 1 de ses Pokémon de Banc.", }, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Bite", fr: "Morsure", }, damage: 30, }, ], weaknesses: [ { type: "Fighting", value: "+10" }, ], retreat: 1, } export default card