1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-04 13:21:58 +00:00

feat: add database update (#825)

This commit is contained in:
2025-07-19 18:58:03 +02:00
committed by GitHub
parent aa68bfccf2
commit 651346dff7
354 changed files with 21377 additions and 7 deletions

View File

@@ -0,0 +1,57 @@
import { Card } from "../../../interfaces"
import Set from "../Black Bolt"
const card: Card = {
set: Set,
name: {
en: "Drilbur",
fr: "Rototaupe",
de: "Rotomurf",
it: "Drilbur",
pt: "Drilbur",
es: "Drilbur",
'es-mx': "Drilbur"
},
rarity: "Common",
category: "Pokemon",
hp: 70,
types: ["Fighting"],
stage: "Basic",
attacks: [{
cost: ["Fighting"],
name: {
en: "Mud-Slap",
fr: "Coud'Boue",
de: "Lehmschelle",
it: "Fangosberla",
pt: "Tapa de Lama",
es: "Bofetón Lodo",
'es-mx': "Bofetón Lodo"
},
damage: 10
}, {
cost: ["Fighting", "Fighting"],
name: {
en: "Corkscrew Punch",
fr: "Poing Tire-Bouchon",
de: "Korkenzieherhieb",
it: "Pugno Rotante",
pt: "Soco Saca-rolha",
es: "Puño Tirabuzón",
'es-mx': "Puño Sacacorchos"
},
damage: 30
}],
retreat: 1,
regulationMark: "I"
}
export default card