import { Card } from '../../../interfaces' import Set from '../Primal Clash' const card: Card = { name: { en: "Nidorina", fr: "Nidorina", }, illustrator: "Aya Kusube", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 30, ], hp: 90, types: [ "Psychic", ], evolveFrom: { en: "Nidoran♀", fr: "Nidoran♀", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Scratch", fr: "Griffe", }, damage: 20, }, { cost: [ "Psychic", "Psychic", "Colorless", ], name: { en: "Strength", fr: "Force", }, damage: 60, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 2, } export default card