import { Card } from '../../../interfaces' import Set from '../Phantom Forces' const card: Card = { name: { en: "Bronzor", fr: "Archéomire", es: "Bronzor", it: "Bronzor", pt: "Bronzor", de: "Bronzel" }, illustrator: "Akira Komayama", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 436, ], hp: 50, types: [ "Metal", ], stage: "Basic", attacks: [ { cost: [ "Metal", ], name: { en: "Tackle", fr: "Charge", es: "Placaje", it: "Azione", pt: "Investida", de: "Tackle" }, damage: 10, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-20" }, ], retreat: 1, } export default card