mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
* fix: Add for some sets Signed-off-by: Avior <github@avior.me> * Added Sets titles Signed-off-by: Avior <github@avior.me> * fix: Finished last EX sets Signed-off-by: Avior <github@avior.me> * Change Discord Link text
88 lines
1.9 KiB
TypeScript
88 lines
1.9 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../FireRed & LeafGreen'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Nidoking",
|
||
fr: "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"
|
||
},
|
||
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."
|
||
},
|
||
},
|
||
],
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Fighting",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Earth Poison",
|
||
fr: "Poison de terre"
|
||
},
|
||
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é."
|
||
},
|
||
damage: 40,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Fighting",
|
||
"Fighting",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Bound Crush",
|
||
fr: "Saut destructeur"
|
||
},
|
||
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."
|
||
},
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Water",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|