1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00
2025-05-04 00:37:30 +02:00

61 lines
942 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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: "×2"
}],
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