import { Card } from '../../../interfaces' import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Nidoking δ", }, illustrator: "Mitsuhiro Arita", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 34, ], hp: 120, types: [ "Darkness", ], evolveFrom: { en: "Nidorino", }, stage: "Stage2", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Linear Attack", }, effect: { en: "Choose 1 of your opponent's Pokémon. This attack does 30 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, }, { cost: [ "Darkness", "Colorless", "Colorless", ], name: { en: "Dark Horn", }, effect: { en: "You may discard a Basic Pokémon or Evolution card from your hand. If you do, choose 1 of your opponent's Benched Pokémon and do 20 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, damage: 60, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card