1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-27 06:19:18 +00:00
Files
cards-database/data/Scarlet & Violet/SVP Black Star Promos/207.ts

41 lines
609 B
TypeScript

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