import { Card } from '../../../interfaces' import Set from '../Primal Clash' const card: Card = { name: { en: "Nidoran♀", fr: "Nidoran♀", }, illustrator: "Mizue", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 29, ], hp: 60, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Scratch", fr: "Griffe", }, damage: 10, }, { cost: [ "Psychic", "Colorless", ], name: { en: "Bite", fr: "Morsure", }, damage: 20, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 1, } export default card