mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
63 lines
947 B
TypeScript
63 lines
947 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Battle Styles'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Bronzor",
|
||
fr: "Archéomire",
|
||
es: "Bronzor",
|
||
it: "Bronzor",
|
||
pt: "Bronzor",
|
||
de: "Bronzel"
|
||
},
|
||
|
||
illustrator: "Mizue",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
hp: 60,
|
||
types: ["Metal"],
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Ram",
|
||
fr: "Collision",
|
||
es: "Apisonar",
|
||
it: "Carica",
|
||
pt: "Aríete",
|
||
de: "Ramme"
|
||
},
|
||
|
||
damage: 30,
|
||
cost: ["Metal", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fire",
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: "Grass",
|
||
value: "-30"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "E",
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
description: {
|
||
en: "Polishing Bronzor to a shine makes its surface reflect the truth, according to common lore. Be that as it may, Bronzor hates being polished."
|
||
}
|
||
}
|
||
|
||
export default card |