1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-28 06:49:18 +00:00

fix: SV sets now have their illustrator set (#743)

This commit is contained in:
2025-05-24 19:10:13 +02:00
committed by GitHub
parent 21e158805b
commit 90d12fc9b6
2975 changed files with 12862 additions and 5855 deletions

View File

@ -0,0 +1,41 @@
import { Card } from "../../../interfaces"
import Set from "../SVP Black Star Promos"
const card: Card = {
set: Set,
name: {
en: "Steven's Beldum",
fr: "Terhal de Pierre",
de: "Troys Tanhel",
es: "Beldum de Máximo",
it: "Beldum di Rocco",
pt: "Beldum do Steven"
},
rarity: "None",
category: "Pokemon",
hp: 70,
types: ["Metal"],
stage: "Basic",
attacks: [{
cost: ["Metal", "Colorless"],
name: {
en: "Ram",
fr: "Collision",
de: "Ramme",
es: "Apisonar",
it: "Carica",
pt: "Aríete"
},
damage: 30
}],
retreat: 1,
regulationMark: "I"
}
export default card