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

77 lines
1.3 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 '../Evolutions'
const card: Card = {
name: {
en: "Nidoking",
fr: "Nidoking",
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
34,
],
hp: 150,
types: [
"Psychic",
],
evolveFrom: {
en: "Nidorino",
fr: "Nidorino",
},
stage: "Stage2",
attacks: [
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Rumble",
fr: "Bagarre",
},
effect: {
en: "The Defending Pokémon can't retreat during your opponent's next turn.",
fr: "Le Pokémon Défenseur ne peut pas battre en retraite pendant le prochain tour de votre adversaire.",
},
damage: 40,
},
{
cost: [
"Psychic",
"Psychic",
"Colorless",
],
name: {
en: "Tail Swing",
fr: "Balance Queue",
},
effect: {
en: "This attack does 20 damage to each of your opponent's Benched Basic Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Cette attaque inflige 20 dégâts à chacun des Pokémon de base sur le Banc de votre adversaire. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
},
damage: 100,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 3,
}
export default card