import { Card } from '../../../interfaces' import Set from '../Dark Explorers' const card: Card = { name: { en: "Drilbur", }, illustrator: "Tomokazu Komiya", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 529, ], hp: 70, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Fighting", "Fighting", ], name: { en: "Scratch", }, damage: 30, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], resistances: [ { type: "Lightning", value: "-20" }, ], } export default card