1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00

95 lines
2.5 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../FireRed & LeafGreen'
const card: Card = {
name: {
en: "Nidoking",
fr: "Nidoking",
de: "Nidoking"
},
illustrator: "Hisao Nakamura",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
34,
],
hp: 120,
types: [
"Fighting",
],
evolveFrom: {
en: "Nidorino",
},
stage: "Stage2",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Power Gene",
fr: "Puissance génétique",
de: "Power Gene"
},
effect: {
en: "As long as Nidoking is in play, your attacks by Nidoran ♀, Nidorina, Nidoqueen, Nidoran ♂, and Nidorino do 10 more damage to the Defending Pokemon.",
fr: "Tant que Nidoking est en jeu, les attaques effectuées par Nidoran ♀, Nidorina, Nidoqueen, Nidoran ♂ et Nidorino infligent 10 dégâts supplémentaires au Pokémon Défenseur.",
de: "As long as Nidoking is in play, your attacks by Nidoran (f), Nidorina, Nidoqueen, Nidoran (m) and Nidorino do 10 more damage to the Defending Pokémon."
},
},
],
attacks: [
{
cost: [
"Fighting",
"Colorless",
],
name: {
en: "Earth Poison",
fr: "Poison de terre",
de: "Earth Poison"
},
effect: {
en: "If the Defending Pokémon already has any damage counters on it, the Defending Pokémon is now Poisoned.",
fr: "Si le Pokémon Défenseur possède déjà des marqueurs de dégât, il est maintenant Empoisonné.",
de: "If the Defending Pokémon has already any Damage counters on it, the Defending Pokémon is now Poisoned."
},
damage: 40,
},
{
cost: [
"Fighting",
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Bound Crush",
fr: "Saut destructeur",
de: "Bound Crush"
},
effect: {
en: "Choose 1 of your opponent's Pokémon. This attack does 60 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.) Nidoking can't use Bound Crush during your next turn.",
fr: "Choisissez un des Pokémon de votre adversaire. Cette attaque lui inflige 60 dégâts. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon du Banc.) Nidoking ne pourra pas utiliser Saut destructeur lors de votre prochain tour.",
de: "Choose 1 of your opponent´s Pokémon. This attack does 60 damage on this Pokémon. (Don´t apply Weakness and Resistance on Benched Pokémon.) Nidoking can´t use Bound Crush during next turn."
},
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
}
export default card