import { Card } from '../../../interfaces' import Set from '../Kalos Starter Set' const card: Card = { name: { en: "Snubbull", fr: "Snubbull", }, illustrator: "Naoki Saito", rarity: "None", category: "Pokemon", set: Set, dexId: [ 209, ], hp: 70, types: [ "Fairy", ], stage: "Basic", attacks: [ { cost: [ "Fairy", "Colorless", ], name: { en: "Headbutt", fr: "Coup d’Boule", }, damage: 20, }, ], weaknesses: [ { type: "Metal", value: "×2" }, ], resistances: [ { type: "Darkness", value: "-20" }, ], retreat: 2, } export default card