import { Card } from '../../../interfaces' import Set from '../Kalos Starter Set' const card: Card = { name: { en: "Bunnelby", fr: "Sapereau", }, illustrator: "5ban Graphics", rarity: "None", category: "Pokemon", set: Set, dexId: [ 659, ], hp: 60, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Tackle", fr: "Charge", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1, } export default card