import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Bunnelby", }, illustrator: "Yuka Morii", rarity: "Common", category: "Pokemon", set: Set, attacks: [ { cost: [ "Colorless", ], name: { en: "Burrow", }, effect: { en: "Discard the top card of your opponent’s deck.", }, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Headbutt Bounce", }, damage: 50, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1, } export default card