mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-04 08:32:10 +00:00
* fix: Add SV08 Surging Sparks card variants * fix: Fix validate by adding 'abbreviation' to Set interface
46 lines
607 B
TypeScript
46 lines
607 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Surging Sparks"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Charcadet",
|
|
fr: "Charbambin",
|
|
es: "Charcadet",
|
|
it: "Charcadet",
|
|
pt: "Charcadet",
|
|
de: "Knarbon"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 70,
|
|
types: ["Fire"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Fire"],
|
|
|
|
name: {
|
|
en: "Will-O-Wisp",
|
|
fr: "Feu Follet",
|
|
es: "Fuego Fatuo",
|
|
it: "Fuocofatuo",
|
|
pt: "Fogo Fátuo",
|
|
de: "Irrlicht"
|
|
},
|
|
|
|
damage: 20
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "H",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card
|