import { Card } from '../../../interfaces' import Set from '../Skyridge' const card: Card = { name: { en: "Nidorina", }, illustrator: "Midori Harada", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 30, ], hp: 80, types: [ "Grass", ], evolveFrom: { en: "Nidoran♀", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Tackle", }, damage: 20, }, { cost: [ "Grass", "Colorless", "Colorless", ], name: { en: "Poison Claws", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Poisoned.", }, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card