mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-07 09:47:51 +00:00
* fix: Add SV08 Surging Sparks card variants * fix: Fix validate by adding 'abbreviation' to Set interface
59 lines
820 B
TypeScript
59 lines
820 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Surging Sparks"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Zebstrika",
|
|
fr: "Zéblitz",
|
|
es: "Zebstrika",
|
|
it: "Zebstrika",
|
|
pt: "Zebstrika",
|
|
de: "Zebritz"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 130,
|
|
types: ["Lightning"],
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
cost: ["Lightning"],
|
|
|
|
name: {
|
|
en: "Kick",
|
|
fr: "Koud'Pied",
|
|
es: "Patada",
|
|
it: "Calcio",
|
|
pt: "Chute",
|
|
de: "Tritt"
|
|
},
|
|
|
|
damage: 30
|
|
}, {
|
|
cost: ["Lightning", "Lightning", "Colorless"],
|
|
|
|
name: {
|
|
en: "Mach Bolt",
|
|
fr: "Éclair Fulgurant",
|
|
es: "Rayo Mach",
|
|
it: "Fulmine Mach",
|
|
pt: "Raio Supersônico",
|
|
de: "Flotter Sprung"
|
|
},
|
|
|
|
damage: 120
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "H",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card
|