import { Card } from "../../../interfaces" import Set from "../Celestial Guardians" const card: Card = { set: Set, name: { en: "Drilbur" }, illustrator: "Tomokazu Komiya", rarity: "One Diamond", category: "Pokemon", hp: 60, types: ["Fighting"], description: { en: "It brings its claws together and whirls around at high speed before rushing toward its prey." }, stage: "Basic", attacks: [{ name: { en: "Scratch" }, damage: 10, cost: ["Colorless"] }], weaknesses: [{ type: "Grass", value: "+20" }], retreat: 1 } export default card