mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-18 02:19:17 +00:00
feat: Add Surging Sparks (#576)
This commit is contained in:
54
data/Scarlet & Violet/Surging Sparks/063.ts
Normal file
54
data/Scarlet & Violet/Surging Sparks/063.ts
Normal file
@ -0,0 +1,54 @@
|
||||
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"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user