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: "Timburr",
fr: "Charpenti",
de: "Praktibalk",
it: "Timburr",
pt: "Timburr",
es: "Timburr",
'es-mx': "Timburr"
},
rarity: "Illustration rare",
category: "Pokemon",
hp: 70,
types: ["Fighting"],
stage: "Basic",
attacks: [{
cost: ["Fighting"],
name: {
en: "Low Kick",
fr: "Balayage",
de: "Fußkick",
it: "Colpo Basso",
pt: "Rasteira",
es: "Patada Baja",
'es-mx': "Patada Baja"
},
damage: 10
}, {
cost: ["Fighting", "Colorless", "Colorless"],
name: {
en: "Strength",
fr: "Force",
de: "Stärke",
it: "Forza",
pt: "Força",
es: "Fuerza",
'es-mx': "Fuerza"
},
damage: 50
}],
retreat: 2,
regulationMark: "I"
}
export default card