1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

70 lines
761 B
TypeScript

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