import { Card } from '../../../interfaces' import Set from '../Rising Rivals' const card: Card = { name: { en: "Nidoran♂", fr: "Nidoran♂ Niv. 9", }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 32, ], hp: 50, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Leer", fr: "Groz'yeux", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon can't attack during your opponent's next turn.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur ne peut pas attaquer lors du prochain tour de votre adversaire.", }, }, { cost: [ "Psychic", "Colorless", ], name: { en: "Horn Hazard", fr: "Chanc'korne", }, effect: { en: "Flip a coin. If tails, this attack does nothing.", fr: "Lancez une pièce. Si c'est pile, cette attaque est sans effet.", }, damage: 40, }, ], weaknesses: [ { type: "Psychic", value: "+10" }, ], retreat: 1, } export default card