mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-14 04:46:14 +00:00
* fix: Add SV08 Surging Sparks card variants * fix: Fix validate by adding 'abbreviation' to Set interface
46 lines
658 B
TypeScript
46 lines
658 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Surging Sparks"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Vigoroth",
|
|
fr: "Vigoroth",
|
|
es: "Vigoroth",
|
|
it: "Vigoroth",
|
|
pt: "Vigoroth",
|
|
de: "Muntier"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 90,
|
|
types: ["Colorless"],
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Slashing Claw",
|
|
fr: "Griffe Taillante",
|
|
es: "Garra Cuchillazo",
|
|
it: "Artigli Laceranti",
|
|
pt: "Garra Cortadora",
|
|
de: "Schlitzende Klaue"
|
|
},
|
|
|
|
damage: 50
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "H",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card
|