import { Card } from '../../../interfaces' import Set from '../Plasma Freeze' const card: Card = { name: { en: "Nidoking", fr: "Nidoking", }, illustrator: "Shin Nagasawa", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 34, ], hp: 140, types: [ "Fighting", ], evolveFrom: { en: "Nidorino", fr: "Nidorino", }, stage: "Stage2", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Lovestrike", fr: "Coup de Foudre", }, effect: { en: "Does 40 more damage for each Nidoqueen on your Bench.", fr: "Inflige 40 dégâts supplémentaires pour chaque Nidoqueen sur votre Banc.", }, damage: 20, }, { cost: [ "Fighting", "Colorless", "Colorless", "Colorless", ], name: { en: "Horn Drill", fr: "Empal'Korne", }, damage: 90, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], resistances: [ { type: "Lightning", value: "-20" }, ], retreat: 3, } export default card