import { Card } from '../../../interfaces' import Set from '../Gym Challenge' const card: Card = { name: { en: "Giovanni's Nidorina", }, illustrator: "Ken Sugimori", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 30, ], hp: 80, types: [ "Grass", ], evolveFrom: { en: "Nidoran♀", }, stage: "Stage1", attacks: [ { cost: [ "Grass", "Colorless", ], name: { en: "Poison Sting Tackle", }, effect: { en: "Giovanni's Nidorina does 20 damage to itself. Flip a coin. If heads, the Defending Pokémon is now Poisoned.", }, }, { cost: [ "Grass", "Colorless", "Colorless", ], name: { en: "Body Slam", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 20, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card