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

70 lines
1.1 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 '../Dragon Frontiers'
const card: Card = {
name: {
en: "Nidoking δ",
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
34,
],
hp: 120,
types: [
"Darkness",
],
evolveFrom: {
en: "Nidorino",
},
stage: "Stage2",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Linear Attack",
},
effect: {
en: "Choose 1 of your opponent's Pokémon. This attack does 30 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
},
{
cost: [
"Darkness",
"Colorless",
"Colorless",
],
name: {
en: "Dark Horn",
},
effect: {
en: "You may discard a Basic Pokémon or Evolution card from your hand. If you do, choose 1 of your opponent's Benched Pokémon and do 20 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
damage: 60,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card