import { Card } from '../../../interfaces' import Set from '../Mysterious Treasures' const card: Card = { name: { en: "Bronzor", }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 436, ], hp: 50, types: [ "Metal", ], stage: "Basic", attacks: [ { cost: [ "Metal", "Colorless", ], name: { en: "Dull Light", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Confused.", }, damage: 20, }, ], weaknesses: [ { type: "Fire", value: "+10" }, ], resistances: [ { type: "Psychic", value: "-20" }, ], } export default card