import { Card } from '../../../interfaces' import Set from '../Aquapolis' const card: Card = { name: { en: "Nidoking", }, illustrator: "Hironobu Yoshida", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 34, ], hp: 100, types: [ "Colorless", ], evolveFrom: { en: "Nidorino", }, stage: "Stage2", attacks: [ { cost: [ "Grass", "Grass", "Colorless", ], name: { en: "Poison Horn", }, effect: { en: "The Defending Pokémon is now Poisoned.", }, damage: 30, }, { cost: [ "Lightning", "Lightning", "Fighting", "Fighting", ], name: { en: "Rolling Thunder", }, effect: { en: "Flip a coin. If heads, this attack does 10 damage to each of your opponent's Benched Pokémon. If tails, this attack does 10 damage to each of your Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, damage: 50, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], } export default card