1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-28 22:02:15 +00:00

47 lines
673 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Lost Origin"
const card: Card = {
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