1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-27 18:39:54 +00:00

40 lines
575 B
TypeScript

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