1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-01 12:09:53 +00:00
2025-05-04 00:37:30 +02:00

63 lines
950 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../BW trainer Kit (Excadrill).ts'
const card: Card = {
dexId: [529],
set: Set,
name: {
en: "Drilbur",
fr: "Rototaupe",
es: "Drilbur",
it: "Drilbur",
pt: "Drilbur",
de: "Rotomurf"
},
rarity: "None",
category: "Pokemon",
hp: 70,
types: ["Fighting"],
stage: "Basic",
attacks: [{
cost: [
"Colorless",
],
name: {
en: "Hone Claws"
},
effect: {
en: "During your next turn, each of this Pokémon's attacks does 30 more damage (before applying Weakness and Ressistance)."
}
}, {
cost: [
"Fighting",
],
name: {
en: "Scratch"
},
damage: 10
}],
weaknesses: [
{
type: "Water",
value: "2x"
},
],
resistances: [{
type: "Lightning",
value: "-20"
}],
description: {
en: "It can dig through the ground at a speed of 30 mph. It could give a car running aboveground a good race."
},
retreat: 2,
}
export default card