mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
48 lines
688 B
TypeScript
48 lines
688 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Lost Origin"
|
|
|
|
const card: Card = {
|
|
dexId: [436],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Bronzor",
|
|
fr: "Archéomire",
|
|
es: "Bronzor",
|
|
it: "Bronzor",
|
|
pt: "Bronzor",
|
|
de: "Bronzel"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 70,
|
|
types: ["Metal"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Spinning Attack",
|
|
fr: "Attaque Tournante",
|
|
es: "Ataque Giratorio",
|
|
it: "Attacco Rotante",
|
|
pt: "Ataque Giratório",
|
|
de: "Rundumangriff"
|
|
},
|
|
|
|
damage: 10
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "F",
|
|
|
|
variants: {
|
|
"normal": true,
|
|
"reverse": true,
|
|
"holo": false
|
|
}
|
|
}
|
|
|
|
export default card |