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 "../White Flare"
const card: Card = {
set: Set,
name: {
en: "Blitzle",
fr: "Zébibron",
de: "Elezeba",
it: "Blitzle",
pt: "Blitzle",
es: "Blitzle",
'es-mx': "Blitzle"
},
rarity: "Illustration rare",
category: "Pokemon",
hp: 60,
types: ["Lightning"],
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
en: "Smash Kick",
fr: "Coud'Pattes",
de: "Schmetterkick",
it: "Calcio Esplosivo",
pt: "Chute Poderoso",
es: "Patada Destrucción",
'es-mx': "Patada Devastadora"
},
damage: 10
}, {
cost: ["Lightning", "Colorless"],
name: {
en: "Zap Kick",
fr: "Coup de Pied Ravageur",
de: "Stromtritt",
it: "Dinamocalcio",
pt: "Chute Zap",
es: "Electropatada",
'es-mx': "Electropatada"
},
damage: 30
}],
retreat: 1,
regulationMark: "I"
}
export default card