import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Diggersby", }, illustrator: "kodama", rarity: "Rare", category: "Pokemon", set: Set, evolveFrom: { en: "Bunnelby", }, attacks: [ { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Mining Rush", }, effect: { en: "Discard up to 6 cards from the top of your deck. If you do, this attack does 30 damage for each card you discarded in this way.", }, damage: "30×", }, { cost: [ "Colorless", "Colorless", "Colorless", "Colorless", ], name: { en: "Headbutt Bounce", }, damage: 110, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 3, } export default card