import { Card } from '../../../interfaces' import Set from '../Arceus' const card: Card = { name: { en: "Bronzor", }, illustrator: "Masakazu Fukuda", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 436, ], types: [ "Metal", ], stage: "Basic", attacks: [ { cost: [ "Metal", ], name: { en: "Hypnosis", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Asleep.", }, damage: 10, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Spinning Attack", }, damage: 20, }, ], weaknesses: [ { type: "Fire", value: "+10" }, ], resistances: [ { type: "Psychic", value: "-20" }, ], retreat: 2, } export default card