import { Card } from '../../../interfaces' import Set from '../Aquapolis' const card: Card = { name: { en: "Nidorino", }, illustrator: "Kagemaru Himeno", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 33, ], hp: 70, types: [ "Grass", ], evolveFrom: { en: "Nidoran♂", }, stage: "Stage1", attacks: [ { cost: [ "Grass", ], name: { en: "Poison Horn", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Poisoned.", }, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Take Down", }, effect: { en: "Nidorino does 10 damage to itself.", }, damage: 40, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card