import { Card } from '../../../interfaces' import Set from '../Team Up' const card: Card = { name: { en: "Nidoran♂", fr: "Nidoran♂", }, illustrator: "Naoyo Kimura", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 32, ], hp: 60, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Peck", fr: "Picpic", }, damage: 10, }, { cost: [ "Psychic", "Colorless", ], name: { en: "Horn Attack", fr: "Koud’Korne", }, damage: 20, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 1, } export default card