1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 09:29:19 +00:00

feat: Add Surging Sparks (#576)

This commit is contained in:
2024-11-12 01:16:52 +01:00
committed by GitHub
parent 14ed8ee912
commit 45f7db66d7
253 changed files with 14223 additions and 0 deletions

View File

@ -0,0 +1,41 @@
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"
}
export default card