import { Card } from '../../../interfaces' import Set from '../Darkness Ablaze' const card: Card = { name: { en: "Snubbull", }, illustrator: "otumami", rarity: "Common", category: "Pokemon", set: Set, hp: 80, types: [ "Psychic", ], attacks: [ { cost: [ "Psychic", "Colorless", ], name: { en: "Sharp Fang", }, damage: 30, }, ], weaknesses: [ { type: "Metal", value: "×2" }, ], retreat: 2, } export default card