import { Card } from '../../../interfaces' import Set from '../Gym Challenge' const card: Card = { name: { en: "Giovanni's Nidorino", }, illustrator: "Ken Sugimori", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 33, ], hp: 70, types: [ "Grass", ], evolveFrom: { en: "Nidoran♂", }, stage: "Stage1", attacks: [ { cost: [ "Grass", "Colorless", "Colorless", ], name: { en: "Rend", }, effect: { en: "If the Defending Pokémon already has any damage counters on it, this attack does 20 damage plus 20 more damage. If not, this attack does 20 damage.", }, damage: 20, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card