import { Card } from '../../../interfaces' import Set from '../Arceus' const card: Card = { name: { en: "Bronzor", }, illustrator: "kawayoo", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 436, ], types: [ "Metal", ], stage: "Basic", attacks: [ { cost: [ "Metal", ], name: { en: "Speed Dive", }, damage: 10, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Extrasensory", }, effect: { en: "If you have the same number of cards in your hand as your opponent, this attack does 30 damage plus 30 more damage.", }, damage: "30+", }, ], weaknesses: [ { type: "Fire", value: "+10" }, ], resistances: [ { type: "Psychic", value: "-20" }, ], retreat: 2, } export default card