mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-04 05:11:58 +00:00
feat: add database update (#825)
This commit is contained in:
57
data/Scarlet & Violet/Black Bolt/124.ts
Normal file
57
data/Scarlet & Violet/Black Bolt/124.ts
Normal 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: "Illustration rare",
|
||||
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
|
Reference in New Issue
Block a user