import { Card } from '../../../interfaces' import Set from '../Triumphant' const card: Card = { name: { en: "Nidorina", fr: "Nidorina", }, illustrator: "sui", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 30, ], hp: 80, types: [ "Psychic", ], evolveFrom: { en: "Nidoran♀", fr: "Nidoran♀", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Quick Blow", fr: "Coup d’poing éclair", }, effect: { en: "Flip a coin. If heads, this attack does 20 damage plus 10 more damage.", fr: "Lancez une pièce. Si c’est face, cette attaque inflige 20 dégâts plus 10 dégâts supplémentaires.", }, damage: "20+", }, { cost: [ "Psychic", "Colorless", "Colorless", ], name: { en: "Tail Slap", fr: "Coud’keu", }, damage: 50, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 2, description: { en: "It has a calm and caring nature. Because its horn grows slowly, it prefers not to fight." }, variants: { normal: true, reverse: true, holo: false, firstEdition: false } } export default card