1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 10:52:10 +00:00

101 lines
1.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 '../Triumphant'
const card: Card = {
name: {
en: "Nidoking",
fr: "Nidoking",
de: "Nidoking"
},
illustrator: "match",
rarity: "Rare Holo",
category: "Pokemon",
set: Set,
dexId: [
34,
],
hp: 140,
types: [
"Fighting",
],
evolveFrom: {
en: "Nidorino",
fr: "Nidorino",
},
stage: "Stage2",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Pheromone Stamina",
fr: "Endurance aux phéromones",
de: "Pheromon-Ausdauer"
},
effect: {
en: "Nidoking gets +20 HP for each Nidoqueen you have in play.",
fr: "Nidoking reçoit +20 PV pour chacun de vos Nidoqueen en jeu.",
de: "Nidoking erhält +20 KP für jedes deiner Nidoqueen im Spiel."
},
},
],
attacks: [
{
cost: [
"Fighting",
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Venomous Horn",
fr: "Corne venimeuse",
de: "Giftiges Horn"
},
effect: {
en: "The Defending Pokémon is now Poisoned.",
fr: "Le Pokémon Défenseur est maintenant Empoisonné.",
de: "Das Verteidigende Pokémon ist jetzt vergiftet."
},
damage: 80,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
resistances: [
{
type: "Lightning",
value: "-20"
},
],
retreat: 3,
description: {
en: "Its tail is thick and powerful. If it binds an enemy, it can render the victim helpless quite easily."
},
variants: {
normal: false,
reverse: true,
holo: true,
firstEdition: false
}
}
export default card